body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.font-display {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Custom Cursor */
/* .custom-cursor {
            width: 20px;
            height: 20px;
            border: 2px solid #861623;
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.15s, background 0.15s;
            mix-blend-mode: difference;
        }
        .custom-cursor.hover { transform: scale(2); background: #861623; }
        .cursor-dot {
            width: 4px;
            height: 4px;
            background: #861623;
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
        } */

.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #FFC107;
    /* Yellow */
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, background 0.15s ease;
}

.custom-cursor.hover {
    transform: scale(2);
    background: rgba(255, 193, 7, 0.4);
    /* Soft yellow fill */
}

.cursor-dot {
    width: 4px;
    height: 4px;
    background: #FFC107;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
}



.hero-bg {
    position: relative;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 1;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

.btn-primary {
    background: #861623;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: #c41230;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(227, 25, 55, 0.4);
}

/* Navigation Dropdown Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.dropdown-toggle:hover {
    background: rgba(134, 22, 35, 0.05);
    color: #861623;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #861623, #FF4A62);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 220px;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #f0f0f0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
    padding: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu,
.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #1a1a1a;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.dropdown-item:hover {
    background: #f8f8f8;
    color: #861623;
}

.dropdown-item i {
    width: 16px;
    color: #861623;
}

.dropdown-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 0.5rem 0;
}

.nav-cta {
    background: #861623;
    color: white !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 0.5rem;
    font-weight: 600;
}

.nav-cta:hover {
    background: #c41230;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(134, 22, 35, 0.3);
}

/* Mobile Menu Dropdown Adjustments */
@media (max-width: 1024px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #f8f8f8;
        margin-top: 0.5rem;
        display: none;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
}

/* ENHANCED TIMELINE STYLES */
.timeline-container {
    position: relative;
    padding: 4rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #861623, #FF4A62, #861623);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(227, 25, 55, 0.3);
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #861623;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(227, 25, 55, 0.6);
}

.timeline-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #861623;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(227, 25, 55, 0.6);
}

.timeline-progress {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    background: #1a1a1a;
    transform: translateX(-50%);
    height: 0;
    transition: height 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 3rem 5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    margin-left: auto;
    padding-left: 4rem;
}

.timeline-item:nth-child(even) {
    padding-right: 4rem;
    text-align: right;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border: 4px solid #861623;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    z-index: 10;
    box-shadow: 0 8px 30px rgba(227, 25, 55, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.timeline-item:nth-child(odd) .timeline-node {
    left: -30px;
}

.timeline-item:nth-child(even) .timeline-node {
    right: -30px;
}

.timeline-node:hover {
    transform: scale(1.2);
    box-shadow: 0 12px 40px rgba(227, 25, 55, 0.5);
    background: #861623;
}

.timeline-node:hover i {
    color: white;
}

.timeline-node i {
    color: #861623;
    transition: color 0.3s ease;
}

.timeline-node::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px dashed #861623;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
    animation: rotate 10s linear infinite;
}

.timeline-item.visible .timeline-node::before {
    opacity: 0.3;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.timeline-content {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: white;
    border: 1px solid #f0f0f0;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -10px;
    border-right: none;
    border-top: none;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -10px;
    border-left: none;
    border-bottom: none;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(227, 25, 55, 0.1);
    border-color: #861623;
}

.timeline-content:hover::before {
    background: #861623;
    border-color: #861623;
}

.timeline-year {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: #861623;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Oswald', sans-serif;
}

.timeline-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #861623, #FF4A62);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(227, 25, 55, 0.3);
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.02em;
}

.timeline-desc {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.timeline-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f8f8;
    border-radius: 0.75rem;
    border-left: 4px solid #861623;
}

.timeline-item:nth-child(even) .timeline-meta {
    flex-direction: row-reverse;
    border-left: none;
    border-right: 4px solid #861623;
}

.timeline-meta-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.timeline-meta-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* Mobile Timeline */
@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }

    .timeline-progress {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 5rem !important;
        padding-right: 1rem !important;
        text-align: left !important;
    }

    .timeline-node {
        left: 0 !important;
        right: auto !important;
        width: 50px;
        height: 50px;
    }

    .timeline-content::before {
        left: -10px !important;
        right: auto !important;
        border-right: none !important;
        border-top: none !important;
        border-left: 1px solid #f0f0f0 !important;
        border-bottom: 1px solid #f0f0f0 !important;
    }

    .timeline-meta {
        flex-direction: row !important;
        border-left: 4px solid #861623 !important;
        border-right: none !important;
    }

    .timeline-year {
        font-size: 2rem;
    }
}

/* Values Cards */
.value-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #f0f0f0;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #861623, #FF4A62);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(227, 25, 55, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #861623, #FF4A62);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(227, 25, 55, 0.3);
}

/* Mission Section */
.mission-bg {
    background: linear-gradient(135deg, #861623 0%, #FF4A62 100%);
    position: relative;
    overflow: hidden;
}

.mission-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M50,0 L100,50 L50,100 L0,50 Z" fill="white" opacity="0.03"/></svg>');
    background-size: 100px;
}

