:root {
    --primary-color: #76BE81;
    --secondary-color: #76c487;
    --accent-color: #1A4042;
    --light-bg: #f9f9f9;
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Education platform for all */
:root {
    --brand: #1A4042;
    --accent: #76C487;
    --card: #0f2624;
    --card-deep: #0b1e1c;
    --white: #fff;
    --bg-image: url('https://images.unsplash.com/photo-1523580846011-d3a5bc25702b?q=80&w=1800&auto=format&fit=crop');
}

/* footer */
:root {
    --brand: #1A4042;
    --accent: #76C487;
    --light-bg: #f9f9f9;
    --text-75: rgba(255, 255, 255, .75);
    --text-85: rgba(255, 255, 255, .85);
}


body {
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--light-bg);
    margin: 0;
    padding: 0;
    color: #1a1a1a;
    padding-top: 60px;
}


/* ===== NAVBAR ===== */
/* .navbar {
            background-color: #fff;
            padding: 0.8rem 8% 0;
            align-items: center;
            min-height: 60px;
        } */

.navbar {
    background-color: #fff;
    padding: 0.8rem 8% 0.8rem;
    align-items: center;
    min-height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);  */
}

.logo {
    padding-bottom: .4rem;
}

.logo img {
    height: 32px;
    margin-right: 2rem;
}

.divider {
    width: 1px;
    height: 18px;
    background: #ccc;
    margin: 0 10px;
}

.nav-item {
    padding: .5rem 0;
}

.nav-link {
    color: #0d1b3d !important;
    font-weight: 600;
    margin-right: .8rem;
    font-size: 1rem;
    transition: color .2s;
    padding: .25rem .15rem;
}

.nav-link.active {
    color: var(--accent) !important;

}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.btn-outline-dark {
    border-radius: 6px;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 600;
    font-size: .85rem;
    padding: .4rem .8rem;
}

.btn-outline-dark:hover {
    background: var(--accent-color);
    color: #fff;
}

.btn-dark {
    background: var(--accent-color);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: .85rem;
    padding: .4rem .8rem;
}

.btn-dark:hover {
    background: var(--secondary-color);
    color: #fff;
}

.btn-lang {
    background: #f1f4f6;
    border-radius: 6px;
    font-weight: 500;
    color: var(--primary-color);
    font-size: .85rem;
    padding: .4rem .8rem;
}

.btn-lang i {
    margin-right: 5px;
}

/* ===== MEGA MENU HOVER ===== */
.dropdown-hover {
    position: static;
}

.dropdown-hover .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: opacity .15s, visibility .15s;
    margin-top: 0 !important;
    left: 0;
    right: 0;
    top: 100% !important;
    transform: none !important;
    border: none;
    border-radius: 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
    padding: 1.2rem 0;
    z-index: 1030;
    pointer-events: none;
}

.dropdown-hover:hover .dropdown-menu,
.dropdown-menu:hover {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.dropdown-hover .dropdown-menu {
    border-top: 1px solid rgba(0, 0, 0, .05);
}

.mega-menu h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: .8rem;
    font-size: .95rem;
}

.mega-menu a {
    color: #0d1b3d;
    text-decoration: none;
    display: block;
    padding: .3rem 0;
    font-size: .85rem;
    transition: color .2s;
}

.mega-menu a:hover {
    color: var(--secondary-color);
}

.nav-categories {
    font-weight: 600;
    color: var(--accent-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 1rem;
    margin-bottom: 0;
    padding: .5rem .8rem;
    border-radius: 6px;
    transition: background-color .2s;
}

.nav-categories:hover {
    background: #f8f9fa;
}

.nav-categories i {
    color: var(--secondary-color);
    margin-right: 7px;
    font-size: 1rem;
}

.dropdown-hover>.nav-categories:active,
.dropdown-hover>.nav-categories:focus {
    background: transparent;
}

/* ===== MOBILE MENU ===== */
.navbar-toggler {
    border: none;
    padding: .25rem .5rem;
    font-size: 1.1rem;
    color: var(--accent-color);
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

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

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1050;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .3s;

}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .8rem 1.2rem;
    border-bottom: 1px solid #eee;
    background: #fff;
    min-height: 60px;
}

.mobile-logo img {
    height: 26px;
}

.mobile-close {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--accent-color);
    cursor: pointer;
}

.mobile-nav {
    padding: 1.2rem;
}

.mobile-nav-item {
    padding: .8rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #0d1b3d;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
}

.mobile-nav-link i {
    color: var(--primary-color);
    transition: transform .3s;
}

.mobile-nav-link.active i {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s;
    background: #f9f9f9;
    border-radius: 8px;
    margin-top: .5rem;
}

.mobile-submenu.active {
    max-height: 60vh;
    padding: .8rem;
    overflow-y: auto;
}

.mobile-submenu-item {
    padding: .6rem 0;
}

.mobile-submenu-link {
    color: #0d1b3d;
    text-decoration: none;
    font-size: .9rem;
    display: block;
    transition: color .2s;
}

.mobile-submenu-link:hover {
    color: var(--secondary-color);
}

.mobile-actions {
    padding: 1.2rem;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.mobile-actions .btn {
    width: 100%;
    text-align: center;
    padding: .6rem;
}

@media (min-width:992px) {
    .mobile-menu {
        display: none;
    }
}


@media (max-width:992px) {

    .logo {
        padding-bottom: 0;
    }

    .navbar-nav {
        display: none;
    }

    .mega-menu {
        position: static !important;
        left: auto;
        right: auto;
        top: auto !important;
        transform: none !important;
        visibility: visible;
        opacity: 1;
        box-shadow: none;
        padding: 1rem;
    }

    .divider,
    .desktop-actions {
        display: none !important;
    }

    .navbar {
        padding: .5rem 5%;
    }

    /* body {
        padding-top: 60px;
    } */
}

/* @media (max-width:992px) {
            .logo {
                padding-bottom: 0;
            }

            .navbar-nav {
                display: none;
            }

            .mega-menu {
                position: static !important;
                left: auto;
                right: auto;
                top: auto !important;
                transform: none !important;
                visibility: visible;
                opacity: 1;
                box-shadow: none;
                padding: 1rem;
            }

            .divider,
            .desktop-actions {
                display: none !important;
            }

            .navbar {
                padding: .5rem 5%;
            }
        } */
/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    color: #fff;
    border-radius: 1rem;
    margin: 2%;
    padding: 7rem 4.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    background:
        /* linear-gradient(135deg, rgba(26, 64, 66, 0.10), rgba(118, 196, 135, 0.10)), */
        url("../images/img.png") center/cover no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    z-index: 0;
}

