/* ── HERO BANNER ────────────────────────────────────────────────── */
.about-hero {
    position: relative;
    background-color: #1a2d3d;
    padding: 360px 0 80px;
    overflow: hidden;
    background-size: cover !important;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

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



.nav-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}

.nav-breadcrumb li {
    font-family: var(--default-font-family);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--white-color);
    line-height: 20px;
    text-transform: uppercase;
}

.nav-breadcrumb li a {
    color: var(--white-color);
    text-decoration: none;
    transition: color .3s;
}

.nav-breadcrumb li a:hover {
    color: var(--white-color);
}

.nav-breadcrumb .separator {
    color: rgba(255, 255, 255, 0.35);
}

.nav-breadcrumb .current {
    color: rgba(255, 255, 255, 0.55);
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: var(--heading-1);
    font-weight: 700;
    color: var(--white-color);
    letter-spacing: 0;
    margin: 0;
}

.about-hero-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 2;
    text-align: center;
    display: flex;
    justify-content: center;
}

.about-hero-curve svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* ── FEATURES ROW ───────────────────────────────────────────────── */
.about-features-sec {
    background: var(--white-color);
    padding: 80px 0 80px;
    border-bottom: #C8C8C8 1px solid;
}

.about-features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-feature-item:first-child {
    padding-left: 0;
}

.about-feature-item:last-child {
    padding-right: 0;
}

.about-feature-icon {
    flex-shrink: 0;
    color: #8395a7;
}

.about-feature-icon svg {
    width: 50px;
    height: auto;
}

.about-feature-title {
    font-family: var(--font-heading);
    font-size: var(--heading-5);
    color: #07242B;
    margin-bottom: 4px;
    letter-spacing: 0;
}

.about-feature-desc {
    font-family: var(--default-font-family);
    font-size: var(--text-md);
    color: var(--para-color);
    line-height: 23px;
    margin: 0;
    font-weight: 400;
}

/* ── ABOUT MAIN SECTION ─────────────────────────────────────────── */
.about-main-sec {
    background: var(--white-color);
    padding: 70px 0 90px;
}

.about-main-sec .row-box {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
}

.about-main-sec .right-column {
    max-width: 524px;
}

.about-images-wrap {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.about-img-back,
.about-img-front {
    border-radius: 20px;
    overflow: hidden;
    background: #eef2f5;
    background-size: cover;
    background-position: center;
    display: flex;
}

.about-img-back img,
.about-img-front img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center center;
}

.about-img-back {
    width: 233px;
    height: auto;
    z-index: 1;
    box-shadow: 0 25px 30px rgba(0, 0, 0, 0.08);
    margin-right: 20px;
}

.about-img-front {
    width: 267px;
    height: auto;
    z-index: 2;
    box-shadow: 0 25px 30px rgba(0, 0, 0, 0.07);
    top: 90px;
    position: relative;
}

.about-emblem {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    right: 200px;
    top: 25px;
    box-shadow: 0 6px 20px rgba(186, 148, 76, 0.35);
}

.about-emblem a {
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.about-emblem a:hover {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.about-emblem svg {
    width: 100%;
    height: auto;
}

.badge-heading,
.badge-heading-outline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--default-font-family);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--black-color);
    background: rgb(75 154 210 / 5%);
    padding: 5px 12px;
    border-radius: 10px;
    margin-bottom: 18px;
    line-height: 14.4px;
    text-transform: uppercase;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--bg-blue);
}

.badge-heading-outline {
    background-color: rgb(255 255 255 / 7%);
    width: max-content;
    border: #FFF 0.3px solid;
    color: #FFF;
}

.badge-heading-outline span.badge-dot {
    background-color: var(--theme-color);
}

.about-info-heading {
    font-family: var(--font-heading);
    font-size: var(--heading-3);
    font-weight: 500;
    color: #07242B;
    letter-spacing: -1.4px;
    margin-bottom: 22px;
}

.about-info-para {
    font-family: var(--default-font-family);
    font-size: var(--body-font-medium);
    color: var(--para-color);
    line-height: 28px;
    margin-bottom: 16px;
    font-weight: 400;
}

.about-stats-row {
    display: flex;
    gap: 60px;
    padding-top: 20px;
}

.about-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid rgb(10 29 53 / 10%);
    padding-top: 10px;
    width: 50%;
}

.about-stat-num {
    font-family: var(--font-heading);
    font-size: var(--heading-4);
    font-weight: 500;
    color: var(--theme-color);
}

.about-stat-text {
    font-family: var(--default-font-family);
    font-size: var(--heading-6);
    font-weight: 600;
    color: #07242B;
}

/* ── FAQ SECTION ────────────────────────────────────────────────── */
.about-faq-sec {
    background: var(--white-color);
    padding: 40px 0 100px;
}

.about-faq-block {
    display: flex;
    border-radius: 25px;
    overflow: hidden;
}

.about-faq-img {
    flex: 0 0 48%;
    max-width: 48%;
    background-color: #d9e2e8;
    background-size: cover;
    background-position: center;
    position: relative;
}

.about-faq-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.about-faq-content {
    flex: 0 0 52%;
    max-width: 52%;
    background: linear-gradient(150deg, #4a9fd4 0%, #2a6fa0 40%, #1b4f78 100%);
    padding: 50px 45px;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--default-font-family);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white-color);
    background: rgba(255, 255, 255, 0.15);
    padding: 5px 12px;
    border-radius: 10px;
    margin-bottom: 18px;
    width: fit-content;
}

.faq-badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--white-color);
}

.faq-title {
    font-family: var(--font-heading);
    font-size: var(--heading-3);
    font-weight: 600;
    color: var(--white-color);
    letter-spacing: -1.4px;
    margin-bottom: 30px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px 0;
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-summary {
    list-style: none;
    cursor: pointer;
    font-family: var(--default-font-family);
    font-size: var(--heading-6);
    font-weight: 700;
    color: var(--white-color);
    outline: none;
    display: flex;
    align-items: center;
    gap: 8px;
    user-select: none;
    opacity: 0.9;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary::before {
    content: "+";
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
    width: 18px;
    opacity: 0;
}

.faq-item[open] .faq-summary::before {
    content: "—";
    font-size: 16px;
    opacity: 1;
}

.faq-item[open] .faq-summary {
    opacity: 1;
}

.faq-body {
    padding: 14px 0 4px 26px;
    font-family: var(--default-font-family);
    font-size: var(--body-font-medium);
    color: rgba(255, 255, 255, 0.82);
    line-height: 28px;
    font-weight: 400;
}

.faq-body p {
    margin-bottom: 10px;
}

.faq-body ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.faq-body li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
}

.faq-body li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
}

.custom-list ul {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.custom-list ul li {
    list-style: none;
    cursor: pointer;
    font-family: var(--default-font-family);
    font-size: var(--heading-6);
    font-weight: 700;
    color: var(--white-color);
    outline: none;
    display: flex;
    align-items: center;
    gap: 8px;
    user-select: none;
    padding: 10px 0;
}

.custom-list ul li:before {
    content: "";
    width: 10px;
    opacity: 1;
    height: 1.5px;
    background-color: #FFF;
    margin-right: 5px;
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .about-features-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 50px;
    }
}

@media (max-width: 991px) {
    .about-hero {
        padding: 100px 0 120px;
    }

    .about-hero-title {
        font-size: 42px;
    }

    .about-images-wrap {
        margin-bottom: 100px;
        justify-content: center;
    }

    .about-img-back,
    .about-img-front {
        width: 200px;
        height: 270px;
    }

    .about-info-heading {
        font-size: 32px;
    }

    .about-faq-block {
        flex-direction: column;
        min-height: auto;
    }

    .about-faq-img {
        flex: none;
        max-width: 100%;
        min-height: auto;
    }

    .about-faq-content {
        flex: none;
        max-width: 100%;
        padding: 35px 30px;
    }

    .about-main-sec .row-box {
        flex-flow: column;
        gap: 30px;
    }

    .about-main-sec .row-box .left-column {
        width: 100%;
    }

    .about-emblem {
        width: 100px;
        height: 100px;
        right: 0;
        left: 0;
        margin: auto;
    }

    .about-main-sec .right-column {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .about-feature-item {
        flex: 1;
        padding: 0;
    }

    .about-info-heading {
        font-size: 28px;
    }

    .about-info-wrap {
        padding-left: 0;
    }

    .faq-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 80px 0 100px;
    }

    .about-features-sec {
        padding: 40px 0 50px;
    }

    .about-main-sec {
        padding: 50px 0;
    }

    .about-faq-sec {
        padding: 0 0 50px;
    }

    .about-hero-title {
        font-size: 34px;
    }

    .about-features-row {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }

    .about-images-wrap {
        margin-bottom: 55px;
    }

    .about-img-back,
    .about-img-front {
        width: 170px;
        height: 230px;
    }

    .about-img-front {
        top: 50px;
    }

    .about-emblem {
        width: 60px;
        height: 60px;
    }

    .about-stats-row {
        gap: 16px;
    }

    .about-stat-num {
        font-size: 30px;
    }

    .about-faq-content {
        padding: 25px 20px;
    }

    .faq-title {
        font-size: 24px;
    }
}

/* ── FAQ PAGE ──────────────────────────────────────────────────── */
.faq-hero {
    position: relative;
    background-color: #1c2b3d;
    padding: 180px 0 280px;
    overflow: hidden;
    background-attachment: fixed !important;
    background-size: cover !important;
}

.faq-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

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

.faq-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}

.faq-breadcrumb li {
    font-family: var(--default-font-family);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--white-color);
}

.faq-breadcrumb li a {
    color: var(--white-color);
    text-decoration: none;
    transition: color 0.3s;
}

.faq-breadcrumb li a:hover {
    color: var(--white-color);
}

.faq-breadcrumb .separator {
    color: rgba(255, 255, 255, 0.35);
}

.faq-breadcrumb .current {
    color: rgba(255, 255, 255, 0.55);
}

.faq-hero-title {
    font-family: var(--font-heading);
    font-size: var(--heading-1);
    font-weight: 700;
    color: var(--white-color);
    margin: 0;
    letter-spacing: 0;
}

.faq-hero-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 2;
}

.faq-hero-curve svg {
    display: block;
    width: 100%;
    height: 100%;
}

.faq-qa-sec {
    background: var(--white-color);
    padding: 160px 0;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    margin-top: -100px;
    position: relative;
    z-index: 5;
}

.faq-badge-wrapper {
    margin-bottom: 20px;
}

.faq-badge-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--default-font-family);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--theme-color);
    border: 1px solid rgba(186, 148, 76, 0.3);
    background: rgba(186, 148, 76, 0.05);
    padding: 6px 16px;
    border-radius: 10px;
    line-height: 1;
    text-transform: uppercase;
}

.faq-badge-gold svg {
    color: var(--theme-color);
}

.faq-qa-heading {
    font-family: var(--font-heading);
    font-size: var(--heading-2);
    font-weight: 500;
    color: #07242B;
    margin-bottom: 20px;
    letter-spacing: -1.2px;
}

.faq-qa-subtitle {
    font-family: var(--default-font-family);
    font-size: var(--body-font-medium);
    color: var(--para-color);
    line-height: 28px;
    max-width: 658px;
    font-weight: 400;
    margin: 0 auto;
}

.faq-qa-sec .faq-qa-subtitle {
    margin-bottom: 50px;
}

.faq-tab-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.faq-tab-switcher {
    display: inline-flex;
    align-items: center;
    background: #F1F4F9;
    padding: 5px;
    border-radius: 10px;
}

