:root {
    --primary: #116064;
    --primary-dark: #0b4547;
    --primary-light: #1a8a8f;
    --accent: #f4a61d;
    --accent-light: #fde8b8;
    --bg: #f7fafa;
    --white: #ffffff;
    --text: #1a2e2f;
    --text-muted: #5a7475;
    --border: #d4e8e9;
    --radius: 14px;
    --radius-lg: 20px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden !important; 
}

p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    
}

/* ── TOPBAR ── */
.topbar {
    background: var(--primary-dark);
    color: #cde8e9;
    font-size: 0.75rem;
    padding: 6px 0;
}

.topbar a {
    color: #cde8e9;
    text-decoration: none;
    transition: color .2s;
}

.topbar a:hover {
    color: var(--accent);
}

.topbar .sep {
    margin: 0 10px;
    opacity: .4;
}

/* ── NAVBAR ── */
.navbar {
    background: var(--white) !important;
    box-shadow: 0 2px 16px rgba(17, 96, 100, .10) !important;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    text-decoration: none;
}


.brand-text {
    line-height: 1.1;
}

.brand-text .name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -.3px;
}

.brand-text .tagline {
    font-size: 0.62rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: .4px;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text) !important;
    padding: 10px 14px !important;
    letter-spacing: .2px;
    position: relative;
    transition: color .2s;
    margin: 14px 5px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transition: transform .25s;
    margin: 0;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 8px 32px rgba(17, 96, 100, .13);
    border-radius: 10px;
    padding: 8px;
    min-width: 230px;
    margin-top: 0;
}

.dropdown-item {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    border-radius: 6px;
    padding: 8px 14px;
    transition: background .2s, color .2s;
}

.dropdown-item:hover {
    background: #e8f4f4;
    color: var(--primary);
}

.btn-cta {
    background: var(--accent);
    color: var(--white);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 9px 20px;
    border-radius: 8px;
    border: none;
    letter-spacing: .2px;
    transition: transform .15s, box-shadow .15s;
    text-decoration: none;
} 

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(244, 166, 29, .4);
    color: var(--text);
}
.btn-cta1 {
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 9px 20px;
    border-radius: 8px;
    border: none;
    letter-spacing: .2px;
    transition: transform .15s, box-shadow .15s;
    text-decoration: none;
}

.btn-cta1:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(244, 166, 29, .4);
    color: var(--white);
}

/* ── TICKER ── */
.ticker-wrap {
    background: var(--primary);
    color: var(--white);
    overflow: hidden;
    height: 38px;
    display: flex;
    align-items: center;
}

.ticker-label {
    background: var(--accent);
    color: var(--text);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    letter-spacing: .6px;
    text-transform: uppercase;
    flex-shrink: 0;
    white-space: nowrap;
}

.ticker-track {
    display: flex;
    animation: ticker 28s linear infinite;
    white-space: nowrap;
}

.ticker-track span {
    font-size: 0.76rem;
    font-weight: 500;
    padding: 0 40px 0 0;
}

.ticker-track span i {
    margin-right: 7px;
    color: var(--accent);
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

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

/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    padding: 72px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.73rem;
    font-weight: 600;
    color: var(--accent-light);
    letter-spacing: .4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-badge .dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {

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

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

.hero h1 {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -.5px;
    margin-bottom: 16px;
}

.hero h1 .accent-word {
    color: var(--accent);
}

.hero p.lead {
    font-size: clamp(.9rem, 1.5vw, 1.05rem);
    font-weight: 400;
    color: rgba(255, 255, 255, .82);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 32px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.btn-hero-primary {
    background: var(--accent);
    color: var(--text);
    font-weight: 700;
    font-size: .88rem;
    padding: 13px 30px;
    border-radius: 9px;
    border: none;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(244, 166, 29, .45);
    color: var(--text);
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: .88rem;
    padding: 12px 30px;
    border-radius: 9px;
    border: 1.5px solid rgba(255, 255, 255, .4);
    text-decoration: none;
    transition: background .2s, border-color .2s;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .7);
    color: var(--white);
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-stat {}

.hero-stat .num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.hero-stat .lbl {
    font-size: .72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .65);
    letter-spacing: .3px;
}

/* right panel */
.hero-card {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 20px;
    padding: 28px;
    color: var(--white);
}

.hero-card h4 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--accent);
    letter-spacing: .2px;
}

.course-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    padding: 11px 16px;
    margin-bottom: 10px;
    transition: background .2s;
    text-decoration: none;
    color: var(--white);
}

.course-pill:hover {
    background: rgba(255, 255, 255, .16);
    color: var(--white);
}

.course-pill .icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: var(--white);
    flex-shrink: 0;
}

.course-pill .info .title {
    font-size: .83rem;
    font-weight: 700;
}

.course-pill .info .sub {
    font-size: .7rem;
    opacity: .65;
}

.course-pill .arrow {
    margin-left: auto;
    opacity: .5;
    font-size: .8rem;
}

/* ── PUNCHES ── */
.punches {
    background: var(--white);
    padding: 56px 0;
}

.punches .section-label {
    font-size: .72rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.punches h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 40px;
    letter-spacing: -.3px;
    max-width: 700px;
}

.punch-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 20px;
    height: 100%;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.punch-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(17, 96, 100, .10);
    border-color: var(--primary-light);
}

.punch-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 1.1rem;
}

.punch-card .text .title {
    font-size: .88rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text);
}

.punch-card .text .sub {
    font-size: .8rem; 
    color: var(--text-muted); 
    margin-top: 4px;
}

/* ── PROGRAMS ── */
.programs {
    background: var(--bg);
    padding: 60px 0;
}

.section-header {
    margin-bottom: 40px;
}

.section-header .label {
    font-size: .72rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.3px;
}

.section-header p {
    font-size: .9rem;
    color: var(--text-muted);
    margin-top: 8px;
    /*max-width: 560px;*/
}

.prog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
    color: var(--text);
    display: block;
}

.prog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.prog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(17, 96, 100, .12);
    color: var(--text);
}

.prog-card .degree {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 4px;
}

.prog-card .full-name {
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.prog-card .desc {
    font-size: .82rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.prog-card .features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.prog-card .features li {
    font-size: .78rem;
    font-weight: 500;
    color: var(--text);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prog-card .features li i {
    color: var(--primary);
    font-size: .75rem;
}

.prog-link {
    font-size: .8rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ── WHY ── */
.why {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.why::after {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 400px;
    height: 400px;
    border: 60px solid rgba(255, 255, 255, .04);
    border-radius: 50%;
}

.why .section-header .label {
    color: var(--accent);
}

.why .section-header h2 {
    color: var(--white);
}

.why .section-header p {
    color: rgba(255, 255, 255, .7);
}

.why-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    padding: 24px 20px;
    height: 100%;
    color: var(--white);
    transition: background .2s;
}

.why-card:hover {
    background: rgba(255, 255, 255, .13);
}

.why-card .icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: rgba(244, 166, 29, .2);
    border: 1px solid rgba(244, 166, 29, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 14px;
}

.why-card h5 {
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-card p {
    font-size: .8rem;
    line-height: 1.6;
    margin: 0;
}

/* ── SERVICES ── */
.services {
    background: var(--white);
    padding: 60px 0;
}

.svc-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 20px;
    height: 100%;
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
    color: var(--text);
    display: block;
}

.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(17, 96, 100, .09);
    color: var(--text);
}

.svc-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #e8f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 14px;
}

.svc-card h5 {
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.svc-card p {
    font-size: .8rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

.svc-card .svc-link {
    font-size: .77rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 12px;
}

/* ── CASHBACK BANNER ── */
.cashback {
    background: linear-gradient(90deg, var(--accent) 0%, #f7be46 100%);
    padding: 40px 0;
}

.cashback h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -.3px;
}

.cashback p {
    font-size: .88rem;
    color: rgba(26, 46, 47, .75);
    margin: 0;
}

.btn-cashback {
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: .88rem;
    padding: 13px 30px;
    border-radius: 9px;
    border: none;
    text-decoration: none;
    transition: background .2s, transform .15s;
    white-space: nowrap;
}

.btn-cashback:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: var(--white);
}

/* ── TESTIMONIALS ── */
.testimonials {
    background: var(--bg);
    padding: 60px 0;
}

.testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
}

.testi-card .stars {
    color: var(--accent);
    font-size: .85rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testi-card blockquote {
    font-size: .83rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-style: italic;
    margin: 0 0 16px;
}

.testi-card .author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testi-card .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    color: var(--white);
    flex-shrink: 0;
}

.testi-card .author .name {
    font-size: .82rem;
    font-weight: 700;
}

.testi-card .author .course {
    font-size: .72rem;
    color: var(--text-muted);
}

/* ── CONTACT STRIP ── */
.contact-strip {
    background: var(--primary-dark);
    padding: 32px 0;
}

.contact-strip .label {
    font-size: .7rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-strip .num {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-strip .num i {
    color: #25d366;
}

.contact-strip .region {
    font-size: .75rem;
    color: rgba(255, 255, 255, .55);
}

.contact-divider {
    width: 1px;
    background: rgba(255, 255, 255, .12);
    margin: 0 24px;
}

.contact-strip .email-box a {
    font-size: .8rem;
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    display: block;
    line-height: 1.8;
}

.contact-strip .email-box a:hover {
    color: var(--accent);
}

/* ── FOOTER ── */
footer {
    background: #0a3435;
    color: rgba(255, 255, 255, .75);
    padding: 52px 0 0;
}

.footer-brand .name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.2px;
}

.footer-brand p {
    font-size: .8rem;
    line-height: 1.7;
    margin-top: 10px;
    color: rgba(255, 255, 255, .55);
}

.footer-col h6 {
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    font-size: .8rem;
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    transition: color .2s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 18px 0;
    margin-top: 40px;
}

.footer-bottom p {
    font-size: .75rem;
    color: rgba(255, 255, 255, .4);
    margin: 0;
}

.footer-wap {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.footer-wap a {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: .75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background .2s;
}

.footer-wap a:hover {
    background: rgba(255, 255, 255, .14);
    color: var(--white);
}

.footer-wap a i {
    color: #25d366;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(37, 211, 102, .45);
    text-decoration: none;
    animation: wabounce 2.5s ease-in-out infinite;
}

.wa-float i {
    font-size: 1.5rem;
    color: #fff;
}

@keyframes wabounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* responsive */
@media (max-width: 768px) {
    .topbar .d-none-mobile {
        display: none !important;
    }

    .hero {
        padding: 44px 0 36px;
    }

    .hero-stats {
        gap: 18px;
    }

    .contact-divider {
        display: none;
    }
}


/* PAGE HERO */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    padding: 52px 0 44px;
    position: relative;
    overflow: hidden;
}

/*.page-hero::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    background: radial-gradient(circle at 80% 30%, rgba(255, 255, 255, .06) 0%, transparent 50%);*/
/*}*/

.page-hero .breadcrumb-item {
    font-size: .75rem;
    color: rgba(255, 255, 255, .55);
}

.page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
}

.page-hero .breadcrumb-item a:hover {
    color: var(--accent);
}

.page-hero .breadcrumb-item.active {
    color: rgba(255, 255, 255, .9);
}

.page-hero h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.4px;
    margin: 12px 0 10px;
}

.page-hero p {
    font-size: .9rem;
    color: rgba(255, 255, 255, .75);
    max-width: 520px;
    line-height: 1.7;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: .7rem;
    font-weight: 600;
    color: var(--accent-light);
    letter-spacing: .4px;
    text-transform: uppercase;
}

.hero-badge .dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {

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

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

/* WEBINAR SECTION */
.webinar-section {
    padding: 52px 0 72px;
}

/* TOOLBAR */
.section-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.section-label-group .lbl {
    font-size: .72rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.section-label-group h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.3px;
}

.btn-add-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: .82rem;
    font-family: 'Poppins', sans-serif;
    padding: 11px 22px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .15s;
}

.btn-add-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 96, 100, .25);
}

