        
 :root {
            --primary-blue: #0061ff;
            --primary-yellow: #ffd700;
            --secondary-blue: #0051d4;
            --light-blue: #e6f0ff;
            --dark-blue: #0039a6;
            --accent-yellow: #ffc107;
            --light-yellow: #fff9e6;
            --dark-yellow: #e6b800;
            --text-dark: #1a1a1a;
            --text-light: #f8f9fa;
            --gray-100: #f8f9fa;
            --gray-200: #e9ecef;
            --gray-500: #adb5bd;
            --gray-700: #495057;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--text-dark);
            background-color: var(--gray-100);
            overflow-x: hidden;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container-fluid {
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
            margin-right: auto;
            margin-left: auto;
        }

        .container {
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
            margin-right: auto;
            margin-left: auto;
        }

        @media (min-width: 576px) {
            .container {
                max-width: 540px;
            }
        }

        @media (min-width: 768px) {
            .container {
                max-width: 720px;
            }
        }

        @media (min-width: 992px) {
            .container {
                max-width: 960px;
            }
        }

        @media (min-width: 1200px) {
            .container {
                max-width: 1140px;
            }
        }

        /* Header Styles */
        .topbar-one {
            background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
            padding: 8px 0;
            color: white;
        }

        .topbar-one__inner {
            display: flex;
            justify-content: flex-end;
        }

        .social-link a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            margin-left: 10px;
            transition: var(--transition);
        }

        .social-link a:hover {
            background: var(--primary-yellow);
            color: var(--dark-blue);
            transform: translateY(-3px);
        }

        .main-header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
              padding: 5px 20px;
        }

        .main-header.scrolled {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }

        .main-header__inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 0;
            position: relative;
        }

        .main-header__logo img {
              height: 70px!important; 
            transition: var(--transition);
            margin-bottom: 20px;
        }

        @media (max-width: 767px) {
            .main-header__logo img {
                height:70px !important;
            }
        }

        .main-header__logo img:hover {
            transform: scale(1.05);
        }

        .main-menu__list {
            display: flex;
            gap: 30px;
        }

        .main-menu__list li a {
            font-weight: 600;
            position: relative;
  padding: 5px 10px; 
              transition: var(--transition);
              font-size: 15px;
        }

        .main-menu__list li a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-yellow);
            transition: var(--transition);
        }

        .main-menu__list li a:hover:after,
        .main-menu__list li.current a:after {
            width: 100%;
        }

        .main-header__btn {
            background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
            color: white;
    padding: 6px 12px;
            border-radius: 30px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(0, 97, 255, 0.3);
            font-size: 14px;
        }

        .main-header__btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 97, 255, 0.4);
        }

        .mobile-nav__btn {
            display: none;
            cursor: pointer;
            width: 30px;
            height: 20px;
            flex-direction: column;
            justify-content: space-between;
            z-index: 1001;
            margin-bottom:20px;
        }

        .mobile-nav__btn span {
            display: block;
            width: 100%;
            height: 3px;
            background: var(--primary-blue);
            transition: var(--transition);
            border-radius: 3px;
        }

        .mobile-nav__btn.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .mobile-nav__btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-nav__btn.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 650px;
            position: relative;
            z-index: 2;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--light-yellow);
            margin-bottom: 20px;
            font-weight: 500;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 25px;
            position: relative;
        }

        .hero-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100px;
            height: 4px;
            background: var(--primary-yellow);
            border-radius: 2px;
        }

        .hero-text {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 40px;
            max-width: 550px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            text-align: center;
            white-space: nowrap;
            vertical-align: middle;
            user-select: none;
            border: 2px solid transparent;
            padding: 15px 35px;
            font-size: 1rem;
            line-height: 1.5;
            border-radius: 30px;
            transition: var(--transition);
            cursor: pointer;
        }

        .btn-primary {
            background: var(--primary-yellow);
            color: var(--dark-blue);
            padding: 15px 35px;
            border-radius: 30px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 13px 35px;
            border-radius: 30px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }

        .btn-outline:hover {
            background: white;
            color: var(--primary-blue);
            transform: translateY(-3px);
        }


        .hero-image {
            position: absolute;
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            width: 45%;
            max-width: 600px;
            z-index: 1;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        /* Features Section */
        .features-section {
            padding: 100px 0;
            background: var(--light-blue);
            position: relative;
        }

        .section-title {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .section-title.text-left {
            text-align: left;
            margin: 0 0 30px;
        }

        .section-tagline {
            color: var(--primary-blue);
            font-weight: 700;
            margin-bottom: 15px;
            display: block;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .section-heading {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-heading:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-yellow);
            border-radius: 2px;
        }

        .section-title.text-left .section-heading:after {
            left: 0;
            transform: none;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--gray-700);
            line-height: 1.7;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 97, 255, 0.15);
        }

        .feature-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background: var(--primary-yellow);
            transition: var(--transition);
        }

        .feature-card:hover:before {
            height: 100%;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--light-yellow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 30px;
            color: var(--primary-yellow);
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .feature-text {
            color: var(--gray-700);
            line-height: 1.7;
        }

        /* About Section */
        .about-section {
            padding: 100px 0;
            background: white;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .about-image:before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100px;
            height: 100px;
            background: var(--primary-yellow);
            border-radius: 20px;
            z-index: -1;
        }

        .about-image:after {
            content: '';
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 100px;
            height: 100px;
            background: var(--primary-blue);
            border-radius: 20px;
            z-index: -1;
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--gray-700);
            margin-bottom: 30px;
        }

        .about-list {
            margin-bottom: 40px;
        }

        .about-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            font-size: 1.05rem;
        }

        .about-list li i {
            color: var(--primary-yellow);
            margin-right: 10px;
            font-size: 1.2rem;
            margin-top: 3px;
        }

        /* Services Section */
        .services-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--light-blue) 0%, white 100%);
            position: relative;
            overflow: hidden;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border-top: 4px solid var(--primary-blue);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 97, 255, 0.15);
        }

        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            z-index: 0;
            transition: var(--transition);
            opacity: 0.05;
        }

        .service-card:hover:before {
            height: 100%;
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--light-yellow);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 30px;
            color: var(--primary-yellow);
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .service-text {
            color: var(--gray-700);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .service-link {
            color: var(--primary-blue);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
        }

        .service-link i {
            transition: var(--transition);
        }

        .service-link:hover {
            color: var(--dark-blue);
            gap: 12px;
        }

        .service-link:hover i {
            transform: translateX(5px);
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background: white;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--light-blue);
            border-radius: 15px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .faq-question {
            padding: 25px 30px;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark-blue);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .faq-question:hover {
            background: rgba(0, 97, 255, 0.05);
        }

        .faq-question i {
            transition: var(--transition);
        }

        .faq-question.active i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
            background: white;
        }

        .faq-question.active + .faq-answer {
            padding: 25px 30px;
            max-height: 500px;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
            color: white;
            text-align: center;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .cta-text {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }

        /* Footer */
        .footer {
            background: var(--dark-blue);
            color: white;
            padding: 80px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-logo {
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-logo img {
            height: 50px;
        }

        .footer-about {
            line-height: 1.7;
            margin-bottom: 25px;
            opacity: 0.8;
        }

        .footer-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-yellow);
            border-radius: 2px;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links li a {
            opacity: 0.8;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links li a:hover {
            opacity: 1;
            color: var(--primary-yellow);
            transform: translateX(5px);
        }

        .footer-links li a i {
            color: var(--primary-yellow);
            font-size: 0.9rem;
        }

        .footer-contact li {
            display: flex;
            margin-bottom: 20px;
        }

        .footer-contact li i {
            color: var(--primary-yellow);
            font-size: 1.2rem;
            margin-right: 15px;
            min-width: 20px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 25px 0;
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* Animations */
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-15px);
            }
            100% {
                transform: translateY(0px);
            }
        }

        .floating {
            animation: float 4s ease-in-out infinite;
        }

        /* Responsive */
        @media (max-width: 1199px) {
            .hero-title {
                font-size: 3rem;
            }
        }

        @media (max-width: 991px) {
            .hero-content {
                max-width: 100%;
                text-align: center;
            }
            
            .hero-title:after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero-image {
                position: relative;
                width: 100%;
                max-width: 100%;
                transform: none;
                margin-top: 50px;
                margin-bottom: 30px;
                right: auto;
                top: auto;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                max-width: 80%;
                margin: 0 auto 50px;
                order: -1;
            }
            
            .mobile-nav__btn {
                display: flex;
            }
            
            .main-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                height: 100vh;
                background: white;
                padding: 80px 30px 30px;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
                transition: var(--transition);
                z-index: 1000;
                overflow-y: auto;
            }
            
            .main-menu.active {
                right: 0;
            }
            
            .main-menu__list {
                flex-direction: column;
                gap: 20px;
            }
            
            .main-menu__list li a {
                font-size: 1.1rem;
                padding: 10px 0;
                display: block;
            }
        }

        @media (max-width: 767px) {
            .section-heading {
                font-size: 2rem;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .features-grid,
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .feature-card,
            .service-card {
                padding: 30px 20px;
            }
            
            .hero-section {
                padding: 100px 0 60px;
            }
            
            .features-section,
            .about-section,
            .services-section,
            .faq-section,
            .cta-section {
                padding: 70px 0;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 575px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
            
            .main-header__btn {
                padding: 10px 15px;
                font-size: 0.9rem;
            }
            
            .btn {
                padding: 12px 25px;
                font-size: 0.9rem;
            }
        }
@media (max-width: 991px) {
    .main-header__btn {
        display: none;
    }
    

}
@media (max-width: 991px) {
    body.no-scroll {
        overflow: hidden;
    }
}
/* Mobile Menu Styles */
@media (max-width: 991px) {
    .mobile-nav__btn {
        display: flex;
    }
    
    .main-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 1000;
    }
    
    .main-menu.active {
        right: 0;
    }
    
    .main-menu__list {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-menu__list li a {
        font-size: 1.1rem;
        padding: 10px 0;
        display: block;
    }
    
    /* Mobile sign-in button styles */
    .mobile-signin-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
        color: white;
        padding: 12px 25px;
        border-radius: 30px;
        font-weight: 600;
        margin-top: 30px;
        gap: 8px;
        transition: var(--transition);
        box-shadow: 0 4px 15px rgba(0, 97, 255, 0.3);
    }
    
    .mobile-signin-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 97, 255, 0.4);
    }
    
    /* Hide desktop button on mobile */
    .desktop-only {
        display: none;
    }
    
    /* Prevent scrolling when menu is open */
    body.no-scroll {
        overflow: hidden;
    }
}