.faq-tab-btn {
    border: none;
    background: transparent;
    padding: 9px 34px;
    border-radius: 40px;
    font-family: var(--default-font-family);
    font-size: 20px;
    font-weight: 500;
    color: #64748B;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}

.faq-tab-btn:hover {
    color: #1E293B;
}

.faq-tab-btn.active {
    background: #3B88C4;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(59, 136, 196, 0.25);
}

.faq-page-list {
    display: flex;
    flex-direction: column;
}

.faq-page-item {
    border-top: 1px solid #EEF2F6;
    padding: 22px 0;
}

.faq-page-item:last-child {
    border-bottom: 1px solid #EEF2F6;
}

.faq-page-summary {
    list-style: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    outline: none;
    display: flex;
    align-items: center;
    gap: 8px;
    user-select: none;
    letter-spacing: -0.2px;
    transition: color 0.2s ease;
}

.faq-page-summary::-webkit-details-marker,
.faq-page-summary::marker {
    display: none;
}

.faq-page-summary::before {
    content: "+";
    display: inline-block;
    color: #0F172A;
    font-size: 23px;
    font-weight: 700;
    margin-right: 6px;
    line-height: 1;
    transition: color 0.2s ease;
}

.faq-page-summary:hover {
    color: var(--theme-color, #BB8E26);
}

.faq-page-summary:hover::before {
    color: var(--theme-color, #BB8E26);
}

.faq-page-item[open] .faq-page-summary {
    color: var(--theme-color, #BB8E26);
}

.faq-page-item[open] .faq-page-summary::before {
    content: "—";
    display: inline-block;
    color: var(--theme-color, #BB8E26);
    font-size: 23px;
    font-weight: 700;
    margin-right: 6px;
    line-height: 1;
}

/* Smooth Fade & Slide Animation for Body */
.faq-page-body {
    padding: 12px 0 6px 20px;
    font-family: var(--default-font-family);
    font-size: 20px;
    color: #64748B;
    line-height: 1.7;
    animation: faqSlideDown 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes faqSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-6px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-sub-heading {
    font-family: var(--default-font-family);
    font-size: 20px;
    font-weight: 400;
    color: #64748B;
    margin-bottom: 12px;
}

.faq-page-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-page-body li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    color: #64748B;
    font-size: 14.5px;
    line-height: 1.65;
}

.faq-page-body li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -1px;
    color: #64748B;
    font-size: 16px;
}

.faq-cta-sec {
    background-color: var(--white-color);
    padding: 0 0 20px;
}

.faq-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: radial-gradient(circle at 80% 20%, rgba(61, 138, 192, 0.18) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(186, 148, 76, 0.12) 0%, transparent 60%),
        linear-gradient(135deg, #091a24 0%, #0c202d 50%, #030c12 100%);
    border-radius: 20px;
    padding: 60px 100px;
    color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.faq-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    transform: rotate(-30deg);
    pointer-events: none;
}

.faq-cta-left {
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.faq-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white-color);
    font-family: var(--font-heading);
    font-size: var(--body-font-sm);
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
    letter-spacing: 0;
    line-height: 1;
}

.faq-cta-heading {
    font-family: var(--font-heading);
    font-size: var(--heading-3);
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 12px;
    letter-spacing: 0;
    line-height: 48px;
}

.faq-cta-desc {
    font-family: var(--default-font-family);
    font-size: var(--body-font-medium);
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 400;
    line-height: 26px;
}

.faq-cta-right {
    position: relative;
    z-index: 2;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--default-font-family);
    font-size: 20px;
    font-weight: 600;
    color: var(--white-color);
    background: var(--theme-color);
    padding: 15px 36px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(186, 148, 76, 0.25);
}

.faq-cta-btn:hover {
    background: var(--theme-color-hover);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(186, 148, 76, 0.35);
}

@media (max-width: 991px) {
    .faq-qa-sec {
        padding: 70px 0;
    }

    .faq-qa-heading {
        font-size: 34px;
    }

    .faq-cta-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .faq-hero {
        padding: 100px 0 120px;
    }

    .faq-qa-heading {
        font-size: 28px;
    }

    .faq-qa-sec {
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
        margin-top: -40px;
    }
}

/* ── CONTACT PAGE ────────────────────────────────────────────────── */
.contact-main-sec {
    background: var(--white-color);
    padding: 100px 0 80px;
}

.contact-form-wrapper {
    padding-right: 40px;
}

.contact-badge-heading {
    background: #FAF6F0;
}

.contact-badge-heading .badge-dot {
    background: var(--theme-color);
}

.contact-heading {
    font-family: var(--font-heading);
    font-size: var(--heading-3);
    font-weight: 600;
    color: var(--black-color);
    letter-spacing: -1.4px;
    margin-bottom: 24px;
}

.contact-pill {
    display: inline-block;
    background-color: var(--theme-color);
    color: var(--white-color);
    border-radius: 10px;
    padding: 2px 18px 4px;
    font-family: var(--font-heading);
    font-size: inherit;
    line-height: 1;
    -webkit-transform: rotate(-2deg);
    -ms-transform: rotate(-2deg);
    transform: rotate(-2deg);
}

.contact-desc {
    margin-bottom: 20px;
    font-family: var(--default-font-family);
    font-size: var(--body-font-medium);
    color: var(--para-color);
    line-height: 28px;
    font-weight: 400;
}

.contact-input {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    color: var(--black-color);
    font-family: var(--default-font-family);
    font-size: 20px;
    transition: all 0.3s ease;
}

.contact-input::placeholder {
    color: #757575;
}

input.contact-input,
select.contact-input {
    height: 48px;
    border-radius: 25px;
    padding: 0 24px;
}

textarea.contact-input {
    border-radius: 20px;
    padding: 18px 24px;
}

.contact-input:focus {
    background: #ffffff;
    border-color: var(--theme-color);
    box-shadow: 0 0 0 4px rgba(186, 148, 76, 0.12);
    outline: none;
}

.contact-form select.form-select.contact-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../img/select-arrow.png);
    background-repeat: no-repeat;
    background-position: 95% center;
}

.contact-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    font-family: var(--default-font-family);
    font-size: 20px;
    font-weight: 500;
    color: var(--white-color);
    background: var(--theme-color);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
    margin-top: 35px;
}

.contact-submit-btn:hover {
    background: var(--theme-color-hover);
}

.contact-map-container {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    height: 100%;
    min-height: 100%;
}

.contact-map-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-instagram-sec {
    background: var(--white-color);
    padding: 80px 0 0;
    overflow: hidden;
}

.instagram-heading {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #07242B;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-heading-link {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.instagram-heading-link:hover {
    color: var(--theme-color);
}

.instagram-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    margin-top: 40px;
}

.instagram-img-box {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    width: 100%;
    position: relative;
    display: block;
}

.instagram-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: block;
}

.instagram-img-box:hover img {
    transform: scale(1.06);
}

.instagram-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 36, 43, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2;
}

.instagram-img-box:hover .instagram-hover-overlay {
    opacity: 1;
    visibility: visible;
}

.instagram-hover-circle {
    width: 60px;
    height: 60px;
    background-color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.instagram-img-box:hover .instagram-hover-circle {
    transform: scale(1);
}

.instagram-hover-circle i,
.instagram-hover-circle svg {
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: #000000;
    fill: #000000;
}

.mo-element-mo-marquee.mo-element {
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.mo-element-mo-marquee .mo-marquee-container.tpl1 {
    position: relative;
    width: calc(100% + 2px);
    left: -1px;
    transform: rotate(1.5deg);
    margin-top: 25px;
    background: var(--bg-blue);
}

.mo-element-mo-marquee .mo-marquee-container.double-tpl1,
.mo-element-mo-marquee .mo-marquee-container.tpl1 {
    padding-top: 25px;
    padding-bottom: 25px;
}

.mo-element-mo-marquee .mo-marquee {
    position: relative;
    width: 100%;
    z-index: 1;
    display: flex;
    box-sizing: content-box;
    will-change: transform;
    transition-property: transform;
    animation: marquee 50s linear infinite;
}

.mo-element-mo-marquee .mo-marquee-container.tpl1 .mo-marquee {
    animation: marquee-reverse 50s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-100%)
    }
}

@keyframes marquee-reverse {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

.mo-element-mo-marquee .mo-marquee .marquee-item {
    display: flex;
    width: auto;
    flex-shrink: 0;
    height: 100%;
    position: relative;
}

.mo-element-mo-marquee .mo-marquee .marquee-title {
    position: relative;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    margin-left: 50px;
    color: var(--white-color);
    line-height: 30px;
}

.mo-element-mo-marquee .mo-marquee-container.double-tpl1 svg,
.mo-element-mo-marquee .mo-marquee-container.tpl1 svg {
    position: relative;
    left: 24px;
    top: 3px;
    height: 30px;
    width: 30px;
    animation: push_animat 5s linear infinite;
}

@keyframes push_animat {
    0% {
        opacity: .7;
        transform: scale(.7)
    }

    50% {
        opacity: 1;
        transform: scale(1)
    }

    100% {
        opacity: .7;
        transform: scale(.7)
    }
}

@keyframes push_animat2 {
    0% {
        transform: scale(.6);
        opacity: 0
    }

    1% {
        opacity: 1
    }

    50% {
        transform: scale(1) rotate(45deg)
    }

    100% {
        transform: scale(.6)
    }
}

.mo-element-mo-marquee .mo-marquee-container.double-tpl1 {
    position: relative;
    width: calc(100% + 2px);
    left: -1px;
    margin-top: -50px;
    margin-bottom: 25px;
    transform: rotate(-1.5deg);
    background: var(--theme-color);
}

.mo-element-mo-marquee .mo-marquee-container.double-tpl1 .mo-marquee {
    animation: marquee 50s linear infinite;
}

.mo-element-mo-marquee .mo-marquee-container.double-tpl1 svg path {
    fill: var(--white-color);
}


@media (max-width: 991px) {
    .contact-main-sec {
        padding: 70px 0 50px;
    }

    .contact-form-wrapper {
        padding-right: 0;
    }

    .contact-heading {
        font-size: 34px;
        line-height: 44px;
    }

    .contact-map-container {
        min-height: 400px;
        margin-top: 40px;
    }

    .instagram-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .instagram-img-box:nth-child(n+4) {
        display: none;
    }
}

@media (max-width: 576px) {
    .contact-heading {
        font-size: 28px;
        line-height: 38px;
    }

    .instagram-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .instagram-img-box:nth-child(n+3) {
        display: none;
    }
}

/* ── BLOG PAGE ───────────────────────────────────────────────────── */
.blog-space {
    background: linear-gradient(180deg, #FFFFFF 0%, #F4EEE7 100%);
    height: 72px;
}

.blog-main-sec {
    padding: 0 0 100px;
    position: relative;
    background: linear-gradient(180deg, #F4EEE7 0%, #FFFFFF 100%);
    overflow: hidden;
}

.blog-heading {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--black-color);
    line-height: 52px;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

.blog-pill {
    display: inline-block;
    background-color: var(--theme-color);
    color: var(--white-color);
    border-radius: 10px;
    padding: 5px 16px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--text-md);
    line-height: 21px;
}

.blog-desc {
    font-family: var(--default-font-family);
    font-size: var(--body-font-medium);
    color: var(--para-color);
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 0;
}

.blog-card {
    background: var(--white-color);
    border: 1px solid #0A1D351A;
    border-radius: 20px;
    padding: 46px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: -2;
    transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: scale(1.08);
}

.blog-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(6, 30, 43, 0.4) 0%, rgba(6, 30, 43, 0.82) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.blog-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.blog-card:hover::after {
    opacity: 1;
}

.blog-card:hover .blog-card-title,
.blog-card:hover .blog-card-title a {
    color: var(--white-color);
}

.blog-card:hover .blog-card-text {
    color: rgba(255, 255, 255, 0.8);
}

.blog-card:hover .blog-card-arrow {
    color: var(--white-color);
}

/* Featured Card (always shows the image & overlay by default) */
.blog-card-featured {
    border-color: transparent;
}

.blog-card-featured::before {
    opacity: 1;
    transform: scale(1);
}

.blog-card-featured::after {
    opacity: 1;
}

.blog-card-featured .blog-card-title,
.blog-card-featured .blog-card-title a {
    color: var(--white-color);
}

.blog-card-featured .blog-card-text {
    color: var(--white-color);
}

.blog-card-featured .blog-card-arrow {
    color: var(--white-color);
}

.blog-card-badge {
    display: inline-block;
    background: var(--theme-color);
    color: var(--bs-white);
    border-radius: 10px;
    padding: 5px 9px;
    font-family: var(--default-font-family);
    font-size: var(--text-sm);
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 15.6px;
    position: relative;
    z-index: 5;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 16px;
    color: var(--black-color);
    transition: color 0.3s;
    position: relative;
    z-index: 5;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card-title a:hover {
    color: var(--theme-color);
}

.blog-card-text {
    font-family: var(--default-font-family);
    font-size: var(--body-font-sm);
    color: var(--para-color);
    line-height: 23px;
    margin-bottom: 30px;
    flex-grow: 1;
    transition: color 0.3s;
    position: relative;
    z-index: 5;
    font-weight: 400;
}

.blog-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--black-color);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    z-index: 5;
    border-radius: 50%;
    border: transparent 1px solid;
}

.blog-card-arrow:hover {
    transform: translateX(6px);
}

/* Content wrapper for featured/non-featured uniformity */
.blog-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 5;
}

.blog-card:hover .blog-card-arrow {
    border: 1px solid var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.blog-card:hover .blog-card-arrow svg {
    width: 16px;
}

.blog-card:hover .blog-card-arrow svg path {
    fill: var(--white-color);
}

.blog-main-sec .blog-card-main:nth-child(2) .blog-card-arrow {
    width: 32px;
    height: 32px;
    border: 1px solid var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    z-index: 5;
}

.blog-main-sec .blog-card-main:nth-child(2) .blog-card-arrow svg path {
    fill: var(--white-color);
}

.blog-main-sec .blog-card-main:nth-child(2) .blog-card-arrow svg {
    width: 16px;
}

.blog-main-sec .blog-card-main:nth-child(2) .blog-card-arrow:hover {
    background-color: var(--white-color);
}

.blog-main-sec .blog-card-main:nth-child(2) .blog-card-arrow:hover svg path {
    fill: var(--black-color);
}

@media (max-width: 991px) {
    .blog-main-sec {
        padding: 0 0 10px;
    }

    .blog-heading {
        font-size: 34px;
        line-height: 44px;
    }

    .blog-card {
        padding: 30px;
    }

    .blog-card-title {
        font-size: 20px;
        line-height: 28px;
    }
}

@media (max-width: 576px) {
    .blog-heading {
        font-size: 28px;
        line-height: 38px;
    }
}

/* ── BLOG DETAILS PAGE ────────────────────────────────────────────── */
.blog-details-badge-wrap {
    margin-bottom: 24px;
}

.blog-details-hero-title {
    font-family: var(--font-heading);
    font-size: var(--heading-2);
    font-weight: 700;
    color: var(--white-color);
    line-height: 62px;
    letter-spacing: 0;
    margin: 0 auto 24px;
    text-wrap-style: balance;
}

.blog-details-hero-meta {
    font-family: var(--default-font-family);
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.80);
    letter-spacing: 0.48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 28px;
    text-transform: uppercase;
}

.blog-details-hero-meta .meta-separator svg {
    fill: var(--white-color);
    width: 10px;
}

.blog-details-sec {
    background: var(--white-color);
    padding: 80px 0 100px;
}

.blog-share-sidebar {
    position: sticky;
    top: 250px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--white-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(10, 29, 53, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-btn i {
    font-size: 16px;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.share-fb i {
    color: #1877F2;
}

.share-tw i {
    color: #d3343d;
}

.share-in i {
    color: #0A66C2;
}

.share-pt i {
    color: #BD081C;
}

.share-wa i {
    color: #25D366;
}

.blog-details-content {
    font-family: var(--default-font-family);
    color: var(--para-color);
    font-size: 20px;
    line-height: 1.8;
}

.blog-details-content p {
    margin-bottom: 24px;
    font-weight: 400;
    line-height: normal;
}

.blog-details-content h2,
.blog-details-content h3,
.blog-details-content h4 {
    font-family: var(--font-heading);
    color: var(--black-color);
    font-weight: 800;
    margin-top: 40px;
    margin-bottom: 16px;
}

.blog-details-content h2 {
    font-size: var(--heading-4);
    /* 38px */
    line-height: 1.3;
}

.blog-details-content h3 {
    font-size: 28px;
    line-height: 1.4;
}

.blog-details-content blockquote {
    position: relative;
    /* padding: 30px 40px 30px 80px; */
    padding: 30px 40px;
    background: #FAF9F6;
    border-radius: 16px;
    margin: 40px 0;
    border-left: 4px solid var(--theme-color);
}

.blog-details-content h2:first-child {
    margin-top: 0;
}

.blog-details-content blockquote p {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--black-color);
    margin-bottom: 0;
}

p.pick-course-block-subtext.w-70px {
    width: 70%;
}

.blog-details-content blockquote .quote-icon {
    position: absolute;
    left: 30px;
    top: 28px;
    color: var(--theme-color);
    font-size: 32px;
    line-height: 1;
}

*:last-child {
    margin-bottom: 0;
}

.author-card .row-box {
    display: flex;
    gap: 56px;
}

.author-card .row-box .author-profile-info {
    flex: 1;
}

.author-card .row-box .author-profile-box {
    width: 90px;
    min-width: 90px;
}

.author-card .row-box .author-profile-info h4.author-name {
    margin-top: 0;
    font-size: var(--heading-6);
    line-height: 20px;
    font-weight: 600;
}

.blog-details-content img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: none;
    border: none;
}

.author-card .row-box .author-profile-box img.author-avatar {
    margin: 0;
    border-radius: 100px;
}

.blog-details-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.blog-details-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
}