/* SPLIT CARD */
.webinar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    transition: transform .25s, box-shadow .25s;
    height: 100%;
}

/* LEFT pane */
.c-left {
    flex: 1;
    padding: 20px 20px 18px 18px;
    display: flex;
    flex-direction: column;
    min-width: 0;
    border-right: 1px solid var(--border);
    width: 65%;
}

/* RIGHT pane */
.c-right {
    width: 35%;
    flex-shrink: 0;
    background: linear-gradient(160deg, #f2fbfb 0%, #e6f5f5 100%);
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Status badge - upcoming only */
.c-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    width: fit-content;
    background: #e8f4f4;
    color: var(--primary);
}

.c-title {
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text);
    margin-bottom: 8px;
}

.c-desc {
    font-size: .77rem;
    line-height: 1.65;
    color: var(--text-muted);
    flex: 1;
    /*display: -webkit-box;*/
    /*-webkit-line-clamp: 3; */
    /*-webkit-box-orient: vertical; */
    overflow: hidden; 
    margin-bottom: 20px; 
} 
 
.c-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
}

.c-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .72rem;
    font-weight: 500;
    color: var(--text-muted);
}

.c-meta-item i {
    color: var(--primary);
    font-size: .74rem;
}

.c-aud-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: .7px;
    text-transform: capitalize;
    margin: 5px 0 15px;
}

.c-aud-text {
    font-size: .72rem;
    color: var(--text-muted);
}

/* Right form */
.rp-title {
    font-size: .75rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rp-input {
    width: 100%;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: .74rem;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    margin-bottom: 8px;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    display: block;
}

.rp-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(17, 96, 100, .1);
}

.rp-input::placeholder {
    color: #b2c8c9;
    font-size: .71rem;
}

.btn-register {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: .75rem;
    font-family: 'Poppins', sans-serif;
    padding: 8px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-register:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-register.loading {
    opacity: .7;
    cursor: not-allowed;
}

.rp-error {
    color: #c53030;
    font-size: .68rem;
    margin-top: 4px;
    font-weight: 500;
    display: none;
}

.rp-success {
    background: #e8f4f4;
    border: 1px solid var(--primary);
    border-radius: 9px;
    padding: 10px 8px;
    text-align: center;
    font-size: .73rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.5;
}

.rp-success i {
    font-size: 1rem;
    display: block;
    margin-bottom: 4px;
}

/* ADMIN OVERLAY */
.admin-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 1050;
    backdrop-filter: blur(3px);
    align-items: center;
    justify-content: center;
}

.admin-overlay.open {
    display: flex;
}

.admin-panel {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 28px;
    width: 100%;
    max-width: 540px;
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .2);
}

.admin-panel h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}

.admin-panel .sub {
    font-size: .78rem;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.admin-panel label {
    font-size: .76rem;
    font-weight: 600;
    color: var(--text);
    display: block;
    margin-bottom: 5px;
}

.admin-panel input,
.admin-panel textarea,
.admin-panel select {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 9px;
    padding: 10px 13px;
    font-size: .82rem;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--bg);
    margin-bottom: 16px;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}

.admin-panel textarea {
    resize: vertical;
    min-height: 88px;
}

.admin-panel input:focus,
.admin-panel textarea:focus,
.admin-panel select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(17, 96, 100, .1);
}

.btn-publish {
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: .85rem;
    font-family: 'Poppins', sans-serif;
    padding: 12px 24px;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: background .2s;
}

.btn-publish:hover {
    background: var(--primary-dark);
}

.btn-close-panel {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--text-muted);
    cursor: pointer;
    float: right;
    line-height: 1;
    padding: 0;
}

.admin-success {
    display: none;
    background: #e8f4f4;
    border: 1px solid var(--primary);
    border-radius: 8px;
    padding: 11px;
    text-align: center;
    font-size: .8rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 12px;
}

/* EMPTY STATE */
.empty-state {
    text-align: center;
    padding: 64px 24px;
    color: var(--text-muted);
    background: white;
    border-radius: 20px;
}

.empty-state i {
    font-size: 3rem;
    color: var(--border);
    margin-bottom: 16px;
    display: block;
}

.empty-state h5 {
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

/* WA FLOAT */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(37, 211, 102, .45);
    text-decoration: none;
    animation: wabounce 2.5s ease-in-out infinite;
}

.wa-float i {
    font-size: 1.5rem;
    color: #fff;
}

@keyframes wabounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

#emptyState {
    display: none;
}

.audience-badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.audience-badge {
    background: rgba(17, 96, 100, 0.12);
    color: var(--primary);
    font-size: .55rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.3px;
}

.audience-badge i {
    font-size: .7rem;
}

.brand-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 1024px) and (max-width: 1299px) {
    .navbar-nav .nav-link {
        padding: 5px !important;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    max-width: 230px;
    height: auto;
    object-fit: contain; 
    margin-bottom: 15px; 
}

/* ========== SECTION 1: LEFT CONTENT + RIGHT TWO CARDS ========== */
.intro-section {
    padding: 60px 0;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.feature-mini-card {
    background: var(--white);
    border-radius: 20px;
    padding: 28px 22px;
    border: 1px solid var(--border);
    transition: transform 0.25s, box-shadow 0.25s;
}

.feature-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(17, 96, 100, 0.1);
}

.feature-mini-card .icon-circle {
    width: 55px;
    height: 55px;
    background: #e8f4f4;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.feature-mini-card .icon-circle i {
    font-size: 1.6rem;
    color: var(--primary);
}

.feature-mini-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.feature-mini-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ========== SECTION 2: COUNTER SECTION (DARK BG) ========== */
.counter-section {
    background: #0a3435;
    padding: 65px 0;
    color: white;
}

.counter-box {
    text-align: center;
}

.counter-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
}

.counter-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-top: 8px;
}

/* ========== SECTION 3: MISSION & VISION ========== */
.mission-vision {
    padding: 70px 0;
    background: var(--white);
}

.mv-card {
    background: var(--bg);
    border-radius: 28px;
    padding: 40px 32px;
    height: 100%;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.mv-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-4px);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.mv-icon i {
    font-size: 2rem;
    color: white;
}

.mv-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

.mv-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* ========== SECTION 2: COUNTER SECTION (DARK BG) ========== */
.counter-section {
    background: #0a3435;
    padding: 65px 0;
    color: white;
}

.counter-box {
    text-align: center;
}

.counter-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
}

.counter-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-top: 8px;
}

/* ========== SECTION 3: MISSION & VISION ========== */
.mission-vision {
    padding: 70px 0;
    background: var(--white);
}

.mv-card {
    background: var(--bg);
    border-radius: 28px;
    padding: 40px 32px;
    height: 100%;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.mv-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-4px);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.mv-icon i {
    font-size: 2rem;
    color: white;
}

.mv-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

.mv-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.9rem;
}


/* ========== SECTION 3: MISSION & VISION ========== */
.mission-vision {
    padding: 70px 0;
    background: var(--white);
}

