﻿/* =========================
   GOOGLE FONT
========================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #199B43;
    --secondary: #F68B1F;
    --dark: #0f172a;
    --white: #ffffff;
    --light: #f8faf9;
    --gray: #6b7280;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #333;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

    .section-title h2 {
        font-size: 40px;
        color: var(--primary);
        position: relative;
        display: inline-block;
    }

        .section-title h2::after {
            content: '';
            width: 70px;
            height: 4px;
            background: var(--secondary);
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: 1px;
        }

/* =========================
   TOP HEADER
========================= */

.top-header {
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
}

    .top-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
/* LEFT SIDE */

.top-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
    .top-left span {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .top-left i {
        color: #F68B1F;
    }
/* RIGHT SIDE */

.top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .top-right a {
        width: 32px;
        height: 32px;
        background: rgba(255,255,255,.15);
        color: #fff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: .3s;
    }

        .top-right a:hover {
            background: #F68B1F;
            transform: translateY(-2px);
        }
        /* =========================
   NAVIGATION
========================= */

        .header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 15px rgba(0,0,0,.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .logo img {
        height: 60px;
    }

.logo-text h2 {
    font-size: 22px;
    color: #199B43;
    margin: 0;
}

.logo-text span {
    color: #666;
    font-size: 12px;
}

/*.nav-menu ul {
    display: flex;
    gap: 35px;
}*/
.nav-menu > ul {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu ul li {
    position: relative;
}

    .nav-menu ul li a {
        color: #333;
        font-weight: 500;
        transition: .3s;
    }
        .nav-menu ul li a:hover {
            color: #199B43;
        }

.menu-toggle {
    display: none;
}


    .menu-toggle span {
        display: block;
        width: 30px;
        height: 3px;
        background: var(--primary);
        margin: 6px 0;
    }

.menu-close {
    display: none;
}
/* ===================================
   DROPDOWN MENU
=================================== */

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 280px;
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 12px 15px;
    border-radius: 8px;
}

    .dropdown-menu a:hover {
        background: #199B43;
        color: #fff !important;
    }
/* ===================================
   MEGA DROPDOWN
=================================== */




/* ===================================
   MOBILE MENU CLOSE BUTTON
=================================== */

.close-nav {
    display: none;
}

/* ===================================
   NAVBAR RIGHT
=================================== */

.navbar-right {
    display: flex;
    align-items: center;
}

/* ===================================
   SKILL INDIA LOGO
=================================== */

.skill-india-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50px;
    padding: 6px 12px;
    transition: .3s;
}

    .skill-india-nav:hover {
        box-shadow: 0 5px 15px rgba(0,0,0,.08);
    }

    .skill-india-nav img {
        height: 42px;
        width: auto;
    }

    .skill-india-nav span {
        font-size: 12px;
        font-weight: 600;
        color: #199B43;
        line-height: 1.3;
    }

.mobile-skill-india {
    display: none;
}

/* =========================
   HERO SLIDER
========================= */

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 1s;
}

    .slide.active {
        opacity: 1;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .slide::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .55));
    }

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 90%;
}

    .hero-content h1 {
        font-size: 65px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 20px;
        margin-bottom: 30px;
    }

.btn-primary {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    transition: .3s;
}

    .btn-primary:hover {
        background: var(--primary);
    }

/* =========================
   ABOUT
========================= */
.about-section {
    padding: 100px 0;
    background: #fff;
}

    .about-section .section-title span {
        color: #F68B1F;
        font-weight: 600;
        text-transform: uppercase;
    }

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.about-content h3 {
    font-size: 36px;
    color: #199B43;
    margin-bottom: 25px;
}

.about-content p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.9;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

    .feature-item i {
        color: #199B43;
    }


