
/* ─── Variables ─────────────────────────────────────── */
:root {
    --blue: #372E79;
    --blue-dark: #1E1855;
    --blue-light: #5448A8;
    --teal: #F47622;
    --green: #F9A050;
    --navy: #141240;
    --bg: #F2F0FA;
    --text: #0F0C24;
    --muted: #6860A0;
    --card-shadow: 0 4px 24px rgba(24, 0, 99, .08);
    --card-hover: 0 14px 44px rgba(24, 0, 99, .16);
}

/* ─── Reset / Base ──────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Mulish', sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

img {
    max-width: 100%;
}

.dropdown-menu.show {
    display: block;
    z-index: 9999;
}
/* ─── Announcement Bar ──────────────────────────────── */
.top-bar {
    background: var(--navy);
    color: rgba(255,255,255,.55);
    font-size: .78rem;
    padding: 9px 0;
    font-weight: 600;
}

    .top-bar a {
        color: var(--teal);
        text-decoration: none;
        transition: opacity .2s;
    }

        .top-bar a:hover {
            opacity: .8;
        }

.lang-select {
    background: transparent;
    border: none;
    color: rgba(255,255,255,.55);
    font-size: .78rem;
    cursor: pointer;
}

/* ─── Navbar ────────────────────────────────────────── */
.main-nav {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26,77,181,.07);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: box-shadow .3s;
}

    .main-nav.scrolled {
        box-shadow: 0 4px 20px rgba(12,31,63,.1);
    }

.nav-brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--navy) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .nav-brand .logo-box {
        width: 38px;
        height: 38px;
        background: linear-gradient(-135deg, var(--blue), var(--teal));
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .nav-brand span {
        color: var(--blue);
    }

.nav-link-item {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: .88rem;
    color: var(--text) !important;
    padding: 8px 14px !important;
    border-radius: 8px;
    text-decoration: none;
    transition: all .2s;
}

    .nav-link-item:hover {
        background: var(--bg);
        color: var(--blue) !important;
    }

.btn-login {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    color: var(--blue);
    border: 2px solid var(--blue);
    border-radius: 10px;
    padding: 8px 22px;
    text-decoration: none;
    transition: all .2s;
}

    .btn-login:hover {
        background: var(--blue);
        color: #fff;
    }

.btn-join {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    color: #fff;
    background: linear-gradient(-135deg, var(--blue), var(--blue-light));
    border: none;
    border-radius: 10px;
    padding: 9px 22px;
    text-decoration: none;
    transition: all .2s;
    box-shadow: 0 4px 14px rgba(26,77,181,.3);
}

    .btn-join:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(26,77,181,.4);
        color: #fff;
    }

/* ─── Hero ──────────────────────────────────────────── */
.hero {
    background: linear-gradient(-140deg, #0C1F3F 0%, #1A4DB5 58%, #0A7493 100%);
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, rgba(6,182,212,.15) 0%, transparent 70%);
        top: -180px;
        left: -160px;
        pointer-events: none;
    }

    .hero::after {
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
        bottom: -80px;
        right: 5%;
        pointer-events: none;
    }

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50px;
    padding: 6px 18px;
    color: #7DD3FC;
    font-size: .78rem;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-bottom: 22px;
    letter-spacing: .04em;
}

    .hero-badge .pulse-dot {
        width: 8px;
        height: 8px;
        background: #22D3EE;
        border-radius: 50%;
        animation: pulseDot 2s infinite;
    }

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

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

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 18px;
}

    .hero-title .hl {
        background: linear-gradient(-135deg, #38BDF8, #22D3EE);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.72);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 36px;
}

.btn-hero-green {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--green);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .98rem;
    border: none;
    border-radius: 12px;
    padding: 14px 32px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(34,197,94,.4);
    transition: all .3s;
}

    .btn-hero-green:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(34,197,94,.5);
        color: #fff;
    }

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,.1);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: .98rem;
    border: 1.5px solid rgba(255,255,255,.28);
    border-radius: 12px;
    padding: 14px 32px;
    text-decoration: none;
    transition: all .3s;
}

    .btn-hero-ghost:hover {
        background: rgba(255,255,255,.18);
        border-color: rgba(255,255,255,.45);
        color: #fff;
    }

/* Hero stats */
.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 52px;
    flex-wrap: wrap;
}

.hs-item {
    display: flex;
    flex-direction: column;
}

.hs-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.hs-lbl {
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255,255,255,.55);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-top: 4px;
}