.mv-card {
    background: var(--bg);
    border-radius: 28px;
    padding: 40px 32px;
    height: 100%;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.mv-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-4px);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.mv-icon i {
    font-size: 2rem;
    color: white;
}

.mv-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

.mv-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* ========== SECTION 4: WHY CHOOSE US ========== */
.why-choose {
    padding: 60px 0;
    background: linear-gradient(120deg, #eef5f5 0%, #f7fafa 100%);
}

.section-badge {
    display: inline-block;
    background: var(--accent-light);
    color: var(--primary-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 30px;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

.section-sub {
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 48px;
}

.feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(17, 96, 100, 0.08);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 65px;
    height: 65px;
    background: #e8f4f4;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========== SECTION 4: WHY CHOOSE US ========== */
.why-choose {
    padding: 60px 0;
    background: linear-gradient(120deg, #eef5f5 0%, #f7fafa 100%);
}

.section-badge {
    display: inline-block;
    background: var(--accent-light);
    color: var(--primary-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 30px;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

.section-sub {
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 48px;
}

.feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(17, 96, 100, 0.08);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 65px;
    height: 65px;
    background: #e8f4f4;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ═══════════════════════════
HERO
═══════════════════════════ */
.mba-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
    padding: 64px 0 60px;
    position: relative;
    overflow: hidden;
}

.mba-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 20%, rgba(255, 255, 255, .07) 0%, transparent 45%),
        radial-gradient(circle at 10% 85%, rgba(244, 166, 29, .07) 0%, transparent 40%);
}

.mba-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: .71rem;
    font-weight: 700;
    color: var(--accent-light);
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.mba-hero-label .mba-dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: mbaPulse 1.6s ease-in-out infinite;
}

@keyframes mbaPulse {

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

    50% {
        opacity: .45;
        transform: scale(.65);
    }
}

.mba-hero-title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -.5px;
    margin-bottom: 16px;
}

.mba-hero-title span {
    color: var(--accent);
}

.mba-hero-desc {
    font-size: .95rem;
    color: rgba(255, 255, 255, .82);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 520px;
}

.mba-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.mba-hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 8px;
    padding: 7px 14px;
    font-size: .77rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
}

.mba-hero-feature i {
    color: var(--accent);
    font-size: .85rem;
}

.mba-hero-breadcrumb {
    font-size: .75rem;
    margin-bottom: 14px;
}

.mba-hero-breadcrumb a {
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
}

.mba-hero-breadcrumb a:hover {
    color: var(--accent);
}

.mba-hero-breadcrumb span {
    color: rgba(255, 255, 255, .9);
    margin: 0 6px;
}

/* Hero form card */
.mba-hero-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, .18);
}

.mba-form-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.mba-form-sub {
    font-size: .75rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.mba-field {
    margin-bottom: 14px;
}

.mba-field input,
.mba-field select,
.mba-field textarea {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 10px 13px;
    font-size: .8rem;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    background: var(--bg);
}

.mba-field input:focus,
.mba-field select:focus,
.mba-field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(17, 96, 100, .1);
}

.mba-field input::placeholder,
.mba-field textarea::placeholder {
    color: #b0c4c5;
}

.mba-field textarea {
    resize: none;
    min-height: 80px;
}

.mba-form-btn {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: .85rem;
    font-family: 'Poppins', sans-serif;
    padding: 12px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background .2s, transform .15s;
}

.mba-form-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ═══════════════════════════
SECTION UTILITIES
═══════════════════════════ */
.mba-sec {
    padding: 60px 0;
}

.mba-sec-white {
    background: var(--white);
}

.mba-sec-bg {
    background: var(--bg);
}

.mba-sec-dark {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.mba-sec-tint {
    background: linear-gradient(120deg, #eef5f5 0%, var(--bg) 100%);
}

.mba-sec-header {
    margin-bottom: 40px;
}

.mba-sec-header.center {
    text-align: center;
}

.mba-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .68rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1.4px;
    text-transform: uppercase;
    background: #e8f4f4;
    padding: 5px 13px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.mba-sec-dark .mba-label {
    background: rgba(244, 166, 29, .18);
    color: var(--accent);
}

.mba-h2 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.35px;
    margin-bottom: 10px;
}

.mba-h2 span {
    color: var(--primary);
}

.mba-sec-dark .mba-h2 {
    color: var(--white);
}

.mba-sec-dark .mba-h2 span {
    color: var(--accent);
}

.mba-sub {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 680px;
}

.center .mba-sub {
    margin-left: auto;
    margin-right: auto;
}

.mba-sec-dark .mba-sub {
    color: rgba(255, 255, 255, .7);
}

/* ═══════════════════════════
HIGHLIGHTS CARDS
═══════════════════════════ */
.mba-highlight-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 22px;
    height: 100%;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform .22s, box-shadow .22s, border-color .22s;
}

.mba-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(17, 96, 100, .10);
    border-color: var(--primary-light);
}

.mba-highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 1.15rem;
}

.mba-highlight-card h3 {
    font-size: .9rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 8px;
    color: var(--text);
}

.mba-highlight-card p {
    font-size: .8rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ═══════════════════════════
COMPARISON TABLE
═══════════════════════════ */
.mba-compare-wrap {
    overflow-x: auto;
}

.mba-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .82rem;
}

.mba-compare-table thead tr {
    background: var(--primary-dark);
}

.mba-compare-table th {
    padding: 16px 18px;
    color: var(--white);
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .3px;
    text-align: left;
}

.mba-compare-table th.mba-col-enroll {
    background: var(--primary);
}

.mba-compare-table th.mba-col-other {
    background: var(--primary-dark);
}

.mba-compare-table th .mba-col-title {
    font-size: .88rem;
    font-weight: 800;
}

.mba-compare-table tbody tr {
    border-bottom: 1px solid var(--border);
}

.mba-compare-table tbody tr:nth-child(even) {
    background: #f2fbfb;
}

.mba-compare-table td {
    padding: 14px 18px;
    vertical-align: top;
    line-height: 1.55;
    color: var(--text-muted);
}

.mba-compare-table td.mba-param {
    font-weight: 700;
    color: var(--text);
    font-size: .85rem;
    white-space: nowrap;
}

.mba-compare-table td.mba-param i {
    color: var(--primary);
    margin-right: 6px;
}

.mba-compare-table td.mba-enroll-cell {
    color: var(--text);
}

.mba-tick {
    color: #1a9e6a;
    margin-right: 5px;
}

.mba-cross {
    color: #e53e3e;
    margin-right: 5px;
}

.mba-bold {
    font-weight: 700;
    color: var(--primary);
}


/* ═══════════════════════════
SPECIALISATION CARDS
═══════════════════════════ */
.mba-spec-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 22px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform .22s, box-shadow .22s;
}

.mba-spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.mba-spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(17, 96, 100, .11);
}

.mba-spec-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: #e0f0f0;
    line-height: 1;
    margin-bottom: 8px;
}

.mba-spec-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.mba-spec-card p {
    font-size: .8rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.mba-spec-icon {
    font-size: 1.8rem;
    color: #d4e8e9;
    position: absolute;
    bottom: 16px;
    right: 18px;
}

/* ═══════════════════════════
STATS GRID
═══════════════════════════ */
.mba-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.mba-stat-box {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    padding: 28px 16px;
    text-align: center;
}

.mba-stat-num {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
}

.mba-stat-lbl {
    font-size: .76rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .7);
    letter-spacing: .4px;
}

@media (max-width: 767px) {
    .mba-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ═══════════════════════════
HOW IT WORKS – STEPS
═══════════════════════════ */
.mba-step-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 22px;
    height: 100%;
    position: relative;
    text-align: center;
    transition: transform .22s, box-shadow .22s;
}

.mba-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(17, 96, 100, .10);
}

.mba-step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.mba-step-card h3 {
    font-size: .9rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
}

.mba-step-card p {
    font-size: .8rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

.mba-steps-connector {
    position: relative;
}

.mba-steps-connector::after {
    content: '';
    display: none;
}

/* ═══════════════════════════
TESTIMONIALS
═══════════════════════════ */
.mba-testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    height: 100%;
}

.mba-testi-quote {
    font-size: 1.8rem;
    color: #d4e8e9;
    line-height: 1;
    margin-bottom: 10px;
}

.mba-testi-stars {
    color: var(--accent);
    font-size: .82rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.mba-testi-text {
    font-size: .8rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 18px;
}

.mba-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mba-testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .9rem;
    color: var(--white);
    flex-shrink: 0;
}

.mba-testi-name {
    font-size: .82rem;
    font-weight: 800;
}

.mba-testi-role {
    font-size: .72rem;
    color: var(--text-muted);
}

/* ═══════════════════════════
FAQ ACCORDION
═══════════════════════════ */
.mba-faq .accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.mba-faq .accordion-button {
    font-size: .85rem;
    font-weight: 700;
    color: var(--text);
    background: var(--white);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mba-faq .accordion-button:not(.collapsed) {
    background: #e8f4f4;
    color: var(--primary);
    box-shadow: none;
}

.mba-faq .accordion-button::after {
    filter: none;
}

.mba-faq .accordion-button:focus {
    box-shadow: none;
}

.mba-faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #e8f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: .8rem;
}

.accordion-button:not(.collapsed) .mba-faq-icon {
    background: var(--primary);
    color: var(--white);
}

.mba-faq .accordion-body {
    font-size: .82rem;
    color: var(--text);
    line-height: 1.75;
    padding: 18px 20px;
}

.mba-faq .accordion-body ul {
    padding-left: 18px;
    margin-top: 8px;
}

.mba-faq .accordion-body li {
    margin-bottom: 6px;
}