.hero-left-section {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-left-section h1 {
    font-weight: 700;
    font-size: 55px;
    line-height: 1.2;
}

.hero-left-section p {
    margin-top: 1rem;
    font-size: 18px;
    color: #e8f0ee;
    line-height: 1.6;
    font-weight: 500;
}

/* SEARCH BOX */
.search-box {
    background: #fff;
    border-radius: 8px;
    padding: .6rem .7rem;
    display: flex;
    align-items: center;
    margin-top: 1.2rem;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
}

.search-box input {
    border: none;
    outline: none;
    width: 100%;
    padding-left: .5rem;
    font-size: .9rem;
}

/* TAGS */
.hero-tags {
    margin-top: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}

.hero-tags span {
    padding: .3rem .8rem;
    border-radius: 3px;
    font-size: .75rem;
    color: #fff;
    display: inline-block;
    font-weight: 500;
}

.tag-red {
    background: #d9534f;
}

.tag-yellow {
    background: #f0ad4e;
}

.tag-green {
    background: #5cb85c;
}

@media (max-width:992px) {

    .hero-section {
        text-align: center;
        align-items: center;
        padding: 3rem 1rem;
        margin-top: 2rem;
        background:
            linear-gradient(135deg, rgba(26, 64, 66, 0.30), rgba(118, 196, 135, 0.30)),
            url("../images/mobilebanner.png") center/cover no-repeat;
    }

    .hero-left-section {
        max-width: 100%;
    }

    .search-box {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 420px;
    }

    .hero-tags {
        justify-content: center;
    }
}


/* ===== STATS STRIP ===== */
.stats-strip {
    margin: 3% 3% 3% 3%;
}

.stat-card {
    background: #fff;
    border-radius: 14px;
    padding: 1rem 1.2rem;
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #f4f8f7;
}

.stat-icon i {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.stat-meta h5 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.1;
    color: #203D74;
    font-weight: 700;
}

.stat-meta p {
    margin: 2px 0 0 0;
    font-size: .82rem;
    color: #6b7480;
    font-weight: 600;
}

.stat-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}

/* ===== PRO TUTORS SECTION ===== */
.pro-tutors {
    /* margin: 4rem 0 4rem 0; */
    position: relative;
    color: var(--accent-color);
    background-image: url("../images/bg-hero.png");
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: center, center, center;
    background-size: auto, auto, cover;
    padding: 0.2rem 0 4rem 0;

}



.pro-tutors>* {
    position: relative;
    z-index: 1;
}

.pro-head h2 {
    font-size: 35px;
    font-weight: 800;
    letter-spacing: .2px;
}

.pro-head p {
    color: #1A4042;
    margin-bottom: 0;
    font-size: 16px;
}

.btn-view-all {
    background: var(--secondary-color);
    color: var(--light-bg);
    border: 0;
    padding: .55rem 1rem;
    font-weight: 700;
    border-radius: 3px;
}

.btn-view-all:hover {
    background-color: var(--accent-color);
    color: var(--light-bg);
}

.tutor-strip {
    position: relative;
    margin-top: 1.2rem;
}

/* .tutor-card {
    min-width: 360px;
    max-width: 360px;
    background: #fff;
    color: #1b2b2a;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .10);
    padding: .8rem .9rem;
    scroll-snap-align: start;
    border: 1px solid #e8eded;
} */

.tutor-card {
    min-width: 360px;
    max-width: 360px;
    background: #fff;
    color: #1b2b2a;
    border-radius: 12px;
    padding: .8rem .9rem;
    border: 1px solid #e8eded;
    scroll-snap-align: start;
    overflow: hidden;
    box-sizing: border-box;
}

/* ===== Tutor Card Text Truncation ===== */
/* .tutor-name,
.tutor-degree,
.meta,
.meta-experience,
.badge-title {
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.2s ease;
  cursor: pointer;
}


.tutor-name,
.tutor-degree,
.meta,
.meta-experience {
  width: 190px; 
}


.tutor-name:hover,
.tutor-degree:hover,
.meta:hover,
.meta-experience:hover {
  white-space: normal;     
  overflow: visible;      
  background: #fff;        
  z-index: 10;
  position: relative;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  padding: 2px 4px;
  border-radius: 4px;
} */



.tutor-divider {
    width: 100%;
    height: 1px;
    background-color: #1A404233;
    margin: 6px 0 10px;
    border-radius: 2px;
}


.tutor-top {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
}

.tutor-photo {
    width: 120px;
    height: 195px;
    border-radius: 10px;
    overflow: hidden;
    flex: 0 0 auto;
    background: #eaf2f1;
}

.tutor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-bottom: .35rem;
}

.badge-chip {
    font-size: .72rem;
    line-height: 1;
    padding: .35rem .5rem;
    border-radius: 6px;
    font-weight: 800;
    color: #fff;
}

.badge-title {
    background: var(--secondary-color);
}

.badge-gre {
    background: #35b36f;
}

.badge-ielts {
    background: #2fb06b;
}

.badge-exp {
    background: #123e8e;
}

.tutor-name {
    margin: 0;
    font-weight: 700;
    color: #203D74;
    font-size: 18px;
}

.tutor-degree {
    margin: 0;
    color: #2da66a;
    font-weight: 700;
    font-size: 14px;
}

.rating {
    color: #ffb400;
    font-size: .9rem;
}

.rating small {
    color: #6c7a79;
    font-weight: 600;
    margin-left: .35rem;
}

.meta {
    color: #5b6a69;
    font-weight: 600;
    font-size: .86rem;
    margin: .35rem 0 .2rem;
}

.meta-experience {
    color: var(--accent-color);
    font-weight: 500;
    font-size: .89rem;
    margin: .35rem 0 .2rem;
}

.tutor-actions .btn {
    padding: .35rem .7rem;
    font-weight: 700;
    border-radius: 8px;
    font-size: .85rem;
}