/* Desktop Styles */
@media (min-width: 992px) {
    .mobile-signin-btn {
        display: none;
    }
    
    .desktop-only {
        display: inline-flex;
    }
}
/* Add to your existing CSS */

/* XL Screens (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-heading {
        font-size: 3rem;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

/* Large Desktop Optimizations */
@media (min-width: 1200px) {
    .hero-content {
        padding-top: 80px;
    }
    
    .hero-image {
        width: 50%;
        right: 0;
    }
    
    .main-header__inner {
        padding: 15px 40px;
    }
    
    .main-header__btn {
        margin-left: 15px;
    }
}

/* Header Button Fixes */
@media (min-width: 992px) {
    .header-buttons {
        display: flex;
        gap: 15px;
    }
    
    .main-header__btn.desktop-only {
        display: inline-flex;
        margin-left: 15px;
    }
}

/* Prevent content from stretching too wide */
@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
    }
    
    .hero-content {
        max-width: 800px;
    }
}

/* Adjust floating animation for larger screens */
@media (min-width: 992px) {
    .floating {
        animation: float 6s ease-in-out infinite;
    }
}

/* Improve about section layout */
@media (min-width: 992px) {
    .about-content {
        gap: 80px;
        align-items: center;
    }
    
    .about-image {
        margin-bottom: 0;
    }
}

