*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1e2a4a;
    --navy-dark: #151f38;
    --green: #0071bd;
    --green-hover: #0071bd;
    --white: #ffffff;
    --light-gray: #f0f0f0;
    --gold: #f5a623;
    --review-bar: #f4f6f8;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    background: #fff;
}

/* ── TOP UTILITY BAR ── */
.top-bar {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    background: #fff;
    height: 46px;
}

.top-bar__search {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    background: #e8e8e8;
    cursor: pointer;
    transition: background .2s;
}

.top-bar__search:hover {
    background: #d4d4d4;
}

.top-bar__search svg {
    width: 18px;
    height: 18px;
    fill: #555;
}

.top-bar__btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 22px;
    background: var(--green);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: .3px;
    transition: background .2s;
    cursor: pointer;
    border: none;
}

.top-bar__btn:hover {
    background: var(--green-hover);
}

.top-bar__btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.top-bar__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 22px;
    background: var(--green);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    border-left: 1px solid rgba(255, 255, 255, .2);
    transition: background .2s;
}

.top-bar__phone:hover {
    background: var(--green-hover);
}

.top-bar__phone svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.top-bar__cart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    background: var(--green);
    border-left: 1px solid rgba(255, 255, 255, .2);
    cursor: pointer;
    transition: background .2s;
}

.top-bar__cart:hover {
    background: var(--green-hover);
}

.top-bar__cart svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

/* ── MAIN HEADER ── */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 0 40px;
    height: 72px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    width: 80px;
    padding-bottom: 15px;
}

.logo__icon {
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo__letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 16px;
    color: var(--white);
    border-radius: 3px;
}

.logo__letter--m {
    background: var(--navy-dark);
    border: 2px solid var(--navy-dark);
}

.logo__letter--r {
    background: var(--green);
}

.logo__letter--s {
    background: var(--navy-dark);
    border: 2px solid var(--navy-dark);
}

.logo__hand {
    width: 34px;
    height: 48px;
    margin-left: 2px;
}

.logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    color: var(--white);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.logo__title span {
    color: var(--green);
}

.logo__tagline {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    font-style: italic;
    margin-top: 2px;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav__item {
    position: relative;
}

.nav__link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 18px;
    color: #000;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .2px;
    transition: color .2s;
    cursor: pointer;
    white-space: nowrap;
}

.nav__link:hover {
    color: var(--green);
}

.nav__arrow {
    width: 10px;
    height: 10px;
    fill: currentColor;
    opacity: .6;
    transition: transform .25s, opacity .2s;
}

.nav__item:hover .nav__arrow,
.nav__item.open .nav__arrow {
    transform: rotate(180deg);
    opacity: 1;
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 620px;
    background: var(--white);
    border-radius: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
    border-bottom: 4px solid var(--navy-dark);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .25s, transform .25s, visibility .25s;
    z-index: 100;
    padding: 22px 0 14px;
}

.nav__item:hover .dropdown,
.nav__item.open .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown__link {
    display: block;
    padding: 10px 28px;
    color: #000000;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    transition: background .15s, color .15s;
}

.dropdown__link:hover {
    background: #f5f5f5;
    color: var(--green);
}

.dropdown__link {
    cursor: pointer;
}

.dropdown__loading {
    padding: 16px 28px;
    color: #999;
    font-size: 13px;
    font-style: italic;
}

/* ── GOOGLE REVIEWS BAR ── */
.reviews-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--review-bar);
    padding: 9px 20px;
    border-top: 1px solid rgba(11, 121, 223, 0.178);
}

.reviews-bar__g {
    width: 22px;
    height: 22px;
}

.reviews-bar__stars {
    display: flex;
    gap: 3px;
}

.reviews-bar__star {
    width: 18px;
    height: 18px;
    fill: var(--gold);
}

.reviews-bar__text {
    color: #000000;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .2px;
}

/* ── MOBILE TOGGLE ── */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .3s, opacity .2s;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .header {
        padding: 0 20px;
    }

    .nav__link {
        padding: 10px 12px;
        font-size: 13.5px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--navy);
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s ease;
        z-index: 999;
        box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
    }

    .nav.open {
        max-height: 600px;
    }

    .nav__link {
        padding: 14px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
        width: 100%;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        border-radius: 0;
        background: rgba(255, 255, 255, .04);
    }

    .header {
        position: relative;
    }

    .top-bar__btn span {
        display: none;
    }
}

/* ── HERO SECTION ── */
.hero {
    position: relative;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
    padding-bottom: 20px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.753) 0%, rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0.75) 100%),
        url('assets/main.jpg') center/cover no-repeat;
    z-index: 0;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 64px 24px 20px;
    max-width: 900px;
}

.hero__title {
    font-family: 'inter';
    font-weight: 500;
    font-size: clamp(28px, 4vw, 56px);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -.5px;
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: clamp(12px, 1.8vw, 14px);
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero__btn {
    display: inline-block;
    padding: 10px 28px;
    border: 1.5px solid rgba(255, 255, 255, .7);
    border-radius: 4px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: .3px;
    transition: background .25s, border-color .25s, transform .2s;
    background: transparent;
    cursor: pointer;
}

.hero__btn:hover {
    background: rgba(255, 255, 255, .15);
    border-color: #fff;
    transform: translateY(-1px);
}

/* ── COURSE FINDER / SEARCH BAR ── */
.course-finder {
    position: relative;
    z-index: 3;
    width: 92%;
    max-width: 860px;
    margin: -50px auto -40px;
    background: #f2f2f2;
    border-radius: 10px;
    padding: 24px 40px 18px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .12);
}

.course-finder__title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 16px;
}

.course-finder__search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.course-finder__search-icon {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
    color: #999;
    pointer-events: none;
    transition: color .2s;
}