.mba-badge-info {
    display: inline-block;
    background: #e8f4f4;
    color: var(--primary);
    font-size: .73rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    margin-top: 8px;
}

.mba-fee {
    color: var(--primary);
    font-weight: 800;
}

/* ═══════ SECTION UTILITIES ═══════ */
.dba-sec {
    padding: 64px 0;
}

.dba-white {
    background: var(--white);
}

.dba-bg {
    background: var(--bg);
}

.dba-dark {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.dba-tint {
    background: linear-gradient(120deg, #eef5f5 0%, var(--bg) 100%);
}

.dba-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .68rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1.3px;
    text-transform: uppercase;
    background: #e8f4f4;
    padding: 5px 12px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.dba-chip-before {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    height: 100%;
}

.dba-dark .dba-chip {
    background: rgba(244, 166, 29, .15);
    color: var(--accent);
}

.dba-h2 {
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.35px;
    line-height: 1.25;
}

.dba-h2 span {
    color: var(--primary);
}

.dba-dark .dba-h2 {
    color: var(--white);
}

.dba-dark .dba-h2 span {
    color: var(--accent);
}

.dba-para {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 700px;
}

.dba-dark .dba-para {
    color: rgba(255, 255, 255, .7);
}

/* ═══════ WHO SHOULD APPLY — horizontal track cards ═══════ */
.dba-track-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform .22s, box-shadow .22s;
}

.dba-track-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), var(--primary-light));
}

.dba-track-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(17, 96, 100, .10);
}

.dba-track-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-light);
    color: #a0640a;
    font-size: .65rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
    width: fit-content;
}

.dba-track-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 14px;
}

.dba-track-card h3 {
    font-size: .92rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text);
}

.dba-track-card p {
    font-size: .77rem;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 14px;
}

.dba-track-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dba-track-list li {
    font-size: .75rem;
    font-weight: 500;
    color: var(--text);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 7px;
}

.dba-track-list li i {
    color: var(--primary);
    font-size: .75rem;
}

/* ═══════ PROGRAMME CARDS — 4-col grid ═══════ */
.dba-prog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .22s, box-shadow .22s;
}

.dba-prog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(17, 96, 100, .11);
}

.dba-prog-head {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 20px 20px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.dba-prog-head-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--white);
    flex-shrink: 0;
}

.dba-prog-badge {
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
    background: rgba(244, 166, 29, .25);
    color: var(--accent-light);
    padding: 2px 8px;
    border-radius: 12px;
    margin-bottom: 3px;
    display: inline-block;
}

.dba-prog-cat {
    font-size: .72rem;
    color: rgba(255, 255, 255, .65);
}

