/* Updated Hero Section CSS */

/* Diagonal faded line background */
.hero-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        135deg,
        rgba(255, 69, 0, 0.03) 0%,
        rgba(255, 69, 0, 0) 20%,
        rgba(255, 69, 0, 0) 80%,
        rgba(255, 69, 0, 0.03) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-right: 30px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 0.6s ease-out;
}

.hero-subtitle {
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 35px;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-features {
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
    color: #34495e;
    padding: 12px 20px;
    background: rgba(255,255,255,0.9);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.hero-feature:hover {
    transform: translateX(5px);
}

.hero-feature i {
    color: orangered;
    margin-right: 15px;
    font-size: 22px;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.filter-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    background: white;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.filter-btn.active {
    background: orangered;
    color: white;
    border-color: orangered;
}

.filter-btn i {
    margin-right: 8px;
}

/* Action Buttons */
.button-group {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    position: relative;
    z-index: 10;
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background-color: orangered;
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.btn-primary:hover {
    background-color: #e63c00;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: orangered;
    border: 2px solid orangered;
}

.btn-secondary:hover {
    background-color: rgba(255, 69, 0, 0.1);
    transform: translateY(-3px);
}

.hero-image-container {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

/* Mobile-only connection text */
.mobile-connection-text {
    display: none;
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out;
}

.hero-image {
    width: 100%;
    border-radius: 12px;
    animation: fadeInRight 0.8s ease-out 0.4s both;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

/* Floating Hearts Animation */
.floating-hearts {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 12px;
}

.heart-particle {
    position: absolute;
    color: rgba(255, 69, 0, 0.6);
    font-size: 18px;
    animation: floatHeart 6s linear infinite;
    opacity: 0;
}

@keyframes floatHeart {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Floating Fixed Icons */
.fixed-icon {
    position: absolute;
    z-index: 3;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: orangered;
    font-size: 20px;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    transition: all 0.3s ease;
}

.fixed-icon.ring {
    top: -15px;
    left: -15px;
    animation-name: pulse;
    animation-delay: 0.5s;
}

.fixed-icon.heart {
    bottom: -15px;
    left: -15px;
    animation-name: bounce;
    animation-delay: 0.7s;
}

.fixed-icon.like {
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    animation-name: swing;
    animation-delay: 0.9s;
}

.fixed-icon.gift {
    bottom: 20%;
    right: -15px;
    animation-name: pulse;
    animation-delay: 1.1s;
}

/* Stats Panel */
.stats-panel {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: -40px;
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 4;
    animation: fadeInUp 0.6s ease-out 1s both;
}

.stats-item {
    margin-bottom: 15px;
}

.stats-number {
    font-size: 28px;
    font-weight: 700;
    color: orangered;
}

.stats-label {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 5px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes swing {
    0% { transform: rotate(-5deg) translateY(-50%); }
    50% { transform: rotate(5deg) translateY(-50%); }
    100% { transform: rotate(-5deg) translateY(-50%); }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .filter-buttons {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .button-group {
        justify-content: flex-start;
    }
    
    .fixed-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .stats-panel {
        padding: 15px;
        margin-top: -30px;
        width: calc(100% - 30px);
    }
    
    .stats-number {
        font-size: 24px;
    }

    .hero-feature {
        font-size: 16px;
        padding: 10px 15px;
    }

    .hero-feature i {
        font-size: 18px;
        margin-right: 10px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .mobile-connection-text {
        display: block;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .stats-panel {
        padding: 12px;
        margin-top: -20px;
        width: calc(100% - 20px);
    }
    
    .stats-number {
        font-size: 20px;
    }

    .stats-label {
        font-size: 12px;
    }

    .button-group {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .filter-buttons {
        justify-content: center;
    }

    /* Floating fixed icons on mobile */
    .fixed-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }

    .fixed-icon.ring {
        top: 10px;
        left: 10px;
    }

    .fixed-icon.heart {
        bottom: 10px;
        left: 10px;
    }

    .fixed-icon.like {
        top: 10px;
        right: 10px;
        transform: none;
    }

    .fixed-icon.gift {
        bottom: 10px;
        right: 10px;
    }

    /* Hide some elements on mobile */
    .floating-hearts,
    .hero-features {
        display: none;
    }
}

@media (max-width: 400px) {
    .mobile-connection-text {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .hero-feature {
        font-size: 14px;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .stats-panel {
        padding: 10px;
    }
    
    .stats-number {
        font-size: 18px;
    }

    .fixed-icon {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}











        /* Navigation Bar Styles */
        .chikonnect-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            color: black;
            background-color:none;
            z-index: 1000;
            transition: all 0.3s ease;
            padding: 20px 5%;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }
        
        .chikonnect-nav.scrolled {

            background-color: white;
            width: 90%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 5%;
            border-radius: 18px;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
        }
        
        .nav-logo img {
            height: 40px;
            transition: all 0.3s ease;
        }
        
        .nav-links {
            display: flex;
            gap: 25px;
            align-items: center;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .chikonnect-nav.scrolled .nav-links a {
            color: #333;
        }
        
        .nav-button {
            background-color: #ff6b6b;
            color: white !important;
            padding: 8px 20px;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        
        .nav-button:hover {
            background-color: #ff5252;
            transform: translateY(-2px);
        }
        
        .menu-toggle {
            display: none;
            color: #333;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .chikonnect-nav.scrolled .menu-toggle {
            color: #333;
        }
        
        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: white;
            z-index: 1001;
            transition: all 0.3s ease;
            padding: 30px;
            display: flex;
            flex-direction: column;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        }
        
        .mobile-nav.active {
            left: 0;
        }
        
        .mobile-nav-logo {
            height: 40px;
            margin-bottom: 30px;
            align-self: center;
        }
        
        .mobile-nav a {
            color: #333;
            text-decoration: none;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0,0,0,0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Scroll Animation Styles */
        .scroll-section {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        
        .scroll-section.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 50px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color:purple;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }
        
        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-to-top:hover {
            background-color: #ff5252;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
        }
        
.hero-section {
    margin: 1% 2% 2% 2%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 5%;
    background: 
        linear-gradient(
            to right bottom,
            #ffffff 0%,
            #ffffff 40%,
            rgba(255,255,255,0.8) 50%,
            rgba(255,105,140,0.6) 70%,
            rgba(255,69,0,0.9) 100%
        ),
        repeating-linear-gradient(
            135deg,
            rgba(255,69,0,0.15),
            rgba(255,69,0,0.15) 1px,
            transparent 1px,
            transparent 6px
        );
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

/* Content stays on top */
.hero-content,
.hero-image {
    position: relative;
    z-index: 1;
}

/* Tablet and larger mobile devices */
@media (min-width: 768px) {
    .hero-section {
        flex-direction: row;
        justify-content: space-between;
        padding: 80px 5%;
    }
}

/* Desktop and larger screens */
@media (min-width: 1024px) {
    .hero-section {
        padding: 150px 5% 80px;
    }
}

/* Small devices - dissolve gradient effect */
@media (max-width: 480px) {
    .hero-section {
        background: 
            linear-gradient(
                to bottom,
                #ffffff 0%,
                rgba(255,255,255,0.9) 30%,
                rgba(255,105,140,0.6) 70%,
                rgba(255,69,0,0.8) 100%
            ),
            repeating-linear-gradient(
                135deg,
                rgba(255,69,0,0.1),
                rgba(255,69,0,0.1) 1px,
                transparent 1px,
                transparent 6px
            );
        padding: 30px 5%;
        margin: 1%;
    }
}
    .hero-content {
            flex: 1;
            padding-right: 60px;
            z-index: 2;
            order: 1;
        }
        
        .hero-image {
            flex: 1;
            text-align: center;
            max-width: 500px;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            order: 2;
        }
        
        .hero-image img {
            width: 100%;
            max-height: 500px;
            object-fit: contain;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(255, 107, 107, 0.1);
        }
        
        .hero-title {
            font-size: 2.8rem;
            color: #ff6b6b;
            margin-bottom: 20px;
            line-height: 1.2;
            font-weight: 600;
        }
        
        .hero-subtitle {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 30px;
            line-height: 1.8;
            max-width: 500px;
        }
        
        .hero-features {
            margin: 30px 0;
        }
        
        .hero-feature {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .hero-feature i {
            color: #ff6b6b;
            margin-right: 15px;
            font-size: 1.2rem;
        }
        
        .hero-feature span {
            font-size: 1rem;
            color: #555;
        }
        
        .button-group {
            display: flex;
            gap: 15px;
        }
        
        .btn {
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .btn-primary {
            background-color: #ff6b6b;
            color: white;
            border: 2px solid #ff6b6b;
        }
        
        .btn-primary:hover {
            background-color: #ff5252;
            border-color: #ff5252;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: #ff6b6b;
            border: 2px solid #ff6b6b;
        }
        
        .btn-secondary:hover {
            background-color: rgba(255, 107, 107, 0.1);
            transform: translateY(-2px);
        }
        
        /* Partner Logos Section */
        .partners-section {
            padding: 60px 5%;
            text-align: left;
            background-color: white;
            max-width: 1400px;
            margin: 0 auto;
        }
      
        .partners-title {
            font-size: 1.5rem;
            color: #ff6b6b;
            margin-bottom: 40px;
            font-weight: 600;
        }
        
        .partner-logos {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }
        
        .partner-logo {
            max-width: 150px;
            height: auto;
            transition: all 0.3s ease;
        }
        
        .partner-logo:hover {
            opacity: 1;
        }
        
        /* Additional Image Section */
        .additional-image-section {
            padding: 80px 5%;
            background-color:none;
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .additional-image-container {
            flex: 1;
            max-width: 50%;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .additional-image-container img {
            width: 100%;
            height: auto;
            display: block;
        }

        .additional-image-partners {
            flex: 1;
            padding-left: 60px;
            text-align: left;
        }
        
        .partners-info {
            margin-bottom: 30px;
        }
        
        .partners-info-title {
            font-size: 2rem;
            color: #ff6b6b;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .partners-info-text {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 25px;
        }
        
        /* Feature Sections */
        .feature-section {
            padding: 100px 5%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .feature-section.dark {
            background-color: none;
        }
        
        .feature-content {
            flex: 1;
            padding: 0 60px;
        }
        
        .feature-image {
            flex: 1;
            text-align: center;
            max-width: 500px;
        }
        
        .feature-image img {
            width: 100%;
            max-height: 400px;
            object-fit: contain;
            border-radius: 10px;
        }
        
        .feature-icon {
            font-size: 1.2rem;
            color: #ff6b6b;
            margin-bottom: 15px;
        }
        
        .feature-title {
            font-size: 2rem;
            color: #333;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .feature-text {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 25px;
        }
        
        .feature-list {
            list-style-type: none;
            padding: 0;
        }
        
        .feature-list li {
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
        }
        
        .feature-list i {
            color: #ff6b6b;
            margin-right: 10px;
            margin-top: 3px;
        }
        
        /* Steps Section */
        .steps-section {
            padding: 100px 5%;
            text-align: center;
            width: 94%; 
            max-width: 1800px;
            margin: 0 auto;
            border-radius: 15px;
            background-color:orangered;
           
        }
        
        .section-title {
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 60px;
            font-weight: 600;
        }
      
        .steps-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            max-width: 1800px;
            margin: 0 auto;
        }
        
        .step {
            flex: 1;
            min-width: 300px;
            padding: 40px 30px;
            margin: 15px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(255, 107, 107, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .step:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 107, 107, 0.2);
        }
        
        .step-icon {
            font-size: 2.5rem;
            color: #ff6b6b;
            margin-bottom: 25px;
        }
        
        .step h3 {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .step p {
            font-size: 1rem;
            color: #666;
            line-height: 1.8;
        }
        
        /* Mobile Responsiveness */
        @media (max-width: 992px) {
            .hero-section, .feature-section {
                flex-direction: column;
                padding: 100px 20px 40px;
                text-align: center;
            }
            
            .hero-content {
                padding: 0;
                margin-bottom: 0;
                order: 2;
                background: white;
                text-align: center;
            }
            
            .hero-image {
                order: 1;
                margin-bottom: 0;
                max-width: 100%;
                border-radius: 0;
            }
           
            .hero-image img {
                border-radius: 0;
                width: 100%;
                height: auto;
                max-height: none;
            }
            
            .hero-title {
                font-size: 2rem;
                margin-top: 20px;
            }
            
            .hero-subtitle {
                font-size: 1rem;
                margin: 0 auto 20px;
            }
            
            .hero-features {
                display: inline-block;
                text-align: left;
                margin: 20px auto;
            }
            
            .button-group {
                justify-content: center;
                margin-top: 20px;
            }
            
            .feature-content {
                padding: 40px 20px;
                margin-bottom: 0;
                order: 2;
            }
            
            .feature-image {
                order: 1;
                margin-bottom: 0;
                max-width: 100%;
            }
            
            .feature-section.dark {
                flex-direction: column;
            }
            
            .hero-title, .section-title {
                font-size: 2.2rem;
            }
            
            .partner-logos {
                gap: 20px;
            }
            
            .partner-logo {
                max-width: 120px;
            }
            
            .additional-image-section {
                flex-direction: column;
                padding: 40px 20px;
            }
            
            .additional-image-container {
                max-width: 100%;
                margin-bottom: 40px;
            }
            
            .additional-image-partners {
                padding-left: 0;
                width: 100%;
                text-align:left;
            }
            
            .partners-info {
                text-align: center;
            }
            
            /* Navigation for mobile */
            .nav-links {
                display: none;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .chikonnect-nav {
                background-color: white;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
                padding: 15px 5%;
            }
            
            .chikonnect-nav .nav-links a {
                color: #333;
            }
        }
        
        @media (max-width: 576px) {
            .hero-section {
                border-radius: 0;
            }
               .hero-section p{
                display:none;
            }

            .button-group {
                flex-direction: column;
                gap: 10px;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
            
            .step {
                min-width: 100%;
                margin: 0 0 30px 0;
            }
            
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .partner-logos {
                gap: 15px;
            }
            
            .partner-logo {
                max-width: 100px;
            }
            
            .scroll-to-top {
                width: 40px;
                height: 40px;
                bottom: 20px;
                right: 20px;
            }
        }
        
        /* Large devices only */
        @media (min-width: 993px) {
            .chikonnect-nav {
                background:none;
                box-shadow: none;
            }
            
            .chikonnect-nav .nav-links a {
                color: black;
            }
            
            .chikonnect-nav.scrolled {
                background-color: white;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            }
            
            .chikonnect-nav.scrolled .nav-links a {
                color: #333;
            }
            
            .menu-toggle {
                display: none;
            }
        }