.course-finder__input {
    width: 100%;
    padding: 14px 44px 14px 46px;
    border: 1.5px solid #d8d8d8;
    border-radius: 28px;
    background: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.course-finder__input::placeholder {
    color: #999;
    font-weight: 400;
}

.course-finder__input:focus {
    border-color: #0071bd;
    box-shadow: 0 0 0 3px rgba(0, 113, 189, .12);
}

.course-finder__input:focus~.course-finder__search-icon,
.course-finder__search-wrap:hover .course-finder__search-icon {
    color: #0071bd;
}

.course-finder__clear {
    position: absolute;
    right: 14px;
    width: 28px;
    height: 28px;
    border: none;
    background: #e0e0e0;
    color: #555;
    font-size: 18px;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s;
}

.course-finder__clear:hover {
    background: #ccc;
    color: #222;
}

/* Search Results Dropdown */
.course-finder__results {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, .15);
    max-height: 380px;
    overflow-y: auto;
    display: none;
    z-index: 50;
    border: 1px solid #e8e8e8;
}

.course-finder__results.is-visible {
    display: block;
    animation: searchDropIn .2s ease-out;
}

@keyframes searchDropIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

.course-finder__result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    cursor: pointer;
    transition: background .15s;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
}

.course-finder__result-item:last-child {
    border-bottom: none;
}

.course-finder__result-item:hover {
    background: #f0f7ff;
}

.course-finder__result-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.course-finder__result-name {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.course-finder__result-name mark {
    background: #ffe066;
    color: inherit;
    border-radius: 2px;
    padding: 0 1px;
}

.course-finder__result-meta {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-finder__result-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .3px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 12px;
}

.course-finder__result-badge--active {
    background: #e6f4ea;
    color: #1e7e34;
}

.course-finder__result-badge--completed {
    background: #e3f2fd;
    color: #0071bd;
}

.course-finder__no-results {
    padding: 32px 24px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.course-finder__no-results svg {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
    opacity: .4;
}

.course-finder__loading {
    padding: 24px;
    text-align: center;
    color: #999;
    font-size: 13px;
}

.course-finder__loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ddd;
    border-top-color: #0071bd;
    border-radius: 50%;
    animation: searchSpin .6s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
}

@keyframes searchSpin {
    to {
        transform: rotate(360deg);
    }
}

/* ── COURSE FINDER RESPONSIVE ── */
@media (max-width: 640px) {
    .hero {
        min-height: 360px;
        padding-bottom: 16px;
    }

    .hero__content {
        padding: 40px 20px 16px;
    }

    .course-finder {
        padding: 20px 16px 14px;
        margin-top: -24px;
    }

    .course-finder__input {
        padding: 12px 40px 12px 42px;
        font-size: 13px;
    }

    .course-finder__results {
        max-height: 300px;
    }

    .course-finder__result-item {
        padding: 12px 16px;
    }
}


/* ── TRUST BAR ── */
.trust-bar {
    background: var(--white);
    padding: 120px 40px 36px;
    border-radius: 0 0 32px 32px;
}

.trust-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 180px;
    justify-content: center;
}

.trust-item__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-item__icon svg {
    width: 100%;
    height: 100%;
}

.trust-item__text {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.35;
}

/* Dividers between items */
.trust-item+.trust-item {
    border-left: 1px solid #e4e4e4;
    padding-left: 20px;
}

/* ── EXPERTS SECTION ── */
.experts {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.experts__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.experts__title {
    font-family: 'inter';
    font-weight: 600;
    font-size: clamp(25px, 3.2vw, 30px);
    color: #000;
    line-height: 1.2;
    letter-spacing: -.3px;
}

.experts__title span {
    color: #0071bd;
}

.experts__desc {
    font-size: 13.5px;
    color: #4a4a4a;
    line-height: 1.7;
    max-width: 520px;
    font-family: 'open sans';
    font-weight: 500;
}

.experts__buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.experts__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform .2s, box-shadow .2s, background .2s;
    letter-spacing: .3px;
}

.experts__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
}

.experts__btn--navy {
    background: var(--navy);
    color: var(--white);
}

.experts__btn--navy:hover {
    background: #263558;
}

.experts__btn--green {
    background: var(--green);
    color: var(--white);
}

.experts__btn--green:hover {
    background: #26993f;
}

.experts__btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: transform .2s;
}

.experts__btn:hover svg {
    transform: translateX(3px);
}

/* Video container */
.experts__video {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
    cursor: pointer;
    aspect-ratio: 16 / 10;
    background: #1a1a2e;
}

.experts__video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}

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

.experts__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .25);
    transition: background .3s;
}

.experts__video:hover .experts__play {
    background: rgba(0, 0, 0, .35);
}

.experts__play-btn {
    width: 68px;
    height: 68px;
    background: rgba(255, 255, 255, .92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
    transition: transform .25s, box-shadow .25s;
}

.experts__video:hover .experts__play-btn {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(0, 0, 0, .3);
}

.experts__play-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--navy);
    margin-left: 3px;
}

.experts__duration {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(0, 0, 0, .7);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: .5px;
}

/* ── TRUST BAR & EXPERTS RESPONSIVE ── */
@media (max-width: 900px) {
    .experts {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 24px;
    }

    .experts__video {
        max-width: 560px;
    }
}

@media (max-width: 768px) {
    .trust-bar {
        padding: 24px 20px;
        border-radius: 0 0 20px 20px;
    }

    .trust-bar__inner {
        flex-direction: column;
        gap: 20px;
    }

    .trust-item+.trust-item {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #e4e4e4;
        padding-top: 18px;
    }

    .trust-item {
        justify-content: flex-start;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .experts__buttons {
        flex-direction: column;
    }

    .experts__btn {
        width: 100%;
        justify-content: center;
    }
}

/* ── TRUSTED COMPANIES ── */
.trusted {
    background: #f0f1f3;
    padding: 70px 40px 60px;
    text-align: center;
}

.trusted__title {
    font-family: 'inter';
    font-weight: 600;
    font-size: clamp(24px, 3vw, 30px);
    color: #000000;
    line-height: 1.3;
    max-width: 700px;
    margin: 0 auto 48px;
    letter-spacing: -.3px;
}

/* ── CAROUSEL WRAPPER ── */
.carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel__track-container {
    overflow: hidden;
    margin: 0 56px;
}

.carousel__track {
    display: flex;
    transition: transform .45s cubic-bezier(.4, 0, .2, 1);
}

.carousel__slide {
    flex: 0 0 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;
    min-height: 100px;
}

.carousel__logo {
    max-width: 160px;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(100%) brightness(.3);
    opacity: .7;
    transition: filter .3s, opacity .3s;
}

.carousel__logo:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* Text-based logos */
.carousel__logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    white-space: nowrap;
    opacity: .75;
    transition: opacity .3s;
    display: flex;
    align-items: center;
    gap: 8px;
    user-select: none;
}

