﻿*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #0d3a6e;
    --black: #000;
    --navy-dark: #081f3a;
    --blue: #1a5fa8;
    --blue-light: #000;
    --sky: #dceefa;
    --sky-mid: #b8d4ec;
    --sky-pale: #f0f6fb;
    --amber: #1a4a8a;
    --amber-bg: #fff3e0;
    --amber-text: #1a4a8a;
    --white: #ffffff;
    --text-muted: #000;
    --text-soft: #000;
    --border: #c8ddf0;
    --font-main: "Poppins", sans-serif;
    --font-display: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--sky-pale);
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 20px;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
}

.nav-brand {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: 1px;
    line-height: 1;
}

    .nav-brand span {
        color: var(--blue-light);
    }

.nav-sub {
    font-size: 10px;
    color: var(--text-soft);
    margin-top: 2px;
    letter-spacing: 0.3px;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

    .nav-links a {
        font-size: 14px;
        font-weight: 600;
        color: var(--navy);
        text-decoration: none;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: var(--blue-light);
        }

.nav-login {
    border: 2px solid var(--navy);
    color: var(--navy);
    background: var(--white);
    border-radius: 6px;
    padding: 8px 22px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-main);
    transition: all 0.2s;
}

    .nav-login:hover {
        background: var(--navy);
        color: var(--white);
    }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

    .nav-hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--navy);
        border-radius: 2px;
        transition: all 0.3s;
    }

.mobile-menu {
    display: none;
}

/* ===== HERO ===== */
.hero {
    background: url(tncbanner.jpg);
    padding: 0 5%;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
}

    .hero::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -80px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(26, 127, 200, 0.07);
    }

.hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0 50px;
}

.hero-content {
    flex: 1;
}

.hero-tag {
    display: inline-block;
    background: rgba(26, 95, 168, 0.12);
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    border: 1px solid rgba(26, 95, 168, 0.2);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.hero-sub {
    font-size: 16px;
    color: var(--black);
    line-height: 1.7;
    margin-bottom: 6px;
}

    .hero-sub strong {
        color: var(--navy);
        font-weight: 700;
    }

.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 800;
    padding: 16px 34px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
    letter-spacing: 0.3px;
}

    .btn-primary:hover {
        background: #154d8c;
        transform: translateY(-1px);
    }

    .btn-primary:active {
        transform: translateY(0);
    }

.hero-badge {
    font-size: 13px;
    color: var(--navy);
    font-weight: 700;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

    .hero-visual svg {
        width: 100%;
        max-width: 460px;
        display: block;
    }

.hero-wave {
    display: block;
    width: 100%;
    margin-bottom: -2px;
    margin-top: 40px;
}

/* ===== TRUST ===== */
.trust {
    background: var(--white);
    border-bottom: 1px solid #edf2f7;
    padding: 18px 5%;
    text-align: center;
}

.trust-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.trust p {
    font-size: 14px;
    color: var(--text-muted);
}

.trust strong {
    color: var(--navy);
}

.trust a {
    color: var(--blue-light);
    font-weight: 600;
    text-decoration: none;
}

/* ===== SECTION BASE ===== */
section {
    padding: 64px 5%;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 900;
    color: var(--navy);
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.section-sub {
    text-align: center;
    font-size: 15px;
    color: var(--text-soft);
    margin-bottom: 36px;
}

/* ===== HOW IT WORKS ===== */
.how {
    background: var(--sky-pale);
}

.steps-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    position: relative;
    max-width: 700px;
    margin: 0 auto 32px;
}

    .steps-row::before {
        content: '';
        position: absolute;
        top: 30px;
        left: 80px;
        right: 80px;
        height: 2px;
        background: var(--sky-mid);
        z-index: 0;
    }

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 8px;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--sky-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

    .step-icon svg {
        width: 26px;
        height: 26px;
    }

.step h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.step p {
    font-size: 12px;
    color: var(--text-soft);
    line-height: 1.5;
}

.how-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.how-card {
    background: var(--white);
    border-radius: 10px;
    padding: 16px 20px;
    border: 1px solid var(--border);
}

    .how-card p {
        font-size: 13px;
        color: var(--text-muted);
        line-height: 1.8;
    }

/* ===== WHY JOIN ===== */
.why {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.why-card {
    background: var(--sky-pale);
    border-radius: 12px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--border);
    transition: border-color 0.2s;
}

    .why-card:hover {
        border-color: var(--blue-light);
    }

.why-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #dceefa;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .why-icon svg {
        width: 20px;
        height: 20px;
    }