.blog-details-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--theme-color);
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
    top: 4px;
}

.author-card {
    background-color: transparent;
    border-top: 1px solid rgba(10, 29, 53, 0.1);
    border-bottom: 1px solid rgba(10, 29, 53, 0.1);
    border-left: none;
    border-right: none;
    border-radius: 0;
    padding: 60px 0;
    margin: 60px 0;
}

.author-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.author-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 10px;
}

.author-bio {
    font-family: var(--default-font-family);
    font-size: var(--body-font-sm);
    color: var(--para-color);
    line-height: 1.6;
    margin-bottom: 24px;
}

.author-socials {
    display: flex;
    gap: 12px;
}

.author-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(10, 29, 53, 0.12);
    color: var(--black-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.author-socials a svg {
    width: 14px;
    height: 14px;
    fill: var(--black-color);
    transition: fill 0.3s ease;
}

.author-socials a:hover {
    border-color: var(--theme-color);
    background-color: var(--theme-color);
}

.author-socials a:hover svg,
.author-socials a:hover i {
    color: var(--white-color);
    fill: var(--white-color);
}

.blog-post-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-post-navigation a {
    font-family: var(--default-font-family);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--black-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    text-decoration: none;
}

.blog-post-navigation a:hover {
    color: var(--theme-color);
}

.nav-grid-icon {
    color: var(--para-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-grid-icon:hover {
    color: var(--theme-color);
}

.related-posts-wrapper {
    border-top: 1px solid rgba(10, 29, 53, 0.08);
    padding: 80px 0 0;
    margin-top: 60px;
}

.related-posts-section {
    margin-top: 0;
}

.related-posts-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 30px;
}

.related-post-card {
    background: var(--white-color);
    border: 1px solid rgba(10, 29, 53, 0.1);
    border-radius: 20px;
    padding: 46px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.related-card-badge-wrap {
    margin-bottom: 24px;
}

.related-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--black-color);
    margin-bottom: 80px;
    flex-grow: 1;
}

.related-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-card-title a:hover {
    color: var(--theme-color);
}

.related-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--black-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.related-post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.related-post-card:hover .related-card-arrow {
    transform: translateX(6px);
    color: var(--theme-color);
}

@media (max-width: 991px) {
    .blog-share-sidebar {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 30px;
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .blog-details-sec {
        padding: 50px 0 60px;
    }

    .blog-details-hero-title {
        letter-spacing: -0.5px;
        line-height: 40px;
    }

    .blog-details-hero-meta {
        flex-direction: column;
        gap: 5px;
    }

    .blog-details-hero-meta .meta-separator {
        display: none;
    }

    .blog-post-navigation {
        gap: 16px;
        text-align: center;
    }

    .author-card .row-box {
        gap: 16px;
        flex-flow: column;
    }

    .related-posts-wrapper {
        padding: 30px 0 0;
        margin-top: 30px;
    }

    .related-post-card {
        padding: 26px;
    }

    .related-card-title {
        margin-bottom: 40px;
    }

    .author-card {
        padding: 30px 0;
        margin: 30px 0;
    }
}


@media (max-width: 991px) {
    .find-request-sec {
        padding: 50px 0;
    }
}

@media (max-width: 768px) {
    .job-header-row {
        flex-direction: column;
        gap: 16px;
    }

    .job-header-meta-group {
        flex-direction: column;
        gap: 12px;
    }

    .job-rate-box {
        text-align: left !important;
    }

    .job-details-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .job-card {
        padding: 24px;
    }

    .job-card-header {
        flex-direction: column;
        gap: 16px;
    }

    .job-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .btn-job-apply {
        width: 100%;
        text-align: center;
    }

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

/* ══════════════════════════════════════════════════════════════════
   FIND REQUEST NEW PAGE (frn-) — Isolated styles for find-request-new.html
   ══════════════════════════════════════════════════════════════════ */

/* ── Section ─────────────────────────────────────────────────── */
.frn-section {
    background-color: var(--white-color);
    padding: 80px 0 100px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    margin-top: -100px;
    position: relative;
    z-index: 5;
}

.frn-title {
    font-family: var(--font-heading);
    font-size: var(--heading-3);
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 30px;
}

.frn-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ── Card ────────────────────────────────────────────────────── */
.frn-card {
    position: relative;
    background: var(--white-color);
    border: 1px solid #D4D4D4;
    border-radius: 30px;
    padding: 27px;
    transition: box-shadow 0.3s ease;
}

.frn-card:hover {
    box-shadow: 0 8px 30px rgba(8, 8, 29, 0.06);
}

/* ── Rate (top-right) ────────────────────────────────────────── */
.frn-rate-top {
    text-align: right;
    margin-bottom: 16px;
}

.frn-rate-amount {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--bg-blue);
    line-height: 1;
}

.frn-rate-unit {
    font-size: 18px;
    font-weight: 600;
}

.frn-rate-type {
    font-family: var(--default-font-family);
    font-size: 13px;
    color: var(--para-color);
    margin-top: 4px;
}

/* ── Card Header (avatar + meta row) ─────────────────────────── */
.frn-card-body {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(8, 8, 29, 0.06);
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.frn-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.frn-avatar-box {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    overflow: hidden;
}

.frn-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.frn-meta-row {
    display: flex;
    flex: 1;
    gap: 32px;
}

.frn-meta-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.frn-meta-label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--black-color);
}

.frn-meta-value {
    font-family: var(--default-font-family);
    font-size: 13px;
    font-weight: 400;
    color: var(--para-color);
}

/* ── Description ─────────────────────────────────────────────── */
.frn-desc-section {
    margin-bottom: 28px;
}

.frn-desc-heading {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 12px;
}

.frn-desc-text {
    font-family: var(--default-font-family);
    font-size: 14px;
    line-height: 1.7;
    color: var(--para-color);
    margin-bottom: 0;
}

/* ── Details Grid ────────────────────────────────────────────── */
.frn-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 0;
}

.frn-detail-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.frn-detail-item {
    font-family: var(--default-font-family);
    font-size: var(--body-font-sm);
    line-height: 28px;
    text-transform: capitalize;
}

.frn-dlabel {
    font-weight: 700;
    color: var(--black-color);
}

.frn-dvalue {
    font-weight: 400;
    color: var(--para-color);
}

/* ── Divider ─────────────────────────────────────────────────── */
.frn-divider {
    border: none;
    border-top: 1px solid rgba(8, 8, 29, 0.08);
    margin: 24px 0;
}

/* ── Schedule Section ────────────────────────────────────────── */
.frn-schedule-section {
    margin-bottom: 0;
}

.frn-schedule-heading {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 16px;
}

.frn-schedule-pills {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.frn-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--theme-color);
    border-radius: 10px;
    padding: 8px 18px;
    font-family: var(--default-font-family);
    font-size: 13px;
    background: var(--white-color);
}

.frn-pill-label {
    font-weight: 700;
    color: var(--theme-color);
}

.frn-pill-val {
    font-weight: 400;
    color: var(--black-color);
}

.frn-pill-divider {
    color: rgba(8, 8, 29, 0.15);
    margin: 0 2px;
}

/* ── Card Footer ─────────────────────────────────────────────── */
.frn-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.frn-footer-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.frn-status-tag {
   display: inline-block;
    font-family: var(--default-font-family);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: #ffffff;
    border: 1px solid #1e5993;
    border-radius: 10px;
    padding: 12px;
    background: #1e5993;
}

.frn-posted-text {
    font-family: var(--default-font-family);
    font-size: 13px;
    color: var(--para-color);
}

.frn-btn-apply {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--white-color);
    background-color: #bb8f26;
    border-radius: 10px;
    padding: 12px 32px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.frn-btn-apply:hover {
    background-color: var(--theme-color-hover);
    color: var(--white-color);
    transform: translateY(-2px);
}

/* ── Sidebar ─────────────────────────────────────────────────── */
.frn-sidebar {
    position: sticky;
    top: 0;
    padding-top: 66px;
}

.frn-sidebar-card {
    background: var(--white-color);
    border: 1px solid #0A1D351A;
    border-radius: 25px;
    overflow: hidden;
}

/* ── Sidebar Video ───────────────────────────────────────────── */
.frn-sb-video-box {
    position: relative;
    margin: 31px 31px 0;
    border-radius: 25px;
    overflow: hidden;
    min-height: 235px;
}

.frn-sb-video-box:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--black-color);
    opacity: 0.3;
    z-index: 1;
}

.frn-sb-video-box.playing:before {
    display: none;
}

.frn-sb-video-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.frn-sb-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: transform 0.3s ease;
}

.frn-sb-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* ── Sidebar Filter Body ─────────────────────────────────────── */
.frn-sb-filter-body {
    padding: 28px 28px 32px;
}

.frn-sb-filter-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 20px;
}

.frn-sb-filter-list {
    display: flex;
    flex-direction: column;
}

.frn-sb-filter-item {
    display: block;
    border-bottom: 1px solid rgba(8, 8, 29, 0.06);
}

.frn-sb-filter-item-last {
    border-bottom: none;
}

.frn-sb-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.frn-sb-filter-header:hover {
    opacity: 0.8;
}

.frn-sb-filter-label {
    font-family: var(--default-font-family);
    font-size: 20px;
    font-weight: 600;
    color: var(--black-color);
}

.frn-sb-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

/* Active State Chevron Rotation */
.frn-sb-filter-item.active .frn-sb-chevron {
    transform: rotate(180deg);
}

/* Dropdown Content */
.frn-sb-dropdown-content {
    display: none;
    max-height: 280px;
    overflow-y: auto;
    padding: 0 4px 16px;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: rgba(8, 8, 29, 0.15) transparent;
}

/* Custom Scrollbar for dropdown list */
.frn-sb-dropdown-content::-webkit-scrollbar {
    width: 6px;
}

.frn-sb-dropdown-content::-webkit-scrollbar-track {
    background: transparent;
}

.frn-sb-dropdown-content::-webkit-scrollbar-thumb {
    background-color: rgba(8, 8, 29, 0.15);
    border-radius: 10px;
}

/* Sticky Search Container */
.frn-sb-search-container {
    position: sticky;
    top: 0;
    background-color: var(--white-color);
    z-index: 10;
    padding: 4px 0 12px;
    border-bottom: 1px solid rgba(8, 8, 29, 0.04);
}

.frn-sb-search-input {
    width: 100%;
    border: 1px solid rgba(8, 8, 29, 0.12);
    border-radius: 12px;
    padding: 12px 16px;
    font-family: var(--default-font-family);
    font-size: 14px;
    color: var(--black-color);
    outline: none;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 2px rgba(8, 8, 29, 0.02);
}

.frn-sb-search-input:focus {
    border-color: var(--bg-blue);
    box-shadow: 0 0 0 3px rgba(61, 138, 192, 0.15);
}

.frn-sb-search-input::placeholder {
    color: rgba(8, 8, 29, 0.4);
}

/* Checkbox List */
.frn-sb-checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 14px;
}

/* Custom Checkbox Item */
.frn-sb-checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    margin-bottom: 0;
}

.frn-sb-checkbox-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.frn-sb-checkbox-custom {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: var(--white-color);
    border: 1.5px solid rgba(8, 8, 29, 0.25);
    border-radius: 5px;
    transition: all 0.2s ease;
}

/* Checked State for Checkbox */
.frn-sb-checkbox-item input:checked~.frn-sb-checkbox-custom {
    background-color: var(--bg-blue);
    border-color: var(--bg-blue);
}

