/* =====================================================================
   MBA BHORTI — Home Page Redesign Theme (LIGHT)
   Scope: loads ONLY on index.html (linked after css/styles.css)
   Purpose: bright, professional colour system + original motion
   language, layered on top of the shared stylesheet without touching
   any other page. No text, images or markup meaning is altered here —
   only presentation (colour, type, depth, motion).
   ===================================================================== */

/* ---------- 1. Fonts (headings get a distinct professional voice) --- */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@500;600;700;800&display=swap');

/* ---------- 2. Core palette — Ivory / Deep Teal / Bronze Gold --------
   Replaces the old dark violet (#8a96ff) + orange (#ff8a4d) theme with
   a light, airy surface. Custom properties are consumed all over
   styles.css via var(), so redefining :root here recolours the whole
   page automatically; the hard-coded rgba() accents below are patched
   individually. */
:root {
    --bg-dark: #f8fbfa;
    /* page base — soft ivory-mint */
    --bg-dark-accent: #ffffff;
    /* card / panel surface */
    --bg-light: #eef6f5;
    --white: #ffffff;
    --ink: #142b2a;
    /* primary text — deep teal-charcoal */
    --ink-dark: #0b1f1a;
    /* text on gold/teal filled buttons */
    --muted: #5c7276;
    /* secondary text */
    --primary: #0e8a7c;
    /* deep teal — AA on white */
    --accent: #b8802a;
    /* bronze gold — AA on white */
    --grad: linear-gradient(135deg, #0e8a7c 0%, #c99a3d 100%);
    --glass: rgba(14, 138, 124, .06);
    --radius: 16px;

    /* new theme-only tokens */
    --glow-teal: rgba(14, 138, 124, .22);
    --glow-gold: rgba(184, 128, 42, .22);
    --ring: linear-gradient(135deg, rgba(14, 138, 124, .45), rgba(184, 128, 42, .45));
    --band: #eef6f4;
    /* alternating section tint */
    --font-head: 'Sora', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: radial-gradient(120rem 60rem at 15% -10%, rgba(14, 138, 124, .06), transparent 55%),
        radial-gradient(90rem 60rem at 110% 10%, rgba(184, 128, 42, .05), transparent 50%),
        var(--bg-dark) !important;
}

::selection {
    background: var(--primary);
    color: #fff;
}

/* thin, on-brand scrollbar (webkit browsers) */
body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: var(--band);
}

body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 10px;
}

/* ---------- 3. Ambient backdrop (unique, continuous, very soft) ----- */
body {
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(38rem 38rem at 12% 18%, rgba(14, 138, 124, .08), transparent 60%),
        radial-gradient(34rem 34rem at 88% 78%, rgba(184, 128, 42, .07), transparent 60%);
    background-repeat: no-repeat;
    animation: auroraDrift 22s ease-in-out infinite alternate;
    will-change: transform, opacity;
}

@keyframes auroraDrift {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: .85;
    }

    50% {
        transform: translate3d(2%, -3%, 0) scale(1.06);
        opacity: 1;
    }

    100% {
        transform: translate3d(-2%, 2%, 0) scale(1.02);
        opacity: .9;
    }
}

.site-header,
.container,
main,
footer,
.new-banner,
.mba-hero2,
section {
    position: relative;
    z-index: 1;
}

/* ---------- 4. Typography ------------------------------------------- */
h1, h2, h3, h4,
.banner-title,
.mba-hero2__title,
.section-header h2,
.hi-v2-card h4,
.uni-title,
.card-titlebar,
.ge-logo-name h4 {
    font-family: var(--font-head);
    letter-spacing: -.01em;
}

.section-header h2 {
    display: inline-block;
    position: relative;
    color: var(--ink);
    padding-bottom: 14px;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 64px;
    height: 4px;
    border-radius: 4px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    background-size: 200% auto;
    animation: underlineSweep 4s linear infinite;
}

@keyframes underlineSweep {
    to {
        background-position: 200% center;
    }
}

.section-header p {
    color: var(--muted);
}

