* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #ffffff;
            color: #1e1e1e;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        /* Color palette */
        :root {
            --primary: #a6ce38;
            --primary-dark: #8ab52a;
            --primary-light: #c0e56a;
            --black: #000000;
            --white: #ffffff;
            --gray-light: #f8fafc;
            --gray-mid: #eef2f6;
            --gray-text: #2c3e50;
            --dark-bg: #0a0f1c;
            --shadow-sm: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
            --shadow-md: 0 20px 25px -12px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 25px 35px -12px rgba(0, 0, 0, 0.15);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Top Header */
  /* Top Header Wrapper */
        .top-header-wrapper {
            background-color: #343a40;
            color: white;
            position: relative;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        /* Main Header Container */
        .top-header {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px 20px;
            gap: 25px;
            flex-wrap: wrap;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Partner Logos */
        .logo-group {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .partner-logo {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 5px 12px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s;
        }

        .partner-logo:hover {
            transform: scale(1.02);
        }

        .partner-logo img {
            max-height: 100%;
            width: auto;
            display: block;
        }

        /* Buttons */
        .btn-group {
            display: flex;
            gap: 15px;
        }

        .header-btn {
            padding: 10px 24px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: bold;
            font-size: 14px;
            color: white;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
        }

        .btn-franchise {
            background-color: #3366ff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .btn-franchise:hover {
            background-color: #254edb;
            transform: translateY(-2px);
        }

        .btn-all-in-one {
            background: linear-gradient(90deg, #ff0066, #ff9933);
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .btn-all-in-one:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        /* Utility Links */
        .utility-links {
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 14px;
            flex-wrap: wrap;
        }

        .link-item {
            color: white;
            text-decoration: none;
            cursor: pointer;
            transition: color 0.2s;
        }

        .link-item:hover {
            color: #ff9933;
        }

        .branch-locator {
            color: #ffcc00;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .branch-locator i {
            font-size: 14px;
        }

        .separator {
            color: #6c757d;
            user-select: none;
        }
        
        
        
        
        

        /* Mobile Toggle Button (Hamburger) - visible only on mobile */
        .mobile-toggle-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            padding: 10px 15px;
            position: absolute;
            right: 15px;
            top: 8px;
            z-index: 1001;
        }

        /* Responsive Styles */
        @media (max-width: 900px) {
            .mobile-toggle-btn {
                display: block;
            }

            .top-header {
                flex-direction: column;
                text-align: center;
                gap: 18px;
                padding: 15px 20px;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease-out, padding 0.3s ease;
                padding-top: 0;
                padding-bottom: 0;
            }

            .top-header.show {
                max-height: 500px; /* enough to show content */
                padding-top: 15px;
                padding-bottom: 20px;
            }

            .logo-group, .btn-group, .utility-links {
                width: 100%;
                justify-content: center;
            }

            .utility-links {
                flex-direction: column;
                gap: 12px;
            }

            .separator {
                display: none;
            }
        }

        /* Small devices */
        @media (max-width: 480px) {
            .btn-group {
                flex-direction: column;
                width: 80%;
                text-align:center;
            }
            .header-btn {
                width: 100%;
                text-align: center;
            }
            .partner-logo {
                height: 38px;
                padding: 4px 8px;
            }
        }

        /* Optional: sticky behavior for header (if needed) */
        .top-header-wrapper.sticky {
            position: sticky;
            top: 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        /* Navbar Sticky */
        .main-header {
            background: var(--white);
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 100;
            transition: all 0.3s ease;
        }
        .main-header.sticky {
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            background: rgba(255,255,255,0.98);
            backdrop-filter: blur(2px);
        }
        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 18px 0;
        }
        .logo h2 {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
        }
        .logo span {
            color: var(--primary);
        }
        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }
        .nav-links a {
            font-weight: 600;
            transition: color 0.2s;
            position: relative;
            font-size: 1rem;
        }
        .nav-links a:hover, .nav-links a.active {
            color: var(--primary);
        }
        .mobile-toggle {
            font-size: 1.6rem;
            display: none;
            cursor: pointer;
        }

        /* Hero Swiper - Centered Content */
        
        
        
        
        
        
        /* Default (desktop) styles - keep as is */
.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile styles (screens up to 768px) */
@media (max-width: 768px) {
    .hero-content {
        padding: 1.5rem;
        text-align: center;
    }

    .btn-group {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto; /* centers the column */
    }

    .btn-group .btn-primary,
    .btn-group .btn-outline-light {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;  /* bigger tap area */
        font-size: 1rem;
        box-sizing: border-box;
    }

    /* Optional: adjust hero heading & text for mobile */
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}
        
        
        
        
        
        
        
        
        
        
        
        .hero-swiper {
            width: 100%;
            height: 90vh;
            min-height: 600px;
        }
        .hero-slide {
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        .hero-slide::before {
            content: '';
            position: absolute;
            inset: 0;
            
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
            color: white;
            padding: 0 24px;
            animation: fadeUp 0.8s ease;
            text-align: center;
        }
        .hero-content h1 {
            font-size: 3.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .hero-content p {
            font-size: 1.25rem;
            margin-bottom: 32px;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        .btn-group {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-primary, .btn-outline-light {
            padding: 8px 36px;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            display: inline-block;
            font-size: 1rem;
            cursor: pointer;
        }
		
	
        .btn-primary {
            background: var(--primary);
            color: #111;
            border: none;
            box-shadow: 0 4px 15px rgba(166,206,56,0.3);
        }
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(166,206,56,0.4);
        }
        .btn-outline-light {
            border: 2px solid white;
            color: white;
            background: transparent;
        }
        .btn-outline-light:hover {
            background: white;
            color: black;
            transform: translateY(-4px);
        }
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* sections common */
        section {
            padding: 90px 0;
        }
        .section-title {
            text-align: center;
            font-size: 2.6rem;
            font-weight: 800;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }
		.section-about {
            text-align: left;
            font-size: 2.6rem;
            font-weight: 800;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }
        .section-sub {
            text-align: center;
            color: #4a5568;
            max-width: 700px;
            margin: 0 auto 56px auto;
            font-size: 1.1rem;
        }
        .section-title span {
            color: var(--primary);
        }

        /* about highlights */
        
        
        
        
        
        
        
        
        
        
        
        
        
        /* Default (desktop) styles - keep your existing layout */
.about-grid {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 250px;
}

.about-image {
    flex: 1;
    min-width: 250px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* optional */
}

.highlights {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.highlight-card {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
}

/* 📱 Mobile styles (screens up to 768px) */
@media (max-width: 768px) {
    .about-grid {
        flex-direction: column;  /* stack text above image */
        gap: 1.5rem;
    }

    .about-text {
        order: 1;  /* text first, image below */
    }

    .about-image {
        order: 2;
    }

    .section-about {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.5;
        text-align: justify; /* or left, but justify uses space well */
    }

    .highlights {
        flex-direction: column;  /* stack cards vertically on mobile */
        gap: 1rem;
        align-items: stretch;
    }

    .highlight-card {
        width: 100%;
        padding: 0.75rem;
    }

    .highlight-card i {
        font-size: 1.5rem;
    }

    .highlight-card h4 {
        font-size: 1rem;
        margin-top: 0.5rem;
    }
}

/* Extra small devices (phones under 480px) */
@media (max-width: 480px) {
    .section-about {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .highlight-card {
        padding: 0.5rem;
    }
}
        
        
        
        
        
        
        
        
        
        .about-grid {
            display: flex;
            gap: 60px;
            flex-wrap: wrap;
            align-items: center;
        }
        .about-text {
            flex: 1.2;
        }
        .about-text p {
            margin: 20px 0;
            line-height: 1.6;
            color: #2d3e50;
            font-size: 1.05rem;
        }
        .highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-top: 32px;
        }
        .highlight-card {
            background: var(--gray-light);
            padding: 24px 20px;
            border-radius: 28px;
            text-align: center;
            flex: 1 1 140px;
            transition: all 0.3s;
            border: 1px solid rgba(0,0,0,0.02);
        }
        .highlight-card:hover {
            transform: translateY(-5px);
            background: white;
            box-shadow: var(--shadow-sm);
        }
        .highlight-card i {
            font-size: 2.4rem;
            color: var(--primary);
            margin-bottom: 12px;
        }
        .about-image {
            flex: 0.8;
        }
        .about-image img {
            width: 100%;
            border-radius: 32px;
            box-shadow: var(--shadow-md);
        }

        /* courses grid */
        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 32px;
        }
        .course-card {
            background: white;
            border-radius: 28px;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 1px solid #f0f0f0;
            cursor: pointer;
        }
        .course-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-light);
        }
        .course-img {
            background: linear-gradient(135deg, #f5f7ff 0%, #eef2ff 100%);
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4.5rem;
            color: var(--primary);
        }
        .course-info {
            padding: 28px;
        }
        .course-info h3 {
            font-size: 1.6rem;
            margin-bottom: 12px;
            font-weight: 700;
        }

        /* gallery lightbox */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
        }
        .gallery-item {
            border-radius: 24px;
            overflow: hidden;
            cursor: pointer;
            position: relative;
        }
        .gallery-item img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.08);
        }

        /* team */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
            gap: 40px;
        }
        .team-card {
            text-align: center;
            background: white;
            border-radius: 32px;
            padding: 32px 20px;
            transition: all 0.3s;
            border: 1px solid #eee;
        }
        .team-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
        }
        .team-card img {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
            border: 4px solid var(--primary);
        }
        .team-social a {
            color: #1e293b;
            margin: 0 10px;
            font-size: 1.3rem;
            transition: color 0.2s;
            display: inline-block;
        }
        .team-social a:hover {
            color: var(--primary);
            transform: scale(1.1);
        }

        /* testimonial swiper */
		
		
		
		
		
		
		
		.testimonial-section {
            padding: 10px 20px;
            background: #fff;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            text-align: center;
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            overflow: hidden;
        }

       
       

        /* Slide Container */
        .testimonial-container {
            position: relative;
            min-height: 350px; 
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonial-slide {
            position: absolute;
            width: 100%;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.6s ease-in-out;
            visibility: hidden;
        }

        .testimonial-slide.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* Text Styles */
        .testimonial-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
        }

        .testimonial-text {
            font-size: 1.25rem;
            color: #444;
            line-height: 1.7;
            margin-bottom: 25px;
            padding: 0 15%;
            font-style: italic;
        }

        .author-info {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .author-name {
            font-weight: bold;
            color: #000;
            font-size: 1.1rem;
        }

        .author-title {
            color: #888;
            font-size: 0.95rem;
            margin-top: 4px;
        }

        /* Manual Navigation Arrows */
        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            font-size: 2.5rem;
            color: #000;
            cursor: pointer;
            z-index: 10;
            transition: transform 0.2s, color 0.2s;
            padding: 10px;
        }

        .nav-btn:hover {
            color: #a6ce38;
            transform: translateY(-50%) scale(1.2);
        }

        .prev-btn { left: 10px; }
        .next-btn { right: 10px; }

        @media (max-width: 600px) {
            .testimonial-text { padding: 0 5%; font-size: 1.1rem; }
            .nav-btn { font-size: 1.8rem; }
            .quote-icon { font-size: 60px; }
        }
		
		
		
		
		
		
		
		
		
		
		
		
		
		
        .testi-swiper {
            padding: 20px 0 50px;
        }
        .testi-card {
            background: white;
            border-radius: 32px;
            padding: 36px;
            box-shadow: var(--shadow-sm);
            margin: 12px;
            border: 1px solid #f5f5f5;
            transition: all 0.3s;
        }
        .testi-card:hover {
            box-shadow: var(--shadow-md);
        }
        .stars {
            color: #ffc107;
            margin: 18px 0;
            font-size: 1.2rem;
        }

        /* achievements counters */
        .achievements {
            background: linear-gradient(135deg, #0a0f1c 0%, #0f1424 100%);
            color: white;
        }
        .counter-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 48px;
            text-align: center;
        }
        .counter-item {
            flex: 1;
            min-width: 180px;
        }
        .counter-item h3 {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 12px;
        }

      /* --- LAYER 2: Dark Footer --- */
        .main-footer {
            background-color: #1a1a1a;
            color: white;
            padding: 50px 20px;
            text-align: center;
            position: relative;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
        }

        .social-icons a {
            background-color: #78a22f; /* The specific green from image */
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: transform 0.2s;
        }

        .social-icons a:hover { transform: scale(1.1); }

        .footer-nav {
            margin-bottom: 15px;
        }

        .footer-nav a, .sub-nav a {
            color: white;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: bold;
            margin: 0 15px;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .sub-nav { margin-top: 15px; }
        .sub-nav a {
            color: #888;
            font-weight: normal;
            font-size: 0.75rem;
        }

        /* --- LAYER 3: Bottom Bar --- */
        .bottom-bar {
            background-color: #78a22f;
            color: white;
            padding: 20px 20px;
            text-align: center;
            font-size: 0.8rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .bottom-bar .tagline {
            font-weight: bold;
            margin-bottom: 5px;
        }

        .bottom-bar .copyright {
            opacity: 0.8;
            font-size: 0.7rem;
        }

        /* Scroll to top arrow icon (Optional) */
        .scroll-top {
            position: absolute;
            right: 40px;
            top: 40px;
            border: 1px solid #444;
            padding: 8px;
            color: #888;
            font-size: 12px;
        }

        @media (max-width: 600px) {
            .form-wrapper { flex-direction: column; border: none; }
            .footer-nav a { display: block; margin: 10px 0; }
        }

        @media (max-width: 992px) {
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                background: white;
                padding: 24px 0;
                gap: 18px;
                text-align: center;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-toggle {
                display: block;
            }
            .hero-content h1 {
                font-size: 2.6rem;
            }
            .hero-swiper {
                min-height: 500px;
            }
            section {
                padding: 60px 0;
            }
        }
        @media (max-width: 640px) {
            .top-header .container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .section-title {
                font-size: 2rem;
            }
            .hero-content h1 {
                font-size: 2rem;
            }
            .btn-group {
                gap: 12px;
            }
            .btn-primary, .btn-outline-light {
                padding: 10px 24px;
            }
            .counter-item h3 {
                font-size: 2rem;
            }
        }
        .swiper-pagination-bullet-active {
            background: var(--primary) !important;
        }