.tutor-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: .25rem .0rem .5rem;
    max-width: calc(360px * 3 + 2rem);
    margin: 0 auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* background: none !important; */
}

.tutor-scroll::-webkit-scrollbar {
    display: none;
}

/* Chrome/Safari */

/* arrows */
.arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #d9e6e4;
    background: #fff;
    color: #173f3c;
    display: grid;
    place-items: center;
    z-index: 2;
}

.arrow-left {
    left: -10px;
}

.arrow-right {
    right: -10px;
}

.arrow-btn:hover {
    background: #f3f7f6;
}

.arrow-btn.disabled {
    opacity: .4;
    pointer-events: none;
}

/* divider */
.pro-divider {
    height: 1px;
    background: rgba(255, 255, 255, .12);
    margin: 1.4rem 0 1rem;
    border-radius: 1px;
}

/* categories */
.cat-grid {
    row-gap: 1rem;
}

.cat-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 10px;
    padding: .85rem 1rem;
    display: flex;
    align-items: center;
    gap: .7rem;
    color: #e9f4f2;
}

.cat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: #1d504c;
    flex: 0 0 44px;
}

.cat-title {
    font-weight: 800;
    margin: 0;
}

.cat-sub {
    margin: 0;
    font-size: .85rem;
    color: #9fc1bd;
    font-weight: 700;
}

/* responsive */
@media (max-width:1200px) {
    .tutor-scroll {
        max-width: calc(360px * 2 + 1rem);
    }
}

@media (max-width:576px) {
    .tutor-card {
        min-width: 87vw;
        max-width: 87vw;
    }

    .tutor-scroll {
        max-width: 87vw;
    }

    .arrow-left {
        left: -4px;
    }

    .arrow-right {
        right: -4px;
    }

    .pro-tutors {
        background-position: center, center, top center;
    }
}


/* ===== FEATURED COURSES ===== */
.featured-courses {
    background: #ffffff;
    padding: 3rem 0 3rem;
    color: #0e2d2b;
}

.fc-head h2 {
    font-size: 35px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: .35rem;
}

.fc-head p {
    color: #1A4042;
    margin: 0;
    font-size: 16px;
}

.btn-view-courses {
    background: var(--secondary-color);
    color: #fff;
    border: 0;
    padding: .55rem 1rem;
    font-weight: 700;
    border-radius: 3px;
}

.btn-view-courses:hover {
    background: var(--accent-color);
    color: #fff;
}

.course-strip {
    position: relative;
    margin-top: 1.2rem;
}

/* viewport shows 4 cards on desktop */
.course-scroll {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: .25rem 0 .5rem;
    max-width: calc(300px * 4 + 3rem);
    margin: 0 auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background-color: #ffffff;
}

.course-scroll::-webkit-scrollbar {
    display: none;
}

/* Chrome/Safari */

.course-card {
    min-width: 300px;
    max-width: 300px;
    background: #ffffff;
    border-radius: 14px;
    /* box-shadow: 0 12px 24px rgba(0, 0, 0, .08); */
    overflow: hidden;
    scroll-snap-align: start;
    border: 2px solid #eef3f2;
}

/* image block */
.course-media {
    position: relative;
    aspect-ratio: 16 / 9;
    /* keeps height consistent */
    background: #e9f1ef;
}

.course-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.course-card:hover .course-media img {
    transform: scale(1.02);
}

/* price badge */
.price-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #76c487;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 14px rgba(118, 196, 135, .45);
}

/* content */
.course-body {
    padding: 12px 14px 14px;
}

.course-title {
    font-weight: 800;
    font-size: 16px;
    color: #111f1e;
    margin: 0 0 .35rem 0;
}

.course-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6a7a78;
    font-weight: 700;
    font-size: 13px;
    margin: 0;
}

.course-meta i {
    color: #76c487;
}

/* arrows */
.fc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid var(--accent);
    background: var(--accent);
    color: var(--light-bg);
    z-index: 2;
}

.fc-arrow:hover {
    background: var(--accent-color);
    border: var(--accent-color);
}

.fc-prev {
    left: -10px;
}

.fc-next {
    right: -10px;
}

.fc-arrow.disabled {
    opacity: .4;
    pointer-events: none;
}

@media (max-width:1200px) {
    .course-scroll {
        max-width: calc(300px * 2 + 1rem);
    }

    /* 2 cards */
}

@media (max-width:576px) {
    .course-card {
        min-width: 88vw;
        max-width: 88vw;
    }

    .course-scroll {
        max-width: 88vw;
    }

    .fc-prev {
        left: -4px;
    }

    .fc-next {
        right: -4px;
    }
}


/* ===== Elevate CTA (Bootstrap version) ===== */
.bg-elevate {
    background: linear-gradient(90deg, #76BE81 0%, #76BE81 100%);
    background-image: url("../images/bg/Mask group.png");

}

.elevate-figure {
    --size: 28rem;
    /* default desktop size */
    width: var(--size);
    height: var(--size);
    background: radial-gradient(closest-side, #cfe9d8 62%, transparent 63%);

}


.elevate-figure img {
    object-fit: cover;
    width: 104%;
    height: 104%;
    transform: translateX(-2%);
}

@media (max-width: 1200px) {
    .elevate-figure {
        --size: 22rem;
    }

    .elevate-figure img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        transform: translateX(-2%);
    }

    .elevate-figure img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        transform: translateX(-2%);
    }
}

@media (max-width: 992px) {
    .elevate-figure {
        --size: 20rem;
    }

    .elevate-figure img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        transform: translateX(-2%);
    }
}

@media (max-width: 576px) {
    .elevate-figure {
        --size: 16rem;
    }

    @media (max-width: 1200px) {
        .elevate-figure {
            --size: 22rem;
        }

        .elevate-figure img {
            object-fit: cover;
            width: 100%;
            height: 100%;
            transform: translateX(-2%);
        }
    }
}

/* buttons */

