
        /* --- CSS VARIABLES & GLOBAL STYLES --- */
        :root {
            /* YOUR REQUESTED COLOR PALETTE */
            --v-primary-dark: #112955; /* Replaces black/dark text */
            --v-accent-green: #90C231; /* Replaces orange/red */
            /* Dynamic spacing helpers for mobile header */
            --et-topbar-height: 0px;
            
            /* Supporting colors based on the palette */
            --v-light-green-bg: #f4f9ec; 
            --v-dark-blue-bg: #0a1a36;
            --v-gray-bg: #f1f2f6;
            --v-white: #ffffff;
        }

html {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--v-primary-dark);
    background-color: var(--v-white);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    transition: padding-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Fix overflow on iPhone and mobile devices - Safari specific fixes */
@media screen and (max-width: 768px) {
    html {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative !important;
        -webkit-overflow-scrolling: touch;
        /* Safari specific */
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative !important;
        -webkit-overflow-scrolling: touch;
        /* Safari specific fixes */
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    /* Fix for Safari viewport units and prevent bounce */
    @supports (-webkit-touch-callout: none) {
        html {
            height: -webkit-fill-available;
        }
        
        body {
            min-height: -webkit-fill-available;
            /* Prevent Safari pull-to-refresh bounce */
            overscroll-behavior-y: contain;
        }
    }
    
    /* Prevent horizontal scroll on Safari */
    @supports (-webkit-touch-callout: none) {
        * {
            max-width: 100vw;
        }
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    *:not(html):not(body) {
        overflow-x: hidden;
    }
    
    .container, .container-fluid {
        overflow-x: hidden !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
    }
    
    /* Prevent any element from causing horizontal scroll */
    img, video, iframe, embed, object {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Fix swipers and carousels */
    .swiper, .swiper-wrapper, .swiper-slide {
        max-width: 100% !important;
        overflow: hidden !important;
        width: 100% !important;
    }
    
    /* Fix tables */
    table {
        width: 100% !important;
        display: block !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Fix navbar */
    .et-navbar, .navbar {
        overflow-x: hidden !important;
        max-width: 100% !important;
    }
    
    /* Fix header */
    .et-header, header {
        overflow-x: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

        /* --- CONTAINER CUSTOM SPACING --- */
        .container {
            max-width: 1250px !important;
            padding-left: 15px !important;
            padding-right: 15px !important;
        }
        
        @media (min-width: 1400px) {
            .container {
                max-width: 1300px !important;
            }
        }

        /* --- TYPOGRAPHY & UTILITIES --- */
        h1, h2, h3, h4, h5, h6 { font-weight: 700; }
        .text-accent { color: var(--v-accent-green) !important; }
        .text-primary-dark { color: var(--v-primary-dark) !important; }
        .bg-accent { background-color: var(--v-accent-green) !important; }
        .bg-primary-dark { background-color: var(--v-primary-dark) !important; }
        .bg-light-green { background-color: var(--v-light-green-bg) !important; }
        
        .fw-800 { font-weight: 800; }
        .fs-7 { font-size: 0.9rem; }
        .rounded-4 { border-radius: 1rem !important; }
        .rounded-5 { border-radius: 1.5rem !important; }
        .rounded-xl { border-radius: 24px !important; }

        /* Custom Underline Style */
        .accent-underline {
            position: relative;
            z-index: 1;
        }
        .accent-underline::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 0;
            width: 100%;
            height: 8px;
            background-color: var(--v-accent-green);
            opacity: 0.3;
            z-index: -1;
            border-radius: 4px;
        }

        /* --- BUTTONS --- */
        .btn-accent {
            background-color: var(--v-accent-green);
            color: white;
            font-weight: 600;
            border-radius: 50px;
            padding: 10px 30px;
            border: none;
            transition: 0.3s;
        }
        .btn-accent:hover { background-color: #7da828; color: white; }
        
        .btn-outline-accent {
            border: 2px solid var(--v-accent-green);
            color: var(--v-accent-green);
            font-weight: 600;
            border-radius: 50px;
            padding: 8px 24px;
            background: transparent;
        }
        .btn-outline-accent:hover { background-color: var(--v-accent-green); color: white; }

        .btn-dark-custom {
            background-color: var(--v-primary-dark);
            color: white;
            border-radius: 50px;
        }
        .btn-dark-custom:hover { background-color: #1c3d7a; color: white;}

        /* --- NAVBAR --- */
        .navbar { padding: 15px 0; box-shadow: 0 2px 15px rgba(0,0,0,0.05); background: white;}
        .nav-link { color: var(--v-primary-dark); font-weight: 600; font-size: 0.95rem; }
        .navbar-brand img { height: 55px; } /* Placeholder for logo size */

        /* --- HERO CAROUSEL --- */
        .hero-carousel-wrapper {
            padding: 20px 0;
        }
        #heroCarousel {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        #heroCarousel .carousel-item {
            background-color: var(--v-primary-dark);
        }
        #heroCarousel .carousel-item {
            position: relative;
            min-height: 450px;
        }
        .hero-banner-content {
            padding: 45px 40px 15px 40px;
            min-height: 450px;
            display: flex;
            align-items: flex-start;
            position: relative;
        }
        .hero-text-content {
            color: white;
            animation: fadeInLeft 0.8s ease-out;
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 100%;
        }
        .hero-title {
            font-size: 2.3rem;
            font-weight: 800;
            color: white;
            margin-bottom: 18px;
            line-height: 1.2;
            animation: fadeInUp 0.8s ease-out 0.2s both;
            word-wrap: break-word;
            max-width: 100%;
        }
        /* Ensure title wraps on second banner */
        .carousel-item:nth-child(2) .hero-title {
            max-width: 90%;
        }
        .hero-description {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
            line-height: 1.6;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }
        .hero-stats {
            display: flex;
            gap: 25px;
            margin-bottom: 25px;
            padding: 15px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            animation: fadeInUp 0.8s ease-out 0.5s both;
        }
        .hero-stat-item {
            text-align: left;
        }
        .stat-number {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--v-accent-green);
            line-height: 1;
            margin-bottom: 4px;
        }
        .stat-label {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        /* Green Banner (Second) - White Text */
        .hero-text-white .hero-title,
        .hero-text-white .hero-description {
            color: white;
        }
        .hero-stats-green {
            border-top-color: rgba(255, 255, 255, 0.3);
            border-bottom-color: rgba(255, 255, 255, 0.3);
        }
        .stat-number-white {
            color: white !important;
        }
        .stat-label-white {
            color: rgba(255, 255, 255, 0.9) !important;
        }
        .btn-hero-white {
            background: white !important;
            color: #6D9223 !important;
        }
        .btn-hero-white:hover {
            background: rgba(255, 255, 255, 0.9) !important;
            color: #6D9223 !important;
        }
        /* Yellow Banner (Third) - Dark Text */
        .hero-text-dark .hero-title,
        .hero-title-dark {
            color: var(--v-primary-dark) !important;
        }
        .hero-description-dark {
            color: rgba(17, 41, 85, 0.8) !important;
        }
        .hero-stats-yellow {
            border-top-color: rgba(17, 41, 85, 0.2);
            border-bottom-color: rgba(17, 41, 85, 0.2);
        }
        .stat-number-dark {
            color: var(--v-primary-dark) !important;
        }
        .stat-label-dark {
            color: rgba(17, 41, 85, 0.7) !important;
        }
        .btn-hero-dark {
            background: var(--v-primary-dark) !important;
            color: white !important;
        }
        .btn-hero-dark:hover {
            background: #1c3d7a !important;
            color: white !important;
        }
        .btn-hero-primary {
            background: var(--v-accent-green);
            color: white;
            padding: 14px 35px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 50px;
            border: none;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
            animation: fadeInUp 0.8s ease-out 0.6s both;
            box-shadow: 0 4px 15px rgba(144, 194, 49, 0.3);
        }
        .btn-hero-primary:hover {
            background: #7da828;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(144, 194, 49, 0.4);
        }
        .btn-hero-primary i {
            transition: transform 0.3s ease;
        }
        .btn-hero-primary:hover i {
            transform: translateX(5px);
        }
        .hero-image-wrapper {
            position: absolute;
            bottom: 0;
            right: 40px;
            text-align: right;
            animation: fadeInRight 0.8s ease-out;
            z-index: 1;
        }
        .hero-banner-img {
            max-width: 100%;
            height: auto;
            max-height: 380px;
            width: auto;
            object-fit: contain;
            display: block;
        }
        /* Carousel Indicators */
        #heroCarousel .carousel-indicators {
            margin-bottom: 20px;
        }
        #heroCarousel .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            border: 2px solid rgba(255, 255, 255, 0.8);
            margin: 0 5px;
        }
        #heroCarousel .carousel-indicators button.active {
            background-color: white;
            border-color: white;
        }
        /* Animations */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* Responsive */
        @media (max-width: 991px) {
            #heroCarousel .carousel-item {
                min-height: 450px;
            }
            .hero-banner-content {
                padding: 40px 30px 20px 30px;
                min-height: 450px;
            }
            .hero-title {
                font-size: 2rem;
            }
            .hero-description {
                font-size: 1rem;
                margin-bottom: 20px;
            }
            .hero-stats {
                gap: 20px;
                margin-bottom: 25px;
                padding: 15px 0;
            }
            .stat-number {
                font-size: 1.5rem;
            }
            .stat-label {
                font-size: 0.75rem;
            }
            .hero-image-wrapper {
                position: absolute;
                right: auto;
                bottom: 0;
                left: 0;
                text-align: center;
                margin-top: 0;
                width: 100%;
            }
            .hero-banner-img {
                max-height: 280px;
                width: auto;
                height: auto;
                object-fit: contain;
            }
        }
        @media (max-width: 767px) {
            .hero-banner-content {
                padding: 30px 20px 0 20px;
            }
            .hero-title {
                font-size: 1.75rem;
            }
            .hero-description {
                font-size: 0.95rem;
                margin-bottom: 25px;
            }
            .btn-hero-primary {
                padding: 12px 28px;
                font-size: 0.95rem;
            }
            .hero-image-wrapper {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                width: 100%;
                margin-top: 0;
            }
            .hero-banner-img {
                max-height: 250px;
                width: auto;
                height: auto;
                object-fit: contain;
            }
        }

        /* --- POPULAR COURSES SECTION (Under Banner) --- */
        .category-section {
            margin-top: 20px;
            position: relative;
            z-index: 10;
        }
        .popular-courses-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--v-primary-dark);
            margin-bottom: 20px;
        }
        .popular-course-card {
            background: white;
            border-radius: 16px;
            padding: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            border: 1px solid #eee;
            text-align: center;
            transition: 0.3s;
            cursor: pointer;
            position: relative;
            min-height: 120px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
        .popular-course-card:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
            transform: translateY(-3px);
        }
        .popular-course-card.card-color-1:hover,
        .popular-course-card.card-color-2:hover,
        .popular-course-card.card-color-3:hover,
        .popular-course-card.card-color-4:hover,
        .popular-course-card.card-color-5:hover,
        .popular-course-card.card-color-6:hover,
        .popular-course-card.card-color-7:hover {
            box-shadow: 0 12px 35px rgba(0,0,0,0.2);
            transform: translateY(-5px);
        }
        .popular-course-card > i:first-child {
            color: var(--v-accent-green);
            font-size: 2rem;
            margin-bottom: 10px;
        }
        .popular-course-card h6 {
            color: var(--v-primary-dark);
            font-weight: 600;
            font-size: 0.9rem;
            line-height: 1.3;
            margin-bottom: 10px;
        }
        .popular-course-card > i:last-child {
            color: var(--v-accent-green);
            font-size: 1rem;
            margin-top: auto;
        }
        /* Color variants for popular course cards - Light decent colors */
        .popular-course-card.card-color-1 {
            background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
            border-color: #90CAF9;
        }
        .popular-course-card.card-color-1 > i:first-child,
        .popular-course-card.card-color-1 > i:last-child {
            color: #1976D2;
        }
        .popular-course-card.card-color-1 h6 {
            color: var(--v-primary-dark);
        }
        .popular-course-card.card-color-2 {
            background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 100%);
            border-color: #CE93D8;
        }
        .popular-course-card.card-color-2 > i:first-child,
        .popular-course-card.card-color-2 > i:last-child {
            color: #7B1FA2;
        }
        .popular-course-card.card-color-2 h6 {
            color: var(--v-primary-dark);
        }
        .popular-course-card.card-color-3 {
            background: linear-gradient(135deg, #E0F2F1 0%, #B2DFDB 100%);
            border-color: #80CBC4;
        }
        .popular-course-card.card-color-3 > i:first-child,
        .popular-course-card.card-color-3 > i:last-child {
            color: #00695C;
        }
        .popular-course-card.card-color-3 h6 {
            color: var(--v-primary-dark);
        }
        .popular-course-card.card-color-4 {
            background: linear-gradient(135deg, #FFEBEE 0%, #FFCDD2 100%);
            border-color: #EF9A9A;
        }
        .popular-course-card.card-color-4 > i:first-child,
        .popular-course-card.card-color-4 > i:last-child {
            color: #C62828;
        }
        .popular-course-card.card-color-4 h6 {
            color: var(--v-primary-dark);
        }
        .popular-course-card.card-color-5 {
            background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
            border-color: #FFB74D;
        }
        .popular-course-card.card-color-5 > i:first-child,
        .popular-course-card.card-color-5 > i:last-child {
            color: #E65100;
        }
        .popular-course-card.card-color-5 h6 {
            color: var(--v-primary-dark);
        }
        .popular-course-card.card-color-6 {
            background: linear-gradient(135deg, #EDE7F6 0%, #D1C4E9 100%);
            border-color: #9575CD;
        }
        .popular-course-card.card-color-6 > i:first-child,
        .popular-course-card.card-color-6 > i:last-child {
            color: #4527A0;
        }
        .popular-course-card.card-color-6 h6 {
            color: var(--v-primary-dark);
        }
        .popular-course-card.card-color-7 {
            background: linear-gradient(135deg, #FFF9C4 0%, #FFF59D 100%);
            border-color: #FFF176;
        }
        .popular-course-card.card-color-7 > i:first-child,
        .popular-course-card.card-color-7 > i:last-child {
            color: #F57F17;
        }
        .popular-course-card.card-color-7 h6 {
            color: var(--v-primary-dark);
        }
        /* Popular Courses Swiper */
        .popular-courses-swiper {
            padding: 0 0 40px 0;
            overflow: hidden;
            width: 100%;
            margin: 0;
            box-sizing: border-box;
        }
        
        @media (max-width: 768px) {
            .popular-courses-swiper {
                overflow-x: hidden;
                width: 100%;
                max-width: 100%;
            }
            
            .popular-courses-swiper .swiper-wrapper {
                overflow: hidden;
            }
            
            section.category-section {
                width: 100%;
                padding: 15px;
                box-sizing: border-box;
            }
        }
        .popular-courses-swiper .swiper-wrapper {
            padding-left: 0;
            padding-right: 0;
        }
        section.category-section{
            width: 85%;
            margin: 0 auto;
            margin-top: 20px;
            background: #fff;
            border-radius: 10px;
            padding-top: 20px;
        }

        section.category-section h3 {
            background: #f4cb47;
            display: inline-block;
            padding: 10px;
            border-radius: 45px;
            font-size: 18px;
        }

        /* Clip only horizontal overflow, allow vertical */
        .category-section {
            overflow-x: hidden;
            overflow-y: visible;
        }
        .popular-courses-swiper .swiper-slide {
            height: auto;
            width: 200px;
        }
        @media (min-width: 576px) {
            .popular-courses-swiper .swiper-slide {
                width: 220px;
            }
        }
        @media (min-width: 768px) {
            .popular-courses-swiper .swiper-slide {
                width: 240px;
            }
        }
        @media (min-width: 992px) {
            .popular-courses-swiper .swiper-slide {
                width: 260px;
            }
        }
        .popular-courses-pagination {
            position: relative;
            margin-top: 20px;
        }
        .popular-courses-pagination .swiper-pagination-bullet {
            width: 8px;
            height: 8px;
            background-color: rgba(17, 41, 85, 0.3);
            opacity: 1;
            margin: 0 4px;
        }
        .popular-courses-pagination .swiper-pagination-bullet-active {
            background-color: var(--v-accent-green);
            width: 8px;
            height: 8px;
        }

        /* --- TABS & SECTION HEADERS --- */
        .tabs-navigation-wrapper {
            position: relative;
        }
        .tabs-swiper {
            position: relative;
            padding: 0 40px;
        }
        .tabs-swiper .swiper-wrapper {
            align-items: center;
            display: flex;
        }
        .tabs-swiper .swiper-slide {
            width: auto !important;
        }
        .tabs-nav-next, .tabs-nav-prev {
            color: var(--v-primary-dark) !important;
            background: white;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            margin-top: 0;
        }
        .tabs-nav-next:after, .tabs-nav-prev:after {
            font-size: 14px;
            font-weight: bold;
        }
        .tabs-nav-next {
            right: 0;
        }
        .tabs-nav-prev {
            left: 0;
        }
        .nav-pills-custom {
            display: flex;
            flex-wrap: wrap;
            white-space: nowrap;
            gap: 10px;
        }
        .nav-pills-custom .nav-link {
            color: var(--v-primary-dark);
            background: white;
            border: 1px solid #eee;
            border-radius: 30px;
            padding: 8px 20px;
            margin-right: 0;
            font-weight: 600;
            white-space: nowrap;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }
        .nav-pills-custom .nav-link:hover {
            background-color: #f8f9fa;
            border-color: var(--v-primary-dark);
        }
        .nav-pills-custom .nav-link.active {
            background-color: var(--v-primary-dark);
            color: white;
            border-color: var(--v-primary-dark);
        }
        
        /* Tech Skills Tabs Horizontal Scroll on Mobile */
        @media (max-width: 991px) {
            .nav-pills-custom {
                display: flex;
                flex-wrap: nowrap;
                overflow-x: auto;
                overflow-y: hidden;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: thin;
                scrollbar-color: var(--v-accent-green) rgba(0, 0, 0, 0.1);
                padding-bottom: 8px;
                margin-bottom: 0;
            }
            
            /* Custom scrollbar for tech skills tabs */
            .nav-pills-custom::-webkit-scrollbar {
                height: 6px;
            }
            
            .nav-pills-custom::-webkit-scrollbar-track {
                background: rgba(0, 0, 0, 0.05);
                border-radius: 10px;
            }
            
            .nav-pills-custom::-webkit-scrollbar-thumb {
                background: var(--v-accent-green);
                border-radius: 10px;
                min-width: 50px;
            }
            
            .nav-pills-custom::-webkit-scrollbar-thumb:hover {
                background: #7da828;
            }
            
            /* Firefox scrollbar */
            .nav-pills-custom {
                scrollbar-width: thin;
                scrollbar-color: var(--v-accent-green) rgba(0, 0, 0, 0.1);
            }
        }
        
        /* FAQ Sidebar Navigation */
        .faq-sidebar {
            background: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 20px;
        }
        
        .faq-nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .faq-nav-item {
            margin-bottom: 8px;
        }
        
        .faq-nav-link {
            display: flex;
            align-items: center;
            padding: 12px 16px;
            color: var(--v-primary-dark);
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 0.95rem;
        }
        
        .faq-nav-link:hover {
            background-color: #f8f9fa;
            color: var(--v-primary-dark);
        }
        
        .faq-nav-item.active .faq-nav-link {
            background-color: #e3f2fd;
            color: var(--v-primary-dark);
            font-weight: 600;
        }
        
        .faq-nav-link i.fa-info-circle {
            font-size: 1.1rem;
            margin-right: 10px;
            color: var(--v-accent-green);
        }
        
        .faq-nav-link i.fa-chevron-right {
            margin-left: auto;
            font-size: 0.8rem;
            opacity: 0.6;
        }
        
        /* FAQ Content Area */
        .faq-content {
            min-height: 400px;
        }
        
        .faq-category-section {
            display: none;
        }
        
        .faq-category-section.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .faq-category-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--v-primary-dark);
            margin-bottom: 30px;
        }
        
        /* FAQ Item Cards */
        .faq-item-card {
            background: white;
            border-radius: 12px;
            margin-bottom: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item-card:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .faq-item-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            cursor: pointer;
            background: white;
            border: none;
            width: 100%;
            text-align: left;
        }
        
        .faq-question {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--v-primary-dark);
            margin: 0;
            flex: 1;
            padding-right: 20px;
        }
        
        .faq-toggle-icon {
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f0f4f8;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .faq-item-header:hover .faq-toggle-icon {
            background: var(--v-accent-green);
        }
        
        .faq-toggle-icon i {
            color: var(--v-primary-dark);
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .faq-item-header:hover .faq-toggle-icon i {
            color: white;
        }
        
        .faq-item-content {
            border-top: 1px solid #f0f0f0;
        }
        
        .faq-answer {
            padding: 20px 24px;
            color: #555;
            line-height: 1.8;
            font-size: 0.95rem;
        }
        
        @media (max-width: 991px) {
            .faq-sidebar {
                position: relative;
                top: 0;
                margin-bottom: 30px;
            }
            
            .faq-nav-link {
                font-size: 0.9rem;
                padding: 10px 14px;
            }
        }
        .section-title { font-size: 2rem; margin-bottom: 30px; }

        /* --- STUDY MATERIALS & KIDS COURSES CARDS --- */
        .material-card {
            border-radius: 24px; padding: 30px 20px 0 20px; height: 280px;
            position: relative; overflow: hidden;
            display: flex; flex-direction: column;
        }
        .material-card h5 { font-weight: 700; margin-bottom: 20px; z-index: 2; position: relative;}
        /* Circular bottom image container */
        .material-img-container {
            position: absolute; bottom: -50px; left: 50%; transform: translateX(-50%);
            width: 200px; height: 200px; background: rgba(255,255,255,0.3);
            border-radius: 50%; display: flex; justify-content: center; align-items: flex-start;
            padding-top: 30px;
        }
        .material-img-container img { width: 120px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

        /* Kids specific colored backgrounds */
        .bg-kid-orange { background-color: #ffece3; }
        .bg-kid-yellow { background-color: #fff9d6; }
        .bg-kid-blue { background-color: #e6f2ff; }
        .bg-kid-purple { background-color: #f3e6ff; }
        .kid-course-card {
            border-radius: 24px; padding: 25px; height: 100%;
            display: flex; flex-direction: column; justify-content: space-between;
            align-items: flex-start;
        }
        .kid-icon { width: 50px; height: 50px; margin-bottom: 15px; }

        /* --- EXPLORE COURSES SECTION --- */
        .explore-course-card img {
            border-radius: 15px;
        }
        .explore-course-card {
            border-radius: 24px; overflow: hidden; position: relative; height: 420px;
            padding: 30px; display: flex; flex-direction: column;
        }
        .bg-explore-blue { background-color: #dcecff; }
        .bg-explore-purple { background-color: #f0e7ff; }
        .bg-explore-cream { background-color: #fff6e5; }
        .explore-course-card .card-content-z {
            position: relative; z-index: 2;
            display: flex;
            flex-direction: column;
            height: 100%;
            justify-content: space-between;
        }
        .explore-course-card .card-content-z > div:first-of-type {
            flex-grow: 1;
        }
        .explore-course-card .card-content-z .btn {
            margin-top: auto;
        }
        .btn-explore-courses {
            background-color: var(--v-primary-dark);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 6px 16px;
            font-size: 0.75rem;
            font-weight: 600;
            transition: all 0.3s ease;
            width: auto;
            display: inline-block;
            align-self: flex-start;
        }
        .btn-explore-courses:hover {
            background-color: #1c3d7a;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(17, 41, 85, 0.3);
        }
        .explore-tag-badge {
            display: inline-block;
            background: white;
            color: var(--v-primary-dark);
            border: 1px solid var(--v-accent-green);
            border-radius: 20px;
            padding: 6px 12px;
            font-size: 0.75rem;
            font-weight: 600;
            margin: 4px 4px 4px 0;
            white-space: nowrap;
        }
        .capsule-btn {
            background: white;
            color: var(--v-primary-dark);
            border: 1px solid rgba(17, 41, 85, 0.2);
            border-radius: 20px;
            padding: 5px 14px;
            font-size: 0.75rem;
            font-weight: 500;
            white-space: nowrap;
            transition: all 0.3s ease;
        }
        .capsule-btn:hover {
            background: var(--v-accent-green);
            color: white;
            border-color: var(--v-accent-green);
        }
        .explore-overlap-img {
            position: absolute;
             bottom: 0;
              right: 0;
               z-index: 1;
               width: 100%;
        }
        @media (max-width: 991px) {
            .explore-overlap-img {
                height: 220px;
                object-fit: cover;
                width: 100%;
            }
        }
        @media (max-width: 767px) {
            .explore-overlap-img {
                height: 200px;
                object-fit: cover;
                width: 100%;
            }
        }

        /* --- EXPLORE COURSES (TEACHERS) --- */
        .teacher-course-card {
            border-radius: 24px; overflow: hidden; position: relative; height: 380px;
            padding: 30px; display: flex; flex-direction: column;
        }
        .bg-tea-blue { background-color: #dcecff; }
        .bg-tea-purple { background-color: #f0e7ff; }
        .bg-tea-cream { background-color: #fff6e5; }
        .teacher-overlap-img {
            position: absolute; bottom: 0; right: 0; height: 250px; z-index: 1;
        }
        .card-content-z { position: relative; z-index: 2; }
        .tag-badge { background: white; padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; display: inline-block; margin: 2px; box-shadow: 0 2px 5px rgba(0,0,0,0.05);}

        /* --- WHAT'S NEW BANNERS --- */
        .new-banner-card img {
            width: 39%;
            position: absolute;
            right: 0;
            bottom: 0;
            border-radius: 25px;
        }
        .new-banner-card {
            border-radius: 24px; padding: 40px; color: white; min-height: 350px;
            position: relative; overflow: hidden;
            /* Using gradients combining the dark blue and green */
            background: #fff;
        }
        .new-banner-img { position: absolute; bottom: 0; right: 20px; height: 280px; }
        
        /* One-to-One Section Mobile Fixes */
        @media (max-width: 991px) {
            .new-banner-card {
                display: flex;
                flex-direction: column;
                padding: 25px;
                min-height: auto;
            }
            .new-banner-card img,
            .new-banner-img {
                position: relative !important;
                width: 100% !important;
                height: auto !important;
                max-height: 300px;
                object-fit: contain;
                border-radius: 15px;
                margin-top: 20px;
                right: auto !important;
                bottom: auto !important;
            }
            .new-banner-card > div[style*="position: relative"] {
                max-width: 100% !important;
            }
        }
        .new-banner-list li { margin-bottom: 10px; display: flex; align-items: center; }
        .new-banner-list i { margin-right: 10px; color: var(--v-accent-green); background: white; padding: 5px; border-radius: 50%; font-size: 0.8rem;}

        /* --- TESTIMONIALS & SWIPERS --- */
        .video-testimonial-card {
            border-radius: 24px; overflow: hidden; position: relative;
            background: var(--v-gray-bg); padding: 40px;
        }
        .video-thumb-large { border-radius: 20px; overflow: hidden; position: relative; }
        .play-btn-overlay {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
            width: 60px; height: 60px; background: white; border-radius: 50%;
            display: flex; align-items: center; justify-content: center; color: var(--v-accent-green); font-size: 24px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2); cursor: pointer;
        }
        
        .review-card {
            background: var(--v-gray-bg); border-radius: 16px; padding: 20px; height: 100%;
        }

        /* --- STUDENT INSPIRED (RESULTS SWIPER) --- */
        /* Offerings Results Swiper */
        .offerings-results-swiper .swiper-slide {
            width: 100% !important;
            max-width: 100% !important;
        }
        /* .result-banner-slide {
            width: 100%;
            background: linear-gradient(90deg, var(--v-primary-dark), #2a4d8a);
            border-radius: 24px; padding: 40px; color: white; display: flex;
        } */
        .rank-stat-box {
            background: var(--v-accent-green); width: 180px; height: 180px;
            border-radius: 50%; display: flex; flex-direction: column;
            justify-content: center; align-items: center; text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2); color: var(--v-primary-dark);
        }
        .rank-profile-img { width: 70px; height: 70px; border-radius: 50%; border: 3px solid white; object-fit: cover;}
        
        /* --- BLOG SWIPER --- */
        .blog-swiper {
            padding-bottom: 50px;
        }
        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        .blog-card-image {
            position: relative;
            width: 100%;
            height: 220px;
            overflow: hidden;
        }
        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .blog-card:hover .blog-card-image img {
            transform: scale(1.05);
        }
        .blog-card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
        }
        .blog-card-content {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .blog-card-badge {
            display: inline-block;
            background: var(--v-accent-green);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 12px;
            width: fit-content;
        }
        .blog-card-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--v-primary-dark);
            margin-bottom: 10px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .blog-card-excerpt {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .blog-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            padding-top: 15px;
            border-top: 1px solid #f0f0f0;
        }
        .blog-card-date {
            font-size: 0.8rem;
            color: #999;
        }
        .blog-card-link {
            color: var(--v-accent-green);
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .blog-card-link:hover {
            color: var(--v-primary-dark);
            transform: translateX(3px);
        }
        .blog-card-link i {
            transition: transform 0.3s ease;
        }
        .blog-card-link:hover i {
            transform: translateX(3px);
        }

        /* --- TUTORING CARDS --- */
        .tutor-card {
            border: 1px solid #eee; border-radius: 16px; padding: 25px; height: 100%;
            display: flex; flex-direction: column; justify-content: space-between;
            transition: 0.3s;
        }
        /* Override height for blog single page sidebar cards */
        .col-lg-4 .tutor-card {
            height: auto !important;
            min-height: auto !important;
        }
        
        /* Keep height: 100% for tutor cards in grid layouts (courses, etc.) */
        .row.g-4 .tutor-card,
        .row.g-3 .tutor-card,
        .row.g-2 .tutor-card {
            height: 100%;
        }
        .tutor-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); border-color: transparent; }
        .tutor-card .btn.btn-tutor-card,
        .tutor-card button.btn-tutor-card {
            background-color: #112955 !important;
            color: white !important;
            border: none !important;
            border-radius: 8px !important;
            transition: all 0.3s ease;
        }
        .tutor-card .btn.btn-tutor-card:hover,
        .tutor-card button.btn-tutor-card:hover {
            background-color: #1c3d7a !important;
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(17, 41, 85, 0.3);
        }

        /* --- SWIPER NAVIGATION STYLES --- */
        .swiper-button-next, .swiper-button-prev {
            color: var(--v-primary-dark) !important;
            background: white; width: 40px; height: 40px; border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .swiper-button-next:after, .swiper-button-prev:after { font-size: 18px; font-weight: bold; }
        .swiper-pagination-bullet-active { background: var(--v-accent-green) !important; }

        /* --- FOOTER --- */
        footer { background: var(--v-gray-bg); padding: 60px 0 20px; }
        footer h6 { color: var(--v-primary-dark); margin-bottom: 20px; }
        footer ul li { margin-bottom: 10px; }
        footer ul li a { color: #666; text-decoration: none; }
        footer ul li a:hover { color: var(--v-accent-green); }
        .footer-social-icons {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-social-icons a {
            color: #666;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
        .footer-social-icons a:hover {
            color: white;
            background-color: var(--v-primary-dark);
            transform: translateY(-2px);
        }


/* ===== E-TUITIONS TOPBAR ===== */
.et-topbar {
    background: var(--v-primary-dark);
    color: white;
    padding: 6px 0;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1002;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.et-topbar .container {
    max-width: 1250px !important;
    padding: 0 15px !important;
    margin: 0 auto;
}

.et-topbar .row {
    margin: 0;
    align-items: center;
    min-height: 24px;
}

/* Desktop topbar layout: Left (contact), Center (news), Right (social) */
.et-topbar-left-col {
    display: block;
}

.et-topbar-news-col {
    display: block;
    text-align: center;
}

.et-topbar-social-col {
    display: block;
    text-align: right;
}

.et-topbar-left {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.et-topbar-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
    white-space: nowrap;
    font-size: 11px;
}

.et-topbar-link:hover {
    color: var(--v-accent-green);
}

.et-topbar-link i {
    font-size: 10px;
}

.et-topbar-news {
    text-align: center;
    height: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.et-news-swiper {
    height: 100%;
}

.et-news-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.et-news-swiper p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    line-height: 20px;
    max-width: 100%;
    box-sizing: border-box;
}

.et-topbar-social {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.et-topbar-social a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    transition: color 0.3s;
}

.et-topbar-social a:hover {
    color: var(--v-accent-green);
}

/* ===== E-TUITIONS HEADER ===== */
.et-header {
    background: white;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1001;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.et-header.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

/* Disable sticky header on mobile */
@media (max-width: 991px) {
    .et-header.sticky-header {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        animation: none !important;
        transform: none !important;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.et-header .container {
    max-width: 1250px !important;
    padding: 0 15px !important;
    margin: 0 auto;
}

.et-navbar {
    padding: 0 !important;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.et-navbar .navbar-brand {
    margin-right: 20px;
    flex-shrink: 0;
}

/* Logo */
.et-brand {
    padding: 0;
    margin: 0;
    margin-right: 20px;
}

.et-logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--v-primary-dark);
}

.et-logo img {
    max-height: 55px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.et-logo-text {
    color: var(--v-primary-dark);
}

.et-logo-accent {
    color: var(--v-accent-green);
}

/* Navigation Center */
.et-nav-center {
    gap: 3px;
    display: flex;
    align-items: center;
}

.et-nav-link {
    color: var(--v-primary-dark) !important;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 10px !important;
    transition: color 0.3s;
    text-transform: none;
    letter-spacing: normal;
}

.et-nav-link:hover,
.et-nav-link:focus {
    color: var(--v-accent-green) !important;
}

.et-nav-link.dropdown-toggle::after {
    margin-left: 4px;
    vertical-align: middle;
    border-top-color: var(--v-primary-dark);
}

.et-nav-link:hover.dropdown-toggle::after {
    border-top-color: var(--v-accent-green);
}

/* Dropdown Menu */
.et-dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 8px 0;
    min-width: 220px;
    border-top: 2px solid var(--v-accent-green);
    max-height: 400px;
    overflow-y: auto;
}

/* Custom Scrollbar for Dropdown */
.et-dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.et-dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.et-dropdown-menu::-webkit-scrollbar-thumb {
    background: #90C231;
    border-radius: 3px;
}

.et-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #7da828;
}

/* Firefox scrollbar */
.et-dropdown-menu {
    scrollbar-width: thin;
    scrollbar-color: #90C231 #f1f1f1;
}

.et-dropdown-menu .dropdown-item {
    padding: 6px 16px;
    font-size: 13px;
    color: var(--v-primary-dark);
    transition: all 0.2s;
    line-height: 1.4;
}

.et-dropdown-menu .dropdown-item:hover {
    background-color: rgba(144, 194, 49, 0.1);
    color: var(--v-accent-green);
}

.et-dropdown-menu .dropdown-header {
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--v-primary-dark);
    text-transform: uppercase;
    margin-top: 5px;
    margin-bottom: 3px;
}

.et-dropdown-menu .dropdown-divider {
    margin: 5px 0;
    border-top-color: rgba(0, 0, 0, 0.08);
}

/* Right Side Actions */
.et-nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    white-space: nowrap;
}

.et-btn-teacher,
.et-btn-student,
.et-btn-login {
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 4px;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.et-btn-teacher {
    color: white;
    background: #112955;
}

.et-btn-teacher:hover {
    background: #1c3d7a;
    color: white;
}

.et-btn-student {
    color: #1c3d7a;
    background: #EBCC47;
}

.et-btn-student:hover {
    background: #6d9223;
    color: #112955;
}

.et-btn-login {
    color: #112955;
    background: transparent;
    border: 1px solid #112955;
}

.et-btn-login:hover {
    background: #112955;
    color: white;
}

/* Mobile Toggle Button */
.et-toggler {
    border: none;
    padding: 5px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--v-accent-green);
    border-radius: 4px;
    margin-left: auto;
}

.et-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 18px;
    height: 18px;
}

/* Hide mobile menu close button on desktop - Always hidden unless on mobile */
.et-menu-close {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Mobile Overlay */
.et-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1090;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.et-mobile-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1199px) {
    .et-nav-center {
        gap: 3px;
    }
    
    .et-nav-link {
        font-size: 13px;
        padding: 8px 8px !important;
    }
    
    .et-nav-right {
        gap: 8px;
    }
    
    .et-btn-teacher,
    .et-btn-student,
    .et-btn-login {
        padding: 6px 10px;
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    body {
        padding-top: var(--et-topbar-height, 0px);
    }
    
    .et-topbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1200;
        padding: 5px 0;
        font-size: 11px;
        width: 100vw;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .et-topbar .container {
        max-width: 100% !important;
        padding: 0 12px !important;
        width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .et-topbar .row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 10px;
        min-height: 26px;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Hide contact/email and social on mobile, show only news */
    .et-topbar-left-col {
        display: none !important;
    }
    
    .et-topbar-news-col {
        display: block !important;
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        text-align: center;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .et-topbar-social-col {
        display: none !important;
    }
    
    .et-topbar-news {
        display: flex !important;
        justify-content: center;
        width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .et-news-swiper {
        width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .et-news-swiper p {
        font-size: 11px;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        box-sizing: border-box;
    }
    
    /* Completely disable overlay on mobile - never show it */
    .et-mobile-overlay {
        display: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
        visibility: hidden !important;
    }
    .et-mobile-overlay.active {
        display: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
        visibility: hidden !important;
    }
    
    /* Ensure header comes after topbar on mobile */
    .et-topbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1200;
        width: 100vw;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .et-header {
        position: relative;
        margin-top: 0;
        padding-top: 0;
        z-index: 1001;
        width: 100%;
        overflow-x: hidden;
        clear: both;
        /* Will be set by JavaScript based on topbar height */
        /* Add minimum margin to ensure it's below topbar */
        min-height: 60px;
    }
    
    /* Ensure header has proper spacing on all mobile devices */
    @media (max-width: 991px) {
        .et-header {
            margin-top: 35px !important; /* Default fallback, JS will override */
        }
    }
    
    /* Calculate topbar height dynamically and push header down */
    body {
        padding-top: 0;
    }
    
    /* Push header content below topbar */
    .et-header .container {
        margin-top: 0;
    }
    
    .et-navbar {
        margin-top: 0;
    }
    
    /* Mobile menu canvas - professional styling for iPhone */
    .et-navbar .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        height: -webkit-fill-available; /* Safari fix */
        background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
        box-shadow: 4px 0 30px rgba(0, 0, 0, 0.2);
        z-index: 1300;
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0;
        overflow-y: auto;
        overflow-x: hidden;
        margin: 0;
        -webkit-overflow-scrolling: touch;
        /* Professional backdrop blur effect for iOS */
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
    
    .et-navbar .navbar-collapse.show {
        left: 0;
    }
    
    @media (max-width: 991px) {
        /* Mobile Menu Close Button - Only show on mobile */
        .et-menu-close {
            display: flex !important;
            visibility: visible !important;
            opacity: 1 !important;
            pointer-events: auto !important;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--v-accent-green) 0%, #7da828 100%) !important;
            color: white !important;
            border: none !important;
            border-radius: 50% !important;
            cursor: pointer !important;
            z-index: 1400 !important;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(144, 194, 49, 0.3) !important;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
        
        .et-menu-close:hover,
        .et-menu-close:active {
            background: linear-gradient(135deg, #7da828 0%, var(--v-accent-green) 100%) !important;
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(144, 194, 49, 0.4) !important;
        }
        
        .et-menu-close:focus {
            outline: 2px solid var(--v-accent-green);
            outline-offset: 2px;
        }
        
        .et-menu-close:hover {
            background: #7da828;
            transform: rotate(90deg) scale(1.1);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }
        
        .et-menu-close:active {
            transform: rotate(90deg) scale(0.95);
        }
        
        .et-menu-close i {
            font-size: 14px;
            transition: transform 0.3s ease;
        }
        
        .et-navbar .navbar-collapse {
            padding-top: 70px;
            padding-left: 0;
            padding-right: 0;
            padding-bottom: 30px;
        }
        
        /* Professional menu close button for iPhone */
        .et-menu-close {
            background: linear-gradient(135deg, var(--v-accent-green) 0%, #7da828 100%) !important;
            box-shadow: 0 4px 12px rgba(144, 194, 49, 0.3) !important;
            width: 40px !important;
            height: 40px !important;
            top: 15px !important;
            right: 15px !important;
        }
        
        .et-menu-close i {
            font-size: 16px !important;
        }
    }
    
    .et-nav-center {
        flex-direction: column;
        gap: 0;
        width: 100%;
        align-items: stretch;
        padding: 0 20px;
    }
    
    .et-nav-item {
        width: 100%;
        margin: 0;
    }
    
    .et-nav-link {
        padding: 16px 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 16px;
        font-weight: 600;
        color: var(--v-primary-dark) !important;
        transition: all 0.3s ease;
    }
    
    .et-nav-link:active {
        background: rgba(17, 41, 85, 0.05);
        padding-left: 10px !important;
    }
    
    .et-dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        margin: 5px 0 !important;
        box-shadow: none !important;
        border: 1px solid rgba(0, 0, 0, 0.05) !important;
        max-height: none !important;
        overflow-y: visible !important;
        padding: 6px 0 10px !important;
        background: #f9fafb !important;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
    
    .et-dropdown-menu.show {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .dropdown-submenu {
        position: relative;
    }
    
    .dropdown-submenu .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        margin: 5px 0 !important;
        box-shadow: none !important;
        border: 1px solid rgba(0, 0, 0, 0.05) !important;
        max-height: none !important;
        overflow-y: visible !important;
        padding: 6px 0 10px 20px !important;
        background: #f0f0f0 !important;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
    
    .dropdown-submenu .dropdown-menu.show {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .et-dropdown-menu .dropdown-item {
        font-size: 14px;
        font-weight: 500;
    }
    
    .et-nav-right {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .et-btn-teacher,
    .et-btn-student,
    .et-btn-login {
        width: 100%;
        text-align: center;
        padding: 10px;
    }
    
    .et-topbar-left {
        flex-direction: row;
        gap: 10px;
    }
    
    .et-topbar-social {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .et-topbar {
        font-size: 10px;
        padding: 5px 0;
    }
    
    .et-topbar-link span {
        font-size: 10px;
    }
    
    .et-topbar-link i {
        font-size: 9px;
    }
    
    .et-logo {
        font-size: 18px;
    }
    
    .et-topbar-social a {
        font-size: 11px;
    }
    
    .et-header {
        height: 56px;
    }
    
    .et-navbar {
        min-height: 56px;
    }
    
    .et-topbar .row {
        min-height: 20px;
    }
}


/* ===== ADJUSTMENTS FOR EXISTING CONTENT ===== */
/* Hide old navbar if it exists */
.navbar.fixed-top {
    display: none !important;
}

/* Adjust space after new header */
.hero-carousel-wrapper {
    margin-top: 0;
    position: relative;
    z-index: 1;
}

/* Adjust popular courses section */
.category-section {
    margin-top: 20px;
}

/* Ensure container consistency */
.et-header .container,
.et-topbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* Fix navbar alignment - match home page structure exactly */
@media (min-width: 992px) {
    .et-navbar .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        flex-grow: 1;
        align-items: center;
        justify-content: space-between;
    }
    
    .et-nav-center {
        margin: 0 auto;
    }
    
    .et-nav-right {
        margin-left: auto;
    }
}

/* Reduce bottom spacing on inner pages */
section:last-of-type {
    margin-bottom: 0 !important;
    padding-bottom: 0.5rem !important;
}

/* Specific fix for blog single page */
.blog-content {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Remove extra spacing from blog single page sections */
section:last-of-type .blog-content {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

body {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Remove extra spacing from footer on inner pages */
footer {
    margin-top: 0 !important;
    padding-top: 3rem !important;
}

/* Fix dropdown arrow alignment */
.et-nav-link.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

/* Initialize news swiper */
.et-news-swiper {
    height: 100%;
}

.et-news-swiper .swiper-wrapper {
    align-items: center;
}

/* ===== OLD TECH SKILLS CARDS CSS - COMMENTED OUT =====
section:has(#tech-skills-tabContent) {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

#tech-skills-tabContent {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}
===== END OLD TECH SKILLS CSS ===== */

/* ===== OLD TECH SKILLS CSS - COMMENTED OUT =====
.tech-skills-swiper-wrapper {
    position: relative;
    padding: 20px 50px 60px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.tech-skills-swiper {
    overflow: hidden !important;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    max-width: 100%;
}

.tech-skills-swiper .swiper-wrapper {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.tech-skills-swiper .swiper-slide {
    height: auto;
    width: auto;
    max-width: 100%;
}

.tech-skill-card {
    background: white;
    border-radius: 18px;
    padding: 26px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--v-accent-green), var(--v-primary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tech-skill-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--v-accent-green);
}

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

.tech-card-content-wrapper {
    display: flex;
    gap: 22px;
    margin-bottom: 20px;
    flex: 1;
}

.tech-card-left {
    flex: 1;
    min-width: 0;
}

.tech-card-right {
    flex: 0 0 auto;
    width: 185px;
    padding-left: 18px;
    border-left: 1px solid #e8e8e8;
}

.tech-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.tech-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.tech-skill-card:hover .tech-card-icon {
    transform: scale(1.05);
}

.tech-card-badge {
    background: var(--v-light-green-bg);
    color: var(--v-primary-dark);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 600;
    border: 1px solid rgba(144, 194, 49, 0.3);
    white-space: nowrap;
}

.tech-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--v-primary-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.tech-card-description {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0 0 14px 0;
}

.tech-card-meta {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.tech-card-meta span {
    color: #777;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tech-card-meta span i {
    color: var(--v-accent-green);
    font-size: 0.75rem;
}

.tech-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-card-features li {
    color: #555;
    font-size: 0.8rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.4;
}

.tech-card-features li:last-child {
    margin-bottom: 0;
}

.tech-card-features li i {
    color: var(--v-accent-green);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.new-banner-card button.btn.btn-accent{
    background-color: var(--v-dark-blue-bg);
    color: var(--v-white);
}

img.footerLogo {
    max-width: 150px;
    width: auto;
    height: auto;
    max-height: 50px;
}

.btn-tech-card {
    background: var(--v-dark-blue-bg);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: auto;
    margin-top: auto;
    align-self: flex-start;
}

.btn-tech-card:hover {
    background: #7da828;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(144, 194, 49, 0.3);
}

/* Color Variants for Tech Cards */
.tech-card-blue .tech-card-icon {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    color: #1976D2;
}

.tech-card-green .tech-card-icon {
    background: linear-gradient(135deg, #E0F2F1 0%, #B2DFDB 100%);
    color: #00695C;
}

.tech-card-purple .tech-card-icon {
    background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 100%);
    color: #7B1FA2;
}

.tech-card-orange .tech-card-icon {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    color: #E65100;
}

.tech-card-teal .tech-card-icon {
    background: linear-gradient(135deg, #E0F2F1 0%, #B2DFDB 100%);
    color: #00897B;
}

.tech-card-red .tech-card-icon {
    background: linear-gradient(135deg, #FFEBEE 0%, #FFCDD2 100%);
    color: #C62828;
}

.tech-card-pink .tech-card-icon {
    background: linear-gradient(135deg, #FCE4EC 0%, #F8BBD0 100%);
    color: #C2185B;
}

/* Swiper Navigation Buttons */
.tech-skills-nav-next,
.tech-skills-nav-prev {
    color: var(--v-primary-dark) !important;
    background: white !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    margin-top: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    transition: all 0.3s ease !important;
}

.tech-skills-nav-next::after,
.tech-skills-nav-prev::after {
    font-size: 16px !important;
    font-weight: bold !important;
}

.tech-skills-nav-next {
    right: 0 !important;
}

.tech-skills-nav-prev {
    left: 0 !important;
}

.tech-skills-nav-next:hover,
.tech-skills-nav-prev:hover {
    background: var(--v-accent-green) !important;
    color: white !important;
    box-shadow: 0 6px 20px rgba(144, 194, 49, 0.3) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

/* Swiper Pagination */
.tech-skills-pagination {
    position: relative !important;
    margin-top: 30px !important;
    bottom: auto !important;
}

.tech-skills-pagination .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: #ddd !important;
    opacity: 1 !important;
    margin: 0 5px !important;
    transition: all 0.3s ease !important;
}

.tech-skills-pagination .swiper-pagination-bullet-active {
    background: var(--v-accent-green) !important;
    width: 30px !important;
    border-radius: 5px !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .tech-skills-swiper-wrapper {
        padding: 20px 45px 60px;
    }
    
    .tech-skills-nav-next,
    .tech-skills-nav-prev {
        width: 40px !important;
        height: 40px !important;
    }
    
    .tech-skills-nav-next::after,
    .tech-skills-nav-prev::after {
        font-size: 14px !important;
    }
    
    .tech-card-right {
        width: 160px;
    }
}

@media (max-width: 768px) {
    section:has(#tech-skills-tabContent) {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    #tech-skills-tabContent {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .tech-skills-swiper-wrapper {
        padding: 15px 20px 50px;
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .tech-skills-swiper {
        overflow: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .tech-skills-swiper .swiper-wrapper {
        overflow: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .tech-skills-swiper .swiper-slide {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .tech-skill-card {
        padding: 20px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .tech-card-content-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .tech-card-right {
        width: 100%;
        padding-left: 0;
        padding-top: 15px;
        border-left: none;
        border-top: 1px solid #e8e8e8;
    }
    
    .tech-card-icon {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    
    .tech-card-title {
        font-size: 1.1rem;
    }
    
    .tech-card-description {
        font-size: 0.8rem;
    }
    
    .tech-card-meta {
        gap: 12px;
    }
    
    .tech-card-meta span {
        font-size: 0.75rem;
    }
    
    .btn-tech-card {
        width: 100%;
    }
    
    .tech-skills-nav-next,
    .tech-skills-nav-prev {
        width: 36px !important;
        height: 36px !important;
    }
}
===== END OLD TECH SKILLS CSS ===== */

/* ===== NEW TECH SKILLS TABS SECTION - PIXEL PERFECT ===== */
.tech-skills-section {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    position: relative;
}

.tech-skills-tab-content {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 30px 0;
}

.tech-skills-swiper-wrapper-new {
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 50px 60px;
    position: relative;
}

.tech-skills-swiper-new {
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
}

.tech-skills-swiper-new .swiper-wrapper {
    overflow: hidden !important;
    width: 100% !important;
}

.tech-skills-swiper-new .swiper-slide {
    height: auto;
    width: auto;
    max-width: 100%;
}

.tech-skills-nav-next-new,
.tech-skills-nav-prev-new {
    color: var(--v-primary-dark) !important;
    background: white !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    margin-top: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    transition: all 0.3s ease !important;
    z-index: 10;
}

.tech-skills-nav-next-new::after,
.tech-skills-nav-prev-new::after {
    font-size: 16px !important;
    font-weight: bold !important;
}

.tech-skills-nav-next-new {
    right: 0 !important;
}

.tech-skills-nav-prev-new {
    left: 0 !important;
}

.tech-skills-nav-next-new:hover,
.tech-skills-nav-prev-new:hover {
    background: var(--v-accent-green) !important;
    color: white !important;
    box-shadow: 0 6px 20px rgba(144, 194, 49, 0.3) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.tech-skills-pagination-new {
    position: relative !important;
    margin-top: 30px !important;
    bottom: auto !important;
    text-align: center;
}

.tech-skills-pagination-new .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: #ddd !important;
    opacity: 1 !important;
    margin: 0 5px !important;
    transition: all 0.3s ease !important;
}

.tech-skills-pagination-new .swiper-pagination-bullet-active {
    background: var(--v-accent-green) !important;
    width: 30px !important;
    border-radius: 5px !important;
}

.tech-skills-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    padding: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.tech-skill-card-new {
    background: white;
    border-radius: 18px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.tech-skill-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--v-accent-green), var(--v-primary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tech-skill-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--v-accent-green);
}

.tech-skill-card-new:hover::before {
    transform: scaleX(1);
}

.tech-card-content-wrapper-new {
    display: flex;
    gap: 22px;
    margin-bottom: 20px;
    flex: 1;
}

.tech-card-left-new {
    flex: 1;
    min-width: 0;
}

.tech-card-right-new {
    flex: 0 0 auto;
    width: 185px;
    padding-left: 18px;
    border-left: 1px solid #e8e8e8;
}

.tech-card-header-new {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.tech-card-icon-new {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.tech-skill-card-new:hover .tech-card-icon-new {
    transform: scale(1.05);
}

.tech-card-badge-new {
    background: var(--v-light-green-bg);
    color: var(--v-primary-dark);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 600;
    border: 1px solid rgba(144, 194, 49, 0.3);
    white-space: nowrap;
}

.tech-card-title-new {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--v-primary-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.tech-card-description-new {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0 0 14px 0;
}

.tech-card-meta-new {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.tech-card-meta-new span {
    color: #777;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tech-card-meta-new span i {
    color: var(--v-accent-green);
    font-size: 0.75rem;
}

.tech-card-features-new {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-card-features-new li {
    color: #555;
    font-size: 0.8rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.4;
}

.tech-card-features-new li:last-child {
    margin-bottom: 0;
}

.tech-card-features-new li i {
    color: var(--v-accent-green);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.btn-tech-card-new {
    background: var(--v-dark-blue-bg);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: auto;
    margin-top: auto;
    align-self: flex-start;
}

.btn-tech-card-new:hover {
    background: #7da828;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(144, 194, 49, 0.3);
}

/* Color Variants for Tech Cards */
.tech-card-blue-new .tech-card-icon-new {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    color: #1976D2;
}

.tech-card-green-new .tech-card-icon-new {
    background: linear-gradient(135deg, #E0F2F1 0%, #B2DFDB 100%);
    color: #00695C;
}

.tech-card-purple-new .tech-card-icon-new {
    background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 100%);
    color: #7B1FA2;
}

.tech-card-orange-new .tech-card-icon-new {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    color: #E65100;
}

.tech-card-pink-new .tech-card-icon-new {
    background: linear-gradient(135deg, #FCE4EC 0%, #F8BBD0 100%);
    color: #C2185B;
}

/* Responsive - Mobile First */
@media (max-width: 991px) {
    .tech-skills-swiper-wrapper-new {
        padding: 20px 45px 60px;
    }
    
    .tech-skills-nav-next-new,
    .tech-skills-nav-prev-new {
        width: 40px !important;
        height: 40px !important;
    }
    
    .tech-skills-nav-next-new::after,
    .tech-skills-nav-prev-new::after {
        font-size: 14px !important;
    }
    
    .tech-card-right-new {
        width: 160px;
    }
}

@media (max-width: 767px) {
    .tech-skills-section {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .tech-skills-tab-content {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .tech-skills-swiper-wrapper-new {
        padding: 15px 20px 50px;
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .tech-skills-swiper-new {
        overflow: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .tech-skills-swiper-new .swiper-wrapper {
        overflow: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .tech-skills-swiper-new .swiper-slide {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .tech-skills-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .tech-skill-card-new {
        padding: 20px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .tech-card-content-wrapper-new {
        flex-direction: column;
        gap: 15px;
    }
    
    .tech-card-right-new {
        width: 100%;
        padding-left: 0;
        padding-top: 15px;
        border-left: none;
        border-top: 1px solid #e8e8e8;
    }
    
    .tech-card-icon-new {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    
    .tech-card-title-new {
        font-size: 1.1rem;
    }
    
    .tech-card-description-new {
        font-size: 0.8rem;
    }
    
    .tech-card-meta-new {
        gap: 12px;
    }
    
    .tech-card-meta-new span {
        font-size: 0.75rem;
    }
    
    .btn-tech-card-new {
        width: 100%;
    }
    
    .tech-skills-nav-next-new,
    .tech-skills-nav-prev-new {
        width: 36px !important;
        height: 36px !important;
    }
    
    .tech-skills-nav-next-new::after,
    .tech-skills-nav-prev-new::after {
        font-size: 12px !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .tech-skills-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
    
    .tech-card-right-new {
        width: 160px;
    }
}

@media (min-width: 992px) {
    .tech-skills-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 0;
    }
}

@media (min-width: 1200px) {
    .tech-skills-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* ===== MODAL FORMS ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-container {
    background: white;
    border-radius: 15px;
    width: 100%;
    max-width: 550px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.modal-container.modal-small {
    max-width: 450px;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    border-radius: 15px 15px 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--v-primary-dark);
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    background: #f5f5f5;
    color: var(--v-primary-dark);
}

/* Progress Indicator */
.progress-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 22px;
    border-bottom: 1px solid #f0f0f0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-bottom: 6px;
}

.progress-step.active .step-number {
    background: var(--v-primary-dark);
    color: white;
}

.progress-step.completed .step-number {
    background: var(--v-accent-green);
    color: white;
}

.step-label {
    font-size: 0.75rem;
    color: #999;
    font-weight: 500;
}

.progress-step.active .step-label {
    color: var(--v-primary-dark);
    font-weight: 600;
}

.progress-line {
    width: 80px;
    height: 2px;
    background: #e0e0e0;
    margin: 0 10px;
    margin-bottom: 28px;
    transition: all 0.3s ease;
}

.progress-line.completed {
    background: var(--v-accent-green);
}

/* Form Styles */
.modal-form {
    padding: 22px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

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

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--v-primary-dark);
    font-size: 0.85rem;
}

.required {
    color: #e74c3c;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group input[type="number"],
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--v-primary-dark);
    box-shadow: 0 0 0 3px rgba(17, 41, 85, 0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: #e74c3c;
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 5px;
    min-height: 18px;
}

/* Checkbox Group */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
    margin-top: 6px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 8px 10px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.85rem;
}

.checkbox-label:hover {
    border-color: var(--v-primary-dark);
    background: rgba(17, 41, 85, 0.05);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--v-primary-dark);
}

.checkbox-label input[type="checkbox"]:checked {
    accent-color: var(--v-primary-dark);
}

.checkbox-label:has(input[type="checkbox"]:checked),
.checkbox-label.checked {
    border-color: var(--v-primary-dark);
    background: rgba(17, 41, 85, 0.1);
    color: var(--v-primary-dark);
    font-weight: 600;
}

/* Other Subject Input */
.other-subject-input {
    margin-top: 12px;
}

.other-subject-input input {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.other-subject-input input:focus {
    outline: none;
    border-color: var(--v-primary-dark);
    box-shadow: 0 0 0 3px rgba(17, 41, 85, 0.1);
}

.other-subject-input input.error {
    border-color: #e74c3c;
}

/* File Upload */
.file-upload-wrapper {
    position: relative;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--v-light-green-bg);
    border: 2px dashed var(--v-accent-green);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--v-primary-dark);
}

.file-label:hover {
    background: rgba(144, 194, 49, 0.1);
    border-color: var(--v-primary-dark);
}

.file-label i {
    color: var(--v-accent-green);
}

.file-name {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

.file-input:valid + .file-label + .file-name {
    color: var(--v-accent-green);
    font-weight: 600;
}

/* Form Buttons */
    .form-buttons {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        margin-top: 20px;
        padding: 18px 20px;
        border-top: 1px solid #f0f0f0;
        background: white;
        position: sticky;
        bottom: 0;
        z-index: 10;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    }

/* Mobile Form Improvements */
@media (max-width: 768px) {
    /* Ensure modal is scrollable on mobile */
    .modal-overlay {
        padding: 10px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .modal-container {
        max-height: 90vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        margin: auto;
        padding-bottom: 0;
        /* Safari specific - add bottom padding for safe area */
        padding-bottom: env(safe-area-inset-bottom, 0);
    }
    
    .modal-form {
        max-height: calc(90vh - 120px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        /* Add significant padding at bottom so submit button is visible and scrollable */
        padding-bottom: 150px !important;
    }
    
    /* Safari specific fixes for form buttons */
    @supports (-webkit-touch-callout: none) {
        .modal-form {
            padding-bottom: 180px !important;
        }
        
        .form-buttons {
            margin-bottom: 20px !important;
            padding-bottom: calc(18px + env(safe-area-inset-bottom)) !important;
        }
        
        .modal-container {
            padding-bottom: env(safe-area-inset-bottom) !important;
        }
    }
    
    /* Ensure submit button is always visible and accessible */
    .form-buttons {
        position: sticky !important;
        bottom: 0 !important;
        z-index: 100 !important;
        background: white !important;
        margin-top: 0 !important;
        padding: 18px 20px !important;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1) !important;
        border-top: 2px solid #f0f0f0 !important;
        /* Add margin bottom for extra space on all browsers */
        margin-bottom: 20px !important;
    }
    
    /* Make modal header sticky on mobile */
    .modal-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 99 !important;
        background: white !important;
        margin: 0 !important;
        padding: 15px 20px !important;
        border-bottom: 1px solid #f0f0f0 !important;
    }
    
    /* Progress indicator sticky on mobile */
    .progress-indicator {
        position: sticky !important;
        top: 60px !important;
        background: white !important;
        z-index: 98 !important;
        padding: 15px 20px !important;
        border-bottom: 1px solid #f0f0f0 !important;
    }
    
    /* Make checkbox groups more compact on mobile */
    .checkbox-group {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        max-height: 200px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 8px;
        background: #f9fafb;
        border-radius: 8px;
    }
    
    .checkbox-label {
        font-size: 0.85rem;
        padding: 8px 10px;
    }
    
    /* Fix button styling to match desktop - consistent padding */
    .btn-modal-primary,
    .btn-modal-secondary {
        padding: 12px 24px !important;
        font-size: 0.875rem !important;
        font-weight: 600 !important;
        border-radius: 8px !important;
        width: 100% !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 44px !important; /* iOS touch target size */
        -webkit-appearance: none !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    
    .btn-modal-primary {
        background: var(--v-primary-dark) !important;
        color: white !important;
        border: none !important;
    }
    
    .btn-modal-secondary {
        background: white !important;
        color: var(--v-primary-dark) !important;
        border: 2px solid var(--v-primary-dark) !important;
    }
}

.btn-modal-primary {
    background: var(--v-primary-dark);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-modal-primary:hover {
    background: #1c3d7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(17, 41, 85, 0.3);
}

.btn-modal-secondary {
    background: white;
    color: var(--v-primary-dark);
    border: 2px solid var(--v-primary-dark);
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-modal-secondary:hover {
    background: var(--v-primary-dark);
    color: white;
}

/* Success Message */
.form-success {
    text-align: center;
    padding: 50px 30px;
    animation: fadeInUp 0.5s ease-out;
}

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

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

@keyframes checkmark {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
    animation: scaleIn 0.6s ease-out;
    position: relative;
}

.success-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.success-icon i {
    font-size: 3rem;
    color: white;
    animation: checkmark 0.6s ease-out;
    position: relative;
    z-index: 1;
}

.form-success h4 {
    color: var(--v-primary-dark);
    font-size: 1.75rem;
    margin-bottom: 15px;
    font-weight: 700;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.form-success p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.form-success .btn-modal-primary {
    animation: fadeInUp 0.6s ease-out 0.4s both;
    box-shadow: 0 4px 15px rgba(17, 41, 85, 0.3);
    transition: all 0.3s ease;
}

.form-success .btn-modal-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 41, 85, 0.4);
}

/* Responsive */
@media (max-width: 768px) {

    .swiper.et-news-swiper {
        margin-left: unset !important;
    }
    
    /* Fix modal overlay on mobile - ensure it stays within viewport */
    .modal-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        padding: 15px !important;
        align-items: flex-start !important;
        justify-content: center !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        margin: 0 !important;
    }
    
    .modal-overlay.active {
        display: flex !important;
    }
    
    /* Fix modal container - center it and keep within viewport */
    .modal-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: auto !important;
        border-radius: 12px !important;
        max-height: calc(100vh - 20px) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        position: relative !important;
        top: auto !important;
        transform: none !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .modal-container.modal-small {
        max-width: 100% !important;
    }
    
    .modal-header {
        padding: 16px !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 10 !important;
    }
    
    .modal-header h3 {
        font-size: 1.15rem !important;
    }
    
    .modal-form {
        padding: 12px !important;
        max-height: none !important;
        overflow-y: visible !important;
    }
    
    .progress-indicator {
        padding: 12px 10px !important;
        position: sticky !important;
        top: 0 !important;
        background: white !important;
        z-index: 9 !important;
    }
    
    .step-number {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.75rem !important;
    }
    
    .step-label {
        font-size: 0.6rem !important;
    }
    
    .progress-line {
        width: 25px !important;
        margin: 0 3px !important;
    }
    
    /* Make form fields smaller on mobile */
    .form-group {
        margin-bottom: 12px !important;
    }
    
    .form-group label {
        font-size: 0.75rem !important;
        margin-bottom: 4px !important;
        font-weight: 600 !important;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group input[type="date"],
    .form-group input[type="time"],
    .form-group input[type="number"],
    .form-group select {
        padding: 8px 10px !important;
        font-size: 0.8rem !important;
        border-width: 1.5px !important;
        border-radius: 6px !important;
        height: auto !important;
    }
    
    .form-group input:focus,
    .form-group select:focus {
        box-shadow: 0 0 0 2px rgba(17, 41, 85, 0.1) !important;
    }
    
    .error-message {
        font-size: 0.7rem !important;
        margin-top: 3px !important;
        min-height: 16px !important;
    }
    
    /* Smaller checkbox labels */
    .checkbox-group {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        margin-top: 4px !important;
    }
    
    .checkbox-label {
        padding: 6px 8px !important;
        font-size: 0.75rem !important;
        border-width: 1.5px !important;
        border-radius: 6px !important;
        gap: 5px !important;
    }
    
    .checkbox-label input[type="checkbox"] {
        width: 16px !important;
        height: 16px !important;
    }
    
    /* Smaller other subject input */
    .other-subject-input {
        margin-top: 8px !important;
    }
    
    .other-subject-input input {
        padding: 8px 10px !important;
        font-size: 0.8rem !important;
        border-width: 1.5px !important;
        border-radius: 6px !important;
    }
    
    /* Smaller file upload buttons */
    .file-label {
        padding: 8px 12px !important;
        font-size: 0.75rem !important;
        border-width: 1.5px !important;
        border-radius: 6px !important;
        gap: 6px !important;
    }
    
    .file-name {
        font-size: 0.7rem !important;
        margin-top: 4px !important;
    }
    
    /* Smaller buttons */
    .form-buttons {
        flex-direction: column !important;
        gap: 12px !important;
        padding: 18px 20px !important;
        margin-top: 20px !important;
    }
    
    .btn-modal-primary,
    .btn-modal-secondary {
        width: 100% !important;
        margin: 0 !important;
        padding: 12px 24px !important;
        font-size: 0.875rem !important;
        font-weight: 600 !important;
        border-radius: 8px !important;
        min-height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        -webkit-appearance: none !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    
    .btn-modal-primary {
        background: var(--v-primary-dark) !important;
        color: white !important;
        border: none !important;
    }
    
    .btn-modal-secondary {
        background: white !important;
        color: var(--v-primary-dark) !important;
        border: 2px solid var(--v-primary-dark) !important;
    }
    
    /* Smaller success message */
    .form-success {
        padding: 16px 12px !important;
    }
    
    .success-icon i {
        font-size: 2rem !important;
    }
    
    .form-success h4 {
        font-size: 1.2rem !important;
        margin-bottom: 10px !important;
    }
    
    .form-success p {
        font-size: 0.85rem !important;
        margin-bottom: 16px !important;
    }
    /* .et-header {
        margin-top: 0px;
    } */
    .new-banner-card img{
        object-fit: unset;
    }
}

section.container.Quality_Online_Tuition h2 {
    font-size: 37px;}



    /* ============ NEWADDED  ============ */

    