.frn-sb-checkbox-custom::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2.5px;
    width: 5px;
    height: 10px;
    border: solid var(--white-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.frn-sb-checkbox-item input:checked~.frn-sb-checkbox-custom::after {
    display: block;
}

.frn-sb-checkbox-label {
    font-family: var(--default-font-family);
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
    transition: color 0.2s ease;
}

.frn-sb-checkbox-item:hover .frn-sb-checkbox-label {
    color: var(--bg-blue);
}

/* ── Sidebar Buttons ─────────────────────────────────────────── */
.frn-sb-btn-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.frn-sb-btn-search {
    display: block;
    width: 100%;
    background-color: var(--bg-blue);
    color: var(--white-color);
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.frn-sb-btn-search:hover {
    background-color: #2d6f9e;
    transform: translateY(-2px);
}

.frn-sb-btn-reset {
    display: block;
    width: 100%;
    background-color: #E8E8E8;
    color: var(--black-color);
    border-radius: 10px;
    padding: 14px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.frn-sb-btn-reset:hover {
    background-color: #D4D4D4;
}

/* ── Responsive (frn- & cac-) ─────────────────────────────────── */
@media (max-width: 1199px) {
    .frn-card-body {
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
    }
}

@media (max-width: 991px) {

    .frn-section,
    .cac-section {
        padding: 50px 0;
    }
}

@media (max-width: 768px) {
    .frn-card-header {
        /* flex-direction: column; */
        align-items: center;
        gap: 16px;
        width: 100%;
    }



    .frn-rate-top {
        text-align: left;
    }

    .frn-details-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 576px) {

    .frn-section,
    .cac-section {
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
        margin-top: -40px;
    }

    .frn-card {
        padding: 20px;
    }

    .frn-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .frn-btn-apply {
        width: 100%;
        text-align: center;
    }

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

    .frn-sb-filter-body {
        padding: 20px;
    }

    .frn-sb-video-box {
        position: relative;
        margin: 20px 20px 0;
    }
}

/* ============================================
   FOR TUTOR PAGE STYLES (Matching frn-section)
   ============================================ */

.for-tutor-sec {
    background-color: var(--white-color);
    padding: 80px 0 100px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    margin-top: -100px;
    position: relative;
    z-index: 5;
}

.for-tutor-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 13px;
    border-radius: 10px;
    border: 1.5px solid #E2E8F0;
    background-color: #ffffff;
    font-family: var(--default-font-family);
    font-size: 12px;
    font-weight: 700;
    color: var(--theme-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.for-tutor-badge svg {
    color: var(--theme-color);
    flex-shrink: 0;
    width: 12px;
    height: 12px;
}

.for-tutor-main-title {
    font-family: var(--font-heading);
    font-size: var(--heading-3);
    font-weight: 600;
    color: var(--black-color);
    line-height: 1.2;
    letter-spacing: -1.2px;
    margin-bottom: 45px;
}

.for-tutor-block {
    margin-bottom: 50px;
}

.for-tutor-block-heading {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--black-color);
    line-height: 1.3;
    margin-bottom: 18px;
    letter-spacing: -0.4px;
}

.for-tutor-intro {
    font-family: var(--default-font-family);
    font-size: var(--body-font-medium);
    font-weight: 400;
    color: var(--para-color);
    line-height: 1.65;
    margin-bottom: 12px;
}

.for-tutor-subintro {
    font-family: var(--default-font-family);
    font-size: 20px;
    font-weight: 500;
    color: var(--para-color);
    line-height: 1.6;
    margin-bottom: 18px;
}

.for-tutor-bullets-row {
    margin-bottom: 20px;
}

.for-tutor-bullets {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.for-tutor-bullets li {
    position: relative;
    padding-left: 30px;
    font-family: var(--default-font-family);
    font-size: var(--body-font-medium);
    font-weight: 400;
    color: var(--black-color);
    line-height: 1.65;
    margin-bottom: 14px;
}

.for-tutor-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--theme-color);
}

.for-tutor-note {
    font-family: var(--default-font-family);
    font-size: 14px;
    font-weight: 400;
    color: var(--para-color);
    line-height: 1.6;
    margin-top: 15px;
    margin-bottom: 8px;
}

.for-tutor-warning {
    font-family: var(--default-font-family);
    font-size: 14px;
    font-weight: 400;
    color: var(--para-color);
    line-height: 1.6;
    margin-bottom: 0;
}

.for-tutor-warning strong {
    color: var(--black-color);
    text-decoration: underline;
    font-weight: 700;
}

.for-tutor-text-content p {
    font-family: var(--default-font-family);
    font-size: var(--text-md);
    font-weight: 400;
    color: var(--para-color);
    line-height: 1.7;
    margin-bottom: 14px;
}

.for-tutor-text-content p:last-child {
    margin-bottom: 0;
}

.for-tutor-text-content strong {
    color: var(--black-color);
    font-weight: 700;
}

.for-tutor-img-wrap img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .for-tutor-sec {
        border-top-left-radius: 60px;
        border-top-right-radius: 60px;
        margin-top: -60px;
        padding: 60px 0 80px;
    }

    .for-tutor-main-title {
        margin-bottom: 30px;
    }

    .for-tutor-img-wrap {
        margin-top: 25px;
    }

    .for-tutor-block .row>* {
        padding: 0;
    }

    .for-tutor-block .row {
        margin: 0;
    }
}

@media (max-width: 575px) {
    .for-tutor-sec {
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
        margin-top: -40px;
        padding: 50px 0 60px;
    }

    .for-tutor-block-heading {
        font-size: 20px;
    }
}

/* ── VIDEO POPUP MODAL ────────────────────────────────────────── */
.video-popup-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-popup-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.video-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.video-popup-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    background: #000000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-popup-overlay.is-open .video-popup-container {
    transform: scale(1) translateY(0);
}

.video-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.video-popup-close:hover {
    background: var(--theme-color, #BA944C);
    color: #ffffff;
    transform: rotate(90deg);
    border-color: var(--theme-color, #BA944C);
}

.video-popup-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #000000;
}

.video-popup-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    outline: none;
    border: none;
}

/* ── COMPREHENSIVE ACADEMIC COVERAGE (academic-levels.html) ─────────────────── */
.cac-section {
    background-color: var(--white-color);
    padding: 80px 0 100px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    margin-top: -100px;
    position: relative;
    z-index: 5;
}

.cac-sidebar {
    padding-top: 0 !important;
}

.cac-title {
    font-family: var(--font-heading);
    font-size: var(--heading-3);
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 30px;
}

/* Accordion Container */
.cac-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cac-acc-item {
    background: var(--white-color);
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.cac-acc-item.active {
    border-color: var(--bg-blue);
    box-shadow: 0 6px 20px rgba(61, 138, 192, 0.08);
}

.cac-acc-header {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    gap: 16px;
    transition: background-color 0.2s ease;
}

.cac-acc-header:hover {
    background-color: #F9FAFB;
}

.cac-acc-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4B5563;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.cac-acc-item.active .cac-acc-icon {
    color: var(--bg-blue-dark);
}

.cac-acc-item.active .cac-acc-icon svg path {
    fill: var(--bg-blue-dark);
}

.cac-acc-info {
    flex-grow: 1;
}

.cac-acc-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--bg-blue-dark);
    margin: 0 0 2px;
}

.cac-acc-item.active .cac-acc-title {
    color: var(--bg-blue-dark);
}

.cac-acc-subtitle {
    font-family: var(--default-font-family);
    font-size: 13.5px;
    color: var(--para-color);
}

.cac-acc-chevron {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.cac-acc-item.active .cac-acc-chevron {
    transform: rotate(180deg);
}

/* Accordion Body */
.cac-acc-body {
    display: none;
    padding: 0 24px 28px;
    border-top: 1px solid #F3F4F6;
}

/* Levels Wrap */
.cac-levels-wrap {
    padding-top: 20px;
    margin-bottom: 25px;
}

.cac-levels-label {
    display: block;
    font-family: var(--default-font-family);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #9CA3AF;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.cac-levels-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cac-level-pill {
    display: inline-block;
    padding: 6px 16px;
    background: #F3F4F6;
    color: #4B5563;
    border-radius: 30px;
    font-family: var(--default-font-family);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.cac-level-pill.active {
    background: var(--theme-color);
    color: var(--white-color);
}

/* Subjects Grid */
.cac-subjects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 767px) {
    .cac-subjects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.cac-subject-col-title {
    font-family: var(--default-font-family);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #6B7280;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.cac-subject-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cac-subject-list li {
    font-family: var(--default-font-family);
    font-size: 13.5px;
    color: #374151;
    line-height: 1.5;
}

.cac-subject-list li.highlight {
    background: #FEF3C7;
    color: #92400E;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
}

/* Sidebar Card */
.cac-sidebar-card {
    background: var(--white-color);
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    padding: 16px;
}

.cac-sidebar-img {
    width: 100%;
    height: 210px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
}

.cac-sidebar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cac-sidebar-body {
    padding: 0 6px 6px;
}

.cac-sidebar-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--bg-blue-dark);
    margin-bottom: 12px;
}

.cac-sidebar-desc {
    font-family: var(--default-font-family);
    font-size: 14px;
    color: var(--para-color);
    line-height: 1.6;
    margin-bottom: 24px;
}

.cac-sidebar-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cac-btn-primary {
    display: block;
    text-align: center;
    background: var(--bg-blue);
    color: var(--white-color);
    padding: 12px 24px;
    border-radius: 40px;
    font-family: var(--default-font-family);
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(61, 138, 192, 0.25);
}

.cac-btn-primary:hover {
    background: #3172A1;
    color: var(--white-color);
    transform: translateY(-1px);
}

.cac-btn-secondary {
    display: block;
    width: 100%;
    text-align: center;
    background: #E5E7EB;
    color: #374151;
    padding: 12px 24px;
    border-radius: 40px;
    font-family: var(--default-font-family);
    font-size: 14.5px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.cac-btn-secondary:hover {
    background: #D1D5DB;
    color: #111827;
}

/* ── LOGIN REGISTER SECTION ────────────────────────────────────────── */
.login-register-sec {
    padding: 70px 0 100px;
    background-color: #ffffff;
}

.auth-card-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Left Media Box */
.auth-media-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    min-height: 680px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.auth-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    transition: opacity 0.4s ease;
    flex-grow: 1;
}

.auth-media-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px 30px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