.counter-section {
    background: linear-gradient(135deg, #199B43, #10692E);
    padding: 80px 0;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.counter-box {
    text-align: center;
    color: #fff;
}

.counter {
    font-size: 55px;
    font-weight: 700;
    display: block;
}

.counter-box h4 {
    font-size: 18px;
    margin-top: 10px;
}

/*.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
}*/

/* =========================
   MISSION VISION
========================= */

.mission-vision {
    background: #f5fdf7;
    padding: 80px 0;
}

    .mission-vision .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

.mission-box,
.vision-box {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

    .mission-box h3,
    .vision-box h3 {
        color: var(--primary);
        margin-bottom: 15px;
    }

/* =========================
   COURSES
========================= */
.courses {
    background: #f8faf9;
}

.course-wrapper {
    position: relative;
    overflow: hidden;
}

.course-carousel {
    overflow: hidden;
}

.course-track {
    display: flex;
    transition: 0.5s ease;
}

.course-card {
    min-width: calc(100% / 3 - 20px);
    margin: 10px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .3s;
}

    .course-card:hover {
        transform: translateY(-10px);
    }

    .course-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

.course-content {
    padding: 25px;
}

    .course-content h3 {
        color: #199B43;
        margin-bottom: 15px;
    }

    .course-content p {
        margin-bottom: 20px;
        color: #666;
    }

.course-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #F68B1F;
    color: #fff;
    border-radius: 30px;
}

.course-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    background: #199B43;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.prev-course {
    left: -10px;
}

.next-course {
    right: -10px;
}

.course-nav:hover {
    background: #F68B1F;
}

/*.course-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
}

.course-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .4s;
}

    .course-card:hover {
        transform: translateY(-10px);
    }

    .course-card img {
        height: 220px;
        width: 100%;
        object-fit: cover;
    }

    .course-card h3 {
        padding: 20px 20px 10px;
        color: var(--primary);
    }

    .course-card p {
        padding: 0 20px 25px;
    }*/

/* =========================
   WHY CHOOSE US
========================= */
.why-us-section {
    padding: 100px 0;
    background: #f8faf9;
}

.why-wrapper {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 60px;
    align-items: center;
}

/*.why-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
}*/

.why-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

    .why-gallery img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, .10);
        transition: .4s;
    }

        .why-gallery img:hover {
            transform: scale(1.03);
        }

.message-box {
    margin-bottom: 40px;
}

.welcome-tag {
    display: inline-block;
    background: #F68B1F;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
}

.message-box h3 {
    color: #199B43;
    font-size: 36px;
    margin-bottom: 20px;
}

.message-box p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.9;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
    transition: .3s;
}

    .feature-item:hover {
        transform: translateY(-5px);
    }

    .feature-item i {
        font-size: 30px;
        color: #199B43;
        margin-top: 5px;
    }

    .feature-item h4 {
        margin-bottom: 8px;
        color: #222;
    }

    .feature-item p {
        font-size: 14px;
        color: #666;
    }

/*.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 40px 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

    .why-card i {
        font-size: 55px;
        color: var(--secondary);
        margin-bottom: 20px;
    }*/

/* =========================
   ADMISSION BANNER
========================= */