.carousel__logo-text:hover {
    opacity: 1;
}

.carousel__logo-text span {
    font-weight: 400;
    font-size: 12px;
    display: block;
    line-height: 1.2;
}

/* ── CAROUSEL ARROWS ── */
.carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background .2s, transform .2s;
}

.carousel__arrow:hover {
    background: var(--green);
    transform: translateY(-50%) scale(1.05);
}

.carousel__arrow:hover svg {
    fill: var(--white);
}

.carousel__arrow svg {
    width: 12px;
    height: 12px;
    fill: var(--green);
    transition: fill .2s;
}

.carousel__arrow--prev {
    left: 0;
}

.carousel__arrow--next {
    right: 0;
}

/* ── CAROUSEL DOTS ── */
.carousel__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
}

.carousel__dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c8c8c8;
    border: none;
    cursor: pointer;
    transition: background .25s, transform .2s;
    padding: 0;
}

.carousel__dot:hover {
    background: #999;
    transform: scale(1.15);
}

.carousel__dot--active {
    background: var(--green);
}

/* ── CAROUSEL RESPONSIVE ── */
@media (max-width: 900px) {
    .carousel__slide {
        flex: 0 0 33.333%;
    }
}

@media (max-width: 640px) {
    .trusted {
        padding: 50px 20px 40px;
    }

    .carousel__slide {
        flex: 0 0 50%;
    }

    .carousel__track-container {
        margin: 0 44px;
    }

    .carousel__arrow {
        width: 24px;
        height: 24px;
    }

    .carousel__arrow svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 400px) {
    .carousel__slide {
        flex: 0 0 100%;
    }
}

/* ── COURSES SECTION ── */
.courses {
    background: #fff;
    padding: 70px 40px 80px;
    border-radius: 32px 32px 0 0;
}

.courses__title {
    font-family: 'inter';
    font-weight: 600;
    font-size: clamp(28px, 3.5vw, 30px);
    color: var(--white);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -.3px;
}

.courses__subtitle {
    text-align: center;
    color: rgba(255, 255, 255, .7);
    font-size: 15px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ── TABS ── */
.courses__tabs-wrap {
    max-width: 1060px;
    margin: 0 auto;
    background: var(--green);
    border-radius: 14px;
    padding: 24px 24px 28px;
    border: 1px solid rgba(255, 255, 255, .08);
}

.courses__tabs {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
}

.courses__tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, .6);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .25s, color .25s;
    white-space: nowrap;
}

.courses__tab:hover {
    color: rgba(255, 255, 255, .85);
    background: rgba(255, 255, 255, .05);
}

.courses__tab--active {
    background: var(--green);
    color: var(--white);
    border-bottom: 2px solid #fff;
}

.courses__tab--active:hover {
    background: var(--green);
}

.courses__tab-icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
    flex-shrink: 0;
}

/* ── COURSE CARDS GRID ── */
.courses__grid {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.courses__grid--active {
    display: grid;
}

.course-card {
    background: var(--white);
    border-radius: 10px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 170px;
    transition: transform .2s, box-shadow .2s;
}

.course-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.course-card__name {
    font-size: 14px;
    font-weight: 700;
    color: #1a2744;
    line-height: 1.35;
    margin-bottom: 6px;
}

.course-card__duration {
    font-size: 13px;
    color: #888;
    margin-bottom: auto;
}

.course-card__book {
    display: inline-block;
    margin-top: 18px;
    color: var(--green);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: color .2s;
}

.course-card__book:hover {
    color: var(--green);
    text-decoration: underline;
}

/* ── COURSES RESPONSIVE ── */
@media (max-width: 900px) {
    .courses__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .courses {
        padding: 50px 16px 60px;
    }

    .courses__tabs-wrap {
        padding: 16px 14px 20px;
    }

    .courses__tabs {
        flex-direction: column;
        gap: 6px;
    }

    .courses__tab {
        justify-content: flex-start;
        padding: 12px 16px;
    }

    .courses__grid {
        grid-template-columns: 1fr;
    }
}

/* ── SKELETON LOADER FOR COURSE CARDS ── */
@keyframes skeleton-shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.course-card--skeleton {
    pointer-events: none;
}

.skeleton-line {
    background: linear-gradient(90deg, rgba(255, 255, 255, .15) 25%, rgba(255, 255, 255, .35) 50%, rgba(255, 255, 255, .15) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
    border-radius: 4px;
    height: 14px;
    width: 85%;
}

.skeleton-line--short {
    width: 50%;
    height: 12px;
    margin-top: 8px;
}

.skeleton-line--btn {
    width: 70px;
    height: 14px;
    margin-top: 18px;
    display: block;
}

/* ── REVIEWS SECTION ── */
.reviews {
    background: #f0f1f3;
    padding: 70px 40px 80px;
}

.reviews__title {
    font-family: 'inter';
    font-weight: 600;
    font-size: clamp(28px, 3.5vw, 30px);
    color: #000000;
    text-align: center;
    margin-bottom: 14px;
    letter-spacing: -.3px;
}

.reviews__subtitle {
    text-align: center;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

/* ── REVIEWS LAYOUT ── */
.reviews__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 32px;
    align-items: start;
}

/* ── GOOGLE SIDEBAR ── */
.reviews__sidebar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 8px;
}

.reviews__google-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews__google-icon svg {
    width: 32px;
    height: 32px;
}

.reviews__stars-row {
    display: flex;
    gap: 3px;
}

.star-icon {
    width: 20px;
    height: 20px;
    fill: var(--gold);
}

.reviews__rating-text {
    font-size: 13.5px;
    color: #555;
    line-height: 1.5;
}

.reviews__view-btn {
    display: inline-block;
    margin-top: 1px;
    padding: 12px 0;
    background: transparent;
    color: black;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 0;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
}

.reviews__view-btn:hover {
    background: transparent;
    transform: translateY(-1px);
}

/* ── REVIEWS SLIDER WRAPPER ── */
.reviews__slider-area {
    position: relative;
    overflow: hidden;
    padding: 0 56px;
}

.reviews__slider-viewport {
    overflow: hidden;
    border-radius: 12px;
}

.reviews__track {
    display: flex;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.reviews__slide {
    flex: 0 0 100%;
    padding: 0 9px;
    box-sizing: border-box;
}

/* ── REVIEW CARD (side-by-side: image left, text right) ── */
.review-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .07);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    height: 100%;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .12);
}