.auth-media-text {
    color: var(--white-color);
    font-family: var(--default-font-family);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Right Form Wrapper */
.auth-form-wrapper {
    padding: 10px 20px 10px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* Tab Switcher Bar */
.auth-tab-nav {
    display: flex;
    align-items: center;
    background-color: #f1f5f9;
    border-radius: 10px;
    padding: 4px;
    width: max-content;
    margin: 0 auto 20px auto;
}

.auth-tab-btn {
    border: none;
    background: transparent;
    font-family: var(--default-font-family);
    font-size: 18px;
    font-weight: 600;
    color: var(--para-color);
    padding: 9px 28px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.auth-tab-btn.active {
    background-color: var(--bg-blue);
    color: var(--white-color);
    box-shadow: 0 4px 12px rgba(61, 138, 192, 0.3);
}

/* Form Headings */
.auth-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--black-color);
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.auth-subtitle {
    font-family: var(--default-font-family);
    font-size: 14px;
    color: var(--para-color);
    text-align: center;
    line-height: 1.6;
}

/* Inputs & Select */
.auth-form .form-group {
    margin-bottom: 22px !important;
}

.auth-input {
    width: 100%;
    height: 54px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 24px !important;
    font-family: var(--default-font-family);
    font-size: 16px;
    color: var(--black-color);
    background-color: #ffffff;
    transition: all 0.3s ease;
    outline: none;
}

.auth-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.auth-input:focus {
    border-color: var(--bg-blue);
    box-shadow: 0 0 0 4px rgba(61, 138, 192, 0.15);
}

.admin-login-img a {
    display: inline-flex;
}

.admin-login-img {
    display: flex;
    justify-content: center;
}

/* Password Toggle Eye Icon */
.password-toggle-btn {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 6px;
    color: #94a3b8;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    z-index: 5;
    transition: color 0.2s ease;
}

.password-toggle-btn:hover {
    color: #334155;
}

.auth-form .form-group.position-relative .auth-input {
    padding-right: 48px;
}

/* User Role Selector Pill Cards (Parent vs Tutor) */
.user-role-group {
    display: flex;
    gap: 12px;
    width: 100%;
}

.user-role-card {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 10px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    background-color: #ffffff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    transition: all 0.25s ease;
    user-select: none;
    text-align: center;
}

.user-role-card input[type="radio"] {
    display: none;
}

.user-role-card i {
    font-size: 20px;
    margin-right: 8px;
    color: #94a3b8;
    transition: color 0.25s ease;
}

.user-role-card:hover {
    border-color: #cbd5e1;
    color: #1e293b;
}

.user-role-card.active {
    border-color: var(--bg-blue);
    background-color: rgba(61, 138, 192, 0.08);
    color: var(--bg-blue);
    font-weight: 600;
}

.user-role-card.active i {
    color: var(--bg-blue);
}

@media (max-width: 480px) {
    .user-role-card {
        padding: 8px 10px;
        font-size: 12.5px;
        height: 44px;
    }

    .user-role-card i {
        font-size: 13px;
        margin-right: 5px;
    }
}

/* intl-tel-input integration & fixes */
.auth-form .iti {
    width: 100%;
    display: block;
    position: relative;
}

/* Fix flag container and selected country height from stretching when validation error text is present */
.auth-form .iti__country-container,
.iti__country-container {
    height: 54px !important;
    max-height: 54px !important;
    top: 0 !important;
    bottom: auto !important;
}

/* Fix flag and dial code overlapping input placeholder text */
.auth-form .iti input.auth-input,
.auth-form input#signupPhone,
.iti input[type=tel] {
    padding-left: 95px !important;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

/* Selected country inside the input */
.auth-form .iti__selected-country {
    padding-left: 16px !important;
    padding-right: 6px !important;
    border-top-left-radius: 50px !important;
    border-bottom-left-radius: 50px !important;
    background: transparent !important;
    height: 54px !important;
    max-height: 54px !important;
    display: flex;
    align-items: center;
}

.auth-form .iti__selected-country:hover {
    background-color: rgba(0, 0, 0, 0.04) !important;
}

.auth-form .iti__selected-dial-code {
    font-size: 14px;
    font-weight: 500;
    color: #334155 !important;
    margin-left: 4px;
}

/* Form Validation & Error Message Styles */
.auth-form .invalid-feedback,
.auth-form .error-message,
.auth-form .field-error,
.auth-form .help-block,
.auth-form .text-danger,
.auth-form label.error,
.auth-form span.error,
.auth-form div.error,
.auth-form p.error,
.iti .invalid-feedback,
.iti .error-message,
.iti .field-error,
.iti .help-block,
.iti .text-danger,
.iti label.error,
.iti span.error,
.iti div.error,
.iti p.error {
    display: block !important;
    width: 100% !important;
    margin-top: 6px !important;
    margin-bottom: 0 !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
    color: #ef4444 !important;
    font-weight: 500 !important;
    text-align: left !important;
    clear: both !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Invalid / Error Input State */
.auth-input.is-invalid,
.auth-input.error,
.form-group.has-error .auth-input,
.iti.is-invalid .auth-input,
.iti.has-error .auth-input {
    border-color: #ef4444 !important;
    background-color: #fef2f2 !important;
}

.auth-input.is-invalid:focus,
.auth-input.error:focus,
.form-group.has-error .auth-input:focus,
.iti.is-invalid .auth-input:focus {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15) !important;
}

/* Dropdown Container */
.iti__dropdown-content,
.auth-form .iti__dropdown-content {
    border-radius: 12px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid #e2e8f0 !important;
    z-index: 1050 !important;
    background-color: #ffffff !important;
    color: #1e293b !important;
    overflow: hidden !important;
    margin-top: 6px !important;
}

/* Search input inside dropdown */
.iti__search-input,
.auth-form .iti__search-input {
    color: #0f172a !important;
    background-color: #f8fafc !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
    font-size: 13px !important;
    outline: none !important;
    box-shadow: none !important;
}

.iti__search-input:focus,
.auth-form .iti__search-input:focus {
    border-color: #3d8ac0 !important;
    background-color: #ffffff !important;
}

/* Country List Items */
.iti__country-list {
    background-color: #ffffff !important;
    color: #1e293b !important;
    padding: 4px 0 !important;
    max-height: 220px !important;
}

.iti__country,
.auth-form .iti__country {
    padding: 8px 14px !important;
    color: #1e293b !important;
    display: flex;
    align-items: center;
    font-size: 14px !important;
}

.iti__country-name,
.auth-form .iti__country-name {
    color: #1e293b !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    margin-right: 6px !important;
}

.iti__dial-code,
.auth-form .iti__dial-code {
    color: #64748b !important;
    font-size: 13px !important;
    font-weight: 500 !important;
}

/* Highlight / Hover State */
.iti__country--highlight,
.iti__country:hover,
.auth-form .iti__country:hover {
    background-color: #f1f5f9 !important;
    color: #0f172a !important;
}

/* Highlight / Hover State */
.iti__country--highlight,
.iti__country:hover,
.auth-form .iti__country:hover {
    background-color: #f1f5f9 !important;
    color: #0f172a !important;
}

.iti__country--highlight .iti__country-name,
.iti__country:hover .iti__country-name {
    color: #0f172a !important;
}

.iti__country--selected {
    background-color: #e2e8f0 !important;
    font-weight: 600 !important;
}

.iti__country--selected .iti__country-name {
    color: #0f172a !important;
    font-weight: 600 !important;
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.auth-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-color: #ffffff;
}

.select-arrow {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #94a3b8;
    font-size: 12px;
}

/* Options & Checkboxes */
.auth-options-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 22px !important;
}

.custom-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    margin: 0;
}

.custom-checkbox {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    flex-shrink: 0;
    accent-color: var(--bg-blue);
    border-radius: 4px;
    cursor: pointer;
    margin: 0;
}

.custom-checkbox-label.align-items-start .custom-checkbox {
    margin-top: 3px !important;
}

.checkbox-text {
    font-family: var(--default-font-family);
    font-size: 15px;
    color: #64748b;
    line-height: 1.5;
}

.checkbox-text a {
    color: var(--black-color);
    font-weight: 600;
    text-decoration: underline;
}

.forgot-link {
    font-family: var(--default-font-family);
    font-size: 15px;
    font-weight: 600;
    color: var(--bg-blue);
    text-decoration: none;
    transition: color 0.25s ease;
}

.forgot-link:hover {
    color: var(--bg-blue-dark);
    text-decoration: underline;
}

/* Buttons */
.auth-submit-btn {
    width: 100%;
    height: 52px;
    background-color: var(--bg-blue);
    color: var(--white-color);
    border: none;
    border-radius: 10px;
    font-family: var(--default-font-family);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(61, 138, 192, 0.3);
}

.auth-submit-btn:hover {
    background-color: #337bb0;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(61, 138, 192, 0.4);
}

.google-submit-btn {
    width: 100%;
    height: 52px;
    background-color: #ffffff;
    color: var(--black-color);
    border: 1.5px solid #000000;
    border-radius: 10px;
    font-family: var(--default-font-family);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.google-submit-btn:hover {
    background-color: #f8fafc;
    border-color: #000000;
    transform: translateY(-1px);
}

/* Help text & Back links */
.auth-help-text {
    font-family: var(--default-font-family);
    font-size: 18px;
    color: #64748b;
    text-align: center;
}

.auth-help-text a {
    color: var(--para-color);
    font-weight: 500;
    text-decoration: underline;
}

.back-to-signin-link {
    font-family: var(--default-font-family);
    font-size: 14px;
    font-weight: 600;
    color: var(--bg-blue);
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
}

.back-to-signin-link:hover {
    color: var(--bg-blue-dark);
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .auth-media-box {
        display: none !important;
    }

    .auth-form-wrapper {
        padding: 0;
    }

    .login-register-sec {
        padding: 40px 0 60px;
    }
}

/* Privacy Policy & Terms Page Styles */
.privacy-title {
    font-size: 24px !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    margin: 30px 0px 10px !important;
}
.privacy-card p{
    font-size: 18px !important;
}

.privacy-section .badge {
    background-color: var(--bg-blue) !important;
    width: 24px;
    height: 24px;
    font-size: 12px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    vertical-align: 2px;
}

.privacy-terms-box {
    background-color: #f1f5f9 !important;
    border-left: 4px solid #3d8ac0 !important;
    color: #1e293b !important;
}

.privacy-terms-box,
.privacy-terms-box p,
.privacy-terms-box li,
.privacy-terms-box span,
.privacy-terms-box strong {
    color: #1e293b !important;
}

.privacy-terms-box ul {
    list-style-type: disc !important;
    padding-left: 20px !important;
    margin-bottom: 0;
}

.privacy-terms-box ul li {
    display: list-item !important;
    list-style-type: disc !important;
}

.privacy-list {
    list-style-type: disc !important;
    padding-left: 24px !important;
    margin-bottom: 0;
}

.privacy-list li {
    list-style-type: disc !important;
    display: list-item !important;
    position: relative;
    margin-bottom: 8px;
    line-height: 1.65;
    color: #475569;
    font-size: 18px;
}

.privacy-list li::marker,
.privacy-terms-box ul li::marker {
    color: var(--bg-blue) !important;
    font-size: 1.1em;
}

.leading-relaxed {
    line-height: 1.7;
    color: #475569;
    font-size: 14.5px;
}

/* ==========================================================================
   404 ERROR PAGE STYLES
   ========================================================================== */
.error-404-sec {
    position: relative;
    padding: 70px 0 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 50%, #f1f5f9 100%);
    overflow: hidden;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.error-404-bg-glow-1 {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(59, 136, 196, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.error-404-bg-glow-2 {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(238, 108, 77, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.error-404-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
    border-radius: 28px;
    padding: 60px 40px;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.error-404-number-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.error-404-number {
    font-family: var(--font-heading);
    font-size: 120px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -3px;
    background: linear-gradient(135deg, #3B88C4 0%, #1D4ED8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 20px rgba(59, 136, 196, 0.15);
    margin: 0;
}



.error-404-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #0F172A;
    margin-top: 15px;
    margin-bottom: 14px;
}

.error-404-desc {
    font-size: 16px;
    line-height: 1.65;
    color: #64748B;
    max-width: 580px;
    margin: 0 auto 32px auto;
}

.error-404-search-form {
    max-width: 520px;
    margin: 0 auto 36px auto;
}

.error-404-search-inner {
    display: flex;
    align-items: center;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 6px 6px 6px 20px;
    transition: all 0.25s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.error-404-search-inner:focus-within {
    border-color: #3B88C4;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(59, 136, 196, 0.12);
}

.error-404-search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 20px;
    color: #1E293B;
    outline: none;
    padding: 8px 0;
}

.error-404-search-input::placeholder {
    color: #94A3B8;
}

.error-404-search-btn {
    background: #3B88C4;
    color: #FFFFFF;
    border: none;
    border-radius: 40px;
    padding: 10px 24px;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.error-404-search-btn:hover {
    background: #2d74ab;
    box-shadow: 0 4px 12px rgba(59, 136, 196, 0.3);
}

.error-404-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 0;
}

.btn-error-primary {
    background: #3B88C4;
    color: #FFFFFF !important;
    border-radius: 10px;
    padding: 12px 28px;
    font-size: 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(59, 136, 196, 0.25);
    text-decoration: none;
}

.btn-error-primary:hover {
    background: #2d74ab;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(59, 136, 196, 0.35);
}

.btn-error-outline {
    background: #FFFFFF;
    color: #1E293B !important;
    border: 1px solid #CBD5E1;
    border-radius: 10px;
    padding: 12px 28px;
    font-size: 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-error-outline:hover {
    border-color: #3B88C4;
    color: #3B88C4 !important;
    background: #F8FAFC;
    transform: translateY(-2px);
}

.error-404-suggestions {
    border-top: 1px solid #F1F5F9;
    padding-top: 26px;
}

.error-404-suggestions-title {
    font-size: 13.5px;
    font-weight: 600;
    color: #94A3B8;
    text-uppercase: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.error-404-pills {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.error-pill {
    background: #F1F5F9;
    color: #475569;
    font-size: 13.5px;
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 30px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.error-pill:hover {
    background: #3B88C4;
    color: #FFFFFF;
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .error-404-sec {
        padding: 50px 0 70px;
    }

    .error-404-card {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .error-404-number {
        font-size: 90px;
    }

    .error-404-icon-badge {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .error-404-title {
        font-size: 24px;
    }

    .error-404-desc {
        font-size: 14.5px;
    }

    .error-404-search-inner {
        flex-direction: column;
        border-radius: 16px;
        padding: 10px;
        gap: 10px;
    }

    .error-404-search-input {
        width: 100%;
        padding-left: 10px;
    }

    .error-404-search-btn {
        width: 100%;
        justify-content: center;
    }

    .error-404-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-error-primary,
    .btn-error-outline {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   BECOME A TUTOR / FOR TUTORS PAGE STYLES
   ========================================================================== */
.tutor-hero-sec {
    padding: 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.tutor-hero-sec .container {
    margin-left: calc((100vw - 1440px) / 2);
    max-width: 100%;
}

.tutor-hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.tutor-hero-desc {
    font-size: 20px;
    line-height: 1.7;
    color: #64748B;
    margin-bottom: 32px;
    max-width: 520px;
}

.tutor-hero-btns {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-blue-pill {
    background: #3B88C4;
    color: #FFFFFF !important;
    border-radius: 10px;
    padding: 13px 34px;
    font-size: 20px;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(59, 136, 196, 0.25);
    text-decoration: none;
}

.btn-blue-pill:hover {
    background: #2d74ab;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(59, 136, 196, 0.35);
}

.btn-blue-pill-secondary {
    background: #4295D6;
    color: #FFFFFF !important;
    border-radius: 10px;
    padding: 13px 34px;
    font-size: 20px;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(66, 149, 214, 0.25);
    text-decoration: none;
}

.btn-blue-pill-secondary:hover {
    background: #3583c2;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(66, 149, 214, 0.35);
}

.btn-outline-blue-pill {
    background: #EFF6FF;
    color: #2563EB !important;
    border: 1px solid #BFDBFE;
    border-radius: 10px;
    padding: 13px 32px;
    font-size: 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-outline-blue-pill:hover {
    background: #DBEAFE;
    color: #1D4ED8 !important;
    transform: translateY(-2px);
}

.tutor-hero-img-wrap {
    position: relative;
    width: 100%;
    height: 520px;
}

.tutor-hero-main-img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center top;
}

.tutor-floating-unified-card {
    position: absolute;
    right: 4%;
    top: 70%;
    transform: translateY(-70%);
    background: rgb(255 255 255 / 42%);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    max-width: 216px;
}

.tutor-floating-text {
    text-align: left;
}

.tutor-floating-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tutor-floating-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #EFF6FF;
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.tutor-floating-text h5 {
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    color: #07213a;
    margin: 0 0 2px 0;
    line-height: 1.2;
}

.tutor-floating-text p {
    font-size: 12.5px;
    color: #030303;
    margin: 0;
    line-height: 1.35;
}

/* Why Choose Section */
.why-choose-tutors-sec {
    padding: 85px 0;
    background: #FFFFFF;
}

.why-tutor-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 50px;
}

.why-tutor-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 30px 22px;
    text-align: left;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-tutor-card:hover {
    transform: translateY(-5px);
    border-color: #3B88C4;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.why-tutor-icon {
    font-size: 54px;
    color: #bb8e26;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.why-tutor-card:hover .why-tutor-icon {
    color: #3B88C4;
}

.why-tutor-card h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
    line-height: 1.35;
}



.heading-accent-line {
    width: 60px;
    height: 4px;
    background: #BB8E26;
    border-radius: 2px;
    margin: 12px auto 0 auto;
}

/* Simple Tutor Matching Process */
.matching-process-sec {
    padding: 85px 0;
    background: #3B88C4;
    color: #FFFFFF;
}

.matching-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 45px;
}

.matching-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.matching-process-sec .section-heading{
    margin-bottom: 4rem !important;
}
.matching-step-item {

    text-align: left;
    background: #53a8e4;
    padding: 30px;
    border-radius: 30px;
}

.matching-step-badge {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #FFFFFF;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.matching-step-badge img {
    max-width: 30px;
    max-height: 30px;
    object-fit: contain;
}

.matching-step-num {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 26px;
    height: 26px;
    background: #BB8E26;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.matching-step-item h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.matching-step-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.88);
}

.who-can-apply-card {
    background: #FFFFFF;
    border-radius: 22px;
    padding: 36px 30px;
    color: #0F172A;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    height: 100%;
}

.who-can-apply-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: #BB8E26;
    margin-bottom: 22px;
    text-align: center;
}

.apply-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.apply-check-list li {
    font-size: 18px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.apply-check-list li i {
    color: #BB8E26;
    font-size: 20px;
}

.btn-gold-pill {
    background: #BB8E26;
    color: #FFFFFF !important;
    border-radius: 10px;
    padding: 13px 26px;
    font-size: 14.5px;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    width: 100%;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(196, 151, 70, 0.3);
}

.btn-gold-pill:hover {
    background: #b08539;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(196, 151, 70, 0.4);
}

/* Ready to Inspire Section */
.ready-inspire-sec {
    padding: 70px 0 0px;
    background: #FFFFFF;
}

.ready-inspire-card {
    background: #F0F7FF;
    border: 1px solid #DBEAFE;
    border-radius: 24px;
    padding: 40px 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.ready-inspire-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.ready-inspire-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #FFFFFF;
    color: #3B88C4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 6px 16px rgba(59, 136, 196, 0.15);
    flex-shrink: 0;
}

.ready-inspire-left h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 6px;
}

.ready-inspire-left p {
    font-size: 20px;
    color: #64748B;
    margin: 0;
}

.ready-inspire-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.btn-whatsapp-outline {
    background: #FFFFFF;
    color: #16A34A !important;
    border: 1px solid #BBF7D0;
    text-wrap: nowrap;
    border-radius: 10px;
    padding: 12px 35px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    font-family: var(--default-font-family);
    font-weight: 700;
    font-size: var(--body-font-sm);
    line-height: 28px;
    letter-spacing: 0.5px;
    text-align: center;
    text-transform: capitalize;
}

.btn-whatsapp-outline:hover {
    background: #F0FDF4;
    border-color: #16A34A;
    transform: translateY(-2px);
}

.banner-contnt .faq-breadcrumb li,
.banner-contnt .faq-breadcrumb li a {
    color: #000;
}

.banner-contnt .faq-breadcrumb {
    justify-content: flex-start;
    color: #000;
}

/* ==========================================================================
   MATHEMATICS TUITION SINGAPORE V2 (PROFESSIONAL REDESIGN)
   ========================================================================== */

:root {
    --math-primary: #2563eb;
    --math-primary-dark: #1d4ed8;
    --math-secondary: #0f172a;
    --math-accent: #f59e0b;
    --math-accent-light: #fef3c7;
    --math-gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1e1b4b 100%);
    --math-gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    --math-gradient-blue: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    --math-gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --math-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --math-shadow-md: 0 10px 25px -5px rgba(37, 99, 235, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --math-shadow-lg: 0 20px 35px -10px rgba(15, 23, 42, 0.12), 0 10px 15px -5px rgba(0, 0, 0, 0.04);
    --math-glass-bg: rgba(255, 255, 255, 0.85);
    --math-glass-border: rgba(255, 255, 255, 0.4);
    --math-radius: 16px;
    --math-radius-lg: 24px;
}

/* ── Hero Section V2 ── */
.math-v2-hero {
    position: relative;
    background: var(--math-gradient-hero);
    padding: 160px 0 110px;
    overflow: hidden;
    color: #ffffff;
}

.math-v2-hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.22) 0%, rgba(37, 99, 235, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.math-v2-hero-bg-glow-2 {
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.math-v2-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.6;
    z-index: 1;
}

.math-v2-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.4);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #60a5fa;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.math-v2-badge-dot {
    width: 8px;
    height: 8px;
    background-color: #3b82f6;
    border-radius: 50%;
    box-shadow: 0 0 10px #3b82f6;
    animation: mathPulse 2s infinite;
}

@keyframes mathPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }
}

.math-v2-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 4.5vw, 54px);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.math-v2-hero-title .gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 50%, #fef08a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.math-v2-hero-subtext {
    font-size: 16.5px;
    line-height: 1.65;
    color: #cbd5e1;
    margin-bottom: 30px;
    max-width: 720px;
}

.math-v2-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.btn-math-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff !important;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.btn-math-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.7);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.btn-math-secondary {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-math-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.math-v2-guarantee-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #94a3b8;
    margin-top: 6px;
    width: 100%;
}

.math-v2-guarantee-pill i {
    color: #f59e0b;
}

/* ── Hero Stats Grid ── */
.math-v2-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    position: relative;
    z-index: 2;
}

.math-v2-stat-card {
    background: rgba(30, 41, 59, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 24px 20px;
    border-radius: var(--math-radius);
    transition: all 0.3s ease;
}

.math-v2-stat-card:hover {
    background: rgba(30, 41, 59, 0.85);
    border-color: rgba(96, 165, 250, 0.4);
    transform: translateY(-4px);
}

.math-v2-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    font-size: 20px;
    margin-bottom: 14px;
}

.math-v2-stat-number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 6px;
}

.math-v2-stat-label {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.4;
    margin: 0;
}

/* ── Section Title Component ── */
.math-v2-sec-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.math-v2-sub-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: var(--math-primary);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}

.math-v2-sec-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 16px;
}

.math-v2-sec-desc {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ── Why Consider Section V2 ── */
.math-v2-why-sec {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
}

.math-v2-why-card {
    background: #ffffff;
    border-radius: var(--math-radius-lg);
    padding: 40px;
    box-shadow: var(--math-shadow-md);
    border: 1px solid #e2e8f0;
    height: 100%;
}

.math-v2-why-heading {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.math-v2-why-lead {
    font-size: 16.5px;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 28px;
}

.math-v2-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.math-v2-check-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    background: #f1f5f9;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.25s ease;
}

.math-v2-check-item:hover {
    background: #ffffff;
    border-color: #3b82f6;
    box-shadow: var(--math-shadow-sm);
    transform: translateX(4px);
}

.math-v2-check-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.math-v2-check-text {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    line-height: 1.45;
}

/* ── Visual Showcase Card ── */
.math-v2-visual-box {
    position: relative;
    border-radius: var(--math-radius-lg);
    overflow: hidden;
    box-shadow: var(--math-shadow-lg);
    background: #0f172a;
    min-height: 480px;
}

.math-v2-visual-img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    display: block;
}

.math-v2-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
    color: #ffffff;
}

.math-v2-floating-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 12px 20px;
    border-radius: var(--math-radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
}

.math-v2-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fef3c7;
    color: #d97706;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.math-v2-badge-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.math-v2-badge-sub {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

/* ── Marquee Section V2 ── */
.math-v2-marquee-sec {
    background: #0f172a;
    padding: 24px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.math-v2-marquee-track {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    animation: mathMarquee 25s linear infinite;
}

@keyframes mathMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.math-v2-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.math-v2-marquee-symbol {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.25);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #60a5fa;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
}

/* ── Academic Levels Section V2 ── */
.math-v2-levels-sec {
    padding: 100px 0;
    background: #ffffff;
}

.math-v2-level-card {
    background: #ffffff;
    border-radius: var(--math-radius);
    padding: 32px 28px;
    border: 1px solid #e2e8f0;
    box-shadow: var(--math-shadow-sm);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.math-v2-level-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.math-v2-level-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--math-shadow-lg);
    border-color: #bfdbfe;
}

