 :root {
            /* Primary Color: Rich, Professional Deep Blue */
            --color-primary: #163f62;
            /* Darker Indigo */
            /* Accent Color 1: Energetic Cyan/Teal (for highlights) */
            --color-accent-1: #0FD2BF;
            /* Vibrant Teal */
            /* Accent Color 2: Warm Orange/Coral (for secondary highlights/buttons) */
            --color-accent-2: #FF7043;
            /* Punchy Orange */
            /* Accent Color 3: Warm Green (for secondary highlights/buttons) */
            --color-accent-3: darkslategrey;
            /* Green */
            /* Background */
            --color-background: #F9FAFC;
            /* Light Greyish Blue */
            /*Section Background */
            --section-background: none;
            /* white */
            /* Spaces*/
            --section-padding: 50px 0 50px 0px;
            /* Section Padding */

            /* Text */
            --color-text-dark: #2F3E4F;
            /* Dark Slate Gray */
            --color-text-light: #6B7280;
            /* Medium Gray */
            /* Transitions */
            --transition-duration-fast: 0.2s;
            --transition-duration-normal: 0.4s;
            --transition-duration-slow: 0.6s;

            --gradient-primary: linear-gradient(135deg, var(--color-primary), #2A438F);
            --gradient-accent: linear-gradient(135deg, var(--color-accent-1), #1CE8D5);
            --gradient-hero: linear-gradient(135deg, #1e3c72, #2a5298);
            --shadow: 0 10px 30px rgba(22, 63, 98, 0.1);
            --shadow-lg: 0 20px 50px rgba(22, 63, 98, 0.15);
            --shadow-xl: 0 25px 60px rgba(22, 63, 98, 0.2);
        }

        /* Custom Scrollbar Styles */
        * {
            scrollbar-width: auto;
            scrollbar-color: #051c50 #f8fafc;
        }

        /* For WebKit browsers (Chrome, Edge, Safari) */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f8fafc;
            border-radius: 6px;
        }

        ::-webkit-scrollbar-thumb {
            background: #051c50;
            border-radius: 6px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #2563eb;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Roboto", sans-serif;
        }

        html {
            overflow-x: hidden;
        }

        body {
            background-color: var(--color-background);
            color: var(--color-text-dark);
            overflow-x: hidden;
            line-height: 1.6;
            position: relative;
        }

        .container {
            width: 100%;
            max-width: 1450px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* =========================================== */
        /* FIXED HEADER WITH WORKING MOBILE MENU */
        /* =========================================== */

        header {
            background: white;
            box-shadow: 0 4px 30px rgba(26, 46, 107, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding: 8px 0;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 0;
        }

        /* Logo */
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            z-index: 1001;
        }

        .logo-img {
            width: 80px;
            height: 80px;
        }

        @keyframes logoGlow {
            0% {
                box-shadow: 0 0 10px rgba(15, 210, 191, 0.3);
                border-color: rgba(15, 210, 191, 0.3);
            }

            100% {
                box-shadow: 0 0 20px rgba(15, 210, 191, 0.6);
                border-color: rgba(15, 210, 191, 0.6);
            }
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1;
        }

        .logo-main {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--color-primary);
            font-family: 'Poppins', sans-serif;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, var(--color-primary) 0%, #2A438F 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            white-space: nowrap;
        }

        .logo-sub {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--color-accent-1);
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-top: 2px;
            white-space: nowrap;
        }

        /* Desktop Menu */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 35px;
            margin: 0;
            padding: 0;
        }

        .nav-link {
            text-decoration: none;
            color: #163f62;
            font-size: 1.1rem;
            padding: 8px 0;
            position: relative;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .nav-link.active {
            color: var(--color-accent-1);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--color-accent-1), var(--color-accent-2));
            border-radius: 10px;
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        /* Desktop Login Button */
        .login-btn {
            background: var(--gradient-hero);
            color: white;
            border: none;
            padding: 14px 32px;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 6px 20px rgba(26, 46, 107, 0.2);
            font-size: 1rem;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .login-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(26, 46, 107, 0.3);
        }

        /* Mobile Hamburger */
        .hamburger {
            display: none;
            cursor: pointer;
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--color-primary) 0%, #2A438F 100%);
            border: none;
            border-radius: 10px;
            color: white;
            font-size: 1.4rem;
            z-index: 999;
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;

            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
            pointer-events: all;
        }

        /* Mobile Menu - FIXED: Changed height from 100% to 100vh */
        .mobile-menu {
            position: fixed;
            /* Already fixed, which is good */
            top: 0;
            right: -320px;
            width: 320px;
            height: 100vh;
            /* Changed from 100% to 100vh */
            background: white;
            z-index: 1000;
            padding: 100px 40px 40px;
            transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
            overflow-y: auto;
        }

        .mobile-menu.active {
            right: 0;
        }

        /* Mobile Menu Close Button */
        .mobile-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--color-primary);
            cursor: pointer;
            padding: 5px;
            z-index: 1002;
        }

        .mobile-menu-logo {
            display: grid;
            text-align: center;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 2px solid rgba(26, 46, 107, 0.1);
        }

        .mobile-menu-logo img {
            width: 50px;
            height: 50px;
            margin: 0 auto;
        }

        .mobile-menu-logo span {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--color-primary);
            font-family: 'Poppins', sans-serif;

        }

        .mobile-nav-menu {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .mobile-nav-item {
            margin-bottom: 15px;
        }

        .mobile-nav-link {
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--color-primary);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            padding: 14px 18px;
            border-radius: 10px;
            transition: all 0.3s ease;
            background: rgba(26, 46, 107, 0.05);
        }

        .mobile-nav-link:hover {
            background: var(--color-primary);
            color: white;
        }

        .mobile-login-btn {
            width: 100%;
            margin-top: 30px;
            padding: 14px 18px;
            background: linear-gradient(135deg, var(--color-primary) 0%, #2A438F 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: left;
        }

        i.fas.fa-sign-in-alt {}

        /* Responsive */
        /* Responsive Menu Adjustments */
        @media (max-width: 1350px) {
            .nav-menu {
                gap: 20px;
            }

            .nav-link {
                font-size: 1rem;
                gap: 5px;
            }

            .login-btn {
                padding: 12px 24px;
                font-size: 0.95rem;
            }
        }

        @media (max-width: 1150px) {
            .nav-menu {
                gap: 15px;
            }

            .nav-link {
                font-size: 0.9rem;
            }

            .login-btn {
                padding: 10px 18px;
            }

            .logo-img {
                width: 60px;
                height: 60px;
            }

            .logo-main {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 992px) {

            .nav-menu,
            .login-btn {
                display: none;
            }

            .hamburger {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .logo-img {
                width: 50px;
                height: 50px;
            }

            .logo-main {
                font-size: 1.3rem;
            }

            .logo-sub {
                font-size: 0.7rem;
            }
        }

        @media (max-width: 576px) {
            .mobile-menu {
                width: 280px;
                padding: 70px 20px 30px;
            }

            .logo-img {
                width: 45px;
                height: 45px;
            }

            .logo-main {
                font-size: 1.1rem;
            }

            .logo-sub {
                display: none;
            }
        }

        /* Rest of your existing CSS for hero, features, benefits, etc. */
        /* Advanced Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            overflow: hidden;
        }

        .bg-shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(15, 210, 191, 0.05);
            animation: float 20s infinite linear;
        }

        .shape-1 {
            width: 400px;
            height: 400px;
            top: -100px;
            left: -100px;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 300px;
            height: 300px;
            top: 50%;
            right: -100px;
            animation-delay: 5s;
            background: rgba(255, 112, 67, 0.05);
        }

        .shape-3 {
            width: 250px;
            height: 250px;
            bottom: -100px;
            left: 30%;
            animation-delay: 10s;
            background: rgba(26, 46, 107, 0.05);
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 1;
            }

            50% {
                transform: translateY(-40px) rotate(180deg);
                opacity: 0.8;
            }

            100% {
                transform: translateY(0) rotate(360deg);
                opacity: 1;
            }
        }

        /* Creative Grid Background */
        .grid-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -3;
            background-image:
                linear-gradient(rgba(26, 46, 107, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(26, 46, 107, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% {
                transform: translate(0, 0);
            }

            100% {
                transform: translate(50px, 50px);
            }
        }

        /* Advanced Hero Section */
        .hero {
            padding: 100px 0 40px;
            position: relative;
            overflow: hidden;
            background: var(--gradient-hero);
            color: white;
            min-height: 90vh;
            display: flex;
            align-items: center;
            border-bottom-left-radius: 45% 25px;
            border-bottom-right-radius: 45% 25px;
            border-bottom: solid 3px #FF6B35;
            box-shadow: 0 5px 10px rgba(234, 179, 8, 0.3);
        }








        .hero-content {
            max-width: 900px;
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 13px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 45px;
            margin-top: 8px;
            animation: fadeInUp 0.8s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero h1 {
            font-size: 3.7rem;
            margin-bottom: 35px;
            line-height: 1;
            font-weight: 800;
            animation: fadeInUp 0.8s ease 0.2s both;
            font-family: 'Poppins', sans-serif;
        }

        .hero-highlight {
            color: var(--color-accent-1);
            position: relative;
            font-size: 3rem;
        }



        .hero p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.9);
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .hero-buttons {
            display: flex;
            gap: 40px;
            animation: fadeInUp 0.8s ease 0.6s both;
        }

        .cta-btn {
            background: var(--color-accent-2);
            color: white;
            border: none;
            padding: 16px 35px;
            font-size: 1.1rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all var(--transition-duration-normal) ease;
            font-weight: 600;
            box-shadow: 0 6px 20px rgba(255, 112, 67, 0.4);
            position: relative;
            overflow: hidden;
        }

        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.5s;
        }

        .cta-btn:hover::before {
            left: 100%;
        }

        .cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(255, 112, 67, 0.5);
        }

        .secondary-btn {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 16px 35px;
            font-size: 1.1rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all var(--transition-duration-normal) ease;
            font-weight: 600;
        }

        .secondary-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-3px);
        }

        /* Advanced Hero Visual Elements */
        .hero-visual {
            position: absolute;
            right: 50px;
            top: 48%;
            transform: translateY(-50%);
            width: 50%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
        }

        .floating-card {
            position: absolute;
            background: white;
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
            padding: 20px;
            width: 230px;
            animation: float-card 15s infinite ease-in-out;
            color: var(--color-text-dark);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .card-1 {
            top: 22%;
            right: 25%;
            animation-delay: 0s;
            border-top: 4px solid var(--color-accent-1);
        }

        .card-2 {
            top: 50%;
            right: 15%;
            animation-delay: 1s;
            border-top: 4px solid var(--color-accent-2);
        }

        .card-3 {
            bottom: 30%;
            right: 45%;
            animation-delay: 2s;
            border-top: 4px solid #244785;
        }

        @keyframes float-card {
            0% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(3deg);
            }

            100% {
                transform: translateY(0) rotate(0deg);
            }
        }

        .floating-card i {
            font-size: 1.8rem;
            margin-bottom: 10px;
            display: block;
        }

        .card-1 i {
            color: var(--color-accent-1);
        }

        .card-2 i {
            color: var(--color-accent-2);
        }

        .card-3 i {
            color: #244785;
        }

        .floating-card h4 {
            font-size: 1rem;
            margin-bottom: 8px;
            font-family: 'Poppins', sans-serif;
        }

        .floating-card p {
            font-size: 0.9rem;
            color: var(--color-text-light);
            margin: 0;
        }

        /* NEW: Counter-Up Animation Styles */
        .stats-counter {
            position: absolute;
            bottom: 40px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            gap: 5px;
            padding: 0 10px 0 0px;
            z-index: 2;
        }

        .stat-item {
            text-align: center;
            color: white;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 20px;
            min-width: 160px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease, background 0.3s ease;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .stat-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.25);
        }

        .counter-value {
            font-size: 2.5rem;
            font-weight: 800;
            font-family: 'Poppins', sans-serif;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        .counter-suffix {
            font-size: 1.5rem;
            margin-left: 2px;
        }

        .stat-label {
            font-size: 1rem;
            font-weight: 500;
            opacity: 0.9;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        .stat-label i {
            color: var(--color-accent-1);
            font-size: 1.2rem;
        }

        /* Animation for counters */
        @keyframes counterUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .counter-value.animated {
            animation: counterUp 1s ease-out forwards;
        }

        /* Advanced Particle Animation */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            animation: float-particle 15s infinite linear;
        }

        @keyframes float-particle {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Advanced Features Section */
        .features {
            padding: var(--section-padding);
            background: var(--section-background);
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            font-size: 2.8rem;
            color: var(--color-primary);
            position: relative;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 5px;
            background: var(--color-accent-1);
            border-radius: 10px;
        }

        .features-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }

        .feature-card {
            flex: 1 1 300px;
            background: white;
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            transition: all var(--transition-duration-normal) ease;
            box-shadow: var(--shadow);
            border: 1px solid rgba(26, 46, 107, 0.1);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-accent);
        }

        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-lg);
        }

        .feature-image-card {
            flex: 2 1 500px;
            /* Increased width */
            border-radius: 25px;
            overflow: hidden;
            box-shadow: var(--shadow);
         
            height: 340px;
            /* Fixed height to match other cards */
            position: relative;
            
            
             transition: all var(--transition-duration-normal) ease;
            box-shadow: var(--shadow);
            border: 1px solid rgba(26, 46, 107, 0.1);
            
            
            
        }

        .feature-image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .feature-image-card img:hover {
             transform: scale(1.03);
            box-shadow: var(--shadow-lg);
        }



        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 25px;
            color: var(--color-primary);
            transition: all var(--transition-duration-normal) ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.2);
            color: var(--color-accent-1);
        }

        .feature-card h3 {
            margin-bottom: 15px;
            color: var(--color-primary);
            font-size: 1.5rem;
            font-family: 'Poppins', sans-serif;
        }

        /* Advanced Benefits Section */
        .benefits {
            padding: var(--section-padding);
            background: var(--gradient-primary);
            color: white;
            position: relative;
        }

        .benefits .section-title {
            color: white;
        }

        .benefits .section-title::after {
            background: white;
        }

        .benefits-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .benefit-item {
            flex: 1 1 300px;
            display: flex;
            gap: 20px;
            align-items: flex-start;
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            transition: all var(--transition-duration-normal) ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .benefit-item:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .benefit-icon {
            background: white;
            color: var(--color-primary);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.5rem;
            transition: all var(--transition-duration-normal) ease;
        }

        .benefit-item:hover .benefit-icon {
            transform: rotate(15deg) scale(1.1);
        }

        .benefit-content h3 {
            margin-bottom: 10px;
            font-size: 1.4rem;
            font-family: 'Poppins', sans-serif;
        }

        /* Advanced Curriculum Section */
        .curriculum {
            padding: var(--section-padding);
            background: var(--section-background);
        }

        .curriculum-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .curriculum-card {
            flex: 1 1 350px;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all var(--transition-duration-normal) ease;
            border: 1px solid rgba(26, 46, 107, 0.1);
            position: relative;
        }

        .curriculum-card:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-xl);
        }

        .curriculum-header {
            background: var(--gradient-primary);
            color: white;
            padding: 20px;
            font-weight: 600;
            font-size: 1.2rem;
            font-family: 'Poppins', sans-serif;
        }

        .curriculum-content {
            padding: 25px;
        }

        .curriculum-content ul {
            list-style-type: none;
        }

        .curriculum-content li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
            transition: all var(--transition-duration-normal) ease;
        }

        .curriculum-content li:hover {
            transform: translateX(5px);
            color: var(--color-primary);
        }

        .curriculum-content li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--color-accent-1);
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Advanced Contact Section */
        .contact {
            padding: var(--section-padding);
            background: var(--gradient-primary);
            color: white;
            text-align: center;
            position: relative;
        }

        .contact .section-title {
            color: white;
        }

        .contact .section-title::after {
            background: white;
        }

        .contact-info {
            font-size: 1.8rem;
            margin-bottom: 40px;
            font-weight: 600;
        }

        .contact-btn {
            background: white;
            color: var(--color-primary);
            border: none;
            padding: 18px 35px;
            font-size: 1.2rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all var(--transition-duration-normal) ease;
            font-weight: 600;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .contact-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(26, 46, 107, 0.1), transparent);
            transition: 0.5s;
        }

        .contact-btn:hover::before {
            left: 100%;
        }

        .contact-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
        }

        /* Advanced Footer */
        footer {
            background: #171d30;
            color: white;
            padding: var(--section-padding);
            border-top-left-radius: 45% 25px;
            border-top-right-radius: 45% 25px;
            border-top: solid 3px #FF6B35;
        }

        .footer-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            max-width: 1450px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-column {
            flex: 1;
            min-width: 250px;
        }

        .footer-column h4 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--color-accent-1);
            font-family: 'Poppins', sans-serif;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 1rem;
            font-family: 'Poppins', sans-serif;
        }

        .footer-logo span:first-child {
            color: var(--color-accent-2);
        }

        .footer-logo span:last-child {
            color: var(--color-accent-1);
        }

        .footer-description {
            color: #9ca3af;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--color-accent-1);
        }

        .footer-contact p {
            color: #9ca3af;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-contact a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-contact a:hover {
            color: var(--color-accent-1);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--color-accent-1);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            margin-top: 3rem;
            padding-top: 1.5rem;
            text-align: center;
            color: #9ca3af;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design for Counters */
        @media (min-width: 993px) and (max-width: 1750px) {
            .hero-content {
                max-width: 50%;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-highlight {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .hero-visual {
                width: 45%;
                right: 20px;
            }

            .floating-card {
                width: 180px;
                padding: 15px;
            }

            .floating-card h4 {
                font-size: 0.9rem;
            }

            .floating-card i {
                font-size: 1.5rem;
            }

            /* Adjust card positions for tighter space */
            .card-1 {
                right: 10%;
                top: 20%;
            }

            .card-2 {
                right: 5%;
                top: 50%;
            }

            .card-3 {
                right: 35%;
                bottom: 25%;
            }
        }

        @media (max-width: 1200px) {
            .stats-counter {
                padding: 0 20px;
                gap: 15px;
            }

            .stat-item {
                min-width: 140px;
                padding: 15px;
            }

            .counter-value {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }

            .hero-highlight {
                font-size: 2.8rem;
            }

            .hero-visual {
                display: none;
            }

            .section-title {
                font-size: 2.4rem;
            }

            .hero {
                padding: 120px 0 40px;
                min-height: auto;
                text-align: center;
            }

            .hero-content {
                max-width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .hero h1 {
                font-size: 2.2rem;
                line-height: 0.8;
                margin-bottom: 20px;
            }

            .hero-highlight {
                font-size: 2.2rem;
                line-height: 1;
            }

            .hero p {
                font-size: 1.1rem;
                margin-bottom: 30px;
                padding: 0 10px;
            }

            .hero-badge {
                font-size: 0.8rem;
                margin-bottom: 20px;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
                max-width: 300px;
                padding-top: 15px;
            }

            .cta-btn,
            .secondary-btn {
                width: 100%;
                padding: 14px 25px;
                font-size: 1rem;
            }

            /* Show counters below hero content on mobile */
            .stats-counter {
                position: relative;
                bottom: auto;
                left: auto;
                margin-top: 40px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .stat-item {
                min-width: 150px;
                margin: 10px;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.3rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .footer-container {
                flex-direction: column;
            }

            .stats-counter {
                flex-direction: column;
                align-items: center;
            }

            .stat-item {
                width: 100%;
                max-width: 250px;
            }
            .feature-image-card{display:none;}
        }

        @media (max-width: 576px) {
            .hero {
                padding: 100px 0 40px;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .hero p {
                font-size: 1rem;
                padding: 0;
            }

            .hero-highlight::after {
                height: 6px;
                bottom: 3px;
            }
        }

        .text-center {
            text-align: center;
        }

        @media (max-width: 992px) {
            .text-center {
                text-align: center !important;
            }
        }

        /* CSS class to hide logo */
        .logo.logo-hidden {
            opacity: 0 !important;
            visibility: hidden !important;
            pointer-events: none !important;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        /* Or you can hide the entire navbar except hamburger */
        .mobile-menu.active~.navbar .logo {
            display: none;
        }

        .mobile-menu.active~.navbar .hamburger {
            position: relative;
            z-index: 1002;
            /* Ensure it's above everything */
        }













        /* Enhanced active state styling */
        .nav-link.active {
            color: var(--color-accent-1);
        }

        .mobile-nav-link.active {
            background: var(--color-primary);
            color: white;
        }

        /* Smooth scrolling enhancement */
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        /* Section spacing for better navigation */
        section {
            scroll-margin-top: 80px;
        }

        /* New section styles for added pages */
        .reviews-section,
        .course-section,
        .interview-section {
            padding: var(--section-padding);
            background:var(--section-background);
        }

        .reviews-section {
            margin-top: 0px;
        }

        .interview-section {
            background: var(--gradient-primary);
            color: white;
        }

        .interview-section .section-title {
            color: white;
        }

        .interview-section .section-title::after {
            background: white;
        }

        /* Review card styling */
        .review-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            margin: 20px 0;
            border-left: 4px solid var(--color-accent-1);
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 20px;
        }

        .review-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        /* Course details styling */
        .course-details {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            margin-top: 30px;
        }

        .course-feature {
            display: flex;
            align-items: center;
            gap: 15px;
            margin: 15px 0;
        }

        /* Interview questions styling */
        .question-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 25px;
            border-radius: 15px;
            margin: 20px 0;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease;
        }

        .question-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        i.fas.fa-play {
            padding-right: 10px;
        }

        /* NEW: Slider Styles */
        .reviews-slider-container {
            position: relative;
            width: 100%;
            max-width: 1600px;
            /* Constrain on ultra-wide screens */
            margin: 40px auto 0;
            overflow: hidden;
            padding-bottom: 60px;
        }

        .reviews-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 30px;
        }

        .review-slide {
            flex: 0 0 100%;
            max-width: 100%;
            height: auto;
            /* Allow height to stretch */
            display: flex;
            /* Flexbox for equal height children */
        }

        @media (min-width: 768px) {
            .review-slide {
                flex: 0 0 calc(50% - 15px);
                max-width: calc(50% - 15px);
            }
        }

        @media (min-width: 1024px) {
            .review-slide {
                flex: 0 0 calc(33.333% - 20px);
                max-width: calc(33.333% - 20px);
            }
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            color: var(--color-primary);
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .slider-btn:hover {
            background: var(--color-primary);
            color: white;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .prev-btn {
            left: 10px;
        }

        .next-btn {
            right: 10px;
        }

        .slider-dots {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #d1d5db;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background: var(--color-primary);
            transform: scale(1.2);
        }

        /* Updated Feature Image Styles for Course Section */
        .course-layout {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .course-content {
            flex: 1;
        }

        .course-content h3 {
            font-size: 1.4em;
        }

        .course-image-col {
            flex: 1;
            display: none;
            /* Hidden on mobile by default */
        }

        @media(min-width: 992px) {
            .course-image-col {
                display: block;
            }
        }

        .about-image-container {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            position: relative;
            height: 100%;
            min-height: 400px;
        }

        .about-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .about-image-container:hover img {
            transform: scale(1.03);
        }

        /* NEW: Centered Section Button */
        .section-btn-container {
            text-align: center;
            margin-top: 50px;
        }
        .features-grid .section-btn-container{margin-top:20px;}

        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
            padding: 40px 30px 20px;
            color: white;
        }

        /* FLOATING CTA BUTTON */
        .floating-cta {
            position: fixed;
            bottom: 45px;
            right: 30px;
            z-index: 9999;
            animation: pulse-cta 2s infinite;
        }

        .cta-float-btn {
            background: #25D366;
            /* WhatsApp Green */
            color: white;
            padding: 15px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.2s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .cta-float-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }

.cta-float-btn a{
    color: white;
            text-decoration: none;
}

        @keyframes pulse-cta {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        @media (max-width: 768px) {
            .floating-cta {
                bottom: 30px;
                right: 20px;
            }

            .cta-float-btn span {
                display: none;
                /* Hide text on mobile, show icon only */
            }

            .cta-float-btn {
                padding: 15px;
                border-radius: 50%;
            }
        }