/* Recolour headings that were hard-authored as literal "blue"/white */
.whyheading,
.highlights-v2 h2,
.spec-v2-title,
.faq .section-header h2,
.recruiters .container .subhead,
.uni-title,
.emi h2,
.testimonials.testimonials-v4 .section-header h2 {
    color: var(--ink) !important;
}

/* ---------- 5. Header / Navigation ----------------------------------- */
.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 10000 !important;
    background: rgba(255, 255, 255, .82) !important;
    border-bottom: 1px solid rgba(14, 138, 124, .16);
    box-shadow: 0 10px 26px rgba(20, 43, 42, .08);
}

.new-banner {
    margin-top: 100px !important;
}

@media (max-width: 980px) {
    .new-banner {
        margin-top: 56px !important;
    }
}

@media (max-width: 640px) {
    .new-banner {
        margin-top: 50px !important;
    }
}

.main-nav a {
    color: var(--ink);
}

.main-nav a:hover {
    background: rgba(14, 138, 124, .12);
    color: var(--ink);
}

.main-nav a:not(.cta)::after {
    background-color: var(--accent);
}

.main-nav a.cta {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 8px 18px var(--glow-teal);
    transition: transform .2s ease, box-shadow .2s ease;
}

.main-nav a.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px var(--glow-gold);
}

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

@media (max-width: 640px) {
    .main-nav {
        background: linear-gradient(180deg, #ffffff, var(--band)) !important;
        border: 1px solid rgba(14, 138, 124, .2) !important;
        box-shadow: 0 18px 40px rgba(20, 43, 42, .16) !important;
    }
}

/* ---------- 6. Hero banner (photo hero keeps a dark scrim for legibility,
   retinted to the new palette) ------------------------------------------ */
.banner-overlay {
    background: linear-gradient(180deg, rgba(6, 16, 26, .55), rgba(6, 16, 26, .9)),
        radial-gradient(60rem 40rem at 20% 0%, rgba(14, 138, 124, .3), transparent 60%);
}

.banner-title {
    text-shadow: 0 2px 22px rgba(14, 138, 124, .4);
}

.feature-item {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .25);
}

.feature-icon {
    color: var(--accent);
}

.blink-button {
    background: linear-gradient(120deg, var(--accent), #e3b45a, var(--accent));
    background-size: 220% auto;
    color: #fff !important;
    box-shadow: 0 10px 26px rgba(184, 128, 42, .45);
    animation: blink 2.6s infinite, goldFlow 5s linear infinite;
}

@keyframes goldFlow {
    to {
        background-position: 220% center;
    }
}

@keyframes blink {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 26px rgba(184, 128, 42, .45);
    }

    50% {
        transform: scale(1.045);
        box-shadow: 0 16px 36px rgba(14, 138, 124, .45);
    }
}

/* ---------- 7. Search bar ---------------------------------------------- */
.search-bar input,
.search-bar select {
    background: #ffffff;
    color: var(--ink);
    border: 1px solid rgba(14, 138, 124, .22);
    box-shadow: 0 2px 10px rgba(20, 43, 42, .05);
}

.search-bar input::placeholder {
    color: var(--muted);
}

.search-bar input:focus,
.search-bar select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--glow-teal);
}

/* ---------- 8. College cards -------------------------------------------- */
.colleges-section {
    background: linear-gradient(180deg, #ffffff, var(--band));
}

#loadMore {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: #fff;
    animation: pulseCta 2.6s ease-in-out infinite;
}

.college-card.v2 {
    background: #ffffff;
    transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s ease, border-color .3s ease;
}

.college-card.v2::before {
    background: var(--ring);
}

.college-card.v2:hover {
    box-shadow: 0 22px 46px rgba(14, 138, 124, .16);
    border-color: rgba(14, 138, 124, .3);
}