/* Image area (left side) */
.review-card__image {
    flex: 0 0 280px;
    max-width: 280px;
    min-height: 280px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e2a4a 0%, #0071bd 100%);
}

.review-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.review-card:hover .review-card__image img {
    transform: scale(1.04);
}

/* Content area (right side) */
.review-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 32px 36px;
    min-width: 0;
    position: relative;
    justify-content: center;
}

.review-card__header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-card__name {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -.2px;
}

.review-card__date {
    font-size: 12.5px;
    color: #999;
    margin-top: 2px;
}

.review-card__stars {
    display: flex;
    gap: 2px;
}

.review-card__text {
    font-size: 13px;
    color: #555;
    line-height: 1.75;
}

/* Hidden text within review card */
.review-card__text-hidden {
    display: none;
}

.review-card__text.expanded .review-card__text-hidden {
    display: inline;
}

/* Read More button */
.review-card__read-more {
    background: none;
    border: none;
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    padding: 4px 0;
    margin-top: 4px;
    font-family: var(--font-body);
    letter-spacing: 0.2px;
    transition: color 0.2s, opacity 0.2s;
    text-align: left;
    align-self: flex-start;
}

.review-card__read-more:hover {
    color: var(--navy);
    opacity: 0.85;
}

/* Decorative quote icon */
.review-card__quote-icon {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 36px;
    height: 36px;
    color: rgba(0, 113, 189, .12);
}

.review-card__quote-icon svg {
    width: 100%;
    height: 100%;
}

/* ── REVIEWS SLIDER ARROWS ── */
.reviews__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
}

.reviews__arrow:hover {
    background: var(--green);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 4px 16px rgba(0, 113, 189, .25);
}

.reviews__arrow:hover svg {
    fill: var(--white);
}

.reviews__arrow svg {
    width: 15px;
    height: 15px;
    fill: var(--green);
    transition: fill .2s;
}

.reviews__arrow--prev {
    left: 0;
}

.reviews__arrow--next {
    right: 0;
}

/* ── REVIEWS SLIDER CONTROLS ── */
.reviews__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}

.reviews__dots {
    display: flex;
    gap: 8px;
}

.reviews__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c8c8c8;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .25s, transform .2s;
}

.reviews__dot:hover {
    background: #999;
    transform: scale(1.15);
}

.reviews__dot--active {
    background: var(--green);
}

/* ── REVIEWS RESPONSIVE ── */
@media (max-width: 900px) {
    .reviews__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .reviews__sidebar {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 16px;
    }

    .reviews__view-btn {
        margin-top: 0;
    }

    .reviews__slider-area {
        padding: 0 44px;
    }

    .review-card__image {
        flex: 0 0 220px;
        max-width: 220px;
    }

    .review-card__content {
        padding: 24px 28px;
    }
}

@media (max-width: 600px) {
    .reviews {
        padding: 50px 16px 60px;
    }

    .reviews__slider-area {
        padding: 0 36px;
    }

    .review-card {
        flex-direction: column;
        align-items: stretch;
    }

    .review-card__image {
        flex: none;
        max-width: 100%;
        min-height: 200px;
        max-height: 240px;
    }

    .review-card__content {
        padding: 24px 20px;
        text-align: left;
    }

    .review-card__stars {
        justify-content: flex-start;
    }

    .reviews__arrow {
        width: 28px;
        height: 28px;
    }

    .reviews__arrow svg {
        width: 12px;
        height: 12px;
    }
}

/* ── FOOTER ── */
.footer {
    background: #0071bd;
    color: rgba(255, 255, 255, .8);
    padding: 0;
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding: 64px 40px 48px;
}

/* Brand column */
.footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer__logo-img {
    width: 52px;
    height: auto;
    flex-shrink: 0;
}

.footer__brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--white);
    line-height: 1.3;
    letter-spacing: .3px;
}

.footer__about {
    font-size: 13px;
    line-height: 1.7;
    color: rgb(255, 255, 255);
    margin-bottom: 24px;
    max-width: 300px;
    font-weight: 500;
    font-family: 'open sans';
}

/* Social Icons */
.footer__socials {
    display: flex;
    gap: 10px;
}

.footer__social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s, transform .2s, box-shadow .25s;
}

.footer__social:hover {
    background: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 113, 189, .35);
}

.footer__social svg {
    width: 18px;
    height: 18px;
    fill: rgba(255, 255, 255, .75);
    transition: fill .2s;
}

.footer__social:hover svg {
    fill: var(--white);
}

/* Column headings */
.footer__heading {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 22px;
    letter-spacing: .3px;
    position: relative;
    padding-bottom: 12px;
}

.footer__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2.5px;
    background: var(--green);
    border-radius: 2px;
}

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

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 13px;
    transition: color .2s, padding-left .2s;
    display: inline-block;
    font-weight: 600;
}

.footer__links a:hover {
    color: var(--white);
    padding-left: 4px;
}

/* Contact list */
.footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.5;
}

.footer__contact svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    flex-shrink: 0;
    margin-top: 1px;
}

.footer__contact a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: color .2s;
}

.footer__contact a:hover {
    color: var(--white);
}

.footer__contact span {
    color: rgb(255, 255, 255);
}

/* Bottom bar */
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 22px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom p {
    font-size: 13px;
    color: rgb(255, 255, 255);
}

.footer__bottom-links {
    display: flex;
    gap: 24px;
}

.footer__bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    transition: color .2s;
}

.footer__bottom-links a:hover {
    color: rgba(255, 255, 255, .8);
}

/* ── FOOTER RESPONSIVE ── */
@media (max-width: 900px) {
    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px 32px;
        padding: 48px 24px 40px;
    }
}

@media (max-width: 600px) {
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 40px 20px 32px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .footer__bottom-links {
        justify-content: center;
    }
}

.breadcrumb-header {
    height: 200px;
}