.math-v2-level-card:hover::before {
    opacity: 1;
}

.math-v2-level-tag {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.tag-primary {
    background: #dbeafe;
    color: #1e40af;
}

.tag-psle {
    background: #fef3c7;
    color: #b45309;
}

.tag-sec {
    background: #e0e7ff;
    color: #3730a3;
}

.tag-emath {
    background: #dcfce7;
    color: #15803d;
}

.tag-amath {
    background: #fae8ff;
    color: #86198f;
}

.tag-jc {
    background: #ffe4e6;
    color: #be123c;
}

.math-v2-level-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.math-v2-level-desc {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.math-v2-level-topics {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
}

.math-v2-level-topics li {
    font-size: 13.5px;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 8px;
}

.math-v2-level-topics li i {
    color: #2563eb;
    font-size: 11px;
}

.math-v2-level-link {
    font-size: 14px;
    font-weight: 700;
    color: #2563eb;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.math-v2-level-link:hover {
    color: #1d4ed8;
    gap: 12px;
}

/* ── Why Choose Champtutors V2 ── */
.math-v2-why-choose-sec {
    padding: 100px 0;
    background: var(--math-gradient-hero);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.math-v2-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.math-v2-choose-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--math-radius);
    padding: 32px 26px;
    transition: all 0.3s ease;
}

.math-v2-choose-card:hover {
    background: rgba(30, 41, 59, 0.95);
    border-color: rgba(96, 165, 250, 0.4);
    transform: translateY(-6px);
}

.math-v2-choose-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #60a5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.math-v2-choose-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.math-v2-choose-desc {
    font-size: 14.5px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* ── How Matching Works (Steps) ── */
.math-v2-steps-sec {
    padding: 100px 0;
    background: #f8fafc;
}

.math-v2-step-card {
    background: #ffffff;
    border-radius: var(--math-radius);
    padding: 36px 28px;
    border: 1px solid #e2e8f0;
    box-shadow: var(--math-shadow-sm);
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
}

.math-v2-step-card:hover {
    box-shadow: var(--math-shadow-md);
    transform: translateY(-4px);
    border-color: #bfdbfe;
}

.math-v2-step-num {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: #e2e8f0;
    line-height: 1;
}

.math-v2-step-card:hover .math-v2-step-num {
    color: #bfdbfe;
}

.math-v2-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #dbeafe;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.math-v2-step-title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.math-v2-step-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

/* ── FAQ Section V2 ── */
.math-v2-faq-sec {
    padding: 100px 0;
    background: #ffffff;
}

.math-v2-faq-container {
    max-width: 840px;
    margin: 0 auto;
}

.math-v2-faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.math-v2-faq-item[open] {
    border-color: #3b82f6;
    box-shadow: var(--math-shadow-md);
}

.math-v2-faq-summary {
    padding: 20px 24px;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    user-select: none;
}

.math-v2-faq-summary::-webkit-details-marker {
    display: none;
}

.math-v2-faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
}

.math-v2-faq-item[open] .math-v2-faq-icon {
    transform: rotate(180deg);
    background: #2563eb;
    color: #ffffff;
}

.math-v2-faq-body {
    padding: 0 24px 22px;
    font-size: 20px;
    color: #475569;
    line-height: 1.65;
}

.math-v2-faq-body p:last-child {
    margin-bottom: 0;
}

/* ── CTA Banner Section ── */
.math-v2-cta-banner {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: var(--math-radius-lg);
    padding: 60px 40px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--math-shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

.math-v2-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, transparent 60%);
    pointer-events: none;
}

.math-v2-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.math-v2-cta-desc {
    font-size: 16px;
    color: #cbd5e1;
    max-width: 620px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
}

.math-v2-cta-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .math-v2-hero {
        padding: 130px 0 80px;
    }

    .math-v2-hero-stats {
        margin-top: 40px;
    }

    .math-v2-visual-box {
        margin-top: 30px;
    }

    .math-v2-why-card {
        padding: 28px 20px;
    }
}

@media (max-width: 576px) {
    .math-v2-hero-stats {
        grid-template-columns: 1fr;
    }

    .math-v2-hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-math-primary,
    .btn-math-secondary {
        justify-content: center;
    }
}

/* ==========================================================================
   PRIMARY MATHEMATICS TOPICS COVERED SECTION REDESIGN (NEXT-LEVEL ENHANCEMENT)
   ========================================================================== */

.primary-topics-sec {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.primary-topics-sec::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.topic-item-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 22px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px -4px rgba(15, 23, 42, 0.04);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.topic-item-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--topic-accent, #2563eb);
    border-radius: 4px 0 0 4px;
    opacity: 0.8;
    transition: width 0.3s ease;
}

.topic-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 30px -8px rgba(15, 23, 42, 0.1);
    border-color: #cbd5e1;
}

.topic-item-card:hover::before {
    width: 6px;
}

.topic-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    background: var(--topic-bg, #eff6ff);
    color: var(--topic-accent, #2563eb);
    transition: transform 0.3s ease;
}

.topic-item-card:hover .topic-item-icon {
    transform: scale(1.08) rotate(3deg);
}

.topic-item-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.35;
}

.topic-item-num {
    margin-left: auto;
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    padding: 4px 9px;
    border-radius: 20px;
    flex-shrink: 0;
}

/* Footer adaptation banner */
.topics-adaptation-banner {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 20px;
    padding: 28px 36px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 22px;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.25);
    position: relative;
    overflow: hidden;
}

.topics-adaptation-banner::after {
    content: '';
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
}

.banner-adapt-icon {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #60a5fa;
    flex-shrink: 0;
}

.banner-adapt-text {
    font-size: 17px;
    font-weight: 500;
    color: #e2e8f0;
    margin: 0;
    line-height: 1.5;
}

.banner-adapt-badge {
    margin-left: auto;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(96, 165, 250, 0.4);
    color: #93c5fd;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 10px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .topics-adaptation-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .banner-adapt-badge {
        margin-left: 0;
        margin-top: 10px;
    }
}


.math-topic-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 34px 28px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 30px -10px rgba(15, 23, 42, 0.05);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.math-topic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.math-topic-card.card-blue::before {
    background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.math-topic-card.card-amber::before {
    background: linear-gradient(90deg, #d97706, #f59e0b);
}

.math-topic-card.card-emerald::before {
    background: linear-gradient(90deg, #059669, #10b981);
}

.math-topic-card.card-purple::before {
    background: linear-gradient(90deg, #9333ea, #a855f7);
}

.math-topic-card.card-indigo::before {
    background: linear-gradient(90deg, #4f46e5, #6366f1);
}

.math-topic-card.card-rose::before {
    background: linear-gradient(90deg, #e11d48, #f43f5e);
}

.math-topic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 45px -12px rgba(15, 23, 42, 0.12);
    border-color: #bfdbfe;
}

.math-topic-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.math-topic-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.icon-blue {
    background: #dbeafe;
    color: #2563eb;
}

.icon-amber {
    background: #fef3c7;
    color: #d97706;
}

.icon-emerald {
    background: #d1fae5;
    color: #059669;
}

.icon-purple {
    background: #f3e8ff;
    color: #9333ea;
}

.icon-indigo {
    background: #e0e7ff;
    color: #4f46e5;
}

.icon-rose {
    background: #ffe4e6;
    color: #e11d48;
}

.topic-tag {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 5px 12px;
    border-radius: 10px;
}

.tag-blue {
    background: #dbeafe;
    color: #1e40af;
}

.tag-amber {
    background: #fef3c7;
    color: #b45309;
}

.tag-emerald {
    background: #d1fae5;
    color: #047857;
}

.tag-purple {
    background: #f3e8ff;
    color: #7e22ce;
}

.tag-indigo {
    background: #e0e7ff;
    color: #3730a3;
}

.tag-rose {
    background: #ffe4e6;
    color: #be123c;
}

.math-topic-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 12px;
}

.math-topic-desc {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 18px;
}

.topic-focus-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #94a3b8;
    margin-bottom: 10px;
}

.topic-chips-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    margin-top: auto;
}

.topic-chip-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 13px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 12.5px;
    font-weight: 600;
    color: #334155;
    transition: all 0.25s ease;
}

.topic-chip-pill:hover {
    background: #dbeafe;
    border-color: #93c5fd;
    color: #1e40af;
    transform: translateY(-2px);
}

.topic-chip-pill i {
    font-size: 10px;
    color: #2563eb;
}

.math-topic-footer {
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    color: #2563eb;
}

.math-topic-footer i {
    transition: transform 0.25s ease;
}

.math-topic-card:hover .math-topic-footer i {
    transform: translateX(4px);
}


/* ==========================================================================
   DUAL FEATURE SHOWCASE SECTION (Personalised Learning & PSLE Prep)
   ========================================================================== */

.dual-feature-sec {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.feature-showcase-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 44px 38px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.feature-showcase-card.card-blue-accent {
    border-top: 5px solid #2563eb;
}

.feature-showcase-card.card-amber-accent {
    border-top: 5px solid #f59e0b;
    background: linear-gradient(180deg, #ffffff 0%, #fefce8 100%);
}

.feature-showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.12);
}

.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 10px;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
    align-self: flex-start;
}

.badge-blue {
    background: #dbeafe;
    color: #1e40af;
}

.badge-amber {
    background: #fef3c7;
    color: #b45309;
}

.showcase-title {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 16px;
}

.showcase-desc {
    font-size: 15.5px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 20px;
}

.showcase-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.showcase-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.25s ease;
}

.showcase-list-item:hover {
    background: #ffffff;
    border-color: #3b82f6;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.showcase-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.icon-check-blue {
    background: #2563eb;
    color: #ffffff;
}

.icon-check-amber {
    background: #f59e0b;
    color: #ffffff;
}