.card-titlebar {
    background: linear-gradient(90deg, var(--primary), #106f64);
    color: #fff !important;
    border-top-color: transparent;
    border-bottom-color: transparent;
}

.badge.v2 {
    background: linear-gradient(90deg, var(--accent), var(--primary));
    color: #fff;
}

.info-chip {
    background: var(--band);
    border-color: rgba(14, 138, 124, .25);
    color: var(--ink);
}

.info-chip i {
    color: var(--primary);
}

.meta-row .tagline {
    color: var(--muted);
}

.meta-row .fee {
    color: var(--accent);
}

.hr-soft {
    background: linear-gradient(90deg, rgba(14, 138, 124, .3), rgba(184, 128, 42, .3));
}

.keyline {
    color: var(--muted);
}

.btn-download {
    background: linear-gradient(180deg, #e3b45a, var(--accent));
    color: #fff;
    box-shadow: 0 10px 22px rgba(184, 128, 42, .4);
}

.open-enquire {
    background: linear-gradient(180deg, #17b8a6, var(--primary));
    color: #fff;
    box-shadow: 0 10px 22px rgba(14, 138, 124, .4);
}

/* ---------- 9. Why MBA cards -------------------------------------------- */
.why-section {
    background: #ffffff;
}

.why-card {
    background: var(--band);
    border: 1px solid rgba(14, 138, 124, .14);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: var(--ink);
    transition: transform .3s ease, box-shadow .3s ease;
}

.why-card p {
    color: var(--muted);
}

.why-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    z-index: -1;
    background: conic-gradient(from 0deg, transparent 0 60%, var(--primary), var(--accent), transparent);
    opacity: 0;
    transition: opacity .35s ease;
    animation: cardSpin 6s linear infinite;
}

.why-card::after {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 13px;
    background: var(--band);
    z-index: -1;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(14, 138, 124, .16);
}

.why-card:hover::before {
    opacity: .8;
}

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

.why-card h3 {
    color: var(--primary);
}

.why-card h3 i {
    color: var(--accent);
    margin-right: 6px;
}

/* ---------- 10. Highlights v2 -------------------------------------------- */
.highlights-v2 {
    --ring: linear-gradient(135deg, rgba(14, 138, 124, .5), rgba(184, 128, 42, .5));
    background: var(--band);
}

.highlights-v2 .section-header p {
    color: var(--muted);
}

.hi-v2-card {
    background: #ffffff;
}

.hi-v2-glow {
    background: radial-gradient(40rem 40rem at 30% 30%, rgba(14, 138, 124, .07), transparent 60%),
        radial-gradient(40rem 40rem at 70% 80%, rgba(184, 128, 42, .07), transparent 60%);
}

.hi-v2-card:hover {
    box-shadow: 0 20px 44px rgba(14, 138, 124, .16);
    border-color: rgba(14, 138, 124, .3);
}

.hi-v2-icon {
    background: linear-gradient(135deg, rgba(14, 138, 124, .12), rgba(184, 128, 42, .12));
    border: 1px solid rgba(14, 138, 124, .22);
}

.hi-v2-icon i {
    color: var(--primary);
}

.hi-v2-card h4 {
    color: var(--ink);
}

.hi-v2-card p {
    color: var(--muted);
}

/* ---------- 11. Specialisation chips -------------------------------------- */
.spec-cloud-v2 {
    --chip-bg: rgba(14, 138, 124, .06);
    --chip-bg-hover: rgba(14, 138, 124, .14);
    --chip-text: var(--primary);
    --ring: linear-gradient(135deg, rgba(14, 138, 124, .45), rgba(184, 128, 42, .45));
    background: #ffffff;
}

.spec-v2-chip {
    background: var(--band);
    border-color: rgba(14, 138, 124, .16);
    color: var(--primary);
    box-shadow: 0 6px 16px rgba(20, 43, 42, .06);
    transition: transform .25s cubic-bezier(.2, .8, .2, 1), box-shadow .25s ease, background .25s ease, color .25s ease;
}

.spec-v2-chip i {
    color: var(--accent);
}

.spec-v2-chip:hover {
    background: var(--chip-bg-hover);
    box-shadow: 0 16px 34px rgba(14, 138, 124, .18);
    border-color: rgba(14, 138, 124, .35);
    color: var(--ink);
}

.spec-v2-note {
    color: var(--muted);
}

/* ---------- 12. Steps ------------------------------------------------------ */
.steps {
    background: var(--band);
}

.step {
    background: #ffffff;
    border-color: rgba(14, 138, 124, .14);
    color: var(--ink);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.step:hover {
    transform: translateY(-4px);
    border-color: rgba(184, 128, 42, .4);
    box-shadow: 0 14px 30px rgba(20, 43, 42, .08);
}

.step h4 {
    color: var(--ink);
}

.step p {
    color: var(--muted);
}

.step-num {
    color: rgba(14, 138, 124, .16);
    -webkit-text-stroke: 1px rgba(184, 128, 42, .35);
}

.shine {
    background: linear-gradient(120deg, #ffffff, rgba(14, 138, 124, .1) 30%, #ffffff 60%);
    background-size: 220% 100%;
}

/* ---------- 13. Eligibility & documents ------------------------------------ */
.elig-docs {
    background: #ffffff;
}

.cards-2 .card {
    background: var(--band);
    border-color: rgba(14, 138, 124, .14);
    color: var(--ink);
}

.cards-2 .card h3 {
    color: var(--ink);
}

.cards-2 .card h3 i {
    color: var(--primary);
}

.checklist {
    color: var(--muted);
}

.checklist li::marker {
    color: var(--accent);
}

/* ---------- 14. University logo wall --------------------------------------- */
.uni-showcase {
    --ring: linear-gradient(135deg, rgba(14, 138, 124, .45), rgba(184, 128, 42, .45));
    --tile-border: rgba(14, 138, 124, .16);
    --glow: 0 20px 50px rgba(14, 138, 124, .16);
    background: var(--band);
}

.uni-showcase::after {
    background: radial-gradient(closest-side, rgba(14, 138, 124, .12), transparent 65%);
}

.uni-showcase::before {
    background: radial-gradient(closest-side, rgba(184, 128, 42, .1), transparent 65%);
}

.uni-sub {
    color: var(--muted);
}

.uni-card {
    background-color: #ffffff;
    box-shadow: 0 8px 20px rgba(20, 43, 42, .08);
}

.uni-card:hover {
    background: #ffffff;
}

.uni-btn {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: #fff;
    box-shadow: 0 12px 26px var(--glow-teal);
}

/* Centre the last logo (NIRF) when it's left dangling alone in its own
   row — the shared grid is a fixed column count, so an odd 5th item
   would otherwise sit flush left. */
.uni-showcase .uni-card:last-child {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 300px;
    margin-inline: auto;
}

/* ...except at the one width where the shared stylesheet already lays
   the grid out as 5 equal columns — there all 5 logos share one full
   row already, so leave the last card in its normal column. */
@media (min-width: 881px) and (max-width: 1100px) {
    .uni-showcase .uni-card:last-child {
        grid-column: auto;
        width: auto;
        max-width: none;
        margin-inline: 0;
    }
}

/* ---------- 15. Fees / EMI --------------------------------------------------- */
.emi {
    background: var(--band);
}

.emi p {
    color: var(--muted);
}

.tiles-3 .tile {
    background: #ffffff;
    border-color: rgba(14, 138, 124, .14);
    transition: transform .25s ease, border-color .25s ease;
}

.tiles-3 .tile h4 {
    color: var(--ink);
}

.tiles-3 .tile:hover {
    transform: translateY(-4px);
    border-color: rgba(184, 128, 42, .4);
}

.tiles-3 .big {
    color: var(--accent);
}

.note {
    color: var(--muted);
}

/* ---------- 16. Recruiters -------------------------------------------------- */
.recruiters {
    background: #ffffff;
}

/* Centre the logos as a group regardless of how many there are — the
   shared stylesheet locks this to a fixed grid (6 columns wide), which
   left a gap instead of centring on an odd/uneven count. */
.recruiters .logo-strip {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.recruiters .logo-strip img {
    filter: grayscale(1);
    opacity: .55;
}

.recruiters .logo-strip img:hover {
    filter: none;
    opacity: 1;
    transform: translateY(-3px) scale(1.06);
}

/* ---------- 17. Stats -------------------------------------------------------- */
.stats {
    background: var(--band);
}

.stat {
    background: #ffffff;
    border-color: rgba(14, 138, 124, .14);
    transition: transform .25s ease, box-shadow .25s ease;
}

.stat p {
    color: var(--muted);
}

.stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(14, 138, 124, .14);
}

.stat-circle {
    background: radial-gradient(circle, var(--glow-teal), transparent 70%);
    animation: statPulse 3.2s ease-in-out infinite;
}

@keyframes statPulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        opacity: .6;
    }

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

.stat .num,
.stat .suffix {
    color: var(--primary);
}

/* ---------- 18. Testimonials -------------------------------------------------- */
.testimonials.testimonials-v4 {
    background: #ffffff;
}

.t-card-front {
    background: var(--band);
    color: var(--ink) !important;
    border: 1px solid rgba(14, 138, 124, .16);
    box-shadow: 0 10px 26px rgba(20, 43, 42, .08);
}

.t-card-back {
    background: linear-gradient(160deg, #103a35, #0b2622);
    border: 1px solid rgba(184, 128, 42, .3);
}

.t-quote {
    color: #eaf3f0 !important;
}

.t-avatar {
    border-color: var(--primary);
}

.t-name {
    color: var(--ink);
}

.t-role {
    color: var(--muted);
}

.t-stars {
    color: var(--accent);
}

/* ---------- 19. FAQ ------------------------------------------------------------ */
.faq {
    background: var(--band);
}

/* the shared stylesheet forces `details` to a light card with !important;
   restyle those same properties to the new palette */
.faq details {
    background-color: #ffffff !important;
    color: var(--ink) !important;
    border: 1px solid rgba(14, 138, 124, .18) !important;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.faq details:hover {
    border-color: rgba(14, 138, 124, .4) !important;
    box-shadow: 0 12px 26px rgba(14, 138, 124, .1);
}

.faq details summary {
    color: var(--primary) !important;
}

.faq details summary:hover {
    color: var(--accent) !important;
}

.faq details p {
    color: var(--muted) !important;
}

/* ---------- 20. CTA strip -------------------------------------------------------- */
.cta-strip {
    background: var(--grad);
    position: relative;
    overflow: hidden;
}

.cta-strip::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .35) 45%, transparent 60%);
    transform: translateX(-120%);
    animation: ctaShine 5s ease-in-out infinite;
}

@keyframes ctaShine {

    0%,
    30% {
        transform: translateX(-120%);
    }

    60%,
    100% {
        transform: translateX(120%);
    }
}

.cta-inner h3 {
    color: #fff;
}

.cta-inner p {
    color: rgba(255, 255, 255, .88);
}

.btnstrip {
    background: #ffffff;
    color: var(--primary);
    position: relative;
    z-index: 1;
    transition: transform .2s ease, box-shadow .2s ease;
}

.btnstrip:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .2);
}