.cta-elevate .cta-actions {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.cta-elevate .btn-ghost {
    background: #ffffff;
    border: 1px solid #dfeae8;
    color: #1A4042;
    font-weight: 700;
    border-radius: 3px;
    padding: .55rem 1rem;
}

.cta-elevate .btn-apply {
    background: var(--secondary-color);
    color: #fff;
    border: 0;
    font-weight: 800;
    border-radius: 3px;
    padding: .55rem 1rem;
}

.cta-elevate .btn-apply:hover {
    background: var(--accent-color);
}

.cta-elevate .btn-ghost:hover {
    background: var(--accent-color);
    color: var(--light-bg);
}




/* ===== EXPLORE COURSES (grid) ===== */
.explore-courses {
    /* margin: 4rem 0 4rem 0; */
    position: relative;
    color: #e9f4f2;
    background-image:
        radial-gradient(1200px 600px at 10% -10%, rgba(255, 255, 255, 0.04), transparent),
        radial-gradient(1200px 600px at 90% 110%, rgba(255, 255, 255, 0.04), transparent),
        url("../images/bg/pro-tutor-waves.png");
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: center, center, center;
    background-size: auto, auto, cover;
    padding: 3rem 0 4.5rem 0;
}

.explore-courses .ec-head h2 {
    color: #fff;
    font-weight: 800;
    letter-spacing: .2px;
    color: var(--light-bg);
}

.explore-courses .ec-head p {
    color: #fff;
    margin: 0;
    font-size: 16px;
}

/* filters (right side) */
/* .ec-filters .filter-nav-link {
    padding: 0;
    font-weight: 700;
    color: #fff;
} */


.filter-nav-link {
    color: #fff !important;
    font-weight: 600;
    margin-right: .8rem;
    font-size: 1rem;
    transition: color .2s;
    padding: .25rem .15rem;
    text-decoration: none;
}

.filter-nav-link.active {
    color: var(--accent) !important;

}

.filter-nav-link:hover {
    color: var(--secondary-color) !important;
}



.ec-filters .sep {
    opacity: .35;
    margin: 0 .6rem;
}

/* cards */
.course-tile {
    border: 0;
    border-radius: 14px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .06);
}

.course-tile .media-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.course-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.course-tile:hover img {
    transform: scale(1.02);
}

/* price badge – reuse your style but a bit smaller */
.course-tile .price-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #76c487;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 14px rgba(118, 196, 135, .45);
}

.course-tile .card-body {
    padding: 12px 14px 16px;
}

.course-tile .title {
    font-weight: 800;
    font-size: 16px;
    color: #111f1e;
    margin: 0 0 .25rem;
}

.course-tile .meta {
    color: #6a7a78;
    font-weight: 700;
    font-size: 13px;
    margin: 0;
}

.course-tile .meta i {
    color: #76c487;
}

.course-tile.d-none {
    display: none !important;
}

/* footer button */
.explore-courses .view-all-wrap {
    text-align: center;
    margin-top: 2.5rem;

}

.explore-courses .btn-view-all {
    background: var(--accent-color);
    color: #fff;
    border: 1px solid var(--secondary-color);
    padding: .55rem 1rem;
    font-weight: 700;
    border-radius: 3px;
}

.explore-courses .btn-view-all:hover {
    background: var(--secondary-color);
    color: #fff;
}

/* @media screen and (max-width: 768px) {
    .explore-courses .view-all-wrap {
    text-align: center;
    margin-top: 1rem;
    
}
    
} */


.educational-scection {
    padding: 4rem 0 4rem 0;
}

/* ===== HOW IT WORKS SECTION ===== */

/* Section */
.hiw {
    background: #f7fbf9;
    padding: 2rem 0 2rem;
    position: relative
}

.hew-head {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.hiw h2 {
    margin: 0 0 36px;
    text-align: center;
    font-weight: 800;
    color: var(--accent-color);
}

.hew-divider {
    display: block;
    height: 1px;
    width: 86%;
    margin: 0 auto;
    background: rgba(26, 64, 66, .12);
    border-radius: 1px;
}

.hiw-item {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.hiw-caption {
    line-height: 1.15
}

.hiw-caption .t {
    font-weight: 800;
    color: #193c39;
    font-size: 1.2rem;
}

.hiw-caption .m {
    font-weight: 700;
    font-size: 14px;
    color: #62b083;
    text-decoration: none
}

.hiw-caption .m:hover {
    text-decoration: underline
}

.hiw-caption.top {
    order: -1;
    margin-bottom: 8px
}

.hiw-caption.bottom {
    margin-top: 10px
}

.hiw-bubble {
    width: 220px;
    height: 220px;
    margin: 0 auto;
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 2;
    box-shadow: inset 0 0 0 14px rgba(22, 120, 96, .06)
}

.hiw-bubble img {
    width: 92px;
    height: 92px;
    object-fit: contain
}

.hiw-bubble.is-green {
    background: #e9f5ef
}

.hiw-bubble.is-pink {
    background: #ffeaf6
}

.hiw-bubble.is-amber {
    background: #fff1dc
}

.hiw-bubble.is-mint {
    background: #e7f8f3
}

.hiw-arc {
    position: absolute;
    left: 55%;
    transform: translateX(-45%);
    width: 300px;
    height: 200px;
    pointer-events: none;
    z-index: 1;
    opacity: .95
}

.hiw-arc svg {
    width: 100%;
    height: 100%;
    display: block
}

.hiw-arc.top {
    top: -40px;
    transform: translateX(-50%) scaleY(1)
}

.hiw-arc.bottom {
    bottom: -40px;
    transform: translateX(-50%) scaleY(-1)
}

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

    /* .hiw-arc {
                width: 220px;
                height: 128px
            } */
    .hiw-arc {
        display: none
    }

    .hiw-arc.top {
        top: -66px
    }

    .hiw-arc.bottom {
        bottom: -66px
    }

    .hiw-bubble {
        width: 210px;
        height: 210px
    }
}

@media (max-width:992px) {
    .hiw-arc {
        display: none
    }


    .hiw-item {
        flex-direction: column;
    }

    .hiw-caption.top {
        order: 2;
        margin-top: 10px;
        margin-bottom: 0;
    }
}

@media (max-width:768px) {
    .hiw-bubble {
        width: 190px;
        height: 190px
    }


    .hiw-item {
        flex-direction: column;
    }

    .hiw-caption.top {
        order: 2;
        margin-top: 10px;
        margin-bottom: 0;
    }
}



:root {
    --t-bg: #f4faf7;
    --t-card: #1f3d66;
    --t-accent: #183d3a;
    --t-green: #76c487;
}

.testi {
    background: var(--t-bg);
    padding: 56px 0 64px;
}

/* .testi .wrap {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 16px;
        } */

.t-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.t-head h2 {
    margin: 0;
    color: var(--accent-color);
    font-weight: 800;
}

.t-controls {
    display: flex;
    align-items: center;
    gap: 14px;
}

.t-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e1e8ee;
}