.breadcrumb-content {
    padding-left: 80px;
    padding-top: 30px;
    padding-bottom: 60px;

}

.breadcrumb-content h3 {
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    font-family: 'open sans';
}

.breadcrumb-content h1 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: 'montserrat';
    margin-top: 40px;
}

.breadcrumb-header {
    background-image: url('assets/main.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.411);

}

/* ── ABOUT STORY SECTION ── */
.about-story {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    max-width: 1200px;
    width: 100%;
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 2.5rem;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, .04),
        0 8px 24px rgba(0, 0, 0, .06);
    animation: aboutFadeUp .7s ease both;
    margin: 60px auto;
}

@keyframes aboutFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

/* ── About Story Image Side ── */
.about-story__image {
    flex: 0 0 44%;
    border-radius: .85rem;
    overflow: hidden;
    position: relative;
}

.about-story__image img {
    width: 550px;
    height: 420px;
    object-fit: cover;
    display: block;
    aspect-ratio: 4 / 5;
    transition: transform .45s ease;
}

.about-story:hover .about-story__image img {
    transform: scale(1.03);
}

/* Subtle colour overlay */
.about-story__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0, 113, 189, .12) 0%, transparent 60%);
    pointer-events: none;
}

/* ── About Story Text Side ── */
.about-story__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-story__label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #0071bd;
}

.about-story__heading {
    font-family: 'inter';
    font-size: clamp(1.6rem, 2.4vw, 2.15rem);
    line-height: 1.25;
    color: #1a1714;
}

.about-story__body {
    font-size: 13px;
    line-height: 1.72;
    color: #5e564b;
    font-weight: 500;
}

.about-story__cta {
    margin-top: 5px;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 900;
    font-size: .9rem;
    color: #0071bd;
    text-decoration: none;
    transition: gap .3s ease;
}

.about-story__cta:hover {
    gap: .85rem;
}

.about-story__cta svg {
    width: 18px;
    height: 18px;
    transition: transform .3s ease;
}

.about-story__cta:hover svg {
    transform: translateX(2px);
}

/* ── About Story Responsive ── */
@media (max-width: 680px) {
    .about-story {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
        margin: 30px 16px;
    }

    .about-story__image {
        flex: none;
        width: 100%;
    }

    .about-story__image img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
    }
}

/* ── CORPORATE STATEMENTS SECTION ── */
.corporate {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 1.5rem 80px;
}

.corporate__label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #0071bd;
    margin-bottom: .5rem;
}

.corporate__heading {
    font-family: 'inter';
    font-size: clamp(1.4rem, 2vw, 25px);
    margin-bottom: 2rem;
    color: #000;
}

/* Split layout */
.corporate__split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.corporate__split-image {
    flex: 0 0 46%;
    border-radius: .85rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04), 0 12px 40px rgba(0, 0, 0, .06);
}

.corporate__split-image img {
    display: block;
    width: 500px;
    height: 420px;
    object-fit: cover;
    aspect-ratio: 3 / 4;
}

.corporate__split-content {
    flex: 1;
    min-width: 0;
}

/* Accordion */
.corporate-acc {
    background: #ffffff;
    border-radius: .85rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04), 0 12px 40px rgba(0, 0, 0, .06);
    overflow: hidden;
}

.corporate-acc__item {
    border-bottom: 1px solid #e8e9ed;
    position: relative;
}

.corporate-acc__item:last-child {
    border-bottom: none;
}

.corporate-acc__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #0071bd;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .45s cubic-bezier(.4, 0, .2, 1);
}

.corporate-acc__item.is-active::before {
    transform: scaleY(1);
}

.corporate-acc__header {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    user-select: none;
    transition: background .25s ease;
}

.corporate-acc__header:hover {
    background: rgba(0, 113, 189, .06);
}

.corporate-acc__number {
    font-size: .8rem;
    font-weight: 700;
    color: #0071bd;
    width: 1.6rem;
    flex-shrink: 0;
}

.corporate-acc__title {
    font-size: 14px;
    font-weight: 700;
    flex: 1;
}

.corporate-acc__icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.corporate-acc__icon span {
    display: block;
    position: absolute;
    width: 13px;
    height: 2px;
    background: #4e5568;
    border-radius: 1px;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1), opacity .25s ease;
}

.corporate-acc__icon span:last-child {
    transform: rotate(90deg);
}

.corporate-acc__item.is-active .corporate-acc__icon span:first-child {
    transform: rotate(180deg);
}

.corporate-acc__item.is-active .corporate-acc__icon span:last-child {
    transform: rotate(180deg);
    opacity: 0;
}

.corporate-acc__body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .45s cubic-bezier(.4, 0, .2, 1);
}

.corporate-acc__item.is-active .corporate-acc__body {
    grid-template-rows: 1fr;
}

.corporate-acc__body-inner {
    overflow: hidden;
}

.corporate-acc__content {
    padding: 0 1.5rem 1.4rem 4.25rem;
    font-size: 13px;
    color: #4e5568;
    line-height: 1.78;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .35s ease .1s, transform .35s ease .1s;
}

.corporate-acc__item.is-active .corporate-acc__content {
    opacity: 1;
    transform: translateY(0);
}

/* Dots below accordion */
.corporate-acc__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 1.25rem 1.5rem;
    background: #ffffff;
    border-top: 1px solid #e8e9ed;
    border-radius: 0 0 .85rem .85rem;
}

.corporate-acc__dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    border: 2px solid #c5c7cd;
    background: transparent;
    cursor: pointer;
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    padding: 0;
    outline: none;
}

.corporate-acc__dot.is-active {
    background: #0071bd;
    border-color: #0071bd;
    transform: scale(1.2);
    box-shadow: 0 0 0 3px rgba(0, 113, 189, .15);
}

.corporate-acc__dot:hover:not(.is-active) {
    border-color: #4e5568;
}

/* Corporate Responsive */
@media (max-width: 780px) {
    .corporate__split {
        flex-direction: column;
        gap: 2rem;
    }

    .corporate__split-image {
        flex: none;
        width: 100%;
    }

    .corporate__split-image img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .corporate-acc__header {
        padding: 10px 15px;
        gap: .85rem;
    }

    .corporate-acc__content {
        padding: 0 1.15rem 1.15rem 3.5rem;
    }
}