/* Leadership Cards */
.leader-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(227, 25, 55, 0.15);
}

.leader-image {
    height: 300px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.leader-card:hover .leader-image {
    transform: scale(1.05);
}

.leader-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(227, 25, 55, 0.9), transparent);
    padding: 2rem;
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.leader-card:hover .leader-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* Updated Header Styles */
.header-top {
    background: linear-gradient(to right, #861623, #FF4A62);
    color: white;
    font-size: 0.875rem;
}

.header-main {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.header-main.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
}

.logo-container {
    background: #861623;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(227, 25, 55, 0.3);
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 25, 55, 0.4);
}

.nav-icon-btn {
    color: #1a1a1a;
    transition: all 0.3s ease;
    background: rgba(227, 25, 55, 0.05);
    border-radius: 8px;
}

.nav-icon-btn:hover {
    color: #861623;
    background: rgba(227, 25, 55, 0.1);
    transform: translateY(-2px);
}

/* .cart-badge {
            background: #861623;
            color: white;
            font-weight: bold;
            box-shadow: 0 2px 8px rgba(227, 25, 55, 0.4);
            animation: pulse 2s infinite;
        } */

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Vehicle Slider Enhanced */
.vehicle-slider {
    position: relative;
    overflow: hidden;
}

.vehicle-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.vehicle-slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
}

.vehicle-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.vehicle-slide.active img {
    transform: scale(1.1);
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.slider-dot.active {
    background: #861623;
    border-color: white;
    transform: scale(1.3);
}

.slider-dot:hover {
    background: #861623;
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.slider-arrow:hover {
    background: #861623;
    transform: translateY(-50%) scale(1.1);
    border-color: #861623;
    box-shadow: 0 0 30px rgba(227, 25, 55, 0.5);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

.vehicle-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 80px 40px 40px;
    z-index: 5;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.vehicle-slide.active .vehicle-info {
    transform: translateY(0);
    opacity: 1;
}

/* Particle System */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #861623;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.6;
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(31px, 9999px, 94px, 0);
    }

    20% {
        clip: rect(6px, 9999px, 14px, 0);
    }

    40% {
        clip: rect(89px, 9999px, 44px, 0);
    }

    60% {
        clip: rect(15px, 9999px, 71px, 0);
    }

    80% {
        clip: rect(67px, 9999px, 58px, 0);
    }

    100% {
        clip: rect(22px, 9999px, 83px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(65px, 9999px, 99px, 0);
    }

    20% {
        clip: rect(12px, 9999px, 36px, 0);
    }

    40% {
        clip: rect(78px, 9999px, 22px, 0);
    }

    60% {
        clip: rect(43px, 9999px, 67px, 0);
    }

    80% {
        clip: rect(91px, 9999px, 12px, 0);
    }

    100% {
        clip: rect(34px, 9999px, 56px, 0);
    }
}

/* Magnetic Button */
.magnetic-btn {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Text Reveal */
.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s;
}

.text-reveal.revealed span {
    transform: translateY(0);
    opacity: 1;
}

/* Counter Animation */
.counter-value {
    font-variant-numeric: tabular-nums;
}

/* Shimmer Effect */
.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: #861623;
    z-index: 9999;
    width: 0%;
    transition: width 0.1s;
}

/* Feature Box Hover */
.feature-box {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 4px solid transparent;
}

.feature-box:hover {
    border-left-color: #861623;
    transform: translateX(10px);
    background: rgba(227, 25, 55, 0.05);
}

/* Image Mask Reveal */
.mask-reveal {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    transition: clip-path 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.mask-reveal.revealed {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* Parallax Container */
.parallax-container {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    inset: 0;
    background: white;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 20px;
}

.loading-progress {
    height: 100%;
    background: #861623;
    width: 0%;
    transition: width 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active {
    transform: translateX(0);
}

/* FIXED: About Particles Animation */
.particle-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.floating-particle {
    position: absolute;
    background: #861623;
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
    animation: floatParticle 15s ease-in-out infinite;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }

    25% {
        transform: translateY(-30px) translateX(15px) scale(1.1);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-20px) translateX(-10px) scale(0.9);
        opacity: 0.2;
    }

    75% {
        transform: translateY(-40px) translateX(20px) scale(1.05);
        opacity: 0.4;
    }
}

/* Alternative: Rising Particles Animation */
.rising-particle {
    position: absolute;
    background: linear-gradient(135deg, #861623, #FF4A62);
    border-radius: 50%;
    opacity: 0.4;
    pointer-events: none;
    animation: riseParticle 20s linear infinite;
    bottom: -10px;
}

@keyframes riseParticle {
    0% {
        transform: translateY(0) rotate(0deg) scale(0.5);
        opacity: 0;
    }

    10% {
        opacity: 0.4;
    }

    90% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg) scale(1);
        opacity: 0;
    }
}

.nav-indicator {
    box-shadow: 0 0 10px rgba(134, 22, 35, 0.5);
}