.t-dot.is-active {
    background: var(--t-accent);
}

.t-arrow {
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.t-arrow svg {
    width: 25px;
    height: 25px;
    display: block;
    stroke: var(--t-card);
}

.t-arrow:disabled {
    opacity: .35;
    cursor: not-allowed
}

.t-viewport {
    position: relative;
}

.t-scroll {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px 4px 8px 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.t-scroll::-webkit-scrollbar {
    display: none
}

.t-card {
    min-width: 400px;
    max-width: 400px;
    scroll-snap-align: start;
    background: var(--t-card);
    border-radius: 10px;
    color: #fff;
    padding: 16px 16px 18px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.t-name {
    font-weight: 800;
    line-height: 1;
    margin: 0 0 2px
}

.t-role {
    color: var(--t-green);
    font-weight: 700;
    font-size: 12px
}

.t-quote {
    margin-top: 12px;
    background: #ffffff;
    color: #173f3c;
    border-radius: 8px;
    padding: 14px 16px;
    font-style: italic;
    font-weight: 600;
}

/* responsive */
@media (max-width:992px) {
    .t-card {
        min-width: 360px;
        max-width: 360px
    }
}

@media (max-width:576px) {
    .t-card {
        min-width: 88vw;
        max-width: 88vw
    }
}




/* faq */

.faq {
    background: #f7fbf9;
}

.faq h2 {
    color: var(--accent-color);
}

.faq-accordion {
    max-width: 760px;
}

.faq-btn {
    padding: .9rem 1.25rem;
    font-weight: 700;
    border: 0;
    box-shadow: none !important;
    background: #ffffff;
    color: #183d3a;

}

.faq-btn::after {
    flex: 0 0 auto;
    width: auto;
    height: auto;
    margin-left: auto;
    background-image: none !important;
    content: "+";
    font-weight: 800;
    font-size: 20px;
    line-height: 1;
    color: #1b5e20;
}

/* .accordion-button:not(.collapsed) {
    background: #62b083 !important;
    color: #fff !important;
}

.accordion-button:not(.collapsed)::after {
    content: "–";
    color: #fff;
} */

.accordion-item {
    border: 1px solid #e3eee9;
    background: #fff;
}

.accordion-body {
    background: #ffffff;
    color: #375a57;
    font-weight: 600;
    border-top: 1px solid #e7efe9;
    padding: 1rem 1.25rem;
}




/* =========================
   Eduva Footer – Full CSS
   ========================= */


/* background & watermark */
.eduva-footer {
    background:
        radial-gradient(1200px 600px at 10% -10%, rgba(255, 255, 255, .06), transparent),
        radial-gradient(1200px 600px at 90% 110%, rgba(255, 255, 255, .05), transparent),
        linear-gradient(180deg, #153f3c, #143b39);
    position: relative;
    /* needed for ::after */
    overflow: hidden;
    z-index: 0;
    /* create stacking context */
}

/* keep all inner content above the watermark */
.eduva-footer>* {
    position: relative;
    z-index: 1;
}

.eduva-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/logo-01.png") center/80% no-repeat;
    opacity: .12;
    /* increase from .05 so it's visible */
    filter: grayscale(100%) contrast(130%);
    pointer-events: none;
    z-index: 0;
    /* sits behind content */
}

/* separators */
.footer-sep {
    border-color: rgba(255, 255, 255, .08) !important;
    opacity: 1;
    margin: .75rem 0 !important;
}

/* headings */
.ft-h {
    font-size: .95rem;
    letter-spacing: .2px;
    margin-bottom: .6rem;
}

/* lists */
.ft-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ft-list li {
    margin: .35rem 0;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.ft-list i {
    color: #7ad09a;
    font-size: .9rem;
}

.ft-list a {
    color: var(--text-75);
    text-decoration: none;
    font-weight: 600;
}

.ft-list a:hover {
    color: #7ad09a;
    text-decoration: none;
}

/* social buttons */
.soc {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .2);
    color: #d7efe4;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s, transform .2s;
}

.soc:hover {
    background: rgba(255, 255, 255, .08);
    transform: translateY(-1px);
}

.soc.active {
    background: #d1f2e0;
    color: #143b39;
    border-color: transparent;
}

/* links in the legal strip */
.link {
    color: var(--text-75);
    font-weight: 600;
    text-decoration: none;
}

.link:hover {
    color: #7ad09a;
    text-decoration: underline;
}

.text-white-75 {
    color: var(--text-85) !important;
}

/* legal links */
.footer-legal {
    color: var(--light-bg) !important;
    font-weight: 600;
    margin-right: .8rem;
    font-size: .8rem;
    transition: color .2s;
    padding: .25rem .15rem;
    text-decoration: none;
}

.footer-legal:hover {
    color: var(--accent) !important;
    text-decoration: none;
}

/* responsive tweaks */
@media (max-width: 576px) {
    .soc {
        width: 34px;
        height: 34px;
    }

    .eduva-footer::after {
        background-size: 95%;
        opacity: .14;
        /* slightly stronger on mobile */
    }
}

/* reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .soc {
        transition: none;
    }
}



.hero {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    isolation: isolate;
    min-height: 380px;
    background: #123;
    box-shadow: 0 20px 44px rgba(13, 34, 31, .18);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: var(--bg-image) center/cover no-repeat;
    filter: brightness(.55) saturate(.9) blur(.3px);
    transform: scale(1.02);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(26, 64, 66, .92) 0%, rgba(118, 196, 135, .86) 100%);
}

/* LEFT */
.hero-title {
    color: var(--white);
    font-size: 28px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: .2px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .25);
}

.hero-cta.btn {
    border: 2px solid #e7f5ee3a;
    color: #fff;
    font-weight: 600;
    background: transparent;
}

.hero-cta.btn:hover {
    background: #ffffff1a;
    color: #fff;
}

/* RIGHT: STACK + CARD */
.stack {
    max-width: 520px;
    position: relative;
    margin-left: auto
}

.ghost,
.ghost2 {
    position: absolute;
    border-radius: 12px;
    pointer-events: none;
    background: linear-gradient(180deg, #0d2220, #0a1a18);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .30);
    will-change: transform, opacity;
}

.ghost {
    inset: 8px;
    transform: translate(14px, 12px);
    opacity: .30;
}

.ghost2 {
    inset: 16px;
    transform: translate(24px, 22px);
    opacity: .16;
    filter: blur(.2px);
}

.card-e {
    position: relative;
    border-radius: 12px;
    background: linear-gradient(180deg, var(--card), var(--card-deep));
    color: #e9f6ef;
    padding: 22px;
    min-height: 188px;
    box-shadow: 0 26px 40px rgba(0, 0, 0, .38);
    will-change: transform, opacity;
    height: 250px;
}

.card-e::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    pointer-events: none;
    background: radial-gradient(900px 220px at 30% -10%, #ffffff12 0%, transparent 62%);
}

.bullet {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #183c36;
    border: 1px solid #2d5e55;
    margin-bottom: 12px;
}

.star {
    width: 20px;
    height: 20px;
    display: block;
    fill: #8fd5a8
}

.card-e h3 {
    margin: 2px 0 6px;
    font-size: 14px;
    font-weight: 700
}

.card-e p {
    margin: 0;
    color: #cfe7dc;
    line-height: 1.55;
    font-size: 12.6px
}

/* Controls */
/* .controls-bar {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 12px;
            margin-top: 14px;
            padding-top: 10px;
        } */
.controls-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding: 0 0.8rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: 0;
}

.count {
    color: #e7f5ee;
    opacity: .95;
    font-size: 12px;
    letter-spacing: .08em;
    justify-self: start;
}

.count-strong {
    font-size: 1rem;
    font-weight: 600
}

.nav-pair {
    display: flex;
    gap: 8px;
    justify-content: center;
    justify-self: center;
}

/* Avoid Bootstrap .btn conflicts */
.nav-btn {
    width: 35px;
    height: 35px;
    border-radius: 999px;
    border: 1px solid #ffffff;
    background: transparent;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: .15s ease;
    outline: none;
}

.nav-btn svg {
    width: 20px;
    height: 30px;
    fill: #e7f6ef
}

.nav-btn:hover:not(.active) {
    background: rgba(255, 255, 255, .06);
    transform: translateY(-1px);
}

.nav-btn.active {
    transform: scale(1.03);
    border: none;
    background: #76BE81;
}

.nav-btn.active svg {
    fill: #ffffff
}

.nav-btn:focus-visible {
    background:
        radial-gradient(120% 120% at 50% 35%, rgba(255, 255, 255, .16) 0%, rgba(255, 255, 255, .05) 60%, transparent 100%),
        linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .06));
}