/* ── TEXT SECTION (Labour Support) ── */
.text-section {
    max-width: 1000px;
    width: 100%;
    text-align: left;
    padding: 3.5rem 3rem;
    background: #ffffff;
    border-radius: .85rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04), 0 12px 40px rgba(0, 0, 0, .07);
    margin: 60px auto;
}

.text-section__label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #0071bd;
    margin-bottom: 1rem;
}

.text-section__heading {
    font-family: 'inter';
    font-size: clamp(1.4rem, 3.2vw, 2rem);
    line-height: 1.25;
    margin-bottom: 1.5rem;
    color: #000;
}

.text-section__divider {
    width: 48px;
    height: 3px;
    background: #0071bd;
    border: none;
    border-radius: 2px;
    margin: 0 0 1.75rem;
}

.text-section__body {
    font-size: 13.5px;
    line-height: 1.85;
    color: #4e5568;
    font-weight: 500;
    margin: 0 0 1.5rem;
    font-family: 'open sans';
}

.text-section__subheading {
    font-family: 'inter';
    font-size: clamp(1rem, 2vw, 13px);
    color: #000;
    margin: 1.5rem 0 .75rem;
}

.text-section__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.text-section__list li {
    font-size: 13.5px;
    font-family: 'open sans';
    font-weight: 500;
    color: #4e5568;
    padding: .4rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.text-section__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0071bd;
}

/* Text Section Responsive */
@media (max-width: 600px) {
    .text-section {
        padding: 2.5rem 1.5rem;
        margin: 30px 16px;
    }
}

/* ── CONTACT SECTION ── */
.contact {
    max-width: 1060px;
    width: 100%;
    margin: 60px auto;
    padding: 0 1.5rem;
}

.contact__card {
    display: flex;
    border-radius: .85rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04), 0 12px 40px rgba(0, 0, 0, .07);
}

/* Info panel (dark) */
.contact__info {
    flex: 0 0 38%;
    background: #fff;
    color: #000000;
    padding: 3rem 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
    position: relative;
    overflow: hidden;
}

/* Decorative circles */
.contact__info::before,
.contact__info::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: .06;
    background: #ffffff;
}

.contact__info::before {
    width: 200px;
    height: 200px;
    bottom: -60px;
    right: -60px;
}

.contact__info::after {
    width: 120px;
    height: 120px;
    bottom: 80px;
    right: 40px;
}

.contact__info-title {
    font-family: 'inter';
    font-size: 1.35rem;
    margin-bottom: .25rem;
}

.contact__info-sub {
    font-size: .80rem;
    color: rgba(0, 0, 0, 0.911);
    line-height: 1.6;
    font-family: 'open sans';
    font-weight: 500;
}

/* Info items */
.contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact__info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0071bd;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__info-icon svg {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact__info-text {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.contact__info-text strong {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
}

.contact__info-text span,
.contact__info-text a {
    font-size: 13px;
    color: #000000;
    text-decoration: none;
    transition: color .2s ease;
    font-family: 'open sans';
    font-weight: 500;
}

.contact__info-text a:hover {
    color: #0071bd;
}

/* Socials */
.contact__socials {
    display: flex;
    gap: .75rem;
    margin-top: auto;
    padding-top: 1rem;
}

.contact__social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s ease;
    cursor: pointer;
}

.contact__social:hover {
    background: #0071bd;
}

.contact__social svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
}

/* Form panel (white) */
.contact__form-wrap {
    flex: 1;
    background: #ffffff;
    padding: 3rem 2.5rem;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact__row {
    display: flex;
    gap: 1.25rem;
}

.contact__field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.contact__field label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #4e5568;
}

.contact__field input,
.contact__field textarea,
.contact__field select {
    width: 100%;
    padding: .85rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: .92rem;
    color: #141b2d;
    background: #f4f5f7;
    border: 2px solid transparent;
    border-radius: .5rem;
    outline: none;
    transition: border-color .25s ease, background .25s ease;
    resize: vertical;
}

.contact__field input:focus,
.contact__field textarea:focus,
.contact__field select:focus {
    border-color: #0071bd;
    background: #ffffff;
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
    color: #9299a8;
    font-size: 13px;
}

.contact__field textarea {
    min-height: 120px;
}

.contact__field select {
    font-size: 13px;
    color: #9299a8;
}

.contact__field select:valid {
    color: #141b2d;
}

.contact__submit {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .9rem 2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    color: #ffffff;
    background: #0071bd;
    border: none;
    border-radius: .5rem;
    cursor: pointer;
    transition: background .25s ease, transform .2s ease;
    letter-spacing: .02em;
}

.contact__submit:hover {
    background: #005a99;
    transform: translateY(-1px);
}

.contact__submit:active {
    transform: translateY(0);
}

.contact__submit svg {
    width: 16px;
    height: 16px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Contact Responsive */
@media (max-width: 780px) {
    .contact__card {
        flex-direction: column;
    }

    .contact__info {
        flex: none;
        padding: 2.25rem 1.75rem;
    }

    .contact__form-wrap {
        padding: 2.25rem 1.75rem;
    }

    .contact__row {
        flex-direction: column;
        gap: 1.25rem;
    }
}

/* ── COURSE DETAIL MODAL ── */
.course-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 9999;
    display: none;
    align-items: stretch;
    justify-content: flex-end;
    backdrop-filter: blur(3px);
}

.course-modal-overlay.is-open {
    display: flex;
    animation: modalOverlayIn .25s ease-out;
}

@keyframes modalOverlayIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.course-modal {
    width: 100%;
    max-width: 600px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    animation: modalSlideIn .3s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, .2);
}

@keyframes modalSlideIn {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

.course-modal__close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, .9);
    color: #333;
    font-size: 22px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background .2s, transform .15s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.course-modal__close:hover {
    background: #fff;
    transform: scale(1.1);
}

.course-modal__header {
    background: linear-gradient(135deg, #0071bd 0%, #005a96 100%);
    color: #fff;
    padding: 40px 32px 28px;
    position: relative;
}

.course-modal__badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.course-modal__badge--active {
    background: rgba(255, 255, 255, .2);
    color: #fff;
}

.course-modal__badge--completed {
    background: rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .8);
}

.course-modal__title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.course-modal__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    opacity: .9;
}