/* ---------- 21. Footer ------------------------------------------------------------ */
.site-footer,
.site-footer p,
.site-footer h4,
.site-footer a,
.site-footer i,
.copyright {
    color: var(--muted) !important;
}

.site-footer {
    background: linear-gradient(180deg, #ffffff, var(--band)) !important;
    border-top: 1px solid rgba(14, 138, 124, .16);
}

.site-footer h4 {
    color: var(--ink) !important;
    font-family: var(--font-head);
}

.footer-nav a,
.site-footer a {
    transition: color .2s ease;
}

.footer-nav a:hover,
.site-footer a:hover {
    color: var(--accent) !important;
}

.site-footer img {
    filter: none !important;
}

.footer-grid {
    display: grid !important;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr !important;
    gap: 32px 24px !important;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(14, 138, 124, .08) !important;
    display: grid;
    place-items: center;
    color: var(--primary) !important;
    font-size: 16px;
    transition: all .2s ease;
    border: 1px solid rgba(14, 138, 124, .16);
}

.footer-socials a:hover {
    background: var(--primary) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    border-color: var(--primary);
}

.footer-contact p {
    margin: 8px 0;
    display: flex;
    align-items: flex-start;
}

.footer-contact p i {
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(14, 138, 124, .16) !important;
    padding-top: 20px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    width: 100%;
}

.footer-bottom-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-bottom-links a {
    text-decoration: none;
    color: var(--muted) !important;
}

.footer-bottom-links a:hover {
    color: var(--accent) !important;
}

.footer-bottom-links .sep {
    color: rgba(14, 138, 124, .25);
}

/* Hide original full-width copyright since we use footer-bottom */
.copyright {
    display: none !important;
}

@media (max-width: 980px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
    }
}