.why-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}

.why-card p {
    font-size: 12px;
    color: var(--text-soft);
    line-height: 1.5;
}

/* ===== VISIBILITY ===== */
.visibility {
    background: var(--navy);
    padding: 64px 5%;
}

    .visibility .section-title {
        color: var(--white);
    }

    .visibility .section-sub {
        color: #a8c8e8;
    }

.vis-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.vis-left {
}

.vis-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.vis-item {
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-left: 4px solid #4aa8e8;
}

    .vis-item svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .vis-item p {
        font-size: 14px;
        color: #d0e8f8;
        font-weight: 500;
    }

.vis-right {
    background: rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.1);
}

    .vis-right h3 {
        font-size: 16px;
        font-weight: 700;
        color: #a8d0f0;
        margin-bottom: 16px;
    }

.vis-tag {
    display: inline-block;
    background: rgba(74, 168, 232, 0.2);
    color: #7dd0f8;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin: 4px;
    border: 1px solid rgba(74, 168, 232, 0.3);
}

/* ===== WHO ===== */
.who {
    background: var(--sky-pale);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.who-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: border-color 0.2s, background 0.2s;
}

    .who-card:hover {
        border-color: var(--blue-light);
        background: var(--sky-pale);
    }

.who-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

    .who-icon svg {
        width: 22px;
        height: 22px;
    }

.who-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.who-card p {
    font-size: 12px;
    color: var(--text-soft);
    line-height: 1.5;
}


/* ===== WHO ===== */
.implink {
    background: var(--sky-pale);
}

.implink-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 14px;
}

.implink-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: border-color 0.2s, background 0.2s;
}

    .implink-card:hover {
        border-color: var(--blue-light);
        background: var(--sky-pale);
    }

    .implink-card h3 {
        font-size: 12px;
        font-weight: 500;
        color: var(--navy);
        margin-bottom: 4px;
    }

    .implink-card p {
        font-size: 12px;
        color: var(--text-soft);
        line-height: 1.5;
    }

    .implink-card a {
        text-decoration: none;
    }

/* ===== URGENCY ===== */
.urgency {
    background: var(--sky-pale);
    border-top: 4px solid var(--amber);
    border-bottom: 4px solid var(--amber);
    padding: 28px 5%;
    text-align: center;
}

    .urgency p {
        font-size: 17px;
        color: var(--amber-text);
        font-weight: 700;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }

/* ===== FINAL CTA ===== */
.final-cta {
    background: var(--white);
}