.course-modal__meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.course-modal__meta-item svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    opacity: .7;
}

.course-modal__body {
    padding: 24px 32px;
    flex: 1;
}

.course-modal__section {
    background: #fff;
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 16px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
}

.course-modal__section-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #0071bd;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.course-modal__section-title svg {
    width: 18px;
    height: 18px;
    fill: #0071bd;
}

.course-modal__section-text {
    font-size: 13.5px;
    color: #444;
    line-height: 1.7;
    white-space: pre-line;
}

.course-modal__detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.course-modal__detail-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.course-modal__detail-label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
}

.course-modal__detail-value {
    font-size: 13.5px;
    color: #333;
    font-weight: 500;
}

.course-modal__footer {
    padding: 16px 32px;
    border-top: 1px solid #e8e8e8;
    background: #fff;
}

.course-modal__book-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: #0071bd;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .3px;
    transition: background .2s, transform .15s;
}

.course-modal__book-btn:hover {
    background: #005a96;
    transform: translateY(-1px);
}

/* Modal responsive */
@media (max-width: 640px) {
    .course-modal {
        max-width: 100%;
    }

    .course-modal__header {
        padding: 32px 20px 20px;
    }

    .course-modal__title {
        font-size: 18px;
    }

    .course-modal__body {
        padding: 16px 20px;
    }

    .course-modal__detail-grid {
        grid-template-columns: 1fr;
    }

    .course-modal__footer {
        padding: 12px 20px;
    }
}

/* ══════════════════════════════════════════════════════
   MOBILE RESPONSIVE ENHANCEMENTS
   All rules below are inside media queries only.
   No existing desktop / tablet rules are changed.
   ══════════════════════════════════════════════════════ */