.nav-btn[disabled] {
    opacity: .5;
    cursor: not-allowed;
    transform: none !important
}

/* ====== Animations ====== */
@keyframes slideOutLeft {
    from {
        opacity: 1;
        transform: translateX(0)
    }

    to {
        opacity: .00;
        transform: translateX(-28px)
    }
}

@keyframes slideInRight {
    from {
        opacity: .00;
        transform: translateX(28px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0)
    }

    to {
        opacity: .00;
        transform: translateX(28px)
    }
}

@keyframes slideInLeft {
    from {
        opacity: .00;
        transform: translateX(-28px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.out-left {
    animation: slideOutLeft .24s ease forwards
}

.in-right {
    animation: slideInRight .24s ease forwards
}

.out-right {
    animation: slideOutRight .24s ease forwards
}

.in-left {
    animation: slideInLeft .24s ease forwards
}

@keyframes ghostOutLeft {
    from {
        transform: translate(14px, 12px) scale(1)
    }

    to {
        transform: translate(6px, 12px) scale(.985);
        opacity: .26
    }
}

@keyframes ghostInRight {
    from {
        transform: translate(22px, 12px) scale(.985);
        opacity: .26
    }

    to {
        transform: translate(14px, 12px) scale(1);
        opacity: .30
    }
}

@keyframes ghost2OutLeft {
    from {
        transform: translate(24px, 22px) scale(1)
    }

    to {
        transform: translate(16px, 22px) scale(.982);
        opacity: .14
    }
}

@keyframes ghost2InRight {
    from {
        transform: translate(30px, 22px) scale(.982);
        opacity: .14
    }

    to {
        transform: translate(24px, 22px) scale(1);
        opacity: .16
    }
}

@keyframes ghostOutRight {
    from {
        transform: translate(14px, 12px) scale(1)
    }

    to {
        transform: translate(22px, 12px) scale(.985);
        opacity: .26
    }
}

@keyframes ghostInLeft {
    from {
        transform: translate(6px, 12px) scale(.985);
        opacity: .26
    }

    to {
        transform: translate(14px, 12px) scale(1);
        opacity: .30
    }
}

@keyframes ghost2OutRight {
    from {
        transform: translate(24px, 22px) scale(1)
    }

    to {
        transform: translate(30px, 22px) scale(.982);
        opacity: .14
    }
}

@keyframes ghost2InLeft {
    from {
        transform: translate(16px, 22px) scale(.982);
        opacity: .14
    }

    to {
        transform: translate(24px, 22px) scale(1);
        opacity: .16
    }
}

.ghost-out-left {
    animation: ghostOutLeft .24s ease forwards
}

.ghost-in-right {
    animation: ghostInRight .24s ease forwards
}

.ghost2-out-left {
    animation: ghost2OutLeft .24s ease forwards
}

.ghost2-in-right {
    animation: ghost2InRight .24s ease forwards
}

.ghost-out-right {
    animation: ghostOutRight .24s ease forwards
}

.ghost-in-left {
    animation: ghostInLeft .24s ease forwards
}

.ghost2-out-right {
    animation: ghost2OutRight .24s ease forwards
}

.ghost2-in-left {
    animation: ghost2InLeft .24s ease forwards
}

@media (prefers-reduced-motion: reduce) {

    .out-left,
    .in-right,
    .out-right,
    .in-left,
    .ghost-out-left,
    .ghost-in-right,
    .ghost2-out-left,
    .ghost2-in-right,
    .ghost-out-right,
    .ghost-in-left,
    .ghost2-out-right,
    .ghost2-in-left {
        animation-duration: .01ms
    }
}


/* ==========================
       ABOUT US STYLES
 =========================== */

.sub-hero-section {
    position: relative;
    overflow: hidden;
    /* padding: 110px 0 100px; */
    background-color: #fff;
}


.sub-hero-section::before {
    content: "";
    position: absolute;
    right: 3%;
    bottom: 0;
    width: 60%;
    height: 100%;
    background-image: url("../images/about-bg-light.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
    z-index: 0;
}


.sub-hero-section::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60%;
    height: 100%;
    background-image: url("../images/about-bg-solid.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
    z-index: 1;
}

.sub-hero-content {
    position: relative;
    z-index: 2;
}

.sub-hero-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a4042;
}

.sub-hero-heading span {
    color: #76c487;
}

.sub-hero-text {
    font-size: 18px;
    line-height: 1.6;
    margin-top: 15px;
}

.sub-hero-image {
    text-align: center;
}

.sub-hero-image img {
    width: 300px;
    max-width: 100%;
    position: relative;
    z-index: 3;
}



@media (max-width: 991px) {
    .sub-hero-section {
        text-align: center;
        padding: 40px 0 0 0;
    }

    .sub-hero-section::before {
        width: 100%;
        height: 60%;
        background-size: cover;
        background-position: center bottom;
    }

    .sub-hero-section::after {
        width: 100%;
        height: 58%;
        background-size: cover;
        background-position: center bottom;
    }

    .sub-hero-image {

        text-align: center;
    }
}

/* About us section  */
.about-title {

    font-weight: 800;
    font-size: 30px;
    color: #1a4042;

}

.edu-span {
    color: #76BE81;
}

/* STATS SECTION  */

.stats-section {
    background: #F2F2F2;
    padding: 70px 0;
}

.stat-box {
    text-align: center;
    padding: 15px 0;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a4042;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: #76c487;
}

.stats-divider {
    width: 1px;
    height: 50px;
    background-color: #dcdcdc;
    margin: auto;
}

@media (max-width: 991.98px) {
    .stats-divider {
        display: none;
    }
}




/* Mission Vision Section  */

.mission-vision-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.mv-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    color: #fff;
    padding: 40px 35px;
    min-height: 370px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-size: cover;
    background-position: center;
}


.mv-mission {
    background-image: url("../images/mission.jpg");
}

.mv-vision {
    background-image: url("../images/vision.jpg");
}


.mv-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(26, 64, 66, 0.8),
            rgba(26, 64, 66, 6));
    z-index: 1;
}