/* Hero visual card */
.hero-card {
    /* background: #fff;
    border-radius: 20px;*/
    padding: 22px;
    /*box-shadow: 0 24px 72px rgba(0,0,0,.3);*/
    width: 100%;
    margin: 0 auto;
}

.hc-thumb {
    width: 100%;
    height: 160px;
    background: linear-gradient(-135deg, #1A4DB5, #06B6D4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    margin-bottom: 16px;
}

.hc-badge {
    display: inline-block;
    background: #DBEAFE;
    color: var(--blue);
    font-size: .72rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 8px;
}

.hc-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    color: var(--text);
    margin-bottom: 10px;
}

.hc-meta {
    display: flex;
    gap: 14px;
    font-size: .78rem;
    color: var(--muted);
}

/* Floating tags */
.ftag {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 11px 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.ftag-1 {
    top: 16px;
    right: -30px;
    animation: flt1 3.2s ease-in-out infinite;
}

.ftag-2 {
    bottom: 30px;
    left: -20px;
    animation: flt2 3.8s ease-in-out infinite;
}

@keyframes flt1 {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

@keyframes flt2 {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-9px)
    }
}

.ftag-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
}

.ftag-t1 {
    font-size: .78rem;
    font-weight: 700;
    color: var(--text);
}

.ftag-t2 {
    font-size: .7rem;
    color: var(--muted);
}
/*new slider*/
.hero-blob-slider {
    position: relative;
    width: 520px;
    height: 520px;
    overflow: hidden;
    border-radius: 58% 42% 67% 33% / 38% 58% 42% 62%;
    box-shadow: 0 30px 80px rgba(0,0,0,.18);
    animation: blobFloat 8s ease-in-out infinite;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes blobFloat {

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

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

.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(14px);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    font-weight: 600;
    z-index: 5;
}

.card-1 {
    top: 40px;
    right: -30px;
}

.card-2 {
    bottom: 40px;
    left: -30px;
}

.hero-floating-card i {
    color: var(--green);
}

.about-collage {
    position: relative;
    min-height: 480px;
}

.img-main {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

.img-small {
    position: absolute;
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 24px;
    border: 8px solid #fff;
    box-shadow: 0 12px 40px rgba(0,0,0,.15);
}

.img-1 {
    top: -25px;
    right: -25px;
}

.img-2 {
    bottom: -25px;
    left: -25px;
}
/* ─── Section Shared ────────────────────────────────── */
.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--blue);
    margin-bottom: 12px;
}

    .sec-tag::before {
        content: '';
        width: 20px;
        height: 3px;
        background: var(--blue);
        border-radius: 2px;
    }

.sec-title {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}

.sec-sub {
    font-size: .95rem;
    color: var(--muted);
    max-width: 540px;
    line-height: 1.75;
}

/* ─── Categories ────────────────────────────────────── */
.categories {
    padding: 100px 0;
    background: var(--bg);
}