@media (max-width: 560px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }
}

/* ---------- 22. Modal -------------------------------------------------------------- */
.modal {
    background: #ffffff;
    color: var(--ink);
    border: 1px solid rgba(14, 138, 124, .2);
    box-shadow: 0 30px 70px rgba(20, 43, 42, .25);
}

.modal input,
.modal select,
.enquire-form .form-row input,
.enquire-form .form-row select {
    background-color: var(--band);
    color: var(--ink);
    border: 1px solid rgba(14, 138, 124, .2);
}

.modal input::placeholder {
    color: var(--muted);
}

.modal input:focus,
.enquire-form .form-row input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--glow-teal);
}

.modal-close {
    color: var(--muted);
}

.enquire-form a,
.consent-text a {
    color: var(--accent);
}

.consent-text {
    color: var(--muted);
}

/* ---------- 23. Floating CTAs ------------------------------------------------------- */
.float-cta {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 14px 30px var(--glow-teal);
}

.call-float {
    background: linear-gradient(135deg, var(--primary), #0a6a5f);
    box-shadow: 0 10px 24px var(--glow-teal);
}

.mocktest-toggle {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 2px 2px 14px var(--glow-teal);
}

.mocktest-toggle:hover {
    background: linear-gradient(135deg, #0a6a5f, #96681e);
    box-shadow: 2px 4px 20px var(--glow-gold);
}

@keyframes mocktest-pulse {

    0%,
    100% {
        box-shadow: 2px 2px 14px var(--glow-teal);
    }

    50% {
        box-shadow: 2px 2px 24px var(--glow-gold);
    }
}

/* ---------- 24. Hero / Intro section v2 (photo hero — keeps a dark
   scrim for legibility, retinted to the new palette) ---------------------- */
.mba-hero2 {
    --accent: #e3b45a;
    --yellow: #e3b45a;
    --primary: #17b8a6;
    --text: #f2faf8;
    --muted: #cfe4e0;
    background-color: var(--bg-dark);
}.mba-hero2__bg img {
    filter: brightness(.76) saturate(1.1) !important;
}

.mba-hero2__overlay {
    background: radial-gradient(60rem 60rem at 20% 15%, rgba(227, 180, 90, .14), transparent 60%),
        radial-gradient(70rem 70rem at 80% 85%, rgba(23, 184, 166, .18), transparent 60%),
        linear-gradient(180deg, rgba(4, 12, 20, .35), rgba(4, 12, 20, .65)) !important;
}

.mba-hero2__title span {
    background: linear-gradient(90deg, #f4cd7c, #fff, #6fe3d4, #f4cd7c);
    background-size: 220% auto;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
}
.mba-hero2__bullets li {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
}

.mba-hero2__bullets li:hover {
    background: rgba(255, 255, 255, .16);
}

.mba-hero2__bullets i {
    color: var(--accent);
}

.mba-hero2__button {
    background: linear-gradient(90deg, var(--accent), #f4cd7c);
    color: #1c1400;
}

.mba-hero2__ribbon {
    position: fixed !important;
    right: 17px !important;
    top: 48% !important;
    transform: translateY(-50%) rotate(-90deg) translateX(50%) !important;
    transform-origin: right center !important;
    z-index: 99999 !important;
    background: linear-gradient(135deg, #17b8a6, #0d8f80) !important;
    color: #fff !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    padding: 4px 10px !important;
    border: none !important;
    border-radius: 10px 10px 0 0 !important;
    cursor: pointer !important;
    box-shadow: -2px 2px 12px rgba(13, 143, 128, 0.4) !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: background 0.3s, box-shadow 0.3s, transform 0.3s !important;
    animation: enquire-pulse 2s infinite !important;
}

.mba-hero2__ribbon:hover {
    background: linear-gradient(135deg, #109e8f, #0a7367) !important;
    box-shadow: -2px 4px 18px rgba(13, 143, 128, 0.6) !important;
    transform: translateY(-50%) rotate(-90deg) translateX(50%) translateY(-2px) !important;
}

@keyframes enquire-pulse {
    0%, 100% { box-shadow: -2px 2px 12px rgba(13, 143, 128, 0.4); }
    50%      { box-shadow: -2px 2px 22px rgba(13, 143, 128, 0.75); }
}

.mba-hero2__spark {
    background: radial-gradient(circle, #fff, #6fe3d4 60%, transparent 70%);
}

@keyframes pulseCta {

    0%,
    100% {
        box-shadow: 0 12px 24px rgba(20, 43, 42, .18);
    }

    50% {
        box-shadow: 0 18px 34px var(--glow-gold);
    }
}

/* ---------- 25. Buttons: shared magnetic hover lift ---------------------------------- */
.actions .btn,
.btn-download,
.open-enquire,
.blink-button,
.mba-hero2__button,
.uni-btn,
#loadMore,
.btnstrip {
    transition: transform .22s cubic-bezier(.2, .8, .2, 1), box-shadow .22s ease, filter .22s ease;
}

.actions .btn:hover,
.btn-download:hover,
.open-enquire:hover,
.mba-hero2__button:hover,
.uni-btn:hover {
    transform: translateY(-3px) scale(1.015);
}

/* ---------- 26. Accessibility: respect reduced-motion preference --------------------- */
@media (prefers-reduced-motion: reduce) {

    body::before,
    .blink-button,
    .mba-hero2__button,
    #loadMore,
    .uni-btn,
    .mba-hero2__spark,
    .badge.v2,
    .stat-circle,
    .cta-strip::after,
    .mocktest-toggle,
    .why-card::before,
    .section-header h2::after,
    .shine {
        animation: none !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ---------- 27. Responsive polish ------------------------------------------------------ */
@media (max-width: 640px) {
    .section-header h2 {
        padding-bottom: 10px;
    }

    .why-card::before {
        animation-duration: 8s;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: clamp(24px, 7vw, 34px);
    }
}

/* ---------- 28. Text Visibility Overrides (Contrast Fixes) ---------- */
/* Banner text visibility on dark background */
.banner-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5) !important;
}
.feature-item {
    color: #ffffff !important;
}

/* Section titles on light background */
.section-header h2,
.whyheading,
.spec-v2-title,
.highlights-v2 h2,
.testimonials.testimonials-v4 .section-header h2,
.faq .section-header h2,
.emi h2,
.steps h2,
.uni-title {
    color: var(--ink) !important; /* deep teal-charcoal */
}

/* Sub-text descriptions on light background */
.section-header p,
.uni-sub,
.spec-v2-note,
.emi p,
.steps p {
    color: #374151 !important; /* highly visible slate-700 */
}

/* Stats counter card text visibility */
.stat .num {
    color: var(--primary) !important;
    opacity: 1 !important;
    display: inline-block !important;
}
.stat p {
    color: #4b5563 !important; /* slate-600 */
    opacity: 1 !important;
    display: block !important;
}

/* Ensure the Enquire Now button is shown on mobile just like the Mock Test button */
@media (max-width: 860px) {
    .mba-hero2__ribbon {
        display: block !important;
    }
}