.admission-banner {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url('../images/admission-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
}

    .admission-banner h2 {
        font-size: 50px;
        margin-bottom: 20px;
    }

/* =========================
   TESTIMONIAL
========================= */

.testimonial-card {
    max-width: 800px;
    margin: auto;
    text-align: center;
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

/* =========================
   GALLERY
========================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

    .gallery-grid img {
        height: 250px;
        width: 100%;
        object-fit: cover;
        border-radius: 10px;
        transition: .4s;
    }

        .gallery-grid img:hover {
            transform: scale(1.05);
        }


/* =========================
   enquiry-badge
========================= */
.enquiry-badge {
    background: #199B43;
    color: #fff;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 14px;
}

/* =========================
   CONTACT
========================= */
.contact-section {
    background: #f8faf9;
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
    transition: .3s;
}

    .contact-card:hover {
        transform: translateY(-5px);
    }

    .contact-card .icon {
        width: 60px;
        height: 60px;
        background: #199B43;
        color: #fff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 22px;
        flex-shrink: 0;
    }

    .contact-card h4 {
        color: #199B43;
        margin-bottom: 8px;
    }

    .contact-card p {
        color: #666;
        line-height: 1.8;
    }

.contact-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

    .contact-form-box h3 {
        margin-bottom: 30px;
        color: #199B43;
    }

    .contact-form-box .row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .contact-form-box input,
    .contact-form-box select,
    .contact-form-box textarea {
        width: 100%;
        padding: 15px 20px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 15px;
        outline: none;
        transition: .3s;
    }

        .contact-form-box input:focus,
        .contact-form-box select:focus,
        .contact-form-box textarea:focus {
            border-color: #199B43;
        }

    .contact-form-box textarea {
        resize: none;
        margin-bottom: 20px;
    }

    .contact-form-box button {
        background: #F68B1F;
        color: #fff;
        border: none;
        padding: 15px 35px;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: .3s;
    }

        .contact-form-box button:hover {
            background: #199B43;
        }

/*.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.contact-form button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
}*/


/* ===================================
   PARTNER LOGO SLIDER
=================================== */

.partners-section {
    padding: 100px 0;
    background: #f8faf9;
    overflow: hidden;
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 50px;
}

.logo-track {
    display: flex;
    width: calc(220px * 12);
    animation: scrollLogos 30s linear infinite;
}

.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

.logo-item {
    width: 220px;
    height: 120px;
    margin: 0 15px;
    background: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    flex-shrink: 0;
}

    .logo-item img {
        max-width: 140px;
        max-height: 70px;
        object-fit: contain;
        filter: grayscale(100%);
        transition: .3s;
    }

    .logo-item:hover img {
        filter: grayscale(0%);
        transform: scale(1.05);
    }

@keyframes scrollLogos {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-220px * 6));
    }
}

.trusted-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #199B43;
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
    font-weight: 600;
    margin-bottom: 30px;
}

.partnership-note {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: center;
    color: #666;
    line-height: 1.8;
}

/* =========================
   FOOTER
========================= */

.footer {
    background: #0f172a;
    color: #fff;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding: 80px 0 50px;
}

.footer-logo {
    width: 90px;
    margin-bottom: 20px;
}

.footer-widget p {
    color: #cbd5e1;
    line-height: 1.9;
}

.footer-widget h4 {
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    font-size: 20px;
}

    .footer-widget h4::after {
        content: '';
        width: 50px;
        height: 3px;
        background: #F68B1F;
        position: absolute;
        left: 0;
        bottom: -10px;
    }

.footer-widget ul li {
    margin-bottom: 12px;
}

    .footer-widget ul li a {
        color: #cbd5e1;
        transition: .3s;
    }

        .footer-widget ul li a:hover {
            color: #F68B1F;
            padding-left: 5px;
        }

.footer-social {
    margin-top: 25px;
}

    .footer-social a {
        width: 40px;
        height: 40px;
        background: #199B43;
        color: #fff;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        margin-right: 10px;
        transition: .3s;
    }

        .footer-social a:hover {
            background: #F68B1F;
        }

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: #cbd5e1;
}

.footer-contact i {
    color: #F68B1F;
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    color: #cbd5e1;
}


/* ===================================
   FOOTER CTA
=================================== */