.cat-card {
    background: #fff;
    border-radius: 20px;
    padding: 38px 30px;
    height: 100%;
    border: 1px solid rgba(26,77,181,.06);
    box-shadow: var(--card-shadow);
    transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

    .cat-card::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 4px;
        background: var(--cat-grad, linear-gradient(-90deg,var(--blue),var(--teal)));
        transform: scaleX(0);
        transform-origin: right;
        transition: transform .35s;
    }

    .cat-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--card-hover);
    }

        .cat-card:hover::after {
            transform: scaleX(1);
        }

    .cat-card.sc {
        --cat-grad: linear-gradient(90deg,#1A4DB5,#3B6FD4);
    }

    .cat-card.co {
        --cat-grad: linear-gradient(90deg,#7C3AED,#A78BFA);
    }

    .cat-card.ind {
        --cat-grad: linear-gradient(90deg,#059669,#34D399);
    }

    .cat-card.ctr {
        --cat-grad: linear-gradient(90deg,#D97706,#FBBF24);
    }

.cat-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 22px;
}

.cat-card.sc .cat-icon {
    background: #DBEAFE;
    color: #1A4DB5;
}

.cat-card.co .cat-icon {
    background: #EDE9FE;
    color: #7C3AED;
}

.cat-card.ind .cat-icon {
    background: #D1FAE5;
    color: #059669;
}

.cat-card.ctr .cat-icon {
    background: #FEF3C7;
    color: #D97706;
}

.cat-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.cat-desc {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 22px;
}

.cat-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .82rem;
    color: var(--blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
}

    .cat-link:hover {
        gap: 10px;
        color: var(--blue);
    }

/* ─── About ─────────────────────────────────────────── */
.about {
    padding: 100px 0;
    background: #fff;
}

.about-img-wrap {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.about-thumb {
    width: 100%;
    height: 460px;
    background: linear-gradient(-140deg, #0C1F3F, #1A4DB5 60%, #0A7493);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: rgba(255,255,255,.12);
    position: relative;
    overflow: hidden;
}

    .about-thumb::before {
        content: '';
        position: absolute;
        width: 260px;
        height: 260px;
        background: radial-gradient(circle, rgba(6,182,212,.25), transparent);
        top: -60px;
        left: -60px;
    }

.exp-badge {
    position: absolute;
    bottom: 28px;
    right: 28px;
    background: #fff;
    border-radius: 16px;
    padding: 16px 22px;
    box-shadow: 0 10px 36px rgba(0,0,0,.14);
}

    .exp-badge .num {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 2rem;
        font-weight: 800;
        color: var(--blue);
        line-height: 1;
    }

    .exp-badge .lbl {
        font-size: .78rem;
        color: var(--muted);
        font-weight: 600;
        margin-top: 2px;
    }

.feat {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

.feat-ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #DBEAFE;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.feat-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    color: var(--text);
    margin-bottom: 3px;
}

.feat-text {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.6;
}

.btn-solid {
    background: var(--blue);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    border: none;
    border-radius: 11px;
    padding: 12px 28px;
    text-decoration: none;
    transition: background .2s;
}

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

.btn-outline-custom {
    background: transparent;
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    border: 2px solid #CBD5E1;
    border-radius: 11px;
    padding: 12px 28px;
    text-decoration: none;
    transition: all .2s;
}

    .btn-outline-custom:hover {
        border-color: var(--blue);
        color: var(--blue);
    }

/* ─── Stats ─────────────────────────────────────────── */
.stats-section {
    background: linear-gradient(-140deg, #0C1F3F, #1A4DB5 60%, #0A7493);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

    .stats-section::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(6,182,212,.12), transparent);
        top: -200px;
        left: -100px;
        pointer-events: none;
    }

.stat-box {
    text-align: center;
    padding: 10px 20px;
}

.stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.2rem,4vw,3.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

    .stat-num .acc {
        color: #22D3EE;
    }

.stat-lbl {
    font-weight: 600;
    font-size: .82rem;
    color: rgba(255,255,255,.55);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 8px;
}

.stat-divider {
    width: 1px;
    height: 70px;
    background: rgba(255,255,255,.1);
    margin: auto;
}

/* ─── CTA ───────────────────────────────────────────── */
.cta-section {
    padding: 100px 0;
    background: var(--bg);
}

.cta-block {
    background: linear-gradient(-140deg, #0C1F3F, #1A4DB5 60%, #0A7493);
    border-radius: 28px;
    padding: 70px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-block::before {
        content: '';
        position: absolute;
        width: 420px;
        height: 420px;
        background: radial-gradient(circle, rgba(6,182,212,.2), transparent);
        top: -180px;
        left: -80px;
        pointer-events: none;
    }

    .cta-block::after {
        content: '';
        position: absolute;
        width: 280px;
        height: 280px;
        background: radial-gradient(circle, rgba(255,255,255,.05), transparent);
        bottom: -100px;
        right: -40px;
        pointer-events: none;
    }

.cta-title {
    font-size: clamp(1.9rem,3.5vw,2.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.cta-sub {
    color: rgba(255,255,255,.68);
    font-size: .95rem;
    max-width: 480px;
    margin: 0 auto 36px;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

.btn-cta-green {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--green);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    border: none;
    border-radius: 12px;
    padding: 14px 34px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(34,197,94,.4);
    transition: all .3s;
    position: relative;
    z-index: 1;
}

    .btn-cta-green:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(34,197,94,.5);
        color: #fff;
    }

.btn-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,.1);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    border: 1.5px solid rgba(255,255,255,.25);
    border-radius: 12px;
    padding: 14px 30px;
    text-decoration: none;
    transition: all .3s;
    position: relative;
    z-index: 1;
}

    .btn-cta-ghost:hover {
        background: rgba(255,255,255,.18);
        border-color: rgba(255,255,255,.45);
        color: #fff;
    }

/* ─── Footer ─────────────────────────────────────────── */
.footer {
    background: #0A1828;
    padding: 64px 0 32px;
}

.footer-brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 14px;
    display: block;
    height: 80px;
    width: 250px;
    background: #fff;
    /* text-align: center; */
    justify-content: center;
    display: flex;
    align-items: center;
    border-radius: 8px;
}

    .footer-brand img {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

.footer-desc {
    font-size: .85rem;
    color: rgba(255,255,255,.45);
    line-height: 1.75;
    max-width: 250px;
    margin-bottom: 24px;
}

.footer-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .78rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .09em;
    margin-bottom: 18px;
}

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

    .footer-list li {
        margin-bottom: 9px;
    }

    .footer-list a {
        font-size: .85rem;
        color: rgba(255,255,255,.45);
        text-decoration: none;
        transition: color .2s;
    }

        .footer-list a:hover {
            color: #22D3EE;
        }

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.soc-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    font-size: .95rem;
    text-decoration: none;
    transition: all .2s;
}

    .soc-btn:hover {
        background: var(--teal);
        border-color: var(--teal);
        color: #fff;
    }

.footer-hr {
    border-color: rgba(255,255,255,.07);
    margin: 44px 0 26px;
}

.footer-copy {
    font-size: .78rem;
    color: rgba(255,255,255,.3);
}

/* ─── Animations ─────────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

.fade-up {
    animation: fadeUp .65s ease both;
}

.fade-up-1 {
    animation-delay: .1s;
}

.fade-up-2 {
    animation-delay: .22s;
}

.fade-up-3 {
    animation-delay: .34s;
}

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width:991px) {
    .hero {
        padding: 60px 0;
        min-height: auto;
    }

    .hero-card {
        display: none;
    }

    .categories, .about, .cta-section {
        padding: 70px 0;
    }

    .cta-block {
        padding: 48px 28px;
    }

    .stat-divider {
        display: none;
    }
}

@media (max-width:575px) {
    .hero-stats {
        gap: 22px;
    }

    .hs-num {
        font-size: 1.7rem;
    }
}

/* ─── Sign-In Page Styles ────────────────────────────*/
/* ─── Left Panel ────────────────────────────────────── */
.d-flex.mainLogin {
    height: 100vh;
}

.auth-left {
    width: 44%;
    background: linear-gradient(-145deg, #0A1930 0%, #1A4DB5 55%, #0B6E87 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

/* Glowing orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.orb-1 {
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(6,182,212,.18) 0%, transparent 70%);
    top: -200px;
    left: -180px;
}

.orb-2 {
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 70%);
    bottom: -120px;
    right: -80px;
}

/* Decorative rings */
.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.07);
    pointer-events: none;
}

.ring-1 {
    width: 320px;
    height: 320px;
    top: -80px;
    right: -80px;
}

.ring-2 {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: -60px;
}

/* Grid dots pattern */
.auth-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* Content */
.left-body {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 360px;
}

.brand-logo {
    width: 76px;
    height: 76px;
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255,255,255,.22);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 22px;
    box-shadow: 0 8px 32px rgba(0,0,0,.18);
}

.brand-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 6px;
}

    .brand-name span {
        color: #67E8F9;
    }

.brand-tag {
    font-size: .9rem;
    color: rgba(255,255,255,.6);
    margin-bottom: 48px;
    line-height: 1.65;
}

/* Features list */
.feat-list {
    list-style: none;
    padding: 0;
    text-align: right;
}

    .feat-list li {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 12px 0;
        color: rgba(255,255,255,.7);
        font-size: .875rem;
        font-weight: 600;
        border-bottom: 1px solid rgba(255,255,255,.07);
    }

        .feat-list li:last-child {
            border-bottom: none;
        }

.feat-ico {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,.1);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #67E8F9;
    font-size: .9rem;
    flex-shrink: 0;
}

/* Stats row */
.left-stats {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.ls-item {
    text-align: center;
}

.ls-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

    .ls-num span {
        color: #22D3EE;
    }

.ls-lbl {
    font-size: .7rem;
    color: rgba(255,255,255,.45);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 4px;
}

/* Back link */
.back-link {
    position: absolute;
    bottom: 32px;
    right: 50%;
    transform: translateX(50%);
    color: rgba(255,255,255,.45);
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    z-index: 3;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: color .2s;
}

    .back-link:hover {
        color: #fff;
    }

/* ─── Right Panel ───────────────────────────────────── */
.auth-right {
    flex: 1;
    background: #F8FBFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 56px;
    overflow-y: auto;
    position: relative;
}

    /* Subtle top strip */
    .auth-right::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 3px;
        background: linear-gradient(-90deg, var(--blue), var(--teal));
    }

.form-wrap {
    width: 100%;
    max-width: 430px;
}

/* Step indicator */
.step-dots {
    display: flex;
    gap: 6px;
    margin-bottom: 28px;
}

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

    .step-dot.active {
        background: var(--blue);
        width: 24px;
        border-radius: 4px;
    }

.form-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 6px;
}