.mv-card h3 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.highlight-box {
    background-color: #fff;
    color: #1a4042;
    border-radius: 8px;
    padding: 15px 20px;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mv-card p {
    color: #e0ece9;
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}




/* gallery Section  */

.gallery-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.gallery-title {
    text-align: center;
    font-weight: 800;
    font-size: 35px;
    color: #1a4042;
    margin-bottom: 60px;
}

.gallery-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.gallery-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.gallery-img:hover {
    transform: scale(1.03);
}

.col-custom:nth-child(2) {
    margin-top: 40px;
}

.col-custom:nth-child(3) {
    margin-top: 80px;
}

@media (max-width: 767.98px) {
    .col-custom {
        margin-top: 0 !important;
    }

    .gallery-img img {
        height: 220px;
    }
}



/* ===== Tutor list style ===== */

.tutor-list-section {
    color: #e9f4f2;
    padding: 2.2rem 0 4rem 0;
}

.tutor-list-card {
    background: #fff;
    color: #1b2b2a;
    border-radius: 12px;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, .10); */
    padding: .8rem .9rem;
    scroll-snap-align: start;
    border: 1.5px solid #e8eded;
}

.tutor-list-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    transition: all .3s ease;
}

.tutor-sub-hero-title {
    font-size: 50px;
    font-weight: 600;
    color: #1a4042;
}

.btn-search {
    background: #76c487;
    color: #fff;
    border: 0;
    padding: 10px 12px;
    font-weight: 700;
    border-radius: 3px;
}

.btn-search:hover {
    background-color: var(--accent-color);
    color: var(--light-bg);
}






/* ===== custom form style ===== */

.form-control {
    border-radius: 10px;
    border: 1px solid #d9e1e2;
    padding: 10px 12px;
    font-size: 15px;
    transition: all 0.25s ease-in-out;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    color: #1a4042;

}

.form-select {
    border-radius: 10px;
    border: 1px solid #d9e1e2;
    padding: 10px 12px;
    font-size: 15px;
    transition: all 0.25s ease-in-out;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    color: #1a4042;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16'%3E%3Cpath fill='%2376C487' d='M3.2 5.5L8 10.3l4.8-4.8.7.7L8 11.7 2.5 6.2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
}

.form-control:focus,
.form-select:focus {
    border-color: #76c487 !important;
    box-shadow: 0 0 0 0.2rem rgba(118, 196, 135, 0.25) !important;
    background-color: #f8fdf9;
    color: #1a4042;
    outline: none;
}

select.form-select option {
    background-color: #ffffff;
    color: #1a4042;
    padding: 10px;
    cursor: pointer;
}

select.form-select option:hover,
select.form-select option:checked,
select.form-select option:focus {
    background-color: #dff5e6 !important;
    color: #1a4042 !important;
    cursor: pointer !important;
}

select.form-select:-moz-focusring option:checked {
    background-color: #dff5e6 !important;
    color: #1a4042 !important;
}



/* ===== contact us style ===== */

.contact-hero-section {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: white;
    padding: 100px 0;
    text-align: center;
}

.contact-hero-section h1 {
    font-weight: 700;
    font-size: 2.5rem;
}

.contact-hero-section p {
    font-size: 18px;
    margin-top: 10px;
}

.contact-wrapper {
    /* max-width: 1150px; */
    margin: auto;
    padding: 20px;
}