/* ── TABLETS & SMALL LAPTOPS (≤ 768px) ── */
@media (max-width: 768px) {

    /* Fix: hamburger lines were white on white header */
    .mobile-toggle span {
        background: var(--navy);
    }

    .mobile-toggle.active span {
        background: var(--navy);
    }

    /* Fix: nav items were centered because desktop align-items:center
       persists into column direction on mobile;
       also use top-bar blue as menu background */
    .nav {
        align-items: stretch;
        background: var(--green);
    }

    /* Fix: nav links were black on dark-navy mobile menu */
    .nav__link {
        color: var(--white);
        font-size: 13px;
        justify-content: flex-start;
        text-align: left;
    }

    .nav__link:hover {
        color: var(--green);
    }

    .nav__arrow {
        fill: var(--white);
    }

    /* Fix: dropdown overflowed at 620px min-width;
       also use display:none so hidden dropdown doesn't occupy space */
    .dropdown {
        min-width: 0;
        width: 100%;
        border-bottom: none;
        padding: 0 0 8px;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav__item.open .dropdown {
        display: block;
    }

    .dropdown__link {
        color: rgba(255, 255, 255, .8);
        padding: 10px 40px;
        font-size: 13px;
    }

    .dropdown__link:hover {
        background: rgba(255, 255, 255, .08);
        color: var(--white);
    }

    .dropdown__loading {
        color: rgba(255, 255, 255, .5);
        padding: 12px 40px;
    }

    /* Top bar: tighten spacing */
    .top-bar__phone {
        font-size: 12px;
        padding: 0 14px;
        gap: 6px;
    }

    .top-bar__btn {
        padding: 0 14px;
        font-size: 13px;
    }

    .top-bar__search {
        width: 44px;
    }

    .top-bar__cart {
        width: 44px;
    }

    /* Reviews bar: allow wrapping */
    .reviews-bar {
        flex-wrap: wrap;
        gap: 6px;
        padding: 8px 16px;
    }

    .reviews-bar__text {
        font-size: 11px;
        text-align: center;
        width: 100%;
    }

    /* Breadcrumb: reduce padding for mobile */
    .breadcrumb-content {
        padding-left: 24px;
        padding-right: 24px;
        padding-top: 24px;
        padding-bottom: 40px;
    }

    .breadcrumb-content h1 {
        font-size: 24px;
        margin-top: 24px;
    }

    .breadcrumb-content h3 {
        font-size: 12px;
    }

    .breadcrumb-header {
        height: 180px;
    }

    /* About story: ensure images don't overflow */
    .about-story {
        margin-left: 16px;
        margin-right: 16px;
    }

    /* Corporate: reduce side padding */
    .corporate {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Contact section spacing */
    .contact {
        margin: 40px auto;
        padding: 0 1rem;
    }

    /* Text section spacing */
    .text-section {
        margin-left: 16px;
        margin-right: 16px;
    }
}

/* ── PHONES (≤ 480px) ── */
@media (max-width: 480px) {

    /* Top bar: further compress */
    .top-bar__phone {
        font-size: 0;
        padding: 0 12px;
        gap: 0;
    }

    .top-bar__phone svg {
        width: 18px;
        height: 18px;
    }

    .top-bar__btn {
        padding: 0 12px;
        font-size: 12px;
    }

    .top-bar {
        height: 40px;
    }

    /* Header */
    .header {
        padding: 0 14px;
        height: 60px;
    }

    /* Logo: smaller on phones */
    .logo img {
        width: 60px;
        padding-bottom: 10px;
    }

    .logo__letter {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }

    /* Reviews bar */
    .reviews-bar__star {
        width: 14px;
        height: 14px;
    }

    .reviews-bar__g {
        width: 18px;
        height: 18px;
    }

    .reviews-bar__text {
        font-size: 10.5px;
        line-height: 1.4;
    }

    /* Hero section */
    .hero {
        min-height: 300px;
    }

    .hero__content {
        padding: 32px 16px 14px;
    }

    .hero__btn {
        padding: 9px 20px;
        font-size: 13px;
    }

    /* Course finder */
    .course-finder {
        width: 94%;
        padding: 16px 14px 12px;
        margin-top: -20px;
        margin-bottom: -30px;
    }

    .course-finder__title {
        font-size: 12px;
    }

    /* Trust bar */
    .trust-bar {
        padding: 70px 16px 24px;
    }

    .trust-item__icon {
        width: 40px;
        height: 40px;
    }

    .trust-item__text {
        font-size: 12px;
    }

    /* Experts section */
    .experts {
        padding: 40px 16px;
        gap: 28px;
    }

    .experts__desc {
        font-size: 13px;
    }

    /* Trusted companies */
    .trusted {
        padding: 40px 16px 32px;
    }

    .trusted__title {
        font-size: 20px;
        margin-bottom: 28px;
    }

    /* Show all logos at once: disable sliding, use wrap grid */
    .carousel__track {
        flex-wrap: wrap;
        transform: none !important;
        justify-content: center;
    }

    .carousel__slide {
        flex: 0 0 33.333%;
        padding: 12px 10px;
        min-height: 70px;
    }

    .carousel__slide img {
        max-width: 90px;
    }

    .carousel__track-container {
        margin: 0;
        overflow: visible;
    }

    .carousel__dots {
        display: none;
    }

    .carousel__arrow {
        display: none;
    }

    /* Courses section */
    .courses__tab {
        font-size: 13px;
        padding: 10px 14px;
        gap: 6px;
    }

    .courses__tab-icon {
        width: 18px;
        height: 18px;
    }

    .course-card {
        padding: 18px 16px;
        min-height: 140px;
    }

    /* Reviews section */
    .reviews__title {
        font-size: 22px;
    }

    .reviews__subtitle {
        font-size: 13px;
        margin-bottom: 32px;
    }

    .reviews__slider-area {
        padding: 0 28px;
    }

    .reviews__arrow {
        width: 24px;
        height: 24px;
    }

    .reviews__arrow svg {
        width: 10px;
        height: 10px;
    }

    .review-card__content {
        padding: 20px 16px;
    }

    .review-card__name {
        font-size: 14px;
    }

    .review-card__text {
        font-size: 12.5px;
    }

    /* Breadcrumb */
    .breadcrumb-header {
        height: 150px;
    }

    .breadcrumb-content {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 20px;
        padding-bottom: 30px;
    }

    .breadcrumb-content h1 {
        font-size: 20px;
        margin-top: 16px;
    }

    /* About story */
    .about-story {
        padding: 1.25rem;
        margin: 24px 12px;
        gap: 1.5rem;
    }

    .about-story__heading {
        font-size: 1.3rem;
    }

    .about-story__body {
        font-size: 12.5px;
    }

    /* Corporate */
    .corporate {
        padding: 32px 0.85rem 40px;
    }

    .corporate__heading {
        font-size: 1.2rem;
    }

    .corporate-acc__header {
        padding: 0.85rem 1rem;
        gap: 0.75rem;
    }

    .corporate-acc__title {
        font-size: 13px;
    }

    .corporate-acc__content {
        padding: 0 1rem 1rem 2.75rem;
        font-size: 12.5px;
    }

    .corporate__split-image img {
        aspect-ratio: 16 / 10;
    }

    /* Text sections (labour, client pages) */
    .text-section {
        padding: 2rem 1.25rem;
        margin: 24px 12px;
    }

    .text-section__heading {
        font-size: 1.2rem;
    }

    .text-section__body {
        font-size: 12.5px;
    }

    .text-section__list li {
        font-size: 12.5px;
    }

    /* Contact page */
    .contact {
        margin: 24px auto;
        padding: 0 0.75rem;
    }

    .contact__info {
        padding: 1.75rem 1.25rem;
        gap: 1.5rem;
    }

    .contact__info-title {
        font-size: 1.15rem;
    }

    .contact__form-wrap {
        padding: 1.75rem 1.25rem;
    }

    .contact__submit {
        width: 100%;
        justify-content: center;
    }

    /* Footer */
    .footer__inner {
        padding: 32px 16px 28px;
        gap: 28px;
    }

    .footer__about {
        font-size: 12px;
        max-width: 100%;
    }

    .footer__heading {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .footer__links a {
        font-size: 12px;
    }

    .footer__contact li {
        font-size: 12.5px;
        gap: 10px;
        margin-bottom: 14px;
    }

    .footer__contact svg {
        width: 18px;
        height: 18px;
    }

    .footer__bottom {
        padding: 16px 12px;
        gap: 8px;
    }

    .footer__bottom p {
        font-size: 11.5px;
    }

    .footer__bottom-links {
        gap: 16px;
    }

    .footer__bottom-links a {
        font-size: 11.5px;
    }

    /* Modal */
    .course-modal__title {
        font-size: 16px;
    }

    .course-modal__section {
        padding: 16px 18px;
        margin-bottom: 12px;
    }

    .course-modal__section-text {
        font-size: 12.5px;
    }
}

/* ── VERY SMALL SCREENS (≤ 360px) ── */
@media (max-width: 360px) {

    /* Hide phone number entirely — icon is enough */
    .top-bar__phone {
        padding: 0 10px;
    }

    .top-bar__btn span {
        display: none;
    }

    /* Header further compress */
    .header {
        height: 56px;
        padding: 0 10px;
    }

    .logo img {
        width: 48px;
    }

    .logo__letter {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }

    /* Hero */
    .hero {
        min-height: 260px;
    }

    .hero__content {
        padding: 24px 12px 10px;
    }

    .hero__title {
        font-size: 22px;
    }

    .hero__subtitle {
        font-size: 11px;
    }

    /* Course finder */
    .course-finder {
        width: 96%;
        padding: 14px 10px 10px;
        border-radius: 8px;
    }

    .course-finder__input {
        padding: 10px 36px 10px 38px;
        font-size: 12px;
    }

    .course-finder__search-icon {
        width: 16px;
        height: 16px;
        left: 12px;
    }

    /* Nav links */
    .nav__link {
        padding: 12px 18px;
        font-size: 13px;
    }

    .dropdown__link {
        padding: 8px 32px;
        font-size: 12px;
    }

    /* Reviews bar: single line compact */
    .reviews-bar {
        padding: 6px 12px;
        gap: 4px;
    }

    .reviews-bar__star {
        width: 12px;
        height: 12px;
    }

    .reviews-bar__g {
        width: 16px;
        height: 16px;
    }

    /* Further footer compression */
    .footer__inner {
        padding: 28px 12px 24px;
    }

    .footer__socials {
        gap: 8px;
    }

    .footer__social {
        width: 32px;
        height: 32px;
    }

    .footer__social svg {
        width: 15px;
        height: 15px;
    }
}