.dba-prog-body {
    padding: 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dba-prog-title {
    font-size: .86rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.4;
}

.dba-prog-desc {
    font-size: .76rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 12px;
}

.dba-prog-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.dba-prog-chip {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 3px 8px;
    font-size: .68rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.dba-prog-chip i {
    color: var(--primary);
    font-size: .65rem;
}

.dba-prog-fee-wrap {
    display: flex;
    align-items: baseline;
    gap: 6px;
    background: #f0fafa;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 0;
}

.dba-prog-fee-lbl {
    font-size: .65rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.dba-prog-fee {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--primary);
}

.dba-prog-foot {
    padding: 14px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.dba-enq-btn {
    background: var(--primary);
    color: var(--white);
    font-size: .76rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    padding: 8px 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: background .2s;
}

.dba-enq-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.dba-know-link {
    font-size: .75rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap .2s;
}

.dba-know-link:hover {
    gap: 8px;
    color: var(--primary);
}

.dba-view-all {
    text-align: center;
    margin-top: 36px;
}

.dba-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
    font-size: .84rem;
    font-family: 'Poppins', sans-serif;
    padding: 11px 28px;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.dba-view-all-btn:hover {
    background: var(--primary);
    color: var(--white);
}

/* ═══════ OUTCOMES — icon + text horizontal rows ═══════ */
.dba-outcome-row {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.dba-outcome-row:hover {
    transform: translateX(6px);
    box-shadow: 0 6px 24px rgba(17, 96, 100, .08);
    border-color: var(--primary-light);
}

.dba-outcome-icon {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: #e8f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.dba-outcome-row h5 {
    font-size: .85rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

/* ═══════ STATS ═══════ */
.dba-stats-band {
    background: var(--primary-dark);
    padding: 52px 0;
}

.dba-stat-item {
    text-align: center;
    padding: 20px 16px;
}

.dba-stat-num {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
}

.dba-stat-lab {
    font-size: .75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .5px;
    text-transform: uppercase;
}

/* ═══════ COMPARE TABLE — card style ═══════ */
.dba-compare-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.dba-compare-head {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    background: var(--primary-dark);
}

.dba-compare-head-cell {
    padding: 16px 20px;
    font-size: .78rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: .3px;
}

.dba-compare-head-cell.dba {
    background: var(--primary);
}

.dba-compare-head-cell .dba-col-name {
    font-size: .9rem;
    font-weight: 900;
    margin-bottom: 2px;
}

.dba-compare-row {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    border-top: 1px solid var(--border);
}

.dba-compare-row:nth-child(even) {
    background: #f9fdfd;
}

.dba-compare-cell {
    padding: 14px 20px;
    font-size: .8rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.dba-compare-cell.param {
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: .78rem;
}

.dba-compare-cell.param i {
    color: var(--primary);
    margin-top: 2px;
}

.dba-compare-cell.dba-col {
    color: var(--text);
}

.dba-tick {
    color: #1a9e6a;
    margin-right: 4px;
}

.dba-cross {
    color: #e53e3e;
    margin-right: 4px;
}

.dba-hl {
    font-weight: 700;
    color: var(--primary);
}

.dba-grey {
    color: #a0aec0;
    font-weight: 500;
}

@media(max-width:767px) {

    .dba-compare-head,
    .dba-compare-row {
        grid-template-columns: 1fr;
    }

    .dba-compare-cell.param {
        background: #f0fafa;
        font-weight: 800;
    }
}

/* ═══════ RESEARCH FOCUS — masonry-style ═══════ */
.dba-research-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    height: 100%;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.dba-research-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(17, 96, 100, .09);
    border-color: var(--primary-light);
}

.dba-research-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.dba-research-card h4 {
    font-size: .9rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 7px;
}

.dba-research-card p {
    font-size: .8rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

.dba-flex-note {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: var(--radius);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.dba-flex-note h5 {
    font-size: .95rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 5px;
}

.dba-flex-note p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.65;
    margin: 0;
    max-width: 620px;
}

.dba-flex-note-icon {
    font-size: 2.2rem;
    color: var(--accent);
    flex-shrink: 0;
}

.dba-outline-btn {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .4);
    color: var(--white);
    font-weight: 700;
    font-size: .78rem;
    font-family: 'Poppins', sans-serif;
    padding: 9px 20px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s;
    white-space: nowrap;
}

.dba-outline-btn:hover {
    background: rgba(255, 255, 255, .1);
    color: var(--white);
}

.dba-subject-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.dba-subject-chip {
    background: #e8f4f4;
    color: var(--primary);
    font-size: .72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 7px;
}

/* ═══════ HOW TO APPLY — vertical timeline ═══════ */
.dba-timeline {
    position: relative;
    padding-left: 0;
}

.dba-tl-item {
    display: flex;
    gap: 20px;
    /*margin-bottom: 24px;*/
    position: relative;
}

.dba-tl-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    flex-shrink: 0; 
}

.dba-tl-num {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: .88rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
}

.dba-tl-line {
    width: 2px;
    flex: 1;
    background: var(--border);
    /*margin-top: 4px;*/
    min-height: 30px;
}

.dba-tl-item:last-child .dba-tl-line {
    display: none;
}

.dba-tl-content {
    padding-top: 10px;
}

.dba-tl-content h5 {
    font-size: .9rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 5px;
}

.dba-tl-content p {
    font-size: .8rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ═══════ RESUME VALUE — 2-col grid ═══════ */
.dba-val-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 18px;
    text-align: center;
    height: 100%;
    transition: transform .2s, box-shadow .2s;
}

.dba-val-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(17, 96, 100, .09);
}

.dba-val-icon {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.dba-val-card h6 {
    font-size: .9rem; 
    font-weight: 800; 
    margin-bottom: 7px; 
}

.dba-val-card p {
    font-size: .8rem; 
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ═══════ TESTIMONIALS ═══════ */
.dba-testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.dba-testi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.dba-testi-quote {
    font-size: 2.5rem;
    color: #d4e8e9;
    line-height: 1;
    margin-bottom: 10px;
}

.dba-testi-stars {
    color: var(--accent);
    font-size: .82rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.dba-testi-text {
    font-size: .8rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 18px;
}

.dba-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.dba-testi-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--white);
    font-size: .9rem;
    flex-shrink: 0;
}

.dba-testi-name {
    font-size: .82rem;
    font-weight: 800;
}

.dba-testi-role {
    font-size: .71rem;
    color: var(--text-muted);
}

/* ═══════ FAQ ═══════ */
.dba-faq .accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.dba-faq .accordion-button {
    font-size: .84rem;
    font-weight: 700;
    color: var(--text);
    background: var(--white);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dba-faq .accordion-button:not(.collapsed) {
    background: #e8f4f4;
    color: var(--primary);
    box-shadow: none;
}

.dba-faq .accordion-button:focus {
    box-shadow: none;
}

.dba-faq-ic {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #e8f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: .8rem;
    flex-shrink: 0;
}

.accordion-button:not(.collapsed) .dba-faq-ic {
    background: var(--primary);
    color: var(--white);
}

.dba-faq .accordion-body {
    font-size: .81rem;
    color: var(--text-muted);
    line-height: 1.75;
    padding: 16px 20px;
}

.dba-faq .accordion-body ul {
    padding-left: 18px;
    margin-top: 8px;
}

.dba-faq .accordion-body li {
    margin-bottom: 6px;
}

.dba-badge {
    display: inline-block;
    background: #e8f4f4;
    color: var(--primary);
    font-size: .72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    margin-top: 8px;
}

/* ═══════ CASHBACK STRIP ═══════ */
.dba-cashback {
    background: linear-gradient(90deg, var(--accent) 0%, #f7be46 100%);
    padding: 38px 0;
}

.dba-cashback h3 {
    font-size: clamp(1.15rem, 2.5vw, 1.65rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 7px;
}

.dba-cashback p {
    font-size: .88rem;
    color: rgba(26, 46, 47, .72);
    margin: 0;
}

.dba-cashback-btn {
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: .88rem;
    padding: 12px 28px;
    border-radius: 9px;
    border: none;
    text-decoration: none;
    transition: background .2s, transform .15s;
    display: inline-block;
    white-space: nowrap;
}

.dba-cashback-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: var(--white);


}



/* SECTION COMMON */
.mca-section {
    padding: 60px 0;
}

.mca-section-bg-light {
    background: var(--white);
}

.mca-section-bg-tint {
    background: var(--bg);
}

.mca-section-bg-dark {
    background: var(--primary-dark);
    color: white;
}

.mca-header-center {
    text-align: center;
    margin-bottom: 48px;
}

.mca-label {
    display: inline-block;
    background: var(--accent-light);
    color: var(--primary-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.mca-h2 {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

.mca-h2 span {
    color: var(--primary);
}

.mca-sub {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    font-size: 0.9rem;
}

/* PROGRAM CARD (Different layout - stacked style) */
.mca-prog-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.25s;
    height: 100%;
}

.mca-prog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(17, 96, 100, 0.1);
}

.mca-prog-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 20px;
    color: white;
}

.mca-prog-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.mca-prog-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.mca-prog-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 0 20px 15px;
    border-bottom: 1px solid var(--border);
}

.mca-prog-meta {
    padding: 15px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    border-bottom: 1px solid var(--border);
}

.mca-meta-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

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

.mca-prog-footer {
    padding: 15px 20px 20px;
}

.mca-prog-fee {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.mca-prog-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    font-weight: 700;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
}

.mca-prog-btn:hover {
    background: var(--primary-dark);
    color: white;
}

/* HIGHLIGHT CARDS (Alternative layout) */
.mca-highlight-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mca-highlight-item {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.mca-highlight-item:hover {
    border-color: var(--primary-light);
    transform: translateX(5px);
}

.mca-highlight-icon {
    width: 55px;
    height: 55px;
    background: #e8f4f4;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mca-highlight-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.mca-highlight-content h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.mca-highlight-content p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* SPECIALISATION GRID */
.mca-spec-card {
    background: var(--white);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s;
    height: 100%;
}

.mca-spec-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.mca-spec-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.mca-spec-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.mca-spec-card p { 
    font-size: 0.8rem; 
    color: var(--text-muted); 
}

.course-alt-1{
    background: linear-gradient(135deg,#ffffff 0%,#f8fbff 100%);
    border: 2px solid #dbeafe; 
}

.course-alt-2{ 
    background: linear-gradient(135deg,#fff8f1 0%,#fff1e6 100%);
    border: 2px solid #ffd8b5;
} 

.course-fee-box{ 
    padding: 8px 0; 
    display: flex; 
    align-items: center;
    gap: 15px;
}

.fee-label{
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
}

.fee-value{
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}


 /* SECTION STYLES */
        .contact-section {
            padding: 60px 0;
        }

        .contact-section-light {
            background: var(--white);
        }

        .contact-section-bg {
            background: var(--bg);
        }

        .contact-header-center {
            text-align: center;
            margin-bottom: 48px;
        }

        .contact-label {
            display: inline-block;
            background: var(--accent-light);
            color: var(--primary-dark);
            font-size: 0.7rem;
            font-weight: 700;
            padding: 5px 14px;
            border-radius: 30px;
            margin-bottom: 16px;
        }

        .contact-h2 {
            font-size: 1.9rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 16px;
        }

        .contact-h2 span {
            color: var(--primary);
        }

        .contact-sub {
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
            font-size: 0.9rem;
        }

        /* FIRST SECTION - TWO CARDS (Locations & WhatsApp) */
        .contact-info-card {
            background: var(--white);
            border-radius: 20px;
            padding: 28px;
            border: 1px solid var(--border);
            transition: all 0.2s;
            height: 100%;
            text-align: center;
        }

        .contact-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(17, 96, 100, 0.1);
            border-color: var(--primary-light);
        }

        .contact-info-icon {
            width: 60px;
            height: 60px;
            background: #e8f4f4;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
        }

        .contact-info-icon i {
            font-size: 1.6rem;
            color: var(--primary);
        }

        .contact-info-card h4 {
            font-size: 1.1rem;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .contact-info-card p {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 5px;
        }

        .contact-info-card a {
            color: var(--primary);
            text-decoration: none;
        }

        .contact-wa-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #25d366;
            color: white;
            padding: 8px 20px;
            border-radius: 40px;
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 600;
            margin-top: 15px;
            transition: all 0.2s;
        }

        .contact-wa-link:hover {
            transform: scale(1.02);
            color: white;
        }

        /* EMAIL CARDS - Dark Background (only cards are dark, section bg is light) */
        .contact-email-card {
            background: var(--primary-dark);
            border-radius: 20px;
            padding: 22px 18px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            transition: all 0.2s;
            height: 100%;
        }

        .contact-email-card:hover {
            transform: translateY(-4px);
            border-color: var(--accent);
        }

        .contact-email-card .contact-info-icon {
            background: rgba(255, 255, 255, 0.12);
            width: 50px;
            height: 50px;
            border-radius: 14px;
            margin-bottom: 15px;
        }

        .contact-email-card .contact-info-icon i {
            color: var(--accent);
            font-size: 1.3rem;
        }

        .contact-email-card h4 {
            font-size: 0.9rem;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }

        .contact-email-card p { 
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7); 
            word-break: break-word; 
            line-height: 1.5; 
            margin-bottom: 0; 
        } 

        .contact-email-card a {
            color: var(--accent);
            text-decoration: none;
        }

        .contact-email-card a:hover {
            text-decoration: underline;
        }

        .contact-email-card .small {
            font-size: 0.8rem;
            margin-top: 6px;
            color: rgba(255, 255, 255, 0.55);
        }

        /* Form Styling */
        .contact-form-card {
            background: var(--white);
            border-radius: 24px;
            padding: 28px;
            height: 100%;
            border: 1px solid var(--border);
        }

        .contact-form-card h3 {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--primary); 
            margin-bottom: 25px; 
            display: flex; 
            align-items: center; 
            gap: 10px; 
        }

        .contact-form-group {
            margin-bottom: 18px;
        }

        .contact-form-group label {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 5px;
            display: block;
        }

        .contact-form-group input,
        .contact-form-group select {
            width: 100%;
            border: 1.5px solid var(--border);
            border-radius: 10px;
            padding: 10px 14px;
            font-size: 0.8rem;
            font-family: 'Poppins', sans-serif;
            transition: all 0.2s;
            background: #fff;
        }

        .contact-form-group input:focus,
        .contact-form-group select:focus,
        .doc-upload-row input:focus{
            border-color: var(--primary) !important; 
            outline: none;
            box-shadow: 0 0 0 3px rgba(17, 96, 100, 0.1); 
        }

        .contact-submit-btn {
            width: 100%;
            background: var(--primary);
            color: white;
            font-weight: 700;
            padding: 12px;
            border-radius: 40px;
            border: none;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 10px;
        }

        .contact-submit-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .radio-group {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .radio-label {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            padding: 6px 16px;
            border-radius: 50px;
            background: var(--bg);
            border: 1px solid var(--border);
            transition: all 0.2s;
        }

        .radio-label.active {
            background: var(--primary);
            border-color: var(--primary);
            color: white;
        }

        .radio-label input {
            display: none;
        }

        .hidden-field {
            display: none;
        }
        
        .contact-number {
        font-size: 1.1rem;
        font-weight: 700;
    }
    
    .date-time-wrapper {
    position: relative;
}

.date-time-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #0d6efd;
    font-size: 1rem;
    z-index: 2;
}

 /* MAIN */
        .skill-main-section {
            padding: 70px 0;
        }

        /* LEFT CONTENT */
        .skill-content-card {
            background: #fff;
            border-radius: 28px;
            padding: 38px;
            border: 1px solid var(--border);
            height: 100%;
        }

        .skill-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #e7f5f5;
            color: var(--primary);
            padding: 8px 18px;
            border-radius: 40px;
            font-size: .78rem;
            font-weight: 700;
            margin-bottom: 18px;
        }

        .skill-title {
            font-size: 2rem;
            font-weight: 800;
            line-height: 1.3;
            color: var(--primary-dark);
            margin-bottom: 16px;
        }

        .skill-desc {
            color: var(--text-muted);
            font-size: .92rem;
            line-height: 1.8;
            margin-bottom: 32px;
        }

        .skill-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
            margin-bottom: 35px;
        }

        .skill-box {
            background: #f8fbfb;
            border: 1px solid #e3eeee;
            border-radius: 20px;
            padding: 24px;
            transition: .3s ease;
        }

        .skill-box:hover {
            transform: translateY(-4px);
        }

        .skill-box-icon {
            width: 58px;
            height: 58px;
            border-radius: 16px;
            background: #e7f5f5;
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 16px;
        }

        .skill-box h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .skill-box p {
            font-size: .82rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 0;
        }

        .skill-highlight-wrap {
            background: linear-gradient(135deg, #f4fbfb, #edf7f7);
            border-radius: 24px;
            padding: 28px;
        }

        .skill-highlight-title {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 18px;
            color: var(--primary-dark);
        }

        .skill-badge-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .skill-badge {
            background: var(--accent-light);
            color: var(--primary-dark);
            border-radius: 40px;
            padding: 8px 16px;
            font-size: .76rem;
            font-weight: 600;
        }

        /* FORM */
        .skill-form-card {
            background: #fff;
            border-radius: 28px;
            padding: 36px;
            border: 1px solid var(--border);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05); 
            position: sticky;
            top: 50px; 
        }

        .skill-form-title { 
            font-size: 1.4rem;
            font-weight: 800; 
            color: var(--primary-dark); 
            margin-bottom: 12px; 
        }

        .skill-form-subtitle {
            font-size: .85rem;
            color: var(--text-muted);
            margin-bottom: 28px;
        }

        .skill-form-group {
            margin-bottom: 20px;
        }

        .skill-form-group label {
            font-size: .8rem;
            font-weight: 600;
            margin-bottom: 8px;
            display: block;
        }

        .skill-form-group input,
        .skill-form-group select {
            width: 100%;
            height: 54px;
            border: 1.5px solid var(--border);
            border-radius: 14px;
            padding: 0 16px;
            font-size: .88rem;
            outline: none;
            transition: .3s;
        }

        .skill-form-group input:focus,
        .skill-form-group select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(17, 96, 100, 0.1);
        }

        .skill-submit-btn {
            width: 100%;
            border: none;
            background: var(--primary);
            color: #fff;
            height: 56px;
            border-radius: 50px;
            font-weight: 700;
            transition: .3s;
            margin-top: 10px;
        }

        .skill-submit-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

     
        @media(max-width:991px) {
            .skill-grid {
                grid-template-columns: 1fr; 
            }

            .skill-form-card {
                margin-top: 30px;
            }
        }

        @media(max-width:767px) {
            .skill-content-card,
            .skill-form-card {
                padding: 24px;
            }

            .page-hero h1 {
                font-size: 2rem;
            }

            .skill-title { 
                font-size: 1.6rem;
            }
        }
        
         .skill-price-badge {
            background: linear-gradient(145deg, var(--white), #f5f9f9);
            border-radius: 24px;
            padding: 24px;
            text-align: center;
            border: 2px solid var(--accent);
            margin-bottom: 28px;
        }
        .skill-price-amount {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
        }
        .skill-price-amount small {
            font-size: 1rem;
            font-weight: 500;
        }
        
        .text-accent{
            color: var(--accent);
        }
        
        .doc-main-section{
            padding: 60px 0; 
        } 
        
         /* ========== LEFT CARD: INFO PANEL (modern glassy) ========== */
        .doc-info-panel {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            border: 1px solid var(--border);
            height: 100%;
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.07);
            transition: transform 0.2s ease, box-shadow 0.2s;
        }

        .doc-info-panel:hover {
            transform: translateY(-3px);
            box-shadow: 0 24px 42px -16px rgba(15, 108, 116, 0.12);
        }

        .doc-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--primary-light);
            color: var(--white);
            padding: 6px 18px;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.3px;
            margin-bottom: 24px;
        }

        .doc-info-title {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-dark);
            margin-bottom: 18px;
            line-height: 1.35;
        }

        .doc-info-text {
            color: var(--text-muted);
            line-height: 1.8;
            font-size: 0.9rem;
            margin-bottom: 32px;
        }

        .doc-feature-list {
            display: flex;
            flex-direction: column;
            gap: 18px;
            margin-bottom: 32px;
        }

        .doc-feature-item {
            display: flex;
            gap: 18px;
            align-items: flex-start;
            padding: 16px 18px;
            background: #f9fdfe;
            border-radius: 20px;
            border: 1px solid #eaf2f4;
            transition: all 0.2s;
        }

        .doc-feature-item:hover {
            border-color: var(--primary);
            background: white;
        } 

        .doc-feature-icon {
            width: 52px;
            height: 52px;
            min-width: 52px;
            border-radius: 18px;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.3rem;
        }

        .doc-feature-content h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--text);
        }

        .doc-feature-content p {
            margin: 0;
            color: var(--text-muted);
            font-size: 0.8rem;
            line-height: 1.65;
        }

        .doc-support-card {
            background: linear-gradient(115deg, #0f6c74 0%, #128792 100%);
            border-radius: 24px;
            padding: 26px 24px;
            color: white;
            margin-top: 10px;
        }

        .doc-support-card h5 {
            font-weight: 800;
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        .doc-support-card p {
            font-size: 0.8rem;
            opacity: 0.9;
            margin-bottom: 18px;
            line-height: 1.6;
        }

        .doc-support-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: white;
            color: var(--primary);
            text-decoration: none;
            padding: 10px 22px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            transition: all 0.2s;
        }

        .doc-support-btn:hover {
            background: var(--accent);
            color: var(--primary-dark);
            transform: translateY(-2px);
        }
        
           .doc-form-panel {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 38px 34px;
            border: 1px solid var(--border);
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 50px;
        }

        .doc-form-title {
            font-size: 1.7rem;
            font-weight: 800;
            color: var(--primary-dark);
            margin-bottom: 8px;
        }

        .doc-form-subtitle {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 28px;
            border-left: 3px solid var(--accent);
            padding-left: 12px;
        }

        .doc-form-group {
            margin-bottom: 22px;
        }

        .doc-form-group label {
            display: block;
            font-size: 0.75rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--text);
            letter-spacing: 0.3px;
        }

        .doc-form-group input {
            width: 100%;
            height: 54px;
            border-radius: 16px;
            border: 1.5px solid var(--border);
            padding: 0 18px;
            font-size: 0.88rem;
            font-family: 'Poppins', sans-serif;
            outline: none;
            transition: 0.2s ease;
            background: white;
        }

        .doc-form-group input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(15, 108, 116, 0.08);
        }

        /* dynamic rows */
        .doc-upload-wrapper {
            margin-top: 5px; 
        } 

        .doc-upload-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 12px;
        }

        .doc-upload-head h4 {
            font-size: 1rem;
            font-weight: 800;
            margin: 0;
            color: var(--primary-dark);
        }

        .doc-add-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: linear-gradient(135deg, #0f6c74, #15929f);
            color: #fff;
            border: none;
            border-radius: 14px;
            padding: 12px 22px;
            font-size: 0.85rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 18px rgba(15, 108, 116, 0.18);
        }
        
        .doc-add-btn i {
            font-size: 1rem;
        }
        
        .doc-add-btn:hover {
            background: linear-gradient(135deg, #094b50, #0f6c74);
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(15, 108, 116, 0.24);
        }
        
        .doc-add-btn:active {
            transform: scale(0.98);
        }

        .doc-upload-row {
            display: grid;
            grid-template-columns: 1fr 1fr auto;
            gap: 14px;
            margin-bottom: 16px;
            align-items: center;
            padding: 8px 12px; 
            border-radius: 18px;
        }

        .doc-upload-row input[type="text"] {
            border-radius: 14px;
            border: 1px solid var(--border);
            padding: 10px 14px;
            font-size: 0.8rem;
            background: white;
        }

        .doc-upload-row input[type="file"] {
            padding: 10px 14px;
            background: white; 
            border-radius: 14px; 
            border: 1px solid var(--border);
            font-size: 0.8rem;
        }

        .doc-remove-btn {
            width: 40px;
            height: 40px;
            border-radius: 14px;
            border: none;
            background: #ffe9e9;
            color: #c0392b; 
            font-size: 0.9rem; 
            transition: 0.2s; 
        }

        .doc-remove-btn:hover {
            background: #d63031;
            color: white;
        }

        .doc-submit-btn {
            width: 100%;
            height: 58px;
            border-radius: 60px;
            border: none;
            background: linear-gradient(105deg, var(--primary), #179ba8);
            color: white;
            font-size: 0.95rem;
            font-weight: 700;
            margin-top: 28px;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .doc-submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 24px rgba(15, 108, 116, 0.25);
        }

        .doc-note {
            margin-top: 20px;
            font-size: 0.7rem;
            color: var(--text-muted);
            text-align: center;
            line-height: 1.6;
        }

        

        @media (max-width: 991px) {
            .doc-form-panel {
                margin-top: 30px;
            }
            .doc-info-panel {
                padding: 28px;
            }
        }

        @media (max-width: 767px) {
            .doc-upload-row {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .doc-remove-btn {
                width: 100%;
            }
            .doc-hero {
                padding: 50px 0 90px;
            }
            .doc-form-panel {
                padding: 28px 22px;
            }
            .doc-info-title {
                font-size: 1.5rem;
            }
        }
        
        .dropdown-arrow {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
            font-weight: 800;
        }
        
        .nav-item.dropdown.show .dropdown-arrow {
            transform: rotate(180deg);
        }
        
    @media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        padding: 10px;
        min-width: 240px;
        box-shadow: 0 12px 30px rgba(0,0,0,0.08); 
    }

    .navbar .dropdown-item {
        border-radius: 10px;
        padding: 10px 14px;
        transition: all 0.3s ease;
    }

    .navbar .dropdown-item:hover {
        background: #f3f7f7;
        color: #116064; 
        transform: translateX(4px); 
    }

    .navbar .dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }
}

        
  /* HERO */
        .phd-hero {
            background: linear-gradient(135deg, var(--pd) 0%, var(--p) 55%, var(--pl) 100%);
            padding: 64px 0 56px;
            position: relative;
            overflow: hidden;
        }

        .phd-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 75% 25%, rgba(255, 255, 255, .07) 0%, transparent 45%);
        }

        .phd-crumb {
            font-size: .74rem;
            color: rgba(255, 255, 255, .5);
            margin-bottom: 16px;
        }

        .phd-crumb a {
            color: rgba(255, 255, 255, .5);
            text-decoration: none;
        }

        .phd-crumb a:hover {
            color: var(--a);
        }

        .phd-crumb span {
            color: rgba(255, 255, 255, .9);
            margin: 0 6px;
        }

        .phd-pill {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(244, 166, 29, .15);
            border: 1px solid rgba(244, 166, 29, .3);
            border-radius: 50px;
            padding: 5px 14px;
            font-size: .7rem;
            font-weight: 800;
            color: var(--a);
            letter-spacing: .6px;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .phd-dot {
            width: 6px;
            height: 6px;
            background: var(--a);
            border-radius: 50%;
            animation: phdP 1.6s ease-in-out infinite;
        }

        @keyframes phdP {

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

            50% {
                opacity: .4;
                transform: scale(.6);
            }
        }

        .phd-h1 {
            font-size: clamp(1.9rem, 4vw, 3rem);
            font-weight: 900;
            color: #fff;
            line-height: 1.12;
            letter-spacing: -.5px;
            margin-bottom: 14px;
        }

        .phd-h1 em {
            font-style: normal;
            color: var(--a);
        }

        .phd-desc {
            font-size: .92rem;
            color: rgba(255, 255, 255, .78);
            line-height: 1.75;
            margin-bottom: 26px;
            max-width: 500px;
        }

        .phd-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 32px;
        }

        .phd-tag {
            display: flex;
            align-items: center;
            gap: 7px;
            background: rgba(255, 255, 255, .09);
            border: 1px solid rgba(255, 255, 255, .15);
            border-radius: 8px;
            padding: 7px 13px;
            font-size: .76rem;
            font-weight: 600;
            color: rgba(255, 255, 255, .85);
        }

        .phd-tag i {
            color: var(--a);
            font-size: .82rem;
        }

        .phd-nums {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }

        .phd-num .val {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--a);
            line-height: 1;
        }

        .phd-num .lab {
            font-size: .68rem;
            font-weight: 600;
            color: rgba(255, 255, 255, .55);
            letter-spacing: .3px;
        }

        /* form card */
        .phd-fcard {
            background: var(--w);
            border-radius: 20px;
            padding: 28px 24px;
            box-shadow: 0 20px 48px rgba(11, 69, 71, .18);
        }

        .phd-ftit {
            font-size: 1.05rem;
            font-weight: 800;
            color: var(--p);
            margin-bottom: 4px;
        }

        .phd-fsub {
            font-size: .74rem;
            color: var(--m);
            margin-bottom: 18px;
        }

        .phd-fi {
            margin-bottom: 12px;
        }

        .phd-fi input,
        .phd-fi select,
        .phd-fi textarea {
            width: 100%;
            border: 1.5px solid var(--b);
            border-radius: 9px;
            padding: 9px 12px;
            font-size: .79rem;
            font-family: 'Poppins', sans-serif;
            color: var(--t);
            background: var(--bg);
            outline: none;
            transition: border-color .2s, box-shadow .2s;
        }

        .phd-fi input:focus,
        .phd-fi select:focus,
        .phd-fi textarea:focus {
            border-color: var(--p);
            box-shadow: 0 0 0 3px rgba(17, 96, 100, .1);
        }

        .phd-fi input::placeholder,
        .phd-fi textarea::placeholder {
            color: #b0c4c5;
            font-size: .75rem;
        }

        .phd-fi textarea {
            resize: none;
            min-height: 72px;
        }

        .phd-fbtn {
            width: 100%;
            background: var(--p);
            color: #fff;
            font-weight: 700;
            font-size: .83rem;
            font-family: 'Poppins', sans-serif;
            padding: 11px;
            border-radius: 9px;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background .2s, transform .15s;
        }

        .phd-fbtn:hover {
            background: var(--pd);
            transform: translateY(-2px);
        }

        /* SECTIONS */
        .ei-sec {
            padding: 60px 0;
        }

        .ei-white {
            background: var(--w);
        }

        .ei-bg {
            background: var(--bg);
        }

        .ei-dark {
            background: linear-gradient(135deg, var(--pd) 0%, var(--p) 100%);
        }

        .ei-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: .68rem;
            font-weight: 800;
            color: var(--p);
            letter-spacing: 1.3px;
            text-transform: uppercase;
            background: #e8f4f4;
            padding: 5px 12px;
            border-radius: 30px;
            margin-bottom: 12px;
        }

        .ei-dark .ei-chip {
            background: rgba(244, 166, 29, .15);
            color: var(--a);
        }

        .ei-h2 {
            font-size: clamp(1.5rem, 3vw, 2.1rem);
            font-weight: 800;
            color: var(--t);
            letter-spacing: -.35px;
            line-height: 1.25;
        }

        .ei-h2 span {
            color: var(--p);
        }

        .ei-dark .ei-h2 {
            color: #fff;
        }

        .ei-dark .ei-h2 span {
            color: var(--a);
        }

        .ei-para {
            font-size: .88rem;
            color: var(--m);
            line-height: 1.75;
            max-width: 700px;
        }

        .ei-dark .ei-para {
            color: rgba(255, 255, 255, .7);
        }

        /* HIGHLIGHT CARDS */
        .phd-hcard {
            background: var(--w);
            border: 1px solid var(--b);
            border-radius: 14px;
            padding: 26px 22px;
            height: 100%;
            display: flex;
            gap: 16px;
            align-items: flex-start;
            transition: transform .22s, box-shadow .22s, border-color .22s;
        }

        .phd-hcard:hover {
            transform: translateY(-5px);
            box-shadow: 0 14px 36px rgba(17, 96, 100, .10);
            border-color: var(--pl);
        }

        .phd-hicon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--p), var(--pl));
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: #fff;
            font-size: 1.15rem;
        }

        .phd-hcard h3 {
            font-size: .88rem;
            font-weight: 800;
            line-height: 1.4;
            margin-bottom: 5px;
            color: var(--t);
        }

        .phd-hcard p {
            font-size: .76rem;
            color: var(--m);
            line-height: 1.6;
            margin: 0;
        }

        /* STATS */
        .phd-stats {
            background: var(--pd);
            padding: 48px 0;
        }

        .phd-stat {
            text-align: center;
            padding: 16px;
        }

        .phd-stat .val {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--a);
            line-height: 1;
            margin-bottom: 5px;
        }

        .phd-stat .lab {
            font-size: .74rem;
            font-weight: 700;
            color: rgba(255, 255, 255, .6);
            letter-spacing: .5px;
            text-transform: uppercase;
        }

        /* STEP CARDS */
        .phd-step {
            background: var(--w);
            border: 1px solid var(--b);
            border-radius: 14px;
            padding: 26px 22px;
            height: 100%;
            text-align: center;
            transition: transform .22s, box-shadow .22s;
        }

        .phd-step:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(17, 96, 100, .10);
        }

        .phd-snum {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--p), var(--pl));
            color: #fff;
            font-size: .9rem;
            font-weight: 900;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }

        .phd-step h3 {
            font-size: .88rem;
            font-weight: 800;
            color: var(--t);
            margin-bottom: 7px;
        }

        .phd-step p {
            font-size: .77rem;
            color: var(--m);
            line-height: 1.65;
            margin: 0;
        }

        /* ELIGIBILITY TABLE */
        .phd-table {
            width: 100%;
            border-collapse: collapse;
            font-size: .82rem;
        }

        .phd-table thead tr {
            background: var(--pd);
        }

        .phd-table th {
            padding: 14px 18px;
            color: #fff;
            font-weight: 700;
            font-size: .78rem;
            text-align: left;
        }

        .phd-table tbody tr {
            border-bottom: 1px solid var(--b);
        }

        .phd-table tbody tr:nth-child(even) {
            background: #f9fdfd;
        }

        .phd-table td {
            padding: 12px 18px;
            color: var(--m);
            vertical-align: top;
            line-height: 1.55;
        }

        .phd-table td:first-child {
            font-weight: 700;
            color: var(--t);
        }

        /* TESTI */
        .phd-tcard {
            background: var(--w);
            border: 1px solid var(--b);
            border-radius: 16px;
            padding: 26px 22px;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .phd-tcard::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--p), var(--pl));
        }

        .phd-tquote {
            font-size: 2.2rem;
            color: #d4e8e9;
            line-height: 1;
            margin-bottom: 8px;
        }

        .phd-tstars {
            color: var(--a);
            font-size: .82rem;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .phd-ttext {
            font-size: .8rem;
            color: var(--m);
            line-height: 1.75;
            font-style: italic;
            margin-bottom: 16px;
        }

        .phd-tauthor {
            display: flex;
            align-items: center;
            gap: 10px;
            padding-top: 12px;
            border-top: 1px solid var(--b);
        }

        .phd-tav {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--p), var(--pl));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            color: #fff;
            font-size: .9rem;
            flex-shrink: 0;
        }

        .phd-tname {
            font-size: .82rem;
            font-weight: 800;
        }

        .phd-trole {
            font-size: .71rem;
            color: var(--m);
        }

        /* FAQ */
        .phd-faq .accordion-item {
            border: 1px solid var(--b);
            border-radius: 14px !important;
            margin-bottom: 10px;
            overflow: hidden;
        }

        .phd-faq .accordion-button {
            font-size: .84rem;
            font-weight: 700;
            color: var(--t);
            background: var(--w);
            padding: 15px 20px;
            gap: 10px;
        }

        .phd-faq .accordion-button:not(.collapsed) {
            background: #e8f4f4;
            color: var(--p);
            box-shadow: none;
        }

        .phd-faq .accordion-button:focus {
            box-shadow: none;
        }

        .phd-fic {
            width: 30px;
            height: 30px;
            border-radius: 8px;
            background: #e8f4f4;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--p);
            font-size: .8rem;
            flex-shrink: 0;
        }

        .accordion-button:not(.collapsed) .phd-fic {
            background: var(--p);
            color: #fff;
        }

        .phd-faq .accordion-body {
            font-size: .81rem;
            color: var(--m);
            line-height: 1.75;
            padding: 16px 20px;
        }

        .phd-faq .accordion-body ul {
            padding-left: 18px;
            margin-top: 8px;
        }

        .phd-faq .accordion-body li {
            margin-bottom: 6px;
        }

        .phd-badge {
            display: inline-block;
            background: #e8f4f4;
            color: var(--p);
            font-size: .72rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 6px;
            margin-top: 8px;
        }       