/* Footer improvements */
@media (min-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}
/* Limit maximum width for ultra-wide screens */
@media (min-width: 2000px) {
    body {
        max-width: 2000px;
        margin: 0 auto;
    }
}
@media (min-width: 1600px) {
    html {
        font-size: 18px;
    }
}
@media (max-width: 768px) {
    .hero-image {
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 40px;
        text-align: center; /* Center image on mobile */
    }

    .hero-image img {
        width: 90%;
    }
}
.hero-image {
    margin-bottom: 100px;
    margin-top: -10%;
    margin-right: 5%;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Mobile view */
@media (max-width: 768px) {
    .hero-image {
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 40px;
        text-align: center;
        /* margin-left: 20px; */
    }

    .hero-image img {
        width: 100%;
    }
}

/* Button Fixes */
.header-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

@media (max-width: 991px) {
    .header-buttons {
        display: none;
    }
    
    .mobile-menu-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
        width: 100%;
    }
    
    .mobile-signin-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .mobile-menu-buttons {
        display: none;
    }
}

@media (max-width: 991px) {
    .main-header {
        height: 60px; 
        padding: 0 10px; 
    }
    
    .main-header__logo img {
    height: 70px !important; /* पहले 50px था */
    margin-bottom: 0;
    }
    
    .mobile-nav__btn {
        width: 22px; /* Smaller menu button */
        height: 16px;
    }
    
    .mobile-nav__btn span {
        height: 2px; /* Thinner menu lines */
    }
    
    .main-menu {
        padding: 50px 15px 15px; /* Reduced menu padding */
    }
    
    .main-menu__list li a {
        font-size: 0.9rem; /* Slightly smaller font */
        padding: 8px 0; /* Less padding */
    }
}