.showcase-footer-note {
    margin-top: auto;
    padding: 16px 20px;
    background: #f1f5f9;
    border-radius: 14px;
    border-left: 4px solid #2563eb;
    font-size: 14.5px;
    color: #334155;
    line-height: 1.6;
    font-weight: 500;
}

.showcase-footer-note.note-amber {
    background: #fffbebf5;
    border-left-color: #f59e0b;
    color: #78350f;
}

/* ==========================================================================
   HOME TUITION VS TUITION CENTRES SECTION (EXACT REFERENCE MATCH)
   ========================================================================== */

.vs-comparison-sec {
    background: #ffffff;
    padding: 100px 0px;
    position: relative;
    overflow: hidden;
}

.vs-clip-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, #f0f7ff 0%, #e6f0fa 100%);
    clip-path: ellipse(125% 90% at 50% 100%);
    z-index: 1;
    pointer-events: none;
}

.vs-comparison-sec .container {
    position: relative;
    z-index: 2;
}

.vs-bulb-graphic {
    position: absolute;
    top: 10px;
    right: 6%;
    width: 65px;
    height: 65px;
    opacity: 0.75;
    z-index: 2;
    pointer-events: none;
}

/* Staggered Floating Heights (Matching Reference Image) */
@media (min-width: 992px) {
    .vs-card-col:nth-child(1) {
        margin-top: 40px;
    }

    .vs-card-col:nth-child(2) {
        margin-top: 0px;
    }

    .vs-card-col:nth-child(3) {
        margin-top: 50px;
    }

    .vs-card-col:nth-child(4) {
        margin-top: 10px;
    }
}

.vs-card-col {
    filter: drop-shadow(0px 14px 28px rgba(15, 23, 42, 0.08));
    transition: filter 0.35s ease, transform 0.35s ease;
}

.vs-card-col:hover {
    filter: drop-shadow(0px 22px 36px rgba(37, 99, 235, 0.18));
    transform: translateY(-8px);
}

/* 1st and 2nd box clip-path */
.vs-card-col:nth-child(1) .vs-feature-card,
.vs-card-col:nth-child(2) .vs-feature-card {
    clip-path: polygon(32.2492676px 0, calc(100% - 29.883191px) 14.1670774px, calc(100% - 29.883191px) 14.1670774px, calc(100% - 24.96109729px) 14.87537046px, calc(100% - 20.31945472px) 16.29591632px, calc(100% - 16.01424199px) 18.36886116px, calc(100% - 12.1014378px) 21.03435113px, calc(100% - 8.63702087px) 24.23253242px, calc(100% - 5.67696992px) 27.9035512px, calc(100% - 3.27726365px) 31.98755362px, calc(100% - 1.49388076px) 36.42468587px, calc(100% - 0.38279998px) 41.1550941px, calc(100% - 5.68434189E-14px) 46.1189245px, calc(100% - 0px) calc(100% - 32.02092px), calc(100% - 0px) calc(100% - 32.02092px), calc(100% - 0.41860061px) calc(100% - 26.8269604px), calc(100% - 1.63050344px) calc(100% - 21.89983258px), calc(100% - 3.56985995px) calc(100% - 17.30546357px), calc(100% - 6.1708216px) calc(100% - 13.10978045px), calc(100% - 9.36753988px) calc(100% - 9.37871025px), calc(100% - 13.09416624px) calc(100% - 6.17818003px), calc(100% - 17.28485217px) calc(100% - 3.57411685px), calc(100% - 21.87374912px) calc(100% - 1.63244774px), calc(100% - 26.79500858px) calc(100% - 0.41909978px), calc(100% - 31.982782px) calc(100% - 5.68434189E-14px), 31.9827822px calc(100% - 0px), 31.9827822px calc(100% - 0px), 26.79500879px calc(100% - 0.41909978px), 21.87374934px calc(100% - 1.63244774px), 17.28485237px calc(100% - 3.57411685px), 13.09416641px calc(100% - 6.17818003px), 9.36754001px calc(100% - 9.37871025px), 6.1708217px calc(100% - 13.10978045px), 3.56986001px calc(100% - 17.30546357px), 1.63050347px calc(100% - 21.89983258px), 0.41860062px calc(100% - 26.8269604px), 0px calc(100% - 32.02092px), 0 32.0209204px, 0 32.0209204px, 0.41860062px 26.82696079px, 1.63050347px 21.89983293px, 3.56986001px 17.30546389px, 6.1708217px 13.10978071px, 9.36754001px 9.37871045px, 13.09416641px 6.17818017px, 17.28485237px 3.57411693px, 21.87374934px 1.63244779px, 26.79500879px 0.41909979px, 31.9827822px 0px, 31.9827822px 0, 32.11152455px 0, 32.2175794px 0, 32.30094672px 0, 32.36162654px 0, 32.39961884px 0, 32.41492362px 0, 32.40754089px 0, 32.37747064px 0, 32.32471288px 0, 32.2492676px 0);
}

/* 3rd and 4th box clip-path */
.vs-card-col:nth-child(3) .vs-feature-card,
.vs-card-col:nth-child(4) .vs-feature-card {
    clip-path: polygon(32.2492676px 13.8329226px, calc(100% - 29.883191px) 0, calc(100% - 29.883191px) 0, calc(100% - 24.96109729px) 0.70829306px, calc(100% - 20.31945472px) 2.12883892px, calc(100% - 16.01424199px) 4.20178375px, calc(100% - 12.1014378px) 6.86727374px, calc(100% - 8.63702087px) 10.06545503px, calc(100% - 5.67696992px) 13.73647382px, calc(100% - 3.27726365px) 17.82047625px, calc(100% - 1.49388076px) 22.25760852px, calc(100% - 0.38279998px) 26.98801678px, calc(100% - 5.68434189E-14px) 31.9518472px, calc(100% - 0px) calc(100% - 32.187998px), calc(100% - 0px) calc(100% - 32.187998px), calc(100% - 0.41860061px) calc(100% - 26.99403837px), calc(100% - 1.63050344px) calc(100% - 22.06691047px), calc(100% - 3.56985995px) calc(100% - 17.47254136px), calc(100% - 6.1708216px) calc(100% - 13.2768581px), calc(100% - 9.36753988px) calc(100% - 9.54578775px), calc(100% - 13.09416624px) calc(100% - 6.34525738px), calc(100% - 17.28485217px) calc(100% - 3.74119406px), calc(100% - 21.87374912px) calc(100% - 1.79952485px), calc(100% - 26.79500858px) calc(100% - 0.58617681px), calc(100% - 31.982782px) calc(100% - 0.167077px), 31.9827822px calc(100% - 0.167077px), 31.9827822px calc(100% - 0.167077px), 26.79500879px calc(100% - 0.58617681px), 21.87374934px calc(100% - 1.79952485px), 17.28485237px calc(100% - 3.74119406px), 13.09416641px calc(100% - 6.34525738px), 9.36754001px calc(100% - 9.54578775px), 6.1708217px calc(100% - 13.2768581px), 3.56986001px calc(100% - 17.47254136px), 1.63050347px calc(100% - 22.06691047px), 0.41860062px calc(100% - 26.99403837px), 0px calc(100% - 32.187998px), 0 45.853843px, 0 45.853843px, 0.41860062px 40.65988339px, 1.63050347px 35.73275553px, 3.56986001px 31.13838649px, 6.1708217px 26.94270331px, 9.36754001px 23.21163305px, 13.09416641px 20.01110277px, 17.28485237px 17.40703953px, 21.87374934px 15.46537039px, 26.79500879px 14.25202239px, 31.9827822px 13.8329226px, 31.9827822px 13.8329226px, 32.11152455px 13.8329226px, 32.2175794px 13.8329226px, 32.30094672px 13.8329226px, 32.36162654px 13.8329226px, 32.39961884px 13.8329226px, 32.41492362px 13.8329226px, 32.40754089px 13.8329226px, 32.37747064px 13.8329226px, 32.32471288px 13.8329226px, 32.2492676px 13.8329226px);
}

.vs-feature-card {
    background: #ffffff;
    padding: 44px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.vs-card-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.vs-card-title {
    font-family: var(--font-heading);
    font-size: 19.5px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
    margin: 0;
}

.vs-card-icon-right {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.vs-card-icon-right i {
    font-size: 20px;
    color: inherit;
    display: inline-block;
}

.vs-icon-blue {
    background: #dbeafe;
    color: #2563eb;
}

.vs-icon-amber {
    background: #fef3c7;
    color: #d97706;
}

.vs-icon-emerald {
    background: #d1fae5;
    color: #059669;
}

.vs-icon-purple {
    background: #f3e8ff;
    color: #9333ea;
}

.vs-card-desc {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 0;
}

.sec_padding {
    padding: 80px 0;
}

@media (max-width: 991px) {
    .vs-comparison-sec {
        padding: 80px 0 150px;
    }

    .vs-clip-bg {
        height: 80%;
        clip-path: ellipse(150% 90% at 50% 100%);
    }

    .vs-card-col {
        margin-top: 0 !important;
    }
}



@media (max-width: 991px) {
    .vs-comparison-sec {
        padding: 80px 0 160px;
    }
}

@media (max-width: 576px) {
    .vs-comparison-sec {
        padding: 60px 0 140px;
    }
}

/* ==========================================================================
   RELATED MATHEMATICS RESOURCES SECTION REDESIGN
   ========================================================================== */

.related-resources-sec {
    background: #ffffff;
    padding: 90px 0;
    border-top: 1px solid #e2e8f0;
    position: relative;
}

.resource-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
    margin: 32px 0 36px;
}

.resource-link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.resource-link-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #2563eb;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.resource-link-card:hover {
    background: #ffffff;
    border-color: #93c5fd;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px -5px rgba(37, 99, 235, 0.12);
}

.resource-link-card:hover::before {
    opacity: 1;
}

.resource-card-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.resource-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #dbeafe;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

.resource-link-card:hover .resource-card-icon {
    background: #2563eb;
    color: #ffffff;
}

.resource-card-title {
    font-family: var(--font-heading);
    font-size: 15.5px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin: 0;
    transition: color 0.3s ease;
}

.resource-link-card:hover .resource-card-title {
    color: #2563eb;
}

.resource-card-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.resource-link-card:hover .resource-card-arrow {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
    transform: translateX(4px);
}

.resource-footer-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: #f1f5f9;
    border-radius: 14px;
    border-left: 4px solid #2563eb;
    color: #334155;
    font-size: 14.5px;
    font-weight: 500;
}

.resource-footer-icon {
    color: #2563eb;
    font-size: 18px;
    flex-shrink: 0;
}

/* ==========================================================================
   RELATED MATHEMATICS RESOURCES SECTION (3 ITEMS PER ROW CENTRED MATCH)
   ========================================================================== */

.gma-resources-sec {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
}

.gma-resources-inner {
    position: relative;
    background: linear-gradient(135deg, #eef6ff 0%, #f7f3ff 50%, #ffe4eb 100%);
    border-radius: 36px;
    padding: 80px 40px 60px;
    overflow: hidden;
    z-index: 1;
}

.gma-resource-badge {
    display: inline-block;
    color: #BB8E26;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.gma-resource-heading {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.gma-resource-subtext {
    font-size: 20px;
    color: #64748b;
    max-width: 580px;
    margin: 0 auto 40px;
}

.gma-resource-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none !important;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 8px 25px -6px rgba(15, 23, 42, 0.05);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.gma-resource-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px -8px rgba(187, 142, 38, 0.18);
    border-color: rgba(187, 142, 38, 0.4);
}

.gma-resource-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.gma-resource-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(187, 142, 38, 0.1);
    border: 1px solid rgba(187, 142, 38, 0.25);
    color: #BB8E26;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.gma-resource-card:hover .gma-resource-icon {
    background: #BB8E26;
    color: #ffffff;
    border-color: #BB8E26;
    transform: scale(1.05);
}

.gma-resource-title {
    font-family: var(--font-heading);
    font-size: 15.5px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin: 0;
    transition: color 0.3s ease;
}

.gma-resource-card:hover .gma-resource-title {
    color: #BB8E26;
}

.gma-resource-arrow {
    display: none;
}

.gma-resource-card:hover .gma-resource-arrow {
    background: #2563eb;
    color: #ffffff;
    transform: translate(2px, -2px);
}

.gma-bottom-note {
    font-size: 14.5px;
    font-weight: 600;
    color: #334155;
    margin-top: 36px;
    margin-bottom: 0;
}

.gma-explore-link {
    color: #0f172a;
    text-decoration: underline;
    font-weight: 700;
    transition: color 0.25s ease;
}

.gma-explore-link:hover {
    color: #2563eb;
}

.alert.text-red-500 {
    color: red;
}

@media (max-width: 768px) {
    .gma-resources-inner {
        padding: 50px 20px 40px;
        border-radius: 24px;
    }

    .gma-resource-heading {
        font-size: 28px;
    }
}

/* Hero Banner Subtitle Styling */
.math-hero-subtitle {
    font-family: var(--font-heading);
    font-size: 19.5px;
    font-weight: 700;
    color: #facc15;
    letter-spacing: 0.5px;
    margin-top: 14px;
    margin-bottom: 22px;
    display: inline-block;
}


/* ==========================================================================
   LOCATION REDESIGN - HOME TUITION IN TAMPINES
   ========================================================================== */

.tampines-loc-hero-sec {
    padding: 30px 0 60px;
    background: #FFFFFF;
}

.loc-breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #64748B;
    font-weight: 500;
    margin-bottom: 24px;
}

.loc-breadcrumb-nav a {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease;
}

.loc-breadcrumb-nav a:hover {
    color: #bb8e26;
}

.loc-breadcrumb-nav .sep {
    color: #94A3B8;
    font-size: 11px;
}

.loc-breadcrumb-nav .active {
    color: #0F172A;
    font-weight: 700;
}

.tampines-loc-hero-sec h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.highlight-loc-title {
    color: #bb8e26;
    font-weight: 800;
}

.loc-hero-subtitle {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.35;
    margin-bottom: 20px;
    max-width: 540px;
}

.loc-hero-text {
    font-size: 20px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 16px;
    max-width: 100%;
}

.loc-hero-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    /* flex-wrap: wrap; */
    margin-top: 32px;
}

.loc-hero-btns .btn-gold-pill,
.loc-hero-btns .btn-blue-soft-pill {
    width: 50%;
    display: flex;
    justify-content: center;
}