/* STATS */
    .phd-stats{
        background:var(--primary-dark);
        padding:48px 0;
        
    }
    .phd-stat {
        text-align:center;
        padding:16px;
        
    }
    .phd-stat .val {
        font-size:2.5rem;
        font-weight:900;
        color:var(--accent);
        line-height:1;
        margin-bottom:5px;
        
    }
    .phd-stat .lab { 
        font-size:.74rem;
        font-weight:700;
        color:rgba(255,255,255,.6);
        letter-spacing:.5px;
        text-transform:uppercase;
        
    }
    
    
     .support-section {
            padding: 60px 0;
            background: var(--white);
        }

        /* Header */
        .support-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .support-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent-light);
            color: var(--primary-dark);
            font-size: 0.7rem;
            font-weight: 700;
            padding: 6px 16px;
            border-radius: 40px;
            margin-bottom: 16px;
        }

        .support-header h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            color: var(--text);
            margin-bottom: 12px;
        }

        .support-header h2 span {
            color: var(--primary);
        }

        .support-header p {
            color: var(--text-muted);
            max-width: 680px;
            margin: 0 auto;
            font-size: 0.9rem;
            line-height: 1.7;
        }


        .tab-sidebar {
            background: var(--bg);
            border-right: 1px solid var(--border);
            padding: 20px 0;
            border-radius: 14px; 
        }

        .tab-btn {
            display: flex;
            align-items: center;
            gap: 14px;
            width: 100%;
            padding: 18px 24px;
            background: transparent;
            border: none;
            border-left: 3px solid transparent;
            text-align: left;
            font-family: 'Poppins', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-muted);
            transition: all 0.25s ease;
            cursor: pointer;
        }

        .tab-btn i {
            font-size: 1.2rem;
            color: var(--text-muted);
            transition: all 0.25s;
            width: 28px;
        }

        .tab-btn:hover {
            background: rgba(17, 96, 100, 0.05);
            color: var(--primary);
        }

        .tab-btn:hover i {
            color: var(--primary);
        }

        .tab-btn.active { 
            background: rgba(17, 96, 100, 0.08);
            border-left-color: var(--primary);
            color: var(--primary);
        }

        .tab-btn.active i {
            color: var(--primary);
        }

        /* Right Content Area */
        .tab-content-panel {
            padding: 32px ;
        }

        .tab-pane {
            display: none;
            animation: fadeIn 0.35s ease;
        }

        .tab-pane.active-pane {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(8px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .pane-title {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--primary-dark);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .pane-title i {
            color: var(--accent);
            font-size: 1.6rem;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }

        .feature-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 18px;
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.65;
        }

        .feature-list li i {
            color: var(--primary);
            font-size: 1.1rem;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .feature-list li strong {
            color: var(--text);
            font-weight: 700;
            max-width: 300px;
        }

        .info-highlight {
            background: var(--bg);
            border-radius: 16px;
            padding: 20px 24px;
            margin: 24px 0 0;
            border-left: 4px solid var(--accent);
        }

        .info-highlight p {
            margin: 0;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .info-highlight i {
            color: var(--accent);
            margin-right: 8px;
        }

        .stats-row {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            margin: 28px 0 0;
        }

        .stat-box {
            background: var(--bg);
            border-radius: 16px;
            padding: 16px 20px;
            text-align: center;
            flex: 1;
            min-width: 100px;
        }

        .stat-number {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--primary);
        }

        .stat-label {
            font-size: 0.7rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .video-thumb {
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            margin-top: 24px;
            cursor: pointer;
        }

        .video-thumb img {
            width: 100%;
            height: auto;
            display: block;
        }

        .play-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(0, 0, 0, 0.6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(4px);
            transition: 0.2s;
        }

        .play-overlay i {
            font-size: 1.8rem;
            color: white;
        }

        .video-thumb:hover .play-overlay {
            background: var(--primary);
            transform: translate(-50%, -50%) scale(1.05);
        }

        /* Responsive */
        @media (max-width: 768px) { 
            .tab-sidebar {
                border-right: none;
                border-bottom: 1px solid var(--border);
            }
            .tab-content-panel {
                padding: 24px 20px;
            }
            .tab-btn {
                padding: 14px 20px;
            }
            .support-section {
                padding: 40px 0;
            }
        }
        
        @media (max-width: 600px) { 
            .webinar-card {
                flex-direction: column;  
            }
            
            .c-left {
                width: 100%; 
            }
            .c-right {
                width: 100%;
            } 
            .navbar-collapse {
                height: 460px; 
            }
        }


.why-stats-card{
    text-align: center;
    background:var(--bg);
    border: 1px solid var(--primary-light);
    border-radius: 12px;
    padding: 20px 12px;
    height: 100%;
}

.why-stats-number{
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.why-stats-text{
    font-size: .8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: .5px;
    margin-top: 4px;
}

.internship-heading-space{
    margin-bottom: 20px;
}

.internship-description{
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.internship-description-space{
    margin-bottom: 24px;
}

.internship-description-large{
    margin-bottom: 28px;
}

.internship-list-wrap{
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.internship-outcome-text h5{
    font-size: .95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0;
}

.internship-outcome-text p{
    font-size: .78rem;
    color: var(--text-muted);
    margin: 4px 0 0;
    line-height: 1.7;
}

.internship-step-card{
    text-align: left;
    padding: 20px;
}

.internship-step-number{
    margin: 0 0 14px 0;
}

.internship-step-title{
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.internship-step-text{
    font-size: .76rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 0;
}

.error-404-area { min-height: 65vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.error-code { font-size: 8rem; font-weight: 900; background: linear-gradient(135deg, var(--primary), var(--primary-light)); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: 0 6px 18px rgba(17,96,100,.15); line-height: 1; }
.error-title { font-size: 1.8rem; font-weight: 800; color: var(--text); margin-top: 20px; }
.error-desc { max-width: 500px; margin: 16px auto; }
.btn-home { background: var(--primary); color: white; padding: 12px 32px; border-radius: 40px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; margin-top: 20px; }
.btn-home:hover { background: var(--primary-dark); color: white; transform: translateY(-3px); }

 .policy-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    margin: 40px 0 60px;
    box-shadow: 0 12px 30px rgba(17, 96, 100, .06);
}

.policy-card h2 { font-size: 1rem; font-weight: 800; color: var(--primary); margin: 1.2rem 0 0.8rem; letter-spacing: -.3px; }
.policy-card h3 { font-size: 0.9rem; font-weight: 700; color: var(--text); margin: 1.2rem 0 0.6rem; }
.policy-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--primary-dark); margin-top: 1rem; }
.policy-card p, .policy-card li { font-size: 0.9rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 1rem; }
.policy-card ul, .policy-card ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.policy-card li { margin-bottom: 0.5rem; }
.policy-card .last-updated { font-size: 0.8rem; color: var(--text-muted); background: var(--bg); display: inline-block; padding: 4px 12px; border-radius: 30px; margin-bottom: 20px; border:1px solid var(--border);}
.policy-card hr { margin: 2rem 0; border-color: var(--border); }
   
.footer-bottom p a {
font-size: .75rem;
color: rgba(255, 255, 255, .4);
margin: 0;
}

.footer-bottom p a:hover {
 color: var(--white);
}  

.dropdown-item.active,
.dropdown-item:active{
    background: #f3f7f7;
    color: #116064;
    transform: translateX(4px);
}

.rp-input::placeholder {
    font-size: 0.65rem;
}

span.error {
    color: red;
    font-size: 0.75em;
}
        
        
.page-hero .hero-content-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.page-hero .hero-content{
    flex:1;
}

.page-hero .hero-icon{
    flex-shrink:0;
    font-size:170px;
    opacity:0.15;
    color:#fff;
    line-height:1;
}

@media (max-width:768px){
    .page-hero .hero-icon{
        display:none;
    }
}