@media (max-width: 767px) {
    .main-header {
        height: 50px; /* Even smaller for very small screens */
    }
    
    .main-header__logo img {
        height: 40px !important; /* Even smaller for very small screens */
    }
    
   }
 .main-header {
        height: 70px; /* Reduced header height */
        padding: 0 20px;
    }

    .main-header__logo img {
        height: 70px !important; /* Increased logo size */
        margin-bottom: 0; /* Removed extra margin */
    }

    /* Mobile menu button adjustments */
    .mobile-nav__btn {
        margin-bottom: 0; /* Removed extra margin */
    }

    /* Mobile view adjustments */
    @media (max-width: 991px) {
        .main-header {
            height: 60px; /* Smaller header on mobile */
            padding: 0 15px;
        }
        
        .main-header__logo img {
            height: 50px !important; /* Slightly smaller logo on mobile */
        }
        
        
        
        .mobile-nav__btn span {
            height: 2px; /* Thinner menu lines */
        }
    }

    @media (max-width: 767px) {
        .main-header {
            height: 55px; /* Even smaller for very small screens */
        }
        
        .main-header__logo img {
            height:  45px !important;
        }
        
        .mobile-nav__btn {
            width: 22px;
            height: 16px;
         margin-bottom: 10px;
        }
    }
    .main-header__inner {
    display: flex
;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    position: relative;
    margin-bottom: 30px;
    }
    /* Update mobile menu styles */
@media (max-width: 991px) {
    .main-menu {
        width: 280px;
        padding: 70px 20px 20px;
    }
    
    .main-menu__list li a {
        padding: 12px 0;
        font-size: 16px;
    }
    
    .mobile-menu-buttons {
        margin-top: 20px;
    }
    
    .mobile-signin-btn {
        padding: 12px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .main-menu {
        width: 250px;
    }
}


@media (min-width: 769px) and (max-width: 1024px) {
    .hero-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 50px;
    }

    .hero-content {
        flex: 1 1 50%;
        max-width: 48%;
        text-align: left;
        padding-right: 30px;
    }

    .hero-image {
        flex: 1 1 50%;
        max-width: 48%;
        display: flex;
        justify-content: center; 
    }

    .hero-image img {
        width: 100%; 
        height: auto;
        border-radius: 12px;
    }
}