/* Global / Page specific Primary Amber Avatar Button */
.btn-gold-pill {
    background: #bb8e26;
    color: #FFFFFF !important;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 20px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(199, 110, 0, 0.25);
    text-decoration: none;
}

.btn-gold-pill:hover {
    background: #b06000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 110, 0, 0.35);
    color: #FFFFFF !important;
}

.btn-avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    font-size: 16px;
    color: #FFFFFF;
    flex-shrink: 0;
}

/* Secondary Outline Dark Pill Button */
.btn-loc-outline {
    background: #FFFFFF;
    color: #0F172A !important;
    border: 1.5px solid #0F172A;
    border-radius: 10px;
    padding: 14px 28px;
    font-size: 20px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-loc-outline:hover {
    background: #0F172A;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.15);
}

/* Hero Right Image & Floating Features Card */
.loc-hero-img-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 50px;
}

.loc-hero-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    display: block;
}

.loc-floating-card {
    position: absolute;
    bottom: -90px;
    left: 4%;
    right: 4%;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 22px 20px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.loc-feature-item {
    flex: 1;
    text-align: center;
    padding: 0 12px;
    position: relative;
}

.loc-feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: #E2E8F0;
}

.loc-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #EEF2FF;
    color: #1D4ED8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 10px;
}

.loc-feature-item h6 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.3;
    margin-bottom: 4px;
    padding: 0px 22px;
}

.loc-feature-item p {
    font-size: 15px;
    color: #64748B;
    line-height: 1.4;
    margin: 0;
}


/* ==========================================================================
   MAIN DETAILS SECTION (Why Families & Popular Schools)
   ========================================================================== */

.tampines-loc-main-sec {
    padding: 70px 0;
    background: #FFFFFF;
}

.loc-section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 18px;
    line-height: 1.25;
}

.loc-section-desc {
    font-size: 20px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 24px;
}

.loc-checklist-label {
    font-weight: 700;
    color: #0F172A;
    font-size: 20px;
    margin-bottom: 16px;
    display: block;
}

.loc-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.loc-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #1E293B;
}

.loc-check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #FFF7ED;
    border: 1.5px solid #F97316;
    color: #EA580C;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

/* Popular Schools Cards */
.loc-schools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.school-card {
    border-radius: 16px;
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.school-card-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 14px;
}

.school-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.3;
}

.school-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.school-card-list li {
    font-size: 18px;
    font-weight: 600;
    color: #1E293B;
    position: relative;
    padding-left: 14px;
    line-height: 1.4;
}

.school-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

/* Card Themes */
.school-card.primary {
    background: #FFF8F0;
    border: 1px solid #FFEDD5;
}

.school-card.primary .school-card-icon,
.school-card.primary .school-card-title {
    color: #bb8e26;
}

.school-card.primary .school-card-list li::before {
    background: #bb8e26;
}

.school-card.secondary {
    background: #F2F5FF;
    border: 1px solid #DBEAFE;
}

.school-card.secondary .school-card-icon,
.school-card.secondary .school-card-title {
    color: #1D4ED8;
}

.school-card.secondary .school-card-list li::before {
    background: #1D4ED8;
}

.school-card.jc {
    background: #F0FDF4;
    border: 1px solid #DCFCE7;
}

.school-card.jc .school-card-icon,
.school-card.jc .school-card-title {
    color: #15803D;
}

.school-card.jc .school-card-list li::before {
    background: #15803D;
}

.loc-schools-footer-note {
    font-size: 20px;
    color: #475569;
    margin-top: 24px;
    font-weight: 500;
    text-align: center;
}


/* ==========================================================================
   AREAS NEAR TAMPINES SECTION
   ========================================================================== */

.tampines-loc-areas-sec {
    padding: 20px 0 60px;
    background: #FFFFFF;
}

.loc-areas-card {
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 20px;
    padding: 36px 40px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    position: relative;
    overflow: hidden;
}

.loc-areas-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 8px;
}

.loc-areas-desc {
    font-size: 20px;
    color: #475569;
    margin-bottom: 24px;
}

.loc-area-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.area-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 700;
    color: #0F172A;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
}

.area-pill:hover {
    border-color: #bb8e26;
    background: #FFF8F0;
    color: #bb8e26;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(199, 110, 0, 0.12);
}

.area-pill i {
    color: #64748B;
    font-size: 13px;
    transition: color 0.25s ease;
}

.area-pill:hover i {
    color: #bb8e26;
}

.loc-skyline-illustration {
    position: absolute;
    right: 20px;
    bottom: 0;
    height: 110px;
    opacity: 0.85;
    pointer-events: none;
}

.all-loc-hero-sec h1 {
    letter-spacing: 0px !important;
}

/* ==========================================================================
   REQUEST A HOME TUTOR CTA BANNER
   ========================================================================== */

.tampines-loc-cta-sec {
    padding: 0 0 20px;
    background: #FFFFFF;
}

.loc-cta-banner {
    background: #00327D;
    border-radius: 24px;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    gap: 32px;
    color: #FFFFFF;
    box-shadow: 0 16px 40px rgba(3, 27, 78, 0.22);
}

.loc-cta-badge-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    font-size: 34px;
    color: #FFFFFF;
    flex-shrink: 0;
}

.loc-cta-content {
    flex: 1;
}

.loc-cta-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 1.3;
}

.loc-cta-desc {
    font-size: 20px;
    color: #CBD5E1;
    line-height: 1.6;
    margin: 0;
    max-width: 100%;
}

.loc-cta-action {
    flex-shrink: 0;
}

/* ==========================================================================
   OUR LOCATIONS PAGE - HOME TUITION ACROSS SINGAPORE
   ========================================================================== */

/* .all-loc-hero-sec {
    padding: 30px 0 60px;
    background: #FFFFFF;
} */
.hero-loc-left {
    padding: 8rem 0rem;
}

/* .hero-feature-pills-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 32px 0;
} */

/* .hero-feature-pill {
    display: flex;
    align-items: flex-start;
    gap: 10px;
} */

/* .hero-feature-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #031B4E;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
} */

.hero-feature-title {
    font-family: var(--font-heading);
    font-weight: 800;
    color: #0F172A;
    font-size: 18px;
    display: block;
    margin-bottom: 6px;
    line-height: 1.2;
}

.hero-feature-text {
    font-size: 16px;
    color: #64748B;
    line-height: 1.35;
    margin: 0;
}

/* Soft Blue Button with Subtitle */
.btn-blue-soft-pill {
    background: #EEF2FF;
    color: #1D4ED8 !important;
    border: 1.5px solid #C7D2FE;
    border-radius: 10px;
    padding: 8px 24px 8px 10px;
    font-size: 14.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-blue-soft-pill:hover {
    background: #E0E7FF;
    border-color: #818CF8;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(29, 78, 216, 0.15);
}

.btn-icon-soft {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #FFFFFF;
    color: #1D4ED8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
    flex-shrink: 0;
}

.btn-blue-soft-pill span small {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: #4338CA;
    line-height: 1.1;
    margin-top: 1px;
}

/* Hero Map Image */
.hero-map-wrap {
    position: relative;
    width: 100%;
    text-align: center;
}

.hero-map-img {
    width: 100%;
    max-width: 100%;
    /* max-width: 580px; */
    height: auto;
    display: block;
    margin: 0 auto;
}


/* Popular Tuition Locations Grid */
.popular-loc-sec {
    padding: 60px 0;
    background: #F8FAFC;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.popular-loc-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 28px;
}

.popular-loc-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #031B4E;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 4px;
}

.popular-loc-title-wrap h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 4px;
}


.popular-loc-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.popular-loc-card {
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 16px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.popular-loc-card:hover {
    border-color: #bb8e26;
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(199, 110, 0, 0.14);
    color: inherit;
}

.popular-loc-thumb {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.popular-loc-info {
    flex: 1;
    min-width: 0;
}

.popular-loc-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.popular-loc-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: #0F172A;
}

.popular-loc-arrow {
    font-size: 12px;
    color: #94A3B8;
    transition: transform 0.25s ease, color 0.25s ease;
}

.popular-loc-card:hover .popular-loc-arrow {
    color: #bb8e26;
    transform: translateX(3px);
}

.popular-loc-desc {
    font-size: 16px;
    color: #64748B;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}


/* Feature Highlights Bar */
.loc-highlights-sec {
    padding: 50px 0 70px;
    background: #FFFFFF;
}

.loc-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.highlight-card {
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 20px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-3px);
    border-color: #CBD5E1;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.highlight-avatar-wrap {
    position: relative;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 100px;
    padding: 10px;
}

.highlight-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.highlight-circle-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #FFF7ED;
    border: 1.5px solid #FFEDD5;
    color: #bb8e26;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.highlight-badge-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #1D4ED8;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.hl-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.3;
    margin-bottom: 4px;
}

.hl-card-desc {
    font-size: 16px;
    color: #64748B;
    line-height: 1.4;
    margin: 0;
    background: none !important;
}

.text-color-primary {
    color: #0d0d1c;
}

.text-red-500 {
    color: red;
}

/* --- Tutor Shortlist Page Refactor --- */
.ts-main-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 15px;
}

.ts-alert {
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: 8px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.ts-alert-success {
    color: #065f46;
    background-color: #d1fae5;
    border: 1px solid #a7f3d0;
}

.ts-alert-error {
    color: #991b1b;
    background-color: #fee2e2;
    border: 1px solid #fecaca;
}

.ts-action-bar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 25px;
    gap: 12px;
    flex-wrap: wrap;
}

/* Base button */
.ts-btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.ts-btn-red {
    background-color: #ef4444;
    color: #fff;
}

.ts-btn-red:hover {
    background-color: #dc2626;
    color: #fff;
}

.ts-btn-green {
    background-color: var(--theme-color, #BB8F27);
    color: #fff;
}

.ts-btn-green:hover {
    background-color: var(--theme-color-hover, #C49E34);
    color: #fff;
}

.ts-btn-blue {
    background-color: #bb8e26;
    color: #fff;
}

.ts-btn-blue:hover {
    background-color: var(--bg-blue);
    color: #fff;
}

.ts-btn-disabled {
    background-color: #9ca3af;
    color: #f3f4f6;
    cursor: not-allowed;
    box-shadow: none;
}

.ts-btn-outline {
    background-color: #ffffff;
    color: #4b5563;
    border: 1px solid #d1d5db;
}

.ts-btn-outline:hover {
    background-color: #f3f4f6;
    color: #1f2937;
}

/* Card */
.ts-tutor-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.ts-tutor-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.ts-card-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.ts-avatar-wrap {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 1000px;
    border: 2px solid #e5e7eb;
    background-color: #bb8e26;
    overflow: hidden;
}

.ts-tutor-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.ts-avatar-placeholder {
    width: 72px;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #9ca3af;
    background-color: #f3f4f6;
    border-radius: 50%;
    font-size: 40px;
}

.ts-badge-number {
    font-size: 14px;
    color: #ffffff;
    font-weight: 700;
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: #bb8e26;
    height: 28px;
    width: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ts-tutor-name {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 6px 0;
    line-height: 1.2;
}

.ts-tutor-name sup {
    color: #ffffff;
    font-family: var(--default-font-family);
    font-size: 12px;
    font-weight: 600;
    background: var(--theme-color);
    border: 1px solid var(--theme-color);
    border-radius: 10px;
    padding: 4px 14px;
}

.ts-text-muted {
    font-size: 15px;
    color: #4b5563;
    margin: 0 0 4px 0;
}

.ts-text-highlight {
    font-size: 16px;
    color: #bb8e26;
    font-weight: 700;
    margin: 4px 0 0 0;
    display: inline-block;
    text-transform: capitalize;
}

.ts-tutor-desc {
    margin-top: 16px;
    font-size: 15px;
    color: #bb8e26;
    line-height: 1.6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: #bb8e261c;
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 3px solid #bb8e26;
}

.ts-applied-info {
    margin-top: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--theme-color);
    border-radius: 10px;
    padding: 8px 18px;
    font-family: var(--default-font-family);
    font-size: 13px;
    background: var(--white-color);
}

.ts-card-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.ts-rate-text {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    margin: 0;
}

.ts-rate-text.text-green {
    color: var(--theme-color, #BB8F27);
}

.ts-footer-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.ts-badge {
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
}

.ts-badge-yellow {
    background-color: #fef3c7;
    color: #92400e;
    border-radius: 1000px;
}

.ts-badge-green {
    background-color: #fef3c7;
    color: #92400e;
    border-radius: 1000px;
}

.ts-badge-gray {
    background-color: #f3f4f6;
    color: #374151;
    border-radius: 1000px;
}

/* Modals Refactor */
.ts-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.ts-modal-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 90%;
    max-width: 500px;
    padding: 24px;
    animation: modalSlideUp 0.3s ease-out forwards;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.ts-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.ts-modal-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.ts-modal-title span {
    color: #bb8e26;
}

.ts-btn-close {
    width: 32px;
    height: 32px;
    background-color: #f3f4f6;
    color: #6b7280;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.ts-btn-close:hover {
    background-color: #e5e7eb;
    color: #111827;
}

.ts-form-label {
    font-weight: 600;
    font-size: 14px;
    color: #374151;
    margin-bottom: 8px;
    display: block;
}

.ts-form-control {
    width: 100%;
    background-color: #f9fafb;
    border: 1px solid #d1d5db;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 15px;
    color: #111827;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.ts-form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background-color: #ffffff;
}

.ts-modal-footer {
    margin-top: 24px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

h2.privacy-title-main{
    font-size: 40px !important;
    text-align: center;
    margin-bottom: 30px !important;
}


/* tutor programme */

.tution-cards-section{
    background: #f8f9fa;
    padding: 40px;
}
.tution-cards-section .hero-feature-pills-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0px 0;
    margin-top: -8rem;
    z-index: 2;
    position: relative;
}
.tution-cards-section .hero-feature-pill {
        display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    border: 1px solid #cececa57;
    border-radius: 20px;
    border: 1px solid #bb8f263d;
    backdrop-filter: blur(5px);
        width: 100%;
    flex-basis: 100%;
    max-width: 100%;
    background: #7fb1d429 !important;
}
.tution-cards-section .hero-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #031B4E;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.why-choose-title{
    font-size: 20px !important;

}
.loc-cards .hero-feature-pills-row{
    grid-template-columns: repeat(4, 1fr) !important;
}
.section form#searchForm input{
    padding-left: 35px !important;
}

.auth-card-container .admin-login-img .logo-image{
    width: 100%;
    min-width: 150px;
    margin-bottom: 30px;
}