.form-sub {
    font-size: .875rem;
    color: var(--muted);
    margin-bottom: 34px;
    line-height: 1.65;
}

/* Field groups */
.field-group {
    margin-bottom: 20px;
}

.field-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .8rem;
    color: var(--text);
    display: block;
    margin-bottom: 8px;
}

.field-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

    .field-row .field-label {
        margin-bottom: 0;
    }

.input-shell {
    position: relative;
}

.input-lead-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94A3B8;
    font-size: 1rem;
    pointer-events: none;
}

.field-input {
    width: 100%;
    padding: 13px 46px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: 'Mulish', sans-serif;
    font-size: .9rem;
    color: var(--text);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

    .field-input::placeholder {
        color: #CBD5E1;
    }

    .field-input:focus {
        border-color: var(--blue);
        box-shadow: 0 0 0 4px rgba(26,77,181,.09);
    }

    .field-input.error {
        border-color: #EF4444;
        box-shadow: 0 0 0 4px rgba(239,68,68,.08);
    }

.error-msg {
    font-size: .75rem;
    color: #EF4444;
    font-weight: 600;
    margin-top: 6px;
    display: none;
}

.field-input.error + .error-msg {
    display: block;
}

.eye-btn {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94A3B8;
    font-size: 1rem;
    cursor: pointer;
    padding: 4px;
    transition: color .2s;
}

    .eye-btn:hover {
        color: var(--blue);
    }

/* Forgot link */
.forgot {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .8rem;
    color: var(--blue);
    text-decoration: none;
}

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

/* Remember me */
.remember-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

    .remember-row input[type=checkbox] {
        width: 17px;
        height: 17px;
        accent-color: var(--blue);
        cursor: pointer;
    }

    .remember-row label {
        font-size: .84rem;
        color: var(--muted);
        cursor: pointer;
        margin: 0;
    }

/* Submit */
.btn-signin {
    width: 100%;
    padding: 14px;
    background: linear-gradient(-135deg, #22C55E, #16A34A);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .98rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(34,197,94,.35);
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 22px;
}

    .btn-signin:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(34,197,94,.46);
    }

    .btn-signin:active {
        transform: translateY(0);
    }

/* Divider */
.or-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

    .or-divider::before, .or-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border);
    }

    .or-divider span {
        font-size: .78rem;
        color: #94A3B8;
        font-weight: 700;
    }