.fcta-box {
    background: linear-gradient(135deg, var(--navy) 0%, #1a4a8a 100%);
    border-radius: 20px;
    padding: 60px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.fcta-left h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.15;
}

.fcta-left p {
    font-size: 15px;
    color: #a8c8e8;
}

.fcta-pills {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.fcta-pill {
    background: rgba(255,255,255,0.1);
    color: #a8d0f0;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
}

.btn-white {
    display: inline-block;
    background: var(--white);
    color: var(--navy);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 800;
    padding: 18px 40px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.1s;
}

    .btn-white:hover {
        background: #e8f2fb;
        transform: translateY(-1px);
    }

/* ===== ABOUT + CONTACT ===== */
.about-contact {
    background: var(--sky-pale);
}

.ac-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-box, .contact-box {
    background: var(--white);
    border-radius: 14px;
    padding: 32px;
    border: 1px solid var(--border);
}

.box-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
    font-family: var(--font-display);
    letter-spacing: 0.3px;
}

.about-box p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

    .about-box p + p {
        margin-top: 10px;
    }

.contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

    .contact-row:last-child {
        margin-bottom: 0;
    }

.contact-ico {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .contact-ico svg {
        width: 18px;
        height: 18px;
    }

.contact-row-text strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    display: block;
}

.contact-row-text a {
    font-size: 13px;
    color: var(--blue-light);
    text-decoration: none;
}

/* ===== FOOTER ===== */
footer {
    background: var(--navy-dark);
    padding: 20px 5%;
    text-align: center;
}

    footer p {
        font-size: 12px;
        color: #5a7a9a;
    }

/* ===== MOBILE STICKY CTA ===== */
.sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--blue);
    padding: 12px 20px;
    z-index: 99;
    border-top: 2px solid #154d8c;
}

    .sticky-bar button {
        width: 100%;
        background: var(--white);
        color: var(--blue);
        font-family: var(--font-main);
        font-size: 15px;
        font-weight: 800;
        padding: 14px;
        border-radius: 7px;
        border: none;
        cursor: pointer;
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .who-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-cards {
        grid-template-columns: 1fr;
    }

    .vis-inner {
        grid-template-columns: 1fr;
    }

    .fcta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 28px;
    }

    .fcta-pills {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .mobile-menu {
        background: var(--white);
        border-top: 1px solid var(--border);
        padding: 16px 20px;
    }

        .mobile-menu a {
            display: block;
            padding: 12px 0;
            font-size: 15px;
            font-weight: 600;
            color: var(--navy);
            text-decoration: none;
            border-bottom: 1px solid #edf2f7;
        }

        .mobile-menu.open {
            display: block;
        }

    section {
        padding: 40px 5%;
    }

    .hero-inner {
        flex-direction: column;
        gap: 24px;
        padding: 36px 0 0;
        text-align: center;
    }

    .hero-visual {
        justify-content: center;
    }

        .hero-visual svg {
            max-width: 280px;
        }

    .hero-actions {
        justify-content: center;
    }

    .hero-tag {
        margin: 0 auto 16px;
    }

    .steps-row {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

        .steps-row::before {
            display: none;
        }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .why-card {
        padding: 16px 12px;
    }

    .who-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .implink-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .ac-grid {
        grid-template-columns: 1fr;
    }

    .sticky-bar {
        display: block;
    }

    footer {
        padding-bottom: 80px;
    }

    .how-cards {
        grid-template-columns: 1fr;
    }

    .vis-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .fcta-box {
        padding: 32px 20px;
    }

    .btn-white {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .who-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: 28px;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-badge {
        text-align: center;
    }
}


.video-section {
    display: flex;
    align-items: center; /* vertical alignment */
    gap: 40px;
    background: #fff;
    padding: 64px 12%;
    border-radius: 12px;
}

.content {
    flex: 1;
}

    .content h2 {
        font-size: 36px;
        margin-bottom: 20px;
        color: #222;
    }

    .content p {
        font-size: 16px;
        line-height: 1.7;
        color: #000;
        margin-bottom: 15px;
    }

.video {
    flex: 1;
}

    .video video,
    .video iframe {
        width: 100%;
        border-radius: 12px;
        display: block;
    }

/* Responsive */
@media (max-width: 768px) {
    .video-section {
        flex-direction: column;
    }
}

.topbar {
    background-color: #533488;
    color: white;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.2s ease;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
    }

    .whatsapp-float img {
        width: 35px;
        height: 35px;
    }

.user-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.user-text {
    font-size: 13px;
    color: #1f3c73;
    font-weight: 500;
}

.nav-login {
    padding: 6px 14px;
    border: 1px solid #1f3c73;
    border-radius: 5px;
    text-decoration: none;
    color: #1f3c73;
    font-size: 14px;
    font-weight: 600;
    background: #fff;
    transition: 0.3s;
}

    .nav-login:hover {
        background: #1f3c73;
        color: #fff;
    }

.logo-slider {
    width: 100%;
    overflow: hidden;
    background-color: #fff;
    padding: 20px 0;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.logoSwiper {
    width: 100%;
    padding: 20px 0;
    background-color: #fff;
}

    .logoSwiper .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 120px;
    }

        .logoSwiper .swiper-slide img {
            max-width: 160px;
            max-height: 70px;
            width: auto;
            height: auto;
            object-fit: contain;
            transition: 0.3s;
            filter: grayscale(100%);
        }

            .logoSwiper .swiper-slide img:hover {
                filter: grayscale(0);
                transform: scale(1.05);
            }

/* ── Client Grid ── */
.client-grid-section {
    background: #f8faff;
    padding: 20px 20px;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.client-card {
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 12px;
    padding: 20px 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.2s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    text-decoration: none;
    color: #1a2942;
}

    .client-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(26,41,66,0.12);
        border-color: #1c75bc;
    }

    .client-card img {
        max-width: 150px;
        max-height: 80px;
        width: auto;
        height: auto;
        object-fit: contain;
        margin-bottom: 8px;
        filter: grayscale(0%);
        transition: filter 0.2s;
    }

    .client-card:hover img {
        filter: grayscale(0%) brightness(1.05);
    }

    .client-card .client-name {
        font-size: 12px;
        font-weight: 600;
        color: #3d5168;
        letter-spacing: 0.3px;
        text-transform: uppercase;
    }

    .client-card .client-tag {
        font-size: 10px;
        color: #9aabb8;
        margin-top: 4px;
    }

@media (max-width: 600px) {
    .client-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .client-card {
        min-height: 90px;
        padding: 12px 6px;
    }

        .client-card img {
            max-width: 70px;
            max-height: 40px;
        }
}

/* ─── TRENDING CATEGORIES – PREMIUM DESIGN ─── */
.categories-section {
    background: linear-gradient(135deg, #f0f6fe 0%, #ffffff 100%);
    padding: 70px 20px;
    position: relative;
    overflow: hidden;
}

    .categories-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(28,117,188,0.04) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ─── CARD – Glassmorphism with animated border ─── */
.category-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 30px 18px 24px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 8px 32px rgba(14, 56, 93, 0.06);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: default;
}
    /* Animated gradient border on hover */
    .category-card::before {
        content: '';
        position: absolute;
        inset: -2px;
        border-radius: 24px;
        padding: 2px;
        background: conic-gradient(from 0deg, #1c75bc, #00a896, #1c75bc, #00a896, #1c75bc);
        background-size: 300% 300%;
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
    }

    .category-card:hover::before {
        opacity: 1;
        animation: rotateBorder 4s linear infinite;
    }

@keyframes rotateBorder {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(28, 117, 188, 0.18);
    border-color: transparent;
    background: rgba(255, 255, 255, 0.95);
}

/* Badge – Openings */
.badge-openings {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #1c75bc, #0e385d);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 40px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(28, 117, 188, 0.3);
    text-transform: uppercase;
}

/* Icon Circle – with gradient */
.icon-wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #eaf2fb, #d4e4f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #1c75bc;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(28, 117, 188, 0.10);
}

.category-card:hover .icon-wrap {
    background: linear-gradient(135deg, #1c75bc, #0e385d);
    color: #fff;
    transform: rotate(8deg) scale(1.05);
    box-shadow: 0 12px 32px rgba(28, 117, 188, 0.25);
}

/* Title & Count */
.category-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #0e385d;
    letter-spacing: -0.2px;
}

.jobs-count {
    font-size: 14px;
    color: #6b7a90;
    margin-bottom: 18px;
}

    .jobs-count strong {
        color: #1c75bc;
        font-weight: 800;
    }

/* ─── QUICK APPLY BUTTON – Extraordinary ─── */
.btn-quick-apply {
    display: inline-block;
    background: transparent;
    color: #1c75bc;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: 60px;
    text-decoration: none;
    border: 2px solid #1c75bc;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

    .btn-quick-apply::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: left 0.6s ease;
    }

    .btn-quick-apply:hover::before {
        left: 100%;
    }

    .btn-quick-apply:hover {
        background: linear-gradient(135deg, #1c75bc, #0e385d);
        color: #fff;
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 12px 28px rgba(28, 117, 188, 0.35);
        border-color: transparent;
    }

    .btn-quick-apply:active {
        transform: scale(0.95);
    }

    /* Pulse glow effect on hover (alternative) */
    .btn-quick-apply::after {
        content: '';
        position: absolute;
        inset: -4px;
        border-radius: 60px;
        background: rgba(28, 117, 188, 0.1);
        opacity: 0;
        transition: opacity 0.4s;
        z-index: -1;
    }

    .btn-quick-apply:hover::after {
        opacity: 1;
        animation: pulseGlow 1.5s infinite;
    }

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.2;
    }

    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

/* Responsive */
@media (max-width: 600px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .category-card {
        padding: 20px 12px 16px;
    }

    .icon-wrap {
        width: 56px;
        height: 56px;
        font-size: 26px;
    }

    .category-card h3 {
        font-size: 15px;
    }

    .btn-quick-apply {
        font-size: 11px;
        padding: 7px 18px;
    }
}