.contact-info h3 {
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-info p {
    color: #333;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-info h5 {
    padding-top: 2rem;
    color: #1a4042;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 8px;
    line-height: 1.4;

}

.contact-info i {
    color: #76c487;
    font-size: 1.3rem;
    margin-right: 10px;
}

.contact-info a {
    text-decoration: none;
    color: #1a4042;
    transition: 0.2s;
}

.contact-info a:hover {
    color: #64b576;
}

.contact-form {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    padding: 35px;
}



.btn-send {
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    font-weight: 600;
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    transition: 0.3s;
}

.btn-send:hover {
    background-color: var(--accent-color);
}

@media (max-width: 991px) {
    /* body {
        padding: 40px 0;
    } */

    .contact-form {
        margin-top: 40px;
    }

    .contact-wrapper {
        text-align: center;
    }

    .contact-info i {
        display: inline-block;
        margin-bottom: 5px;
    }
}

@media (max-width: 575px) {
    .contact-form {
        padding: 25px;
    }
}



/* ===== Consultation style ===== */

.consult-hero-section {
    background: #dff5e6;
    text-align: center;
    padding: 100px 0 60px;
}

.consult-hero-section h1 {
    font-weight: 700;
    font-size: 44px;
    color: #1a4042;
}

.consult-hero-section p {
    color: #516567;
    max-width: 760px;
    margin: 15px auto 0;
    font-size: 18px;
}

/* ===== FORM SECTION ===== */
.consult-wrapper {
    padding: 60px 0 100px;
}

.consult-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
}

.consult-form label {
    font-weight: 500;
    color: #1a4042;
    margin-bottom: 6px;
    font-size: 15px;
}

/* button */
.btn-submit {
    background-color: var(--secondary-color);
    color: var(--light-bg);
    border-radius: 3px;
    padding: 12px 32px;
    font-weight: 600;
    border: none;
    display: block;
    margin: 20px auto 0;
    transition: 0.3s;
}

.btn-submit:hover {
    background-color: var(--accent-color);
    color: var(--light-bg);
}


@media (max-width: 767px) {
    .consult-hero-section h1 {
        font-size: 32px;
    }

    .consult-form {
        padding: 25px;
    }
}





/* ===== Course list style  ===== */
.course-hero-section {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: url("../images/coursebanner.jpg") top center/cover no-repeat;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.course-hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(26, 64, 66, 0.92) 0%,
            rgba(26, 64, 66, 0.75) 40%,
            rgba(26, 64, 66, 0.1) 80%);
}

.course-hero-section .hero-text-block {
    position: relative;
    z-index: 2;
    color: #fff;
}

.course-hero-section .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.course-hero-section .hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    /* max-width: 420px; */
    line-height: 1.6;
}

.course-list-section {
    color: #e9f4f2;
    padding: 0rem 0 4rem 0;
}

@media (max-width: 768px) {
    .course-hero-section {
        height: 260px;
        background-position: center;
    }

    .course-hero-section .hero-title {
        font-size: 1.6rem;
    }

    .course-hero-section .hero-subtitle {
        font-size: 0.9rem;
    }
}


/* ===== CUSTOM PAGINATION STYLING ===== */
.pagination {
    gap: 10px;
}

.pagination .page-item .page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A4042;
    border-radius: 50%;
    font-weight: 500;
    font-size: 15px;
    background-color: rgba(26, 64, 66, 0.1);
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.pagination .page-item .page-link:hover {
    background-color: #1A4042;
    color: #fff;
    border-color: #1A4042;
}

.pagination .page-item.active .page-link {
    background-color: #1A4042;
    border-color: #1A4042;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 3px 8px rgba(118, 196, 135, 0.4);
}

.pagination .page-item .page-link:focus {
    box-shadow: 0 0 0 0.25rem rgba(26, 64, 66, 0.25);
}

.pagination .page-link i {
    font-size: 1rem;
    line-height: 0;
}



.testi {
    display: none;
}



/* ===== course details style ===== */

.course-header {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    padding: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 30px;
}

.course-header img {
    max-width: 400px;
    border-radius: 10px;
    object-fit: cover;
}

.price-badge {
    background: #76c487;
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

.info-box {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
}

.info-box ul {
    columns: 1;
    list-style: disc;
    padding-left: 18px;
}

.see-more-btn {
    background: none;
    border: none;
    color: #76c487;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-top: 5px;
}

/* Accordion custom */
.accordion-button {
    background-color: #fff;
    color: #1a4042;
    font-weight: 600;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: #eaf6f0;
    color: #1a4042;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #e6e6e6;
}

.video-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 0.95rem;
}

.video-item i {
    color: #1a4042;
    margin-right: 8px;
}

.watch {
    color: #76c487;
    text-decoration: none;
    font-weight: 500;
}

.see-more-accordion {
    display: block;
    background: #1a4042;
    color: #fff;
    border: none;
    font-weight: 600;
    border-radius: 6px;
    padding: 6px 18px;
    font-size: 0.9rem;
    margin: 15px auto 5px;
    transition: all 0.2s ease;
}

.see-more-accordion:hover {
    background: #76c487;
    color: #fff;
}

.instructor-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    gap: 16px;
}

.instructor-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.booking-box {
    background: #1a4042;
    color: #fff;
    border-radius: 10px;

}

.booking-box h5 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    background: #76c487;
    color: #fff;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.booking-box form {
    padding: 25px;
}

.booking-box .form-control,
.booking-box .form-select,
.booking-box textarea {
    background: #163434;
    border: 1px solid #2e5252;
    color: #fff;
}

.booking-box .form-control::placeholder {
    color: #b8cccc;
}

.booking-box .btn {
    background: #76c487;
    color: #fff;
    border: none;
    width: 100%;
    margin-top: 10px;
    font-weight: 600;
}

.course-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: #1a4042;
    /* background: #f9fafb; */
    padding: 5px 10px;
    /* border-radius: 10px; */
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); */
}

.course-info .info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.course-info i {
    color: #76c487;
    /* accent green */
    font-size: 1.05rem;
}

.course-info .divider {
    width: 1px;
    height: 16px;
    background: rgba(26, 64, 66, 0.2);
}


@media (max-width: 991px) {
    .booking-box {
        margin-top: 25px;
    }

    .course-header {
        justify-content: center;
    }
}



/* legal styles */

.legal-hero-section {
    background: linear-gradient(135deg, #1a4042, #76c487);
    color: #fff;
    text-align: center;
    padding: 100px 20px 80px;

}

.legal-hero-section h1 {
    font-weight: 700;
    font-size: 2.2rem;
}

.legal-section {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    padding: 40px 30px;
    margin-top: -60px;
    margin-bottom: 60px;
}