/* Social buttons */
.soc-btn-auth {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    color: var(--text);
    text-decoration: none;
    transition: all .2s;
    cursor: pointer;
}

    .soc-btn-auth:hover {
        background: #F1F5F9;
        border-color: #CBD5E1;
        color: var(--text);
    }

/* reCAPTCHA */
.captcha-note {
    font-size: .7rem;
    color: #94A3B8;
    text-align: center;
    line-height: 1.55;
    margin-top: 18px;
}

    .captcha-note a {
        color: var(--blue);
        text-decoration: none;
    }

/* Register prompt */
.register-prompt {
    text-align: center;
    font-size: .875rem;
    color: var(--muted);
    margin-top: 22px;
}

    .register-prompt a {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 800;
        color: var(--blue);
        text-decoration: none;
    }

        .register-prompt a:hover {
            text-decoration: underline;
        }

/* Mobile logo (hidden on desktop) */
.mobile-brand {
    text-align: center;
    margin-bottom: 32px;
}

    .mobile-brand .logo-box {
        width: 50px;
        height: 50px;
        background: linear-gradient(-135deg, var(--blue), var(--teal));
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        color: #fff;
        margin: 0 auto 12px;
    }

    .mobile-brand .name {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 800;
        font-size: 1.3rem;
        color: var(--text);
    }

        .mobile-brand .name span {
            color: var(--blue);
        }

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 991px) {
    .d-flex.mainLogin {
        display: block;
        overflow: auto;
    }

    .auth-left {
        display: none;
    }

    .auth-right {
        min-height: 100vh;
        background: #fff;
        padding: 40px 24px;
    }

        .auth-right::before {
            display: none;
        }

    .hero {
        padding: 60px 0;
        min-height: auto;
    }

    .hero-card {
        display: none;
    }

    .categories, .about, .cta-section {
        padding: 70px 0;
    }

    .cta-block {
        padding: 48px 28px;
    }

    .stat-divider {
        display: none;
    }
}

@media (max-width:575px) {
    .hero-stats {
        gap: 22px;
    }

    .hs-num {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .form-wrap {
        max-width: 100%;
    }

    .form-heading {
        font-size: 1.7rem;
    }
}