.footer-cta {
    background: linear-gradient(135deg, #199B43 0%, #146c31 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

    .footer-cta::before {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        background: rgba(255, 255, 255, .05);
        border-radius: 50%;
        top: -150px;
        left: -100px;
    }

    .footer-cta::after {
        content: '';
        position: absolute;
        width: 250px;
        height: 250px;
        background: rgba(255, 255, 255, .05);
        border-radius: 50%;
        bottom: -120px;
        right: -80px;
    }

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.cta-text span {
    display: inline-block;
    background: #F68B1F;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-text h2 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-text p {
    color: rgba(255, 255, 255, .9);
    font-size: 17px;
    max-width: 650px;
    line-height: 1.8;
}

.btn-cta {
    display: inline-block;
    background: #F68B1F;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

    .btn-cta:hover {
        background: #fff;
        color: #199B43;
        transform: translateY(-3px);
    }


.scroll-top-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #199B43;
    color: #fff;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

    .scroll-top-btn.show {
        opacity: 1;
        visibility: visible;
    }

    .scroll-top-btn:hover {
        background: #F68B1F;
    }

.whatsapp-btn {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    z-index: 9999;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px) {

    .about-content,
    .contact-grid,
    .mission-vision .container {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .skill-india-nav {
        display: none;
    }

    .close-nav {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding: 20px 25px;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

        .close-nav i {
            width: 40px;
            height: 40px;
            background: #F68B1F;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 18px;
            transition: .3s;
        }

            .close-nav i:hover {
                background: #fff;
                color: #199B43;
            }

    .course-card {
        min-width: calc(100% / 2 - 20px);
    }


    .footer-top {
        grid-template-columns: 1fr 1fr;
    }


    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-text h2 {
        font-size: 34px;
    }
}

/* ===================================
   MOBILE FIXES
=================================== */

@media (max-width:768px) {
    .top-header .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-left {
        justify-content: center;
        gap: 10px;
    }
    .skill-india-nav {
        display: none;
    }
    .mobile-skill-india {
        display: block;
        text-align: center;
        padding: 20px;
        border-bottom: 1px solid rgba(255,255,255,.15);
    }

        .mobile-skill-india img {
            height: 55px;
            margin: auto;
        }
        .menu-toggle {
            display: block;
            font-size: 24px;
            color: #199B43;
            cursor: pointer;
        }

        .nav-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: #199B43;
            transition: .4s;
            z-index: 9999;
            overflow-y: auto;
        }

            .nav-menu.active {
                right: 0;
            }

        .menu-close {
            display: flex;
            justify-content: flex-end;
            padding: 20px;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
        }

        .nav-menu ul {
            flex-direction: column;
            align-items: stretch;
            gap: 0;
        }

            .nav-menu ul li {
                border-bottom: 1px solid rgba(255,255,255,.15);
            }

                .nav-menu ul li a {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 18px 25px;
                    color: #fff;
                }
                .nav-menu ul li a:hover {
                   
                    color: #fff;
                }


        .dropdown-menu {
            position: static;
            opacity: 1;
            visibility: visible;
            display: none;
            box-shadow: none;
            background: rgba(255,255,255,.08);
            padding: 0;
            min-width: 100%;
        }

        .dropdown.active .dropdown-menu {
            display: block;
        }

        .dropdown-menu a {
            padding: 14px 25px 14px 50px;
            color: #fff;
        }
    
    .container {
        width: 95%;
    }

    /* HERO */

    .hero {
        height: 70vh;
    }

    .hero-content {
        width: 90%;
    }

        .hero-content h1 {
            font-size: 36px;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 16px;
        }

    /* ABOUT */

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-content h3 {
        font-size: 28px;
    }

    .about-features {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* COUNTER */

    .counter-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 20px;
    }

    .counter {
        font-size: 36px;
    }

    /* COURSES */

    .course-card {
        min-width: 100%;
        margin: 0;
    }

    .course-nav {
        width: 40px;
        height: 40px;
    }

    /* WHY CHOOSE US */

    .why-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-gallery {
        grid-template-columns: 1fr 1fr;
    }

        .why-gallery img {
            height: 150px;
        }

    .message-box h3 {
        font-size: 28px;
    }

    .why-features {
        grid-template-columns: 1fr;
    }

    /* CONTACT */

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form-box {
        padding: 25px;
    }

        .contact-form-box .row {
            grid-template-columns: 1fr;
            gap: 15px;
        }

    /* FOOTER CTA */

    .cta-text h2 {
        font-size: 28px;
    }

    /* PARTNERS */

    .logo-item {
        width: 160px;
    }

    /* FOOTER */

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .logo img {
        height: 45px;
    }

    .logo-text h2 {
        font-size: 16px;
    }

    .logo-text span {
        font-size: 10px;
    }
}
