:root {
    --navy: #0d1f3c;
    --navy-mid: #0f2952;
    --green: #059669;
    --green-dark: #047857;
    --green-deep: #065f46;
    --green-dim: rgba(5, 150, 105, 0.10);
    --green-glow: rgba(5, 150, 105, 0.28);
    --primary: #1a56db;
    --primary-lt: #2563eb;
    --primary-dim: rgba(26, 86, 219, 0.08);
        --accent: #047857;
    --accent-lt: rgba(5, 150, 105, 0.10);
    --red: #dc2626;
    --bg: #f8fafc;
    --bg2: #eef2f7;
    --surface: #ffffff;
    --border: #e2e8f0;
    --text: #1e293b;
    --muted: #64748b;
    --light-text: #94a3b8;
    --shadow-xs: 0 1px 3px rgba(13, 31, 60, 0.06);
    --shadow-sm: 0 4px 12px rgba(13, 31, 60, 0.07);
    --shadow-md: 0 8px 30px rgba(13, 31, 60, 0.09);
    --shadow-lg: 0 20px 60px rgba(13, 31, 60, 0.11);
    --shadow-xl: 0 32px 80px rgba(13, 31, 60, 0.14);

    --r-sm: 8px;
    --r: 12px;
    --r-lg: 18px;
    --r-xl: 24px;

    --t: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --bs-primary: #059669;
    /* green as BS primary            */
    --bs-secondary: #64748b;
    --bs-dark: #0d1f3c;
    --bs-light: #f0f4f8;
    --bs-body-color: #1e293b;
    --bs-font-sans-serif: "Nunito", sans-serif;
}
/* ── Base Reset ─────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Nunito", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--t);
}

img {
    max-width: 100%;
    display: block;
}
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-dark);
    background: var(--green-dim);
    border: 1px solid rgba(5, 150, 105, 0.2);
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}
.section-heading {
    font-size: 38px;
    font-weight: 800;
    color: #0d1f3c;
    margin-bottom: 15px;
}
.section-sub {
    font-size: 16px;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.8;
}

/* ── Divider ────────────────────────────────────────────────── */
.section-divider {
    height: 1px;
    background: var(--border);
    border: none;
    margin: 0;
}

/* ================================================================
   SPINNER
================================================================ */
#spinner {
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.5s ease-out,
        visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition:
        opacity 0.5s ease-out,
        visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/* ================================================================
   BACK TO TOP
================================================================ */
.back-to-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 46px;
    height: 46px;
    border-radius: var(--r);
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 16px var(--green-glow);
    transition: var(--t);
    z-index: 99;
    opacity: 0;
}

.back-to-top.show {
    opacity: 1;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--green-dark), var(--green-deep));
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 8px 24px var(--green-glow);
}

/* ================================================================
   BUTTONS
================================================================ */
.btn {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 14.5px;
    border-radius: var(--r);
    transition: var(--t);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    cursor: pointer;
    padding: 12px 24px;
    border: none;
}

/* square icon buttons */
.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: var(--r);
}

/* Primary — green gradient theme */
.btn.btn-primary {
    background: linear-gradient(135deg, #059669, #047857);
    color: #fff;
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.28);
    border: none;
}

.btn.btn-primary:hover {
    background: linear-gradient(135deg, #047857, #065f46);
    color: #fff;
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.38);
    transform: translateY(-2px);
}

/* Accent green */
.btn.btn-accent {
    background: linear-gradient(135deg, #059669, #047857);
    color: #fff;
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.28);
    border: none;
}

.btn.btn-accent:hover {
    background: linear-gradient(135deg, #047857, #065f46);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.38);
    color: #fff;
}

/* Bootstrap btn-success — unified to green gradient */
.btn.btn-success {
    background: linear-gradient(135deg, #059669, #047857) !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.28);
    border: none !important;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    border-radius: var(--r);
    transition: var(--t);
}

.btn.btn-success:hover,
.btn.btn-success:focus,
.btn.btn-success:active {
    background: linear-gradient(135deg, #047857, #065f46) !important;
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.38) !important;
    transform: translateY(-2px);
}

/* Light */
.btn.btn-light {
    background: var(--bg2);
    color: var(--primary);
    border: 1.5px solid var(--border);
}

.btn.btn-light:hover {
    background: var(--surface);
    border-color: var(--primary);
    color: var(--primary);
}

/* Outline primary */
.btn.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.btn.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
}

/* Dark */
.btn.btn-dark {
    background: var(--navy);
    color: #fff;
    border: none;
}

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

/* ================================================================
   TOPBAR
================================================================ */
.topbar {
    background: var(--navy);
}

.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.6);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--primary);
    color: #fff;
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--surface);
    padding-top: 10px;
    border: 1px solid var(--border);
    border-radius: var(--r);
    transition: 0.5s;
    opacity: 1;
}

/* ================================================================
   NAVBAR
================================================================ */
.nav-bar {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 20px rgba(13, 31, 60, 0.06);
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: box-shadow 0.3s ease;
}

.nav-bar.scrolled {
    box-shadow: 0 4px 28px rgba(13, 31, 60, 0.12);
}

/* Logo */
.company-logo {
    height: 44px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    transition: opacity 0.2s;
}

.company-logo:hover {
    opacity: 0.85;
}

/* Toggler */
.navbar-toggler {
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 6px 10px;
    box-shadow: none;
    outline: none;
    transition: background 0.2s;
}

.navbar-toggler:hover {
    background: rgba(0, 0, 0, 0.04);
}

/* ── Nav links ── */
.navbar .navbar-nav .nav-link {
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b !important;
    padding: 7px 14px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
    position: relative;
}

.navbar .navbar-nav .nav-link:hover:not(.active) {
    color: #059669 !important;
    background: rgba(5, 150, 105, 0.07);
}

/* Active pill */
.navbar .navbar-nav .nav-pills .nav-link.active,
.navbar .nav-pills .nav-link.active {
    background: linear-gradient(135deg, #059669, #047857);
    color: #fff !important;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(5, 150, 105, 0.3);
}

/* Dropdown menu */
.navbar .dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 6px;
    min-width: 190px;
    background: #fff;
}

.navbar .dropdown-item {
    font-family: "Outfit", sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #1e293b;
    padding: 9px 14px;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
    display: flex;
    align-items: center;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus,
.navbar .dropdown-item.active {
    background: rgba(5, 150, 105, 0.08);
    color: #047857;
}

/* ── Right-side action buttons ── */
.nav-actions {
    flex-shrink: 0;
}

/* Login — outlined ghost button */
.nav-btn-login {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 8px;
    border: 1.5px solid #059669;
    color: #059669;
    font-family: "Outfit", sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    background: transparent;
}

.nav-btn-login:hover {
    background: rgba(5, 150, 105, 0.08);
    color: #047857;
    border-color: #047857;
    text-decoration: none;
}

/* Demo — filled gradient CTA */
.nav-btn-demo {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
    transition: all 0.25s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.nav-btn-demo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.nav-btn-demo:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.45);
}

.nav-btn-demo:hover::before {
    opacity: 1;
}

.nav-btn-demo i,
.nav-btn-demo span {
    position: relative;
    z-index: 1;
}

/* ── User chip (avatar pill) ── */
.nav-user-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px 5px 5px;
    border-radius: 999px;
    border: 1.5px solid rgba(5, 150, 105, 0.3);
    background: rgba(5, 150, 105, 0.05);
    color: #1e293b;
    font-family: "Outfit", sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
    cursor: pointer;
}

.nav-user-chip:hover,
.nav-user-chip.show {
    background: rgba(5, 150, 105, 0.1);
    border-color: rgba(5, 150, 105, 0.5);
    color: #1e293b;
    text-decoration: none;
}

.nav-user-chip.dropdown-toggle::after {
    display: none;
}

.nav-user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #059669, #047857);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.nav-user-name {
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-user-caret {
    font-size: 10px;
    opacity: 0.55;
    transition: transform 0.2s;
}

.nav-user-chip.show .nav-user-caret {
    transform: rotate(180deg);
}

.nav-user-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #059669, #047857);
    color: #fff;
    padding: 2px 8px;
    border-radius: 999px;
}

/* Logout icon button */
.nav-logout-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1.5px solid rgba(220, 38, 38, 0.25);
    background: rgba(220, 38, 38, 0.05);
    color: #dc2626;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.nav-logout-btn:hover {
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.45);
}

/* ── User dropdown menu ── */
.nav-user-menu {
    min-width: 240px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 6px;
    margin-top: 10px !important;
    background: #fff;
}

.nav-user-menu-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px 8px;
}

.nav-user-menu-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #059669, #047857);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-user-menu-name {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
}

.nav-user-menu-email {
    font-size: 12px;
    color: #64748b;
    line-height: 1.3;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-user-menu-item {
    display: flex !important;
    align-items: center;
    gap: 9px;
    padding: 9px 12px !important;
    border-radius: 8px !important;
    font-size: 13.5px;
    font-weight: 600;
    color: #374151;
    transition: background 0.15s, color 0.15s;
}

.nav-user-menu-item i {
    width: 16px;
    text-align: center;
    color: #94a3b8;
    font-size: 13px;
    flex-shrink: 0;
}

.nav-user-menu-item:hover {
    background: rgba(5, 150, 105, 0.07) !important;
    color: #047857 !important;
}

.nav-user-menu-item:hover i {
    color: #047857;
}

.nav-user-menu-logout {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    color: #dc2626 !important;
}

.nav-user-menu-logout i {
    color: #dc2626 !important;
}

.nav-user-menu-logout:hover {
    background: rgba(220, 38, 38, 0.07) !important;
    color: #dc2626 !important;
}

/* ── MOBILE ─────────────────────────────────── */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        border-radius: 16px;
        margin-top: 10px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
        padding: 8px 0 12px;
    }

    .navbar-nav {
        flex-direction: column !important;
        width: 100%;
        align-items: stretch;
        gap: 0 !important;
    }

    .navbar-nav .nav-item {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    .navbar .navbar-nav .nav-link {
        padding: 13px 20px !important;
        border-radius: 0;
        font-size: 15px;
    }

    .navbar .navbar-nav .nav-link:hover:not(.active) {
        background: rgba(5, 150, 105, 0.06);
        border-radius: 0;
    }

    .navbar .nav-pills .nav-link.active {
        border-radius: 0 !important;
        box-shadow: none;
    }

    /* Dropdown */
    .navbar .nav-item.dropdown {
        flex-direction: column;
    }

    .navbar .dropdown-toggle {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }

    .navbar .dropdown-toggle::after {
        display: inline-block;
        content: "\f107";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        border: none;
        font-size: 12px;
        color: #94a3b8;
        transition: transform 0.25s;
        margin-left: auto;
    }

    .navbar .nav-item.show .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .navbar .dropdown-menu {
        position: static !important;
        transform: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        box-shadow: none !important;
        border: none !important;
        border-top: 1px solid #f1f5f9 !important;
        border-radius: 0 !important;
        background: #f8fafc !important;
        padding: 4px 0 !important;
        margin: 0 !important;
        width: 100%;
        display: none;
    }

    .navbar .dropdown-menu.show {
        display: block !important;
    }

    .navbar .dropdown-item {
        padding: 11px 32px !important;
        border-radius: 0 !important;
        font-size: 14px;
        border-bottom: 1px solid #f1f5f9;
    }

    .navbar .dropdown-item:last-child {
        border-bottom: none;
    }

    /* Mobile action buttons */
    .nav-actions {
        flex-direction: column;
        width: 100%;
        padding: 12px 16px;
        gap: 8px !important;
        border-top: 1px solid #f1f5f9;
    }

    .nav-btn-login,
    .nav-btn-demo {
        width: 100%;
        justify-content: center;
        border-radius: 10px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .nav-user-chip {
        width: 100%;
        justify-content: flex-start;
        border-radius: 10px;
    }
}

/* ── DESKTOP ─────────────────────────────────── */
@media (min-width: 992px) {
    .navbar-nav {
        flex-direction: row;
        align-items: center;
    }

    .navbar .nav-item .dropdown-menu {
        position: absolute;
        display: block;
        visibility: hidden;
        /* top: 100% with no gap — padding-top gives visual breathing room */
        top: 100%;
        left: 0;
        padding-top: 12px;
        /* visual gap lives INSIDE the menu, not outside */
        transform: translateY(-6px);
        opacity: 0;
        transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
        pointer-events: none;
    }

    /* Transparent bridge fills the space between the trigger and the menu
       so the mouse never leaves the hover zone while moving downward */
    .navbar .nav-item .dropdown-menu::before {
        content: "";
        position: absolute;
        top: 0;
        left: -16px;
        right: -16px;
        height: 14px;
        /* covers the padding-top gap */
        background: transparent;
    }

    .navbar .nav-item:hover .dropdown-menu,
    .navbar .nav-item.show .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}



/* ================================================================
   HERO CAROUSEL
================================================================ */
.header-carousel .header-carousel-item {
    height: 700px;
    position: relative;
}

.header-carousel .header-carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(13, 31, 60, 0.72) 0%,
            rgba(26, 86, 219, 0.45) 60%,
            rgba(5, 150, 105, 0.25) 100%);
    z-index: 1;
}

.header-carousel .carousel-caption {
    position: relative;
    z-index: 2;
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

/* Owl nav */
.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t);
    backdrop-filter: blur(6px);
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 34px;
}

.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 34px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Hero text */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff0f2;
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: #121010;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    margin-bottom: 20px;
}

.hero-title {
    font-family: "Outfit", sans-serif;
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 900;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-title em {
    font-style: normal;
    color: #008a3c;
}

.hero-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 36px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 12px;
}

.hero-stat-num {
    font-family: "Outfit", sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.hero-stat-lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 3px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Dashboard visual card in hero */
.hero-visual-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--r-xl);
    padding: 24px;
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-xl);
}

.hero-kpi-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.hero-kpi {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--r);
    padding: 14px;
}

.hero-kpi-val {
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #fff;
}

.hero-kpi-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-kpi-chg {
    font-size: 11px;
    font-weight: 700;
    color: #6ee7b7;
    margin-top: 4px;
}

.hero-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 56px;
}

.hbar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: rgba(255, 255, 255, 0.25);
    animation: hbarGrow 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transform-origin: bottom;
    transform: scaleY(0);
}

.hbar:nth-child(4) {
    background: rgba(110, 231, 183, 0.7);
}

@keyframes hbarGrow {
    to {
        transform: scaleY(1);
    }
}

.hbar:nth-child(1) {
    height: 38%;
    animation-delay: 0.1s;
}

.hbar:nth-child(2) {
    height: 62%;
    animation-delay: 0.15s;
}

.hbar:nth-child(3) {
    height: 48%;
    animation-delay: 0.2s;
}

.hbar:nth-child(4) {
    height: 85%;
    animation-delay: 0.25s;
}

.hbar:nth-child(5) {
    height: 65%;
    animation-delay: 0.3s;
}

.hbar:nth-child(6) {
    height: 92%;
    animation-delay: 0.35s;
}

.hbar:nth-child(7) {
    height: 74%;
    animation-delay: 0.4s;
}

/* Float badges */
.float-chip {
    position: absolute;
    background: #fff;
    border-radius: var(--r);
    padding: 10px 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    z-index: 10;
}

.float-chip-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.fc-green {
    background: rgba(5, 150, 105, 0.1);
    color: var(--accent);
}

.fc-blue {
    background: rgba(26, 86, 219, 0.1);
    color: var(--primary);
}

.float-chip-title {
    font-weight: 700;
    font-size: 13px;
    color: var(--navy);
}

.float-chip-sub {
    font-size: 11px;
    color: var(--muted);
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item {
        height: 1100px;
    }

    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 780px;
    }
}

/* ================================================================
   TRUST / CLIENT BAR
================================================================ */
.trust-bar {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--light-text);
    white-space: nowrap;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}

.trust-logo-item {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--light-text);
    display: flex;
    align-items: center;
    gap: 7px;
    transition: var(--t);
}

.trust-logo-item:hover {
    color: var(--primary);
}

.trust-partner-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    background: var(--accent-lt);
    border: 1px solid rgba(5, 150, 105, 0.2);
    padding: 6px 14px;
    border-radius: 999px;
    letter-spacing: 0.06em;
}

/* ================================================================
   SERVICES MODERN (dark section)
================================================================ */
.services-modern {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.services-modern::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(ellipse,
            rgba(26, 86, 219, 0.18) 0%,
            transparent 70%);
    pointer-events: none;
}

/* Service cards on dark bg */
.modern-service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-lg);
    padding: 32px 24px;
    height: 100%;
    transition: var(--t);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    border-color: #008a3c;
}

.modern-service-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

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

.modern-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.modern-service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--r);
    background: rgba(26, 86, 219, 0.2);
    border: 1px solid rgba(26, 86, 219, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #93c5fd;
    margin-bottom: 20px;
    transition: var(--t);
}

.modern-service-card:hover .modern-service-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: scale(1.05);
}

.modern-service-card h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 18px;
}

.modern-service-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14.5px;
    line-height: 1.7;
}

.modern-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    color: #059669;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: var(--t);
    font-family: "Outfit", sans-serif;
}

.modern-btn:hover {
    color: #fff;
    gap: 10px;
}

/* About */

.about h2 {
    font-size: 36px;
    line-height: 1.25;
}

.about p {
    font-size: 16px;
    line-height: 1.9;
}

.one-red {
    color: var(--one-red);
}

.one-blue {
    color: var(--one-blue);
}

.one-green {
    color: var(--one-green);
    font-size: 14px;
    letter-spacing: 2px;
}

/* ================================================================
   SERVICE SECTION (light — with images)
================================================================ */
.service .service-item {
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--t);
    display: grid;
    grid-template-rows: auto 1fr auto;
    height: 100%;
}

.service .service-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: rgba(26, 86, 219, 0.2);
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
}

.service .service-item .service-img img {
    transition: 0.45s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.07);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            transparent 40%,
            rgba(13, 31, 60, 0.6) 100%);
    transition: var(--t);
    z-index: 1;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 64px;
    height: 56px;
    bottom: 0;
    right: 20px;
    border-radius: var(--r) var(--r) 0 0;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t);
    z-index: 9;
    box-shadow: var(--shadow-sm);
}

.service .service-item .service-img .service-icon i {
    color: var(--primary);
    font-size: 20px;
    transition: var(--t);
}

.service .service-item:hover .service-img .service-icon {
    background: var(--primary);
}

.service .service-item:hover .service-img .service-icon i {
    color: #fff;
    transform: rotateY(180deg);
}

.service .service-content {
    position: relative;
    background: var(--surface);
    padding: 24px;
}

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

.service .service-content-inner .h4 {
    font-size: 17px;
    color: var(--navy);
    font-weight: 700;
    transition: var(--t);
}

.service .service-content-inner p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.7;
    transition: var(--t);
}

/* ================================================================
   ODOO CARDS (light section)
================================================================ */
.service.bg-light {
    background: var(--bg) !important;
}

.odoo-card {
    position: relative;
    border-radius: var(--r-lg);
    padding: 26px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--t);
    overflow: hidden;
    height: 100%;
}

.odoo-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.odoo-card:hover::before {
    transform: scaleX(1);
}

.odoo-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 86, 219, 0.2);
}

.odoo-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.odoo-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 11px;
    color: var(--primary);
    background: var(--primary-dim);
    border: 1px solid rgba(26, 86, 219, 0.2);
}

.odoo-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-dim);
    border: 1px solid rgba(5, 150, 105, 0.2);
    color: var(--green-dark);
    font-size: 18px;
    transition: var(--t);
}

.odoo-card:hover .odoo-icon {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    border-color: transparent;
}

.odoo-title {
    color: var(--navy);
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.odoo-desc {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ================================================================
   PRODUCT CARDS (colored)
================================================================ */
.modern-service-card.card-blue {
    background: linear-gradient(135deg, #1a56db, #1d4ed8);
}

.modern-service-card.card-green {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.modern-service-card.card-purple {
    background: linear-gradient(135deg, #059669, #047857);
}

.modern-service-card.card-cyan {
    background: linear-gradient(135deg, #0891b2, #0e7490);
}

.modern-service-card.card-blue:hover {
    box-shadow: 0 24px 56px rgba(26, 86, 219, 0.4);
}

.modern-service-card.card-green:hover {
    box-shadow: 0 24px 56px rgba(220, 38, 38, 0.4);
}

.modern-service-card.card-purple:hover {
    box-shadow: 0 24px 56px rgba(5, 150, 105, 0.4);
}

.modern-service-card.card-cyan:hover {
    box-shadow: 0 24px 56px rgba(8, 145, 178, 0.4);
}

.modern-service-card.card-blue::after,
.modern-service-card.card-green::after,
.modern-service-card.card-purple::after,
.modern-service-card.card-cyan::after {
    display: none;
}

/* ================================================================
   WORK PROCESS
================================================================ */
.work-process-section {
    background: var(--bg);
    position: relative;
}

.process-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px 20px;
    transition: var(--t);
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: var(--t);
}

.process-card:hover::before {
    opacity: 1;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 86, 219, 0.2);
}

.process-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 16px;
    border-radius: var(--r-lg);
    background: var(--primary-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    border: 1px solid rgba(26, 86, 219, 0.18);
    transition: var(--t);
}

.process-card:hover .process-icon {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.step-number {
    font-family: "Outfit", sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--primary);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.process-card h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}


/* ================================================================
   ABOUT / VISION SECTION
================================================================ */
.about {
    background: var(--bg);
}

.about-item-content {
    border-radius: var(--r-lg) !important;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md) !important;
    transition: var(--t);
}

.about-item-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg) !important;
}

.about-item-content.bg-white {
    background: var(--surface) !important;
}

/* Stats row */
.stats-row {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%);
    padding: 60px 0;
}

.stat-block {
    text-align: center;
    padding: 20px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-block:last-child {
    border-right: none;
}

.stat-num {
    font-family: "Outfit", sans-serif;
    font-size: 46px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-num span {
    color: #6ee7b7;
    font-size: 28px;
}

.stat-lbl {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* ================================================================
   FEATURE SECTION
================================================================ */
.feature .feature-item {
    border-radius: var(--r-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: var(--t);
    box-shadow: var(--shadow-xs);
}

.feature .feature-item:hover {
    background: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature .feature-item .feature-icon {
    position: relative;
    width: 90px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 var(--r) var(--r);
    background: var(--bg2);
    color: var(--primary);
}

.feature .feature-item .feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 0 0 var(--r) var(--r);
    background: var(--navy);
    transition: var(--t);
    z-index: 1;
}

.feature .feature-item:hover .feature-icon::after {
    height: 100%;
}

.feature .feature-item:hover .feature-icon i {
    z-index: 9;
    color: #fff;
}

.feature .feature-item .feature-icon,
.feature .feature-item h4,
.feature .feature-item p {
    transition: var(--t);
}

.feature .feature-item:hover h4,
.feature .feature-item:hover p {
    color: #fff;
}

.feature .feature-item:hover a.btn {
    background: #fff;
    color: var(--primary);
}

.feature .feature-item:hover a.btn:hover {
    background: var(--navy);
    color: #fff;
}

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

.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: #fff;
    background: var(--primary);
    font-size: 16px;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--navy);
    background: var(--surface);
}

/* ================================================================
   BLOG
================================================================ */
.blog .blog-item {
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    background: var(--surface);
    transition: var(--t);
    overflow: hidden;
}

.blog .blog-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: rgba(26, 86, 219, 0.18);
}

.blog .blog-item .blog-img {
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.45s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.08);
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: var(--r) 0 0 0;
    padding: 6px 14px;
    display: inline-flex;
    color: #fff;
    background: var(--primary);
    font-size: 12px;
    font-weight: 700;
    z-index: 9;
}

.blog .blog-item .blog-content {
    padding: 22px;
    background: var(--surface);
}

.blog .blog-item .blog-content a.btn {
    color: var(--muted);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--primary);
}

/* ================================================================
   CONTACT
================================================================ */
.contact .contact-img {
    position: relative;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(255, 255, 255, 0.88);
    z-index: 1;
    animation: morphBlob 12s ease-in-out infinite alternate;
}

@keyframes morphBlob {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    25% {
        border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;
    }

    50% {
        border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;
    }

    75% {
        border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}

/* Contact form inputs */
.form-control,
.form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 12px 16px;
    font-family: "Nunito", sans-serif;
    font-size: 14.5px;
    color: var(--text);
    background: var(--surface);
    transition: var(--t);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.form-label {
    font-weight: 600;
    font-size: 13px;
    color: var(--navy);
    margin-bottom: 6px;
}

/* ================================================================
   BREADCRUMB HERO
================================================================ */
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,
            var(--navy) 0%,
            #1a3a6e 50%,
            #0d2137 100%);
    background-position: center;
    background-size: cover;
    padding: 72px 0 60px;
    transition: 0.5s;
}

/* Dot-grid texture overlay */
.bg-breadcrumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Radial glow — top right */
.bg-breadcrumb::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(5, 150, 105, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

/* Bottom accent line */
.bg-breadcrumb .breadcrumb-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green) 0%, #6ee7b7 40%, var(--primary) 70%, var(--green) 100%);
    background-size: 200% 100%;
    animation: heroAccentShift 6s linear infinite;
}

@keyframes heroAccentShift {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 0%;
    }
}

.bg-breadcrumb .breadcrumb {
    position: relative;
    z-index: 2;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a:hover {
    color: #6ee7b7;
}

.bg-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.35);
}

.bg-breadcrumb h1 {
    color: #fff;
    font-weight: 800;
    font-family: "Outfit", sans-serif;
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.bg-breadcrumb p {
    position: relative;
    z-index: 2;
}

.bg-breadcrumb .section-tag {
    position: relative;
    z-index: 2;
}

.bg-breadcrumb .container {
    position: relative;
    z-index: 2;
}

/* ================================================================
   CTA BANNER
================================================================ */
.cta-section {
    background: linear-gradient(135deg,
            var(--primary) 0%,
            #1d4ed8 50%,
            var(--navy) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -80px;
    right: 10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse,
            rgba(110, 231, 183, 0.15) 0%,
            transparent 70%);
}

.cta-section h2 {
    color: #fff;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    margin-bottom: 14px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
}

/* ================================================================
   SITE FOOTER  — professional dark edition
================================================================ */
.site-footer {
    position: relative;
    background: linear-gradient(160deg, #0a1628 0%, #0d1f3c 55%, #0b2318 100%);
    overflow: hidden;
    padding-top: 0;
}

/* ── Top accent bar ── */
.footer-accent-bar {
    height: 3px;
    background: linear-gradient(90deg, #059669 0%, #6ee7b7 40%, #1a56db 70%, #059669 100%);
    background-size: 200% 100%;
    animation: footerAccentShift 6s linear infinite;
}

@keyframes footerAccentShift {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 0%;
    }
}

/* ── Decorative blobs ── */
.footer-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.12;
}

.footer-blob-1 {
    width: 500px;
    height: 500px;
    background: #1a56db;
    top: -150px;
    left: -150px;
}

.footer-blob-2 {
    width: 380px;
    height: 380px;
    background: #059669;
    bottom: -100px;
    right: -80px;
}

/* ── Container ── */
.footer-container {
    position: relative;
    z-index: 1;
    padding-top: 72px;
    padding-bottom: 32px;
}

/* ── 4-column grid ── */
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.1fr 1.4fr;
    gap: 48px 40px;
    margin-bottom: 56px;
}

/* ── Brand column ── */
/* .footer-col-brand {} */

.footer-logo-wrap {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    /* filter: brightness(0) invert(1); */
    opacity: 0.9;
    transition: var(--t);
}

.footer-logo-wrap:hover .footer-logo-img {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(110, 231, 183, 0.5));
}

.footer-brand-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 300px;
}

/* Odoo partner badge */
.footer-partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.07em;
    color: #6ee7b7;
    background: rgba(110, 231, 183, 0.1);
    border: 1px solid rgba(110, 231, 183, 0.22);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 24px;
}

/* Social buttons */
.footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    text-decoration: none;
    transition: var(--t);
}

.footer-social-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(5, 150, 105, 0.4);
}

/* ── Column headings ── */
.footer-col-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col-heading-line {
    display: inline-block;
    width: 20px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #059669, #6ee7b7);
    flex-shrink: 0;
}

/* ── Nav list ── */
.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-nav-list a {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 7px 10px;
    border-radius: 8px;
    transition: var(--t);
}

.footer-nav-list a i {
    font-size: 9px;
    color: #059669;
    opacity: 0;
    transform: translateX(-4px);
    transition: var(--t);
    flex-shrink: 0;
}

.footer-nav-list a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    padding-left: 14px;
}

.footer-nav-list a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* ── Contact list ── */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(5, 150, 105, 0.15);
    border: 1px solid rgba(5, 150, 105, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #6ee7b7;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--t);
}

.footer-contact-list li:hover .footer-contact-icon {
    background: linear-gradient(135deg, #059669, #047857);
    border-color: transparent;
    color: #fff;
}

.footer-contact-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-contact-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.footer-contact-value {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    line-height: 1.5;
}

.footer-contact-link {
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-link:hover {
    color: #6ee7b7;
}

/* ── Horizontal rule ── */
.footer-hr {
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.1) 20%,
            rgba(255, 255, 255, 0.1) 80%,
            transparent 100%);
    margin-bottom: 28px;
}

/* ── Bottom bar ── */
.footer-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.footer-copyright strong {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
}

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

.footer-bottom-links a {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 600;
}

.footer-bottom-links a:hover {
    color: #6ee7b7;
}

.footer-bottom-sep {
    color: rgba(255, 255, 255, 0.2);
    font-size: 12px;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
        gap: 36px 28px;
    }
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 32px;
    }

    .footer-col-brand {
        grid-column: 1 / -1;
    }

    .footer-brand-desc {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-col-brand {
        grid-column: auto;
    }

    .footer-container {
        padding-top: 48px;
    }

    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
    }
}

/* ================================================================
   COPYRIGHT (legacy — kept for compatibility)
================================================================ */
.copyright {
    background: rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
}

/* ================================================================
   GLASS CARDS (service detail pages)
================================================================ */
.glass-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 26px;
    box-shadow: var(--shadow-sm);
    transition: var(--t);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 86, 219, 0.2);
}

.glass-card-head {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.glass-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-lt);
    border: 1px solid rgba(5, 150, 105, 0.2);
    color: var(--accent);
    font-size: 18px;
}

.glass-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.glass-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--text);
    font-size: 14.5px;
    line-height: 1.65;
}

.glass-list i {
    color: var(--accent);
    margin-top: 3px;
}



.job-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--t);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 86, 219, 0.18);
}

.job-meta {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 14px;
}

.job-meta i {
    width: 18px;
    color: var(--accent);
    margin-right: 6px;
}

.job-deadline {
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.22);
    white-space: nowrap;
}

/* ================================================================
   DEMO SECTION
================================================================ */
.demo-modern-section {
    background: var(--bg);
}

.demo-hero-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.demo-mini-badge {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-dim);
    border: 1px solid rgba(26, 86, 219, 0.18);
}

.demo-modern-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--t);
    height: 100%;
}

.demo-modern-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 86, 219, 0.18);
}

.demo-modern-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: 0.35s;
}

.demo-modern-card:hover .demo-modern-thumb {
    transform: scale(1.05);
}

.demo-modern-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 20px;
    box-shadow: 0 12px 30px rgba(26, 86, 219, 0.4);
    transition: var(--t);
    cursor: pointer;
}

.demo-modern-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--navy);
}

.demo-modern-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(13, 31, 60, 0.85);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
}

.demo-modern-body {
    padding: 20px;
}

/* ================================================================
   LOGIN
================================================================ */
.login-modern {
    min-height: 100vh;
    background: var(--bg);
    display: flex;
    align-items: center;
}

.login-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.login-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-content {
    padding: 44px;
}

.form-modern {
    background: var(--bg) !important;
    border: 1.5px solid var(--border) !important;
    color: var(--text) !important;
    border-radius: var(--r) !important;
    padding: 12px 16px !important;
    font-family: "Nunito", sans-serif !important;
    font-size: 14.5px !important;
    transition: var(--t) !important;
}

.form-modern::placeholder {
    color: var(--light-text);
}

.form-modern:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1) !important;
    background: var(--surface) !important;
}

.modern-login-btn {
    background: var(--primary);
    border: none;
    border-radius: var(--r);
    color: #fff;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    padding: 13px 28px;
    cursor: pointer;
    transition: var(--t);
    width: 100%;
}

.modern-login-btn:hover {
    background: var(--navy);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Modal forms */
.demo-form-input {
    background: var(--bg) !important;
    border: 1.5px solid var(--border) !important;
    color: var(--text) !important;
    border-radius: var(--r) !important;
    padding: 12px 16px !important;
    font-family: "Nunito", sans-serif !important;
}

.demo-form-input::placeholder {
    color: var(--light-text);
}

.demo-form-input:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1) !important;
}

/* ================================================================
   SERVICE DETAIL
================================================================ */
.service-details {
    background: var(--bg);
}

/* ================================================================
   CONTACT MODERN CARD
================================================================ */
.contact-modern-card {
    background: var(--surface);
    border-radius: var(--r-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transition: var(--t);
}

.contact-modern-card:hover {
    border-color: rgba(26, 86, 219, 0.2);
    box-shadow: var(--shadow-lg);
}

.contact-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-info-item i {
    width: 44px;
    height: 44px;
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-dim);
    color: var(--primary);
    font-size: 17px;
    flex-shrink: 0;
}

.contact-info-item h6 {
    color: var(--navy);
    margin-bottom: 3px;
    font-weight: 700;
}

.contact-info-item p {
    color: var(--muted);
    margin: 0;
    font-size: 14px;
}

.modern-input {
    background: var(--bg);
    border: 1.5px solid var(--border);
    color: var(--text);
    border-radius: var(--r);
    padding: 12px 16px;
    font-family: "Nunito", sans-serif;
    font-size: 14.5px;
    width: 100%;
    outline: none;
    transition: var(--t);
}

.modern-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

/* ================================================================
   SCROLL REVEAL
================================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-d1 {
    transition-delay: 0.1s;
}

.reveal-d2 {
    transition-delay: 0.2s;
}

.reveal-d3 {
    transition-delay: 0.3s;
}

.reveal-d4 {
    transition-delay: 0.4s;
}

/* ABOUT GALLERY */

.about-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-img-big img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.about-img-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.about-img-grid img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 12px;
    transition: var(--t);
    box-shadow: var(--shadow-sm);
}

.about-img-grid img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* SERVICE LIST */

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

.service-list li {
    padding: 6px 0;
    font-size: 15px;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-list li::before {
    content: "✓";
    color: #059669;
    font-weight: 700;
}

/* Responsive */

@media (max-width: 992px) {
    .about-img-big img {
        height: 220px;
    }

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

/* ================================================================
   RESPONSIVE HELPERS
================================================================ */
@media (max-width: 576px) {
    .footer-newsletter {
        flex-direction: column;
    }

    .hero-stats {
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .stats-row .col-6 {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* ================================================================
   ABOUT SECTION
================================================================ */
.about-section {
    background: var(--bg);
}

.about-visual-wrap {
    position: relative;
}

.about-img-big {
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.about-img-big img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    display: block;
}

.about-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--surface);
    border-radius: var(--r);
    padding: 10px 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.about-img-badge i {
    font-size: 20px;
    color: #f59e0b;
}

.about-img-badge div {
    display: flex;
    flex-direction: column;
}

.about-img-badge strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

.about-img-badge span {
    font-size: 11px;
    color: var(--muted);
}

.about-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.about-img-grid img {
    border-radius: var(--r-lg);
    height: 110px;
    width: 100%;
    object-fit: cover;
    transition: var(--t);
}

.about-img-grid img:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-md);
}

.about-float-stat {
    position: absolute;
    top: 18px;
    right: -18px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--r-lg);
    padding: 16px 20px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(26, 86, 219, 0.4);
}

.afs-num {
    font-family: "Outfit", sans-serif;
    font-size: 30px;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.afs-lbl {
    font-size: 11px;
    opacity: 0.85;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
    margin-top: 3px;
}

/* Brand name highlight */
.brand-name {
    color: var(--primary);
    font-weight: 800;
}

/* About pillars */
.about-pillars-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.about-pillar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 12px 16px;
    flex: 1;
    min-width: 110px;
    transition: var(--t);
    box-shadow: var(--shadow-sm);
}

.about-pillar:hover {
    border-color: rgba(26, 86, 219, 0.3);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.ap-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: var(--primary-dim);
    border: 1px solid rgba(26, 86, 219, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

.about-pillar div {
    display: flex;
    flex-direction: column;
}

.about-pillar strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

.about-pillar span {
    font-size: 11px;
    color: var(--muted);
}

/* About stats */
.about-stats-row {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 20px 24px;
    box-shadow: var(--shadow-sm);
}

.about-stat {
    text-align: center;
}

.as-num {
    font-family: "Outfit", sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.as-lbl {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-top: 4px;
}

.about-stat-div {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* ================================================================
   SERVICES SECTION
================================================================ */
.services-section {
    /* background: linear-gradient(160deg, #f8faff 0%, #eef4fb 100%); */
    background: var(--bg);
}

/* Featured service card */
.service-card-featured {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%);
    border-radius: var(--r-xl);
    padding: 32px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--t);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
}

.service-card-featured::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(ellipse,
            rgba(26, 86, 219, 0.35) 0%,
            transparent 70%);
}

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

.scf-icon {
    width: 58px;
    height: 58px;
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.scf-icon.blue {
    background: rgba(26, 86, 219, 0.3);
    color: #93c5fd;
    border: 1px solid rgba(26, 86, 219, 0.4);
}

.scf-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(110, 231, 183, 0.15);
    color: #6ee7b7;
    border: 1px solid rgba(110, 231, 183, 0.25);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 999px;
}

.service-card-featured h4 {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.service-card-featured p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14.5px;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

.scf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    padding: 11px 22px;
    border-radius: var(--r);
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 14px;
    margin-top: 20px;
    text-decoration: none;
    transition: var(--t);
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 20px rgba(4, 120, 87, 0.3);
}

.scf-btn:hover {
    background: #065f46;
    transform: translateY(-2px);
    color: #fff;
}

/* Standard service cards */
.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    height: 100%;
    transition: var(--t);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    border-radius: 0 0 var(--r-lg) var(--r-lg);
}

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

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
}

/* .sc-blue::after {
    background: linear-gradient(90deg, var(--primary), #60a5fa);
}
.sc-green::after {
    background: linear-gradient(90deg, var(--accent), #34d399);
}
.sc-purple::after {
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
}
.sc-cyan::after {
    background: linear-gradient(90deg, #0891b2, #67e8f9);
}
.sc-orange::after {
    background: linear-gradient(90deg, #d97706, #fcd34d);
}
.sc-red::after {
    background: linear-gradient(90deg, #dc2626, #f87171);
}
.sc-violet::after {
    background: linear-gradient(90deg, #6d28d9, #c4b5fd);
} */

.sc-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;
    transition: var(--t);
}

.sc-blue .sc-icon-wrap {
    background: var(--primary-dim);
    border: 1px solid rgba(26, 86, 219, 0.18);
    color: var(--primary);
}

.sc-green .sc-icon-wrap {
    background: var(--accent-lt);
    border: 1px solid rgba(4, 120, 87, 0.18);
    color: var(--accent);
}

.sc-purple .sc-icon-wrap {
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.18);
    color: #7c3aed;
}

.sc-cyan .sc-icon-wrap {
    background: rgba(8, 145, 178, 0.1);
    border: 1px solid rgba(8, 145, 178, 0.18);
    color: #0891b2;
}

.sc-orange .sc-icon-wrap {
    background: rgba(217, 119, 6, 0.1);
    border: 1px solid rgba(217, 119, 6, 0.18);
    color: #d97706;
}

.sc-red .sc-icon-wrap {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.18);
    color: #dc2626;
}

.sc-violet .sc-icon-wrap {
    background: rgba(109, 40, 217, 0.1);
    border: 1px solid rgba(109, 40, 217, 0.18);
    color: #6d28d9;
}

.service-card:hover .sc-icon-wrap {
    transform: scale(1.08);
}

.service-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.72;
}

.sc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 13.5px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    text-decoration: none;
    transition: var(--t);
}

.modern-demo-btn {
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 13.5px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    text-decoration: none;
    transition: var(--t);
}

.sc-blue .sc-link {
    color: var(--primary);
}

.sc-green .sc-link {
    color: var(--accent);
}

.sc-purple .sc-link {
    color: #7c3aed;
}

.sc-cyan .sc-link {
    color: #0891b2;
}

.sc-orange .sc-link {
    color: #d97706;
}

.sc-red .sc-link {
    color: #dc2626;
}

.sc-violet .sc-link {
    color: #6d28d9;
}

.sc-link:hover {
    gap: 10px;
}

/* ================================================================
   INDUSTRY / SOLUTIONS SECTION
================================================================ */
.industry-section {
    background: var(--surface);
}

.industry-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ih-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text);
    font-weight: 600;
}

.ih-item i {
    color: var(--accent);
    font-size: 15px;
}

.industry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.industry-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 16px 18px;
    cursor: pointer;
    transition: var(--t);
    text-decoration: none;
}

.industry-card:hover {
    background: var(--surface);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.ic-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--t);
}

.ic-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ic-content strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    display: block;
}

.ic-content span {
    font-size: 12px;
    color: var(--muted);
    display: block;
    margin-top: 2px;
    line-height: 1.4;
}

.ic-arrow {
    color: var(--muted);
    font-size: 12px;
    transition: var(--t);
}

.industry-card:hover .ic-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

/* Industry color themes */
.ic-blue .ic-icon-wrap {
    background: rgba(26, 86, 219, 0.1);
    border: 1px solid rgba(26, 86, 219, 0.18);
    color: var(--primary);
}

.ic-orange .ic-icon-wrap {
    background: rgba(217, 119, 6, 0.1);
    border: 1px solid rgba(217, 119, 6, 0.18);
    color: #d97706;
}

.ic-green .ic-icon-wrap {
    background: rgba(5, 150, 105, 0.1);
    border: 1px solid rgba(5, 150, 105, 0.18);
    color: #059669;
}

.ic-emerald .ic-icon-wrap {
    background: rgba(4, 120, 87, 0.1);
    border: 1px solid rgba(4, 120, 87, 0.18);
    color: var(--accent);
}

.ic-purple .ic-icon-wrap {
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.18);
    color: #7c3aed;
}

.ic-navy .ic-icon-wrap {
    background: rgba(13, 31, 60, 0.08);
    border: 1px solid rgba(13, 31, 60, 0.14);
    color: var(--navy);
}

.ic-red .ic-icon-wrap {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.18);
    color: #dc2626;
}

.ic-gray .ic-icon-wrap {
    background: rgba(100, 116, 139, 0.1);
    border: 1px solid rgba(100, 116, 139, 0.18);
    color: var(--muted);
}

.ic-blue:hover {
    border-color: rgba(26, 86, 219, 0.25);
}

.ic-orange:hover {
    border-color: rgba(217, 119, 6, 0.25);
}

.ic-green:hover {
    border-color: rgba(5, 150, 105, 0.25);
}

.ic-emerald:hover {
    border-color: rgba(4, 120, 87, 0.25);
}

.ic-purple:hover {
    border-color: rgba(124, 58, 237, 0.25);
}

.ic-navy:hover {
    border-color: rgba(13, 31, 60, 0.2);
}

.ic-red:hover {
    border-color: rgba(220, 38, 38, 0.25);
}
.modules-section {
    background: var(--bg);
}
.modules-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.module-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    transition: var(--t);
    box-shadow: var(--shadow-sm);
    cursor: default;
}
.module-pill:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(26, 86, 219, 0.25);
}
.mp-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}
.mc-blue {
    background: rgba(26, 86, 219, 0.12);
    color: var(--primary);
}
.mc-green {
    background: rgba(5, 150, 105, 0.12);
    color: #059669;
}
.mc-orange {
    background: rgba(217, 119, 6, 0.12);
    color: #d97706;
}
.mc-purple {
    background: rgba(124, 58, 237, 0.12);
    color: #7c3aed;
}
.mc-red {
    background: rgba(220, 38, 38, 0.12);
    color: #dc2626;
}
.mc-cyan {
    background: rgba(8, 145, 178, 0.12);
    color: #0891b2;
}
.mc-navy {
    background: rgba(13, 31, 60, 0.08);
    color: var(--navy);
}
.mc-emerald {
    background: rgba(4, 120, 87, 0.12);
    color: var(--accent);
}
.mc-violet {
    background: rgba(109, 40, 217, 0.12);
    color: #6d28d9;
}
.mc-amber {
    background: rgba(245, 158, 11, 0.12);
    color: #d97706;
}
.tc-quote {
    color: var(--primary-dim);
    font-size: 64px;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 6px;
}
.tc-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}
.tc-stars i {
    color: #f59e0b;
    font-size: 13px;
}
.tc-text {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 20px;
}
.tc-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}
.tc-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
}
.tc-author div {
    display: flex;
    flex-direction: column;
}
.tc-author strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}
.tc-author span {
    font-size: 12px;
    color: var(--muted);
}
/* ================================================================
   CONTACT / CTA SECTION
================================================================ */
.contact-cta-section {
    background: var(--bg);
}
.cta-card {
    background: linear-gradient(135deg,
            var(--navy) 0%,
            #1a3a6e 50%,
            #0f2952 100%);
    border-radius: 28px;
    padding: 56px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.cta-card-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(600px 400px at 0% 0%,
            rgba(26, 86, 219, 0.2),
            transparent 60%),
        radial-gradient(400px 300px at 100% 100%,
            rgba(4, 120, 87, 0.15),
            transparent 55%);
    pointer-events: none;
}
.cta-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.cci-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.cci-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--r);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #93c5fd;
    font-size: 15px;
    flex-shrink: 0;
}
.cci-item div {
    display: flex;
    flex-direction: column;
}
.cci-item strong {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}
.cci-item span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}
.contact-form-card {
    background: var(--surface);
    border-radius: var(--r-xl);
    padding: 32px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
}
.cfm-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 22px;
    font-family: "Outfit", sans-serif;
}
.cfm-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    display: block;
}
.cfm-input {
    width: 100%;
    background: var(--bg2);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 11px 15px;
    font-size: 14px;
    color: var(--text);
    font-family: "Nunito", sans-serif;
    transition: var(--t);
    outline: none;
    display: block;
}
.cfm-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
    background: var(--surface);
}
textarea.cfm-input {
    resize: vertical;
    min-height: 80px;
}
select.cfm-input {
    cursor: pointer;
}
.cfm-btn {
    width: 100%;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--r);
    padding: 14px 28px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--t);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(26, 86, 219, 0.3);
}

.cfm-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(4, 120, 87, 0.3);
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 991px) {
    .about-float-stat {
        right: 0;
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        flex-direction: column;
        align-items: center;
    }

    .pt-connector {
        display: none;
    }

    .pt-card {
        max-width: 100%;
        min-width: auto;
    }

    .cta-card {
        padding: 32px 24px;
    }

    .about-stats-row {
        flex-direction: column;
        gap: 12px;
    }

    .about-stat-div {
        width: 100%;
        height: 1px;
    }
}

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

    .trust-strip-inner {
        justify-content: center;
    }

    .hero-stats {
        gap: 16px;
    }

    .about-pillars-row .about-pillar {
        min-width: 100%;
    }

    .industry-highlights {
        grid-template-columns: 1fr;
    }
}

/* ================================================================
   ABOUT PAGE — PROFESSIONAL STYLES
================================================================ */

/* ── Story section ──────────────────────────────────────────── */
.abt-story {
    background: var(--bg);
    padding: 90px 0 80px !important;
    position: relative;
}

.abt-story::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    /* background: linear-gradient(90deg, var(--navy), var(--green), var(--primary)); */
}

/* ── Mosaic grid ── */
.abt-mosaic {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 280px 180px;
    gap: 10px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(13, 31, 60, 0.07),
        0 24px 64px rgba(13, 31, 60, 0.14),
        0 4px 16px rgba(13, 31, 60, 0.06);
    margin-bottom: 56px !important;
    position: relative;
}

.abt-mosaic::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    pointer-events: none;
    z-index: 2;
}

.abt-mosaic-img {
    border-radius: 0 !important;
    overflow: hidden;
    position: relative;
}

.abt-mosaic-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(13, 31, 60, 0.55) 100%);
    transition: opacity 0.4s ease;
}

.abt-mosaic-img:hover::after {
    opacity: 0.75;
}

.abt-mosaic-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.abt-mosaic-img:hover img {
    transform: scale(1.07);
}

.abt-mosaic-img:first-child {
    grid-row: 1 / 3;
}

/* ── Section headings inside story ── */
.abt-story .section-heading {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    letter-spacing: -0.4px;
    line-height: 1.18;
    margin-bottom: 14px;
    color: var(--navy);
}

.abt-story .section-heading:not(:first-of-type) {
    margin-top: 52px;
    padding-top: 44px;
    border-top: 2px solid var(--border);
    position: relative;
}

.abt-story .section-heading:not(:first-of-type)::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    width: 48px;
    height: 2px;
    /* background: linear-gradient(90deg, var(--green), var(--primary)); */
}

/* ── Intro badge row ── */
.abt-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.abt-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    padding: 6px 16px;
    letter-spacing: 0.12em;
    border-radius: 999px;
    font-weight: 800;
    text-transform: uppercase;
    transition: var(--t);
}

.abt-pill:hover {
    transform: translateY(-2px);
}

.abt-pill-blue {
    background: var(--green-dim);
    color: var(--green-dark);
    border: 1.5px solid rgba(5, 150, 105, 0.28);
    box-shadow: 0 2px 10px rgba(5, 150, 105, 0.14);
}

.abt-pill-red {
    background: rgba(220, 38, 38, 0.07);
    color: #dc2626;
    border: 1.5px solid rgba(220, 38, 38, 0.22);
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.10);
}

/* ── Story prose ── */
.abt-story-text {
    font-size: 15.5px;
    color: #334155;
    line-height: 2;
}

/* ── Checklist ── */
.abt-check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    padding: 0;
    list-style: none;
    margin-bottom: 32px !important;
}

.abt-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    padding: 12px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid transparent;
    border-radius: 10px;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-xs);
}

.abt-check-list li:hover {
    border-left-color: var(--green);
    background: rgba(5, 150, 105, 0.03);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.abt-check-list li i {
    color: var(--green);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .abt-check-list {
        grid-template-columns: 1fr;
    }

    .abt-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: 220px 150px 150px;
    }

    .abt-mosaic-img:first-child {
        grid-row: auto;
    }
}

/* ── Mission / Vision / Values ─────────────────────────────── */
.abt-mvv {
    background: var(--bg2);
    padding: 90px 0;
}

.mvv-card {
    border-radius: var(--r-xl);
    padding: 40px 32px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--t);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.mvv-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.38s ease;
}

.mvv-card:hover::before {
    transform: scaleX(1);
}

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

.mvv-card.c-mission {
    background: var(--surface);
}

.mvv-card.c-mission::before {
    background: linear-gradient(90deg, var(--primary), #2563eb);
}

.mvv-card.c-vision {
    background: linear-gradient(150deg, var(--navy) 0%, #0f2952 100%);
    border-color: rgba(255, 255, 255, 0.08);
}

.mvv-card.c-vision::before {
    background: linear-gradient(90deg, #6ee7b7, var(--accent));
}

.mvv-card.c-vision h3,
.mvv-card.c-vision p {
    color: #fff;
}

.mvv-card.c-vision p {
    color: rgba(255, 255, 255, 0.78);
}

.mvv-card.c-values {
    background: linear-gradient(150deg, #059669 0%, #047857 100%);
    border-color: rgba(255, 255, 255, 0.12);
}

.mvv-card.c-values::before {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

.mvv-card.c-values h3,
.mvv-card.c-values p {
    color: #fff;
}

.mvv-card.c-values p {
    color: rgba(255, 255, 255, 0.82);
}

.mvv-icon {
    width: 66px;
    height: 66px;
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 22px;
    transition: var(--t);
}

.mvv-card:hover .mvv-icon {
    transform: scale(1.12) rotate(-6deg);
}

.mvv-card h3 {
    font-family: "Outfit", sans-serif;
    font-size: 23px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--navy);
    letter-spacing: -0.2px;
}

.mvv-card p {
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--muted);
    margin: 0;
}

.mvv-value-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 8px;
}

.mvv-value-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.mvv-value-list li i {
    color: #fbbf24;
    font-size: 13px;
}

* ── Section wrapper ──────────────────────────────────────── */ .abt-why-section {
    background: var(--bg, #eef4fb);
}

/* ── Card ─────────────────────────────────────────────────── */
.why-card {
    position: relative;
    background: var(--surface, #fff);
    border: 1.5px solid var(--border, #e2e8f0);
    border-radius: 20px;
    padding: 32px 28px 28px;
    height: 100%;
    overflow: hidden;
    transition:
        transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Full-border colour on hover ──────────────────────────── */
.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--wc-border-hover, #1a56db);
    box-shadow: 0 20px 56px rgba(13, 31, 60, 0.13);
}

/* ── Animated bottom bar ──────────────────────────────────── */
.wc-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--wc-grad);
    border-radius: 0 0 20px 20px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover .wc-bar {
    transform: scaleX(1);
}

/* ── Background watermark number ─────────────────────────── */
.wc-num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: "Outfit", sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    color: var(--navy, #0d1f3c);
    opacity: 0.045;
    user-select: none;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.why-card:hover .wc-num {
    opacity: 0.08;
}

/* ── Icon ─────────────────────────────────────────────────── */
.wc-icon {
    width: 58px;
    height: 58px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    background: var(--wc-icon-bg);
    color: var(--wc-icon-color);
    border: 1px solid var(--wc-icon-border);
    transition:
        transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.28s ease,
        color 0.28s ease;
}

.why-card:hover .wc-icon {
    transform: scale(1.1) rotate(-4deg);
    background: var(--wc-grad);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* ── Title ────────────────────────────────────────────────── */
.wc-title {
    font-family: "Outfit", sans-serif;
    font-size: 16.5px;
    font-weight: 800;
    color: var(--navy, #0d1f3c);
    margin-bottom: 10px;
    line-height: 1.35;
    transition: color 0.28s ease;
}

.why-card:hover .wc-title {
    color: var(--wc-icon-color);
}

/* ── Body text ────────────────────────────────────────────── */
.wc-text {
    font-size: 14px;
    color: var(--muted, #64748b);
    line-height: 1.75;
    margin: 0;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 767px) {
    .why-card {
        padding: 26px 22px 24px;
    }

    .wc-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .wc-title {
        font-size: 15px;
    }
}

/* ── Scroll reveal ─────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-d1 {
    transition-delay: 0.08s;
}

.reveal-d2 {
    transition-delay: 0.16s;
}

.reveal-d3 {
    transition-delay: 0.24s;
}

.reveal-d4 {
    transition-delay: 0.32s;
}

.reveal-d5 {
    transition-delay: 0.4s;
}

.reveal-d6 {
    transition-delay: 0.48s;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 991px) {
    .timeline-wrap::before {
        left: 26px;
    }

    .timeline-item {
        grid-template-columns: 52px 1fr;
    }

    .timeline-item .timeline-content:first-child {
        display: none !important;
    }

    .timeline-item .timeline-content:last-child {
        display: block !important;
    }

    .timeline-dot-col {
        align-items: center;
    }

    .abt-check-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .abt-stat-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .abt-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: 220px 150px 150px;
    }

    .abt-mosaic-img:first-child {
        grid-row: auto;
    }
}

.brand-line {
    font-weight: 600;
    color: var(--navy);
    font-size: 15px;
    max-width: 700px;
    margin: auto;
}

/* ------------------------- */

/* CTA Buttons */
.dm-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 28px;
    border-radius: var(--r);
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 15px;
    transition: var(--t);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.dm-cta-primary {
    background: linear-gradient(135deg, #1a56db, #059669);
    color: #fff;
    box-shadow: 0 8px 28px rgba(26, 86, 219, 0.4);
}

.dm-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(26, 86, 219, 0.5);
    color: #fff;
}

.dm-cta-outline {
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff;
}

.dm-cta-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    color: #fff;
}
/* ── BENEFITS STRIP ─────────────────────────────────────────── */
.dm-benefits {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 60px 0;
}

.dm-benefit-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 28px;
    height: 100%;
    transition: var(--t);
}

.dm-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 86, 219, 0.18);
}

.dm-benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.dm-benefit-title {
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 8px;
}

.dm-benefit-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* ── VIDEO SECTION ──────────────────────────────────────────── */
.dm-videos {
    background: var(--bg);
    padding: 90px 0;
}

.dm-video-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    transition: var(--t);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dm-video-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(26, 86, 219, 0.18);
}

.dm-video-thumb {
    position: relative;
    overflow: hidden;
    height: 230px;
    flex-shrink: 0;
}

.dm-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
    display: block;
}

.dm-video-card:hover .dm-video-thumb img {
    transform: scale(1.06);
}

.dm-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(13, 31, 60, 0.65) 0%,
            rgba(13, 31, 60, 0.1) 60%,
            transparent 100%);
}

.dm-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: rgba(26, 86, 219, 0.9);
    border: 3px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--t);
    box-shadow: 0 8px 30px rgba(26, 86, 219, 0.5);
}

.dm-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.12);
    background: var(--primary);
    border-color: #fff;
}

.dm-vid-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    padding: 4px 12px;
    border-radius: 999px;
}

.dm-vid-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
}

.dm-video-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dm-vid-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.dm-vid-level {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    background: var(--bg2);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: 999px;
    white-space: nowrap;
}

.dm-vid-title {
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 8px;
    margin-top: 4px;
}

.dm-vid-desc {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

.dm-vid-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}

.dm-watch-btn {
    flex: 1;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--r);
    padding: 11px 20px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--t);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.dm-watch-btn:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(26, 86, 219, 0.3);
}

.dm-request-btn {
    background: var(--accent-lt);
    color: var(--accent);
    border: 1.5px solid rgba(5, 150, 105, 0.25);
    border-radius: var(--r);
    padding: 11px 16px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--t);
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.dm-request-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-2px);
}

.demo-modal-wrap {
    display: flex;
    border: none;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
}

.demo-modal-brand {
    flex: 0 0 38%;
    background: #132b53;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.demo-modal-brand::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(5, 150, 105, 0.22) 0%, transparent 70%);
    pointer-events: none;
}

.demo-modal-brand::after {
    content: "";
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(26, 86, 219, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.demo-modal-brand-inner {
    position: relative;
    z-index: 1;
    padding: 40px 32px;
}

.demo-modal-logo {
    height: 40px;
    width: auto;
    opacity: 0.9;
    margin-bottom: 28px;
}

.demo-modal-brand-title {
    font-family: "Outfit", sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
}

.demo-modal-brand-sub {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.75;
    margin-bottom: 28px;
}

/* Feature list */
.demo-modal-features {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 28px;
}

.demo-modal-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
}

.demo-modal-feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: linear-gradient(135deg, #059669, #047857);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(5, 150, 105, 0.35);
}

/* Partner badge */
.demo-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    color: #6ee7b7;
    background: rgba(110, 231, 183, 0.1);
    border: 1px solid rgba(110, 231, 183, 0.22);
    padding: 6px 14px;
    border-radius: 999px;
}

/* ── Right form panel ── */
.demo-modal-form-panel {
    flex: 1;
    background: #fff;
    padding: 36px 36px 32px;
    position: relative;
    overflow-y: auto;
    max-height: 90vh;
}

/* Close button */
.demo-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--bg2);
    border: 1px solid var(--border);
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: var(--t);
    z-index: 10;
}

.demo-modal-close:hover {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #dc2626;
}

/* Form header */
.demo-modal-form-header {
    margin-bottom: 24px;
    padding-right: 32px;
}

.demo-modal-form-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--green-dim);
    border: 1px solid rgba(5, 150, 105, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.demo-modal-form-title {
    font-family: "Outfit", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
}

.demo-modal-form-sub {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}

/* ── Form fields ── */
.dm-label {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    font-family: "Outfit", sans-serif;
    letter-spacing: 0.02em;
}

.dm-optional {
    font-weight: 500;
    color: var(--light-text);
    font-size: 11.5px;
}

.dm-field-wrap {
    position: relative;
}

.dm-field-icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 13px;
    pointer-events: none;
    z-index: 1;
}

.dm-field {
    width: 100%;
    padding: 10px 14px 10px 38px;
    background: var(--bg2);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: var(--t);
    appearance: none;
}

.dm-field::placeholder {
    color: var(--light-text);
}

.dm-field:focus {
    border-color: var(--green);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.dm-field-textarea {
    padding: 10px 14px;
    resize: vertical;
    min-height: 90px;
}

.dm-select {
    cursor: pointer;
}

/* Submit button */
.dm-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #059669, #047857);
    color: #fff;
    border: none;
    border-radius: var(--r);
    padding: 13px 24px;
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    transition: var(--t);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.32);
    position: relative;
    overflow: hidden;
}

.dm-submit::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.28s;
}

.dm-submit:hover {
    background: linear-gradient(135deg, #047857, #065f46);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(5, 150, 105, 0.42);
    color: #fff;
}

.dm-submit:hover::before {
    opacity: 1;
}

.dm-submit-arrow {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: transform 0.28s ease;
    margin-left: auto;
}

.dm-submit:hover .dm-submit-arrow {
    transform: translateX(4px);
}

/* Privacy note */
.dm-privacy-note {
    text-align: center;
    font-size: 12px;
    color: var(--light-text);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.dm-privacy-note i {
    color: var(--green-dark);
    font-size: 11px;
}

@media (max-width: 767px) {
    .demo-modal-brand {
        display: none;
    }

    .demo-modal-form-panel {
        padding: 32px 24px 28px;
        max-height: 100vh;
    }

    .demo-modal-wrap {
        border-radius: var(--r-lg);
    }
}
.dm-field-error {
    display: none;
    font-size: 12px;
    color: #dc2626;
    margin-top: 5px;
    padding-left: 2px;
}

.dm-field.dm-field-invalid {
    border-color: #dc2626 !important;
    background: rgba(220, 38, 38, 0.03);
}

.dm-field.dm-field-invalid:focus {
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.dm-required {
    color: #dc2626;
    margin-left: 2px;
}

.dm-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 500;
    margin-bottom: 16px;
}

.dm-alert-error {
    background: rgba(220, 38, 38, 0.07);
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: #b91c1c;
}

.dm-alert-error i {
    color: #dc2626;
    margin-top: 1px;
}

.dm-submit:disabled {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none !important;
}

.dm-success-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px 40px;
    gap: 16px;
}

.dm-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.12), rgba(4, 120, 87, 0.18));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.dm-success-icon i {
    font-size: 32px;
    color: #059669;
}

.dm-success-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.dm-success-msg {
    font-size: 14.5px;
    color: #64748b;
    max-width: 340px;
    line-height: 1.6;
    margin: 0;
}

.trust-section {
    border-top: 1px solid var(--border, #e5e7eb);
    border-bottom: 1px solid var(--border, #e5e7eb);
    background: #fff;
}

.trust-label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;

    text-transform: uppercase;
    color: var(--muted, #6b7280);
    margin-bottom: 1.5rem;
}

.marquee-wrap {
    overflow: hidden;
    position: relative;
}

.marquee-wrap::before,
.marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    width: max-content;
    animation: marquee-scroll 28s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.trust-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.trust-logo-img {
    height: 40px;
    /* adjust to fit your logos */
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(60%);
    transition: filter .3s ease;
}

.trust-logo-img:hover {
    filter: grayscale(0%) opacity(100%);
}

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

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

.svc-pill {
    display: inline-flex;
    align-items: center;
    padding: 9px 20px;
    border-radius: 999px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 13.5px;
    color: var(--muted);
    background: var(--bg2);
    border: 1.5px solid var(--border);
    text-decoration: none;
    transition: var(--t);
}

.svc-pill:hover,
.svc-pill.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(26, 86, 219, 0.25);
}

/* ---- Wavy divider ---- */
.wave-divider {
    line-height: 0;
    overflow: hidden;
}

.wave-divider svg {
    display: block;
    width: 100%;
}

/* ---- Service section wrappers ---- */
.svc-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* ---- SECTION 1: Odoo – dark navy background ---- */
.svc-odoo {
    background: linear-gradient(150deg, #0d1f3c 0%, #0f2952 55%, #0d2137 100%);
}

/* ---- SECTION 2: Consultation – light ---- */
.svc-consult {
    background: var(--bg2);
}

/* ---- SECTION 3: Web Dev – deep teal ---- */
.svc-webdev {
    background: linear-gradient(150deg, #064e3b 0%, #065f46 55%, #047857 100%);
}

/* ---- Service header block ---- */
.svc-header {
    max-width: 720px;
    margin: 0 auto 64px;
    text-align: center;
}

.svc-number {
    font-family: "Outfit", sans-serif;
    font-size: 96px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -4px;
    opacity: .06;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    pointer-events: none;
    user-select: none;
}

.svc-number-dark {
    color: var(--primary);
}

/* ---- Premium image card ---- */
.svc-img-card {
    border-radius: var(--r-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/3;
}

.svc-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
    display: block;
}

.svc-img-card:hover img {
    transform: scale(1.06);
}

.svc-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(13, 31, 60, 0.75) 100%);
    z-index: 1;
}

.svc-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(14px);
    border-radius: var(--r-lg);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.svc-img-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--r);
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    flex-shrink: 0;
}

.svc-img-badge-icon.green {
    background: var(--accent);
}

.svc-img-badge-text strong {
    color: #fff;
    font-size: 14px;
    display: block;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
}

.svc-img-badge-text span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

/* Float stats chip */
.float-stat {
    position: absolute;
    top: 24px;
    right: -16px;
    background: #fff;
    border-radius: var(--r-lg);
    padding: 12px 18px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    z-index: 10;
    text-align: center;
}

.float-stat-num {
    font-family: "Outfit", sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.float-stat-num.green {
    color: var(--accent);
}

.float-stat-lbl {
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 2px;
}

.svc-detail-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--r-xl);
    padding: 32px 28px;
    height: 100%;
    backdrop-filter: blur(12px);
    transition: var(--t);
    position: relative;
    overflow: hidden;
}

.svc-detail-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.svc-detail-card:hover::before {
    transform: scaleX(1);
}

.svc-detail-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.svc-detail-card.light {
    background: var(--surface);
    border-color: var(--border);
}

.svc-detail-card.light:hover {
    border-color: rgba(26, 86, 219, 0.25);
    box-shadow: var(--shadow-lg);
}

.sdc-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.sdc-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    background: rgba(26, 86, 219, 0.18);
    border: 1px solid rgba(26, 86, 219, 0.3);
    color: #93c5fd;
}

.sdc-icon.accent {
    background: rgba(5, 150, 105, 0.18);
    border-color: rgba(5, 150, 105, 0.3);
    color: #6ee7b7;
}

.sdc-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
    font-family: "Outfit", sans-serif;
}

.sdc-title.dark {
    color: var(--navy);
}

.premium-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 11px;
}

.premium-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14.5px;
    line-height: 1.6;
}

.premium-list li .chk {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(5, 150, 105, 0.2);
    border: 1px solid rgba(5, 150, 105, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #6ee7b7;
    flex-shrink: 0;
    margin-top: 1px;
}

.premium-list.dark li {
    color: var(--text);
}

.premium-list.dark li .chk {
    background: rgba(5, 150, 105, 0.1);
    border-color: rgba(5, 150, 105, 0.25);
    color: var(--accent);
}

.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.svc-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 13px;
    border-radius: 999px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.svc-tag.blue {
    background: rgba(26, 86, 219, 0.15);
    color: #93c5fd;
    border: 1px solid rgba(26, 86, 219, 0.25);
}

.svc-tag.green {
    background: rgba(5, 150, 105, 0.15);
    color: #6ee7b7;
    border: 1px solid rgba(5, 150, 105, 0.25);
}

.svc-tag.blue-dark {
    background: var(--primary-dim);
    color: var(--primary);
    border: 1px solid rgba(26, 86, 219, 0.2);
}

.svc-tag.green-dark {
    background: var(--accent-lt);
    color: var(--accent);
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.svc-cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--r-lg);
}

.svc-cta-strip.light {
    background: var(--bg2);
    border-color: var(--border);
}

.svc-cta-strip p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    margin: 0;
}

.svc-cta-strip.light p {
    color: var(--muted);
}

.deco-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: .08;
}

/* ---------- Quick-contact strip ---------- */
.ctc-quick-strip {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.ctc-quick-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.ctc-quick-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 32px;
    border-right: 1px solid var(--border);
    transition: var(--t);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.ctc-quick-item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.ctc-quick-item:hover::before {
    transform: scaleX(1);
}

.ctc-quick-item:last-child {
    border-right: none;
}

.ctc-quick-item:hover {
    background: var(--bg2);
}

.ctc-q-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--t);
}

.ctc-quick-item:hover .ctc-q-icon {
    transform: scale(1.08) rotate(-4deg);
}

.ctc-q-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.ctc-q-value {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--navy);
    line-height: 1.3;
}

.ctc-q-sub {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

/* blue strip */
.ctc-quick-item.i-phone::before {
    background: linear-gradient(90deg, var(--green), var(--green-dark));
}

.ctc-quick-item.i-email::before {
    background: linear-gradient(90deg, var(--navy), var(--navy-mid));
}

.ctc-quick-item.i-addr::before {
    background: linear-gradient(90deg, #7c3aed, #a855f7);
}

.ctc-q-icon.i-phone {
    background: var(--green-dim);
    color: var(--green-dark);
    border: 1px solid rgba(5, 150, 105, .22);
}

.ctc-q-icon.i-email {
    background: var(--primary-dim);
    color: var(--primary);
    border: 1px solid rgba(26, 86, 219, .18);
}

.ctc-q-icon.i-addr {
    background: rgba(124, 58, 237, .1);
    color: #7c3aed;
    border: 1px solid rgba(124, 58, 237, .2);
}

.ctc-q-label.i-phone {
    color: var(--green-dark);
}

.ctc-q-label.i-email {
    color: var(--primary);
}

.ctc-q-label.i-addr {
    color: #7c3aed;
}

/* ---------- Main contact section ---------- */
.ctc-main {
    background: var(--bg);
    padding: 90px 0;
}

/* ---------- Info sidebar ---------- */
.ctc-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Company card */
.ctc-company-card {
    background: linear-gradient(150deg, var(--navy) 0%, #0f2952 55%, #0d2137 100%);
    border-radius: var(--r-xl);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
}

.ctc-company-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(26, 86, 219, .2) 0%, transparent 65%);
    pointer-events: none;
}

.ctc-company-card::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(5, 150, 105, .15) 0%, transparent 65%);
    pointer-events: none;
}

.ctc-company-logo {
    width: 70px;
    height: 70px;
    border-radius: var(--r-lg);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.ctc-company-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.ctc-company-name {
    font-family: "Outfit", sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: #fff;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.ctc-company-name span {
    color: #6ee7b7;
}

.ctc-company-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, .68);
    line-height: 1.7;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.ctc-social-row {
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.ctc-social-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--r);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    transition: var(--t);
}

.ctc-social-btn:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* Info detail cards */
.ctc-detail-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 22px 24px;
    transition: var(--t);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ctc-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(5, 150, 105, .25);
}

.ctc-detail-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: var(--t);
}

.ctc-detail-card:hover .ctc-detail-icon {
    transform: scale(1.1);
}

.ctc-detail-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.ctc-detail-val {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--navy);
    line-height: 1.4;
    margin: 0;
}

.ctc-detail-sub {
    font-size: 12px;
    color: var(--muted);
    margin-top: 3px;
}

/* Hours card */
.ctc-hours-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 22px 24px;
    transition: var(--t);
}

.ctc-hours-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(5, 150, 105, .22);
}

.ctc-hours-title {
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ctc-hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13.5px;
}

.ctc-hours-row:last-child {
    border-bottom: none;
}

.ctc-hours-day {
    color: var(--muted);
    font-weight: 600;
}

.ctc-hours-time {
    color: var(--navy);
    font-weight: 700;
    font-family: "Outfit", sans-serif;
}

.ctc-hours-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(5, 150, 105, .1);
    color: var(--accent);
    border: 1px solid rgba(5, 150, 105, .2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    animation: pulseBadge 2s infinite;
}

.ctc-hours-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {

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

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

/* ---------- Contact form card ---------- */
.ctc-form-wrap {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.ctc-form-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--green-dark) 100%);
    padding: 32px 36px 28px;
    position: relative;
    overflow: hidden;
}

.ctc-form-header::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, .12) 0%, transparent 65%);
}

.ctc-form-header h3 {
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
}

.ctc-form-header p {
    color: rgba(255, 255, 255, .75);
    font-size: 14.5px;
    margin: 0;
}

.ctc-form-steps {
    display: flex;
    gap: 8px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.ctc-step-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    padding: 5px 13px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.ctc-step-chip i {
    color: #6ee7b7;
    font-size: 11px;
}

.ctc-form-body {
    padding: 36px;
}

/* Floating label inputs */
.ctc-field {
    position: relative;
    margin-bottom: 0;
}

.ctc-input {
    width: 100%;
    background: var(--bg2);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 14px 16px;
    font-family: "Nunito", sans-serif;
    font-size: 14.5px;
    color: var(--text);
    outline: none;
    transition: var(--t);
}

.ctc-input:focus {
    border-color: var(--green);
    background: var(--surface);
    box-shadow: 0 0 0 3px var(--green-dim);
}

.ctc-input.is-invalid {
    border-color: #dc2626;
}

.ctc-input::placeholder {
    color: var(--light-text);
}

.ctc-input-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    font-size: 15px;
    color: var(--light-text);
    pointer-events: none;
    transition: var(--t);
}

.ctc-field:focus-within .ctc-input-icon {
    color: var(--green);
}

textarea.ctc-input {
    padding-top: 14px;
    resize: none;
}

textarea.ctc-input~.ctc-input-icon {
    top: 18px;
    transform: none;
}

/* Service selector pills */
.ctc-service-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ctc-svc-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 15px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    background: var(--bg2);
    border: 1.5px solid var(--border);
    color: var(--muted);
    cursor: pointer;
    transition: var(--t);
    user-select: none;
}

.ctc-svc-pill:hover,
.ctc-svc-pill.selected {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
    box-shadow: 0 4px 12px var(--green-glow);
}

.ctc-svc-pill i {
    font-size: 12px;
}

/* Submit button */
.ctc-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: #fff;
    border: none;
    border-radius: var(--r);
    padding: 16px 28px;
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: var(--t);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px var(--green-glow);
    position: relative;
    overflow: hidden;
}

.ctc-submit-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, .12));
    opacity: 0;
    transition: var(--t);
}

.ctc-submit-btn:hover {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-deep) 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px var(--green-glow);
}

.ctc-submit-btn:hover::before {
    opacity: 1;
}

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

.ctc-submit-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, .2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--t);
}

.ctc-submit-btn:hover .ctc-submit-icon {
    transform: translateX(3px);
}

/* Guarantee row */
.ctc-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid var(--border);
}

.ctc-guarantee-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--muted);
}

.ctc-guarantee-item i {
    color: var(--accent);
    font-size: 13px;
}

/* Field label */
.ctc-field-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 8px;
    display: block;
}

/* ---------- Scroll reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-d1 {
    transition-delay: .1s;
}

.reveal-d2 {
    transition-delay: .2s;
}

.reveal-d3 {
    transition-delay: .3s;
}

.reveal-d4 {
    transition-delay: .4s;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .ctc-quick-inner {
        grid-template-columns: 1fr;
    }

    .ctc-quick-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .ctc-quick-item:last-child {
        border-bottom: none;
    }

    .ctc-form-body {
        padding: 24px 20px;
    }

    .ctc-form-header {
        padding: 24px 20px;
    }
}


/* ================================================================
   AUTH PAGES  (login / register)
================================================================ */

/* Full-page wrapper — sits below the navbar */
.auth-page-wrap {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 16px;
    background: var(--bg);
}

/* Split card container */
.auth-split-card {
    display: flex;
    width: 100%;
    max-width: 900px;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.auth-split-card--wide {
    max-width: 960px;
}

/* ── LEFT: brand panel ── */
.auth-brand-panel {
    position: relative;
    flex: 0 0 42%;
    background: linear-gradient(160deg, #0d1f3c 0%, #1a3a6e 55%, #047857 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 44px 36px;
    overflow: hidden;
}

.auth-brand-panel::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(26, 86, 219, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.auth-brand-panel::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(5, 150, 105, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.auth-brand-overlay {
    display: none;
    /* decorative — kept for future bg-image use */
}

.auth-brand-content {
    position: relative;
    z-index: 1;
}

.auth-logo-link {
    display: inline-block;
    margin-bottom: 32px;
}

.auth-logo {
    height: 44px;
    width: auto;
    /* filter: brightness(0) invert(1); */
    opacity: 0.92;
}

.auth-brand-heading {
    font-family: "Outfit", sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px;
}

.auth-brand-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    margin-bottom: 32px;
}

.auth-brand-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auth-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 600;
}

.auth-feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #6ee7b7;
    flex-shrink: 0;
}

.auth-brand-footer {
    position: relative;
    z-index: 1;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.auth-partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #6ee7b7;
    background: rgba(110, 231, 183, 0.1);
    border: 1px solid rgba(110, 231, 183, 0.22);
    padding: 6px 14px;
    border-radius: 999px;
}

/* ── RIGHT: form panel ── */
.auth-form-panel {
    flex: 1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 44px;
}

.auth-form-inner {
    width: 100%;
    max-width: 380px;
}

/* Form header */
.auth-form-header {
    text-align: center;
    margin-bottom: 28px;
}

.auth-form-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--r-lg);
    background: var(--green-dim);
    border: 1px solid rgba(5, 150, 105, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--green-dark);
    margin-bottom: 14px;
}

.auth-form-title {
    font-family: "Outfit", sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
}

.auth-form-sub {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
}

/* Alert */
.auth-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--r);
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 20px;
}

.auth-alert-error {
    background: rgba(220, 38, 38, 0.07);
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: #dc2626;
}

/* Fields */
.auth-field {
    margin-bottom: 18px;
}

.auth-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 7px;
    font-family: "Outfit", sans-serif;
}

.auth-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-input-icon {
    position: absolute;
    left: 14px;
    color: var(--muted);
    font-size: 14px;
    pointer-events: none;
    z-index: 1;
}

.auth-input {
    width: 100%;
    padding: 11px 44px 11px 40px;
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    color: var(--text);
    background: var(--bg2);
    transition: var(--t);
    outline: none;
}

.auth-input::placeholder {
    color: var(--light-text);
}

.auth-input:focus {
    border-color: var(--green);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
}

.auth-input.is-invalid {
    border-color: #dc2626;
    background: rgba(220, 38, 38, 0.03);
}

.auth-eye-btn {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    padding: 4px;
    font-size: 14px;
    transition: color 0.2s;
    line-height: 1;
}

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

.auth-field-error {
    display: block;
    font-size: 12px;
    color: #dc2626;
    margin-top: 5px;
    font-weight: 600;
}

/* Forgot link */
.auth-forgot-link {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--green-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.auth-forgot-link:hover {
    color: var(--green);
}

/* Remember me */
.auth-remember {
    margin-bottom: 20px;
}

.auth-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 13.5px;
    color: var(--text);
    font-weight: 600;
    user-select: none;
}

.auth-checkbox {
    display: none;
}

.auth-checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-radius: 5px;
    background: var(--bg2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--t);
    flex-shrink: 0;
}

.auth-checkbox:checked+.auth-checkbox-custom {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-color: var(--green-dark);
}

.auth-checkbox:checked+.auth-checkbox-custom::after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
    color: #fff;
}

.auth-submit-btn {
    width: 100%;
    padding: 13px 24px;
    background: linear-gradient(135deg, #059669, #047857);
    color: #fff;
    border: none;
    border-radius: var(--r);
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--t);
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.auth-submit-btn:hover {
    background: linear-gradient(135deg, #047857, #065f46);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.38);
    color: #fff;
}

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

/* Divider */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--light-text);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

/* Switch link */
.auth-switch-text {
    text-align: center;
    font-size: 13.5px;
    color: var(--muted);
    margin: 0;
}

.auth-switch-link {
    color: var(--green-dark);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

.auth-switch-link:hover {
    color: var(--green);
}

/* Password strength */
.auth-strength-bar {
    height: 4px;
    background: var(--border);
    border-radius: 999px;
    margin-top: 8px;
    overflow: hidden;
}

.auth-strength-fill {
    height: 100%;
    width: 0;
    border-radius: 999px;
    transition: width 0.35s ease, background 0.35s ease;
}

.auth-strength-label {
    font-size: 11.5px;
    font-weight: 700;
    margin-top: 4px;
    display: block;
    letter-spacing: 0.04em;
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .auth-brand-panel {
        display: none;
    }

    .auth-split-card {
        max-width: 480px;
        border-radius: var(--r-lg);
    }

    .auth-form-panel {
        padding: 36px 28px;
    }

    .auth-form-inner {
        max-width: 100%;
    }
}

@media (max-width: 400px) {
    .auth-form-panel {
        padding: 28px 20px;
    }
}

/* Auth extras (forgot-password additions) */
.auth-alert-success {
    background: rgba(4, 120, 87, 0.07);
    border: 1px solid rgba(4, 120, 87, 0.22);
    color: #047857;
}

.auth-info-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    background: rgba(26, 86, 219, 0.05);
    border: 1px solid rgba(26, 86, 219, 0.12);
    border-radius: var(--r);
    padding: 11px 14px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.auth-info-note i {
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

/* Auth extras (reset-password additions) */
.auth-match-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-top: 5px;
    transition: color 0.2s;
}

/* ── Auth logout button ── */
.auth-logout-btn {
    width: 100%;
    padding: 11px 24px;
    background: transparent;
    color: var(--muted);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--t);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.auth-logout-btn:hover {
    border-color: #dc2626;
    color: #dc2626;
    background: rgba(220, 38, 38, 0.05);
}

/* ================================================================
   CTA BANNER SECTION  (index page)
================================================================ */
.cta-banner-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0d1f3c 0%, #0f2952 45%, #064e3b 100%);
    padding: 90px 0;
}

/* Decorative blobs */
.cta-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(72px);
    opacity: 0.18;
}

.cta-blob-1 {
    width: 480px;
    height: 480px;
    background: #1a56db;
    top: -140px;
    left: -120px;
}

.cta-blob-2 {
    width: 360px;
    height: 360px;
    background: #059669;
    bottom: -100px;
    right: 10%;
}

.cta-blob-3 {
    width: 220px;
    height: 220px;
    background: #6ee7b7;
    top: 30%;
    left: 40%;
}

/* Inner flex layout */
.cta-banner-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

/* ── LEFT: copy ── */
.cta-banner-copy {
    flex: 1;
}

.cta-banner-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6ee7b7;
    background: rgba(110, 231, 183, 0.12);
    border: 1px solid rgba(110, 231, 183, 0.25);
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.cta-banner-heading {
    font-family: "Outfit", sans-serif;
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 18px;
}

.cta-banner-heading em {
    font-style: normal;
    color: #6ee7b7;
}

.cta-banner-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 32px;
}

/* Contact chips */
.cta-contact-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cta-chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.82);
    font-size: 13.5px;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.28s ease;
    backdrop-filter: blur(6px);
}

.cta-chip:hover {
    background: rgba(110, 231, 183, 0.14);
    border-color: rgba(110, 231, 183, 0.35);
    color: #6ee7b7;
}

.cta-chip-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(110, 231, 183, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #6ee7b7;
    flex-shrink: 0;
}

/* ── RIGHT: action card ── */
.cta-banner-card {
    flex: 0 0 380px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 40px 36px;
    backdrop-filter: blur(18px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-banner-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #059669, #6ee7b7, #1a56db);
    border-radius: 24px 24px 0 0;
}

.cta-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #059669, #047857);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.35);
}

.cta-card-title {
    font-family: "Outfit", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.cta-card-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 24px;
}

/* Stats row */
.cta-card-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 28px;
}

.cta-stat {
    flex: 1;
    text-align: center;
}

.cta-stat-num {
    display: block;
    font-family: "Outfit", sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #6ee7b7;
    line-height: 1;
}

.cta-stat-lbl {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 4px;
}

.cta-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

/* Primary CTA button */
.cta-main-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #059669, #047857);
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    font-weight: 800;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.28s ease;
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}

.cta-main-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.28s;
}

.cta-main-btn:hover {
    background: linear-gradient(135deg, #047857, #065f46);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(5, 150, 105, 0.5);
}

.cta-main-btn:hover::before {
    opacity: 1;
}

.cta-btn-arrow {
    margin-left: auto;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: transform 0.28s ease;
}

.cta-main-btn:hover .cta-btn-arrow {
    transform: translateX(3px);
}

/* Secondary / outline button */
.cta-secondary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 24px;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: all 0.28s ease;
}

.cta-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .cta-banner-inner {
        flex-direction: column;
        gap: 40px;
    }

    .cta-banner-card {
        flex: none;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    .cta-banner-sub {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .cta-banner-section {
        padding: 64px 0;
    }

    .cta-contact-chips {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-banner-card {
        padding: 28px 22px;
    }
}

/* ================================================================
   CONTACT FORM — SUCCESS / ERROR BANNER
================================================================ */
.ctc-success-banner {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-top: 3px solid var(--green);
    border-bottom: 1px solid rgba(5, 150, 105, .18);
    padding: 20px 0;
    animation: ctcBannerSlide 0.45s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.ctc-alert-banner.ctc-alert-error {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-top: 3px solid #dc2626;
    border-bottom: 1px solid rgba(220, 38, 38, .18);
    padding: 20px 0;
    animation: ctcBannerSlide 0.45s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes ctcBannerSlide {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }

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

.ctc-success-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Animated check icon */
.ctc-success-icon-wrap {
    position: relative;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
}

.ctc-success-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(5, 150, 105, .3);
    animation: ctcRingPulse 1.8s ease-in-out infinite;
}

@keyframes ctcRingPulse {

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

    50% {
        transform: scale(1.2);
        opacity: .2;
    }
}

.ctc-success-check {
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 4px 14px var(--green-glow);
    animation: ctcCheckPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}

@keyframes ctcCheckPop {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Text block */
.ctc-success-text {
    flex: 1;
}

.ctc-success-text h4 {
    font-family: "Outfit", sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--green-deep);
    margin: 0 0 4px;
    line-height: 1.3;
}

.ctc-success-text p {
    font-size: 14px;
    color: #065f46;
    margin: 0;
    line-height: 1.6;
}

.ctc-success-text strong {
    font-weight: 800;
}

/* Close button */
.ctc-success-close {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(5, 150, 105, .25);
    background: rgba(5, 150, 105, .08);
    color: var(--green-dark);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--t);
    margin-left: auto;
}

.ctc-success-close:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: #fff;
    transform: rotate(90deg);
}

/* Error close button variant */
.ctc-alert-error .ctc-success-close {
    border-color: rgba(220, 38, 38, .25);
    background: rgba(220, 38, 38, .08);
    color: #dc2626;
}

.ctc-alert-error .ctc-success-close:hover {
    background: #dc2626;
    border-color: #dc2626;
    color: #fff;
}

/* Also show a success state inside the form card when redirected */
.ctc-form-success-overlay {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 36px;
    gap: 16px;
}

.ctc-form-success-overlay.show {
    display: flex;
}

.ctc-fso-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    box-shadow: 0 8px 28px var(--green-glow);
    animation: ctcCheckPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.ctc-fso-title {
    font-family: "Outfit", sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin: 0;
}

.ctc-fso-sub {
    font-size: 15px;
    color: var(--muted);
    max-width: 380px;
    line-height: 1.7;
    margin: 0;
}

.ctc-fso-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.ctc-fso-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-dim);
    border: 1px solid rgba(5, 150, 105, .2);
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
}

/* ================================================================
   BLOG CARDS — public listing page
================================================================ */
.blog-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--t);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(5, 150, 105, .2);
}

/* Image area */
.blog-card-img {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: var(--bg2);
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    display: block;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.06);
}

.blog-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--light-text);
    background: var(--bg2);
}

/* Date badge */
.blog-card-date {
    position: absolute;
    bottom: 12px;
    left: 14px;
    background: rgba(13, 31, 60, .75);
    color: #fff;
    font-size: 11.5px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
    letter-spacing: .04em;
}

/* Body */
.blog-card-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-title {
    font-family: "Outfit", sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.35;
    transition: var(--t);
}

.blog-card:hover .blog-card-title {
    color: var(--green-dark);
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 16px;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 800;
    color: var(--green-dark);
    font-family: "Outfit", sans-serif;
    transition: var(--t);
    text-decoration: none;
    margin-top: auto;
}

.blog-card-link:hover {
    color: var(--green);
    gap: 10px;
}



/* ================================================================
   POSTS & NEWS PAGE  (blogs.blade.php)
================================================================ */

/* ── Tab bar ─────────────────────────────────────────────────── */
/* ── Tab bar ─────────────────────────────────────────────────── */
.pn-tab-bar {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-xs);
}

.pn-tabs {
    display: flex;
    gap: 4px;
    padding: 12px 0;
}

.pn-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: var(--r);
    border: 1.5px solid transparent;
    background: transparent;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
    cursor: pointer;
    transition: var(--t);
}

.pn-tab:hover {
    background: var(--bg2);
    color: var(--navy);
}

.pn-tab.active {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 14px var(--green-glow);
}

/* ADD THIS — kills WOW.js / counter plugin on the badge */
.pn-badge-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    background: rgba(255, 255, 255, .25);
    color: inherit;
    animation: none !important;
    -webkit-animation: none !important;
    transition: none !important;
}

.pn-tab:not(.active) .pn-badge-count {
    background: var(--bg2);
    color: var(--muted);
}

/* DELETE the old .pn-tab-count styles entirely */
/* ── Section wrapper ─────────────────────────────────────────── */
.pn-section {
    padding: 72px 0 80px;
    background: var(--bg);
}

.pn-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* ── Featured card ───────────────────────────────────────────── */
.pn-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    background: var(--surface);
    transition: var(--t);
}

.pn-featured:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.pn-featured-img {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    background: var(--bg2);
}

.pn-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.pn-featured:hover .pn-featured-img img {
    transform: scale(1.05);
}

.pn-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: var(--light-text);
    background: linear-gradient(135deg, var(--bg2), #e8edf5);
}

.pn-img-placeholder.news {
    background: linear-gradient(135deg, rgba(13, 31, 60, .05), rgba(13, 31, 60, .1));
    color: var(--navy);
    opacity: .4;
}

.pn-featured-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 999px;
    letter-spacing: .06em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px var(--green-glow);
}

.pn-featured-badge.news {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    box-shadow: 0 4px 12px rgba(13, 31, 60, .3);
}

.pn-featured-body {
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.pn-featured-title {
    font-family: "Outfit", sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    margin: 0;
}

.pn-featured-excerpt {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    margin: 0;
}

/* ── Meta row ────────────────────────────────────────────────── */
.pn-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pn-meta-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .04em;
}

.pn-meta-date i {
    color: var(--green-dark);
}

.pn-meta-tag {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.pn-meta-tag.blog {
    background: var(--green-dim);
    color: var(--green-dark);
    border: 1px solid rgba(5, 150, 105, .2);
}

.pn-meta-tag.news {
    background: rgba(13, 31, 60, .07);
    color: var(--navy);
    border: 1px solid rgba(13, 31, 60, .15);
}

/* ── Read button ─────────────────────────────────────────────── */
.pn-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    padding: 12px 26px;
    border-radius: var(--r);
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--t);
    box-shadow: 0 4px 14px var(--green-glow);
    align-self: flex-start;
    margin-top: 6px;
}

.pn-read-btn:hover {
    background: linear-gradient(135deg, var(--green-dark), var(--green-deep));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px var(--green-glow);
}

.pn-read-btn.news {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    box-shadow: 0 4px 14px rgba(13, 31, 60, .25);
}

.pn-read-btn.news:hover {
    background: linear-gradient(135deg, var(--navy-mid), #0d2a5e);
    box-shadow: 0 8px 22px rgba(13, 31, 60, .35);
}

/* ── Grid cards ──────────────────────────────────────────────── */
.pn-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--t);
    display: flex;
    flex-direction: column;
}

.pn-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(5, 150, 105, .2);
}

.pn-card-news:hover {
    border-color: rgba(13, 31, 60, .2);
}

.pn-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--bg2);
}

.pn-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.pn-card:hover .pn-card-img img {
    transform: scale(1.07);
}

.pn-card-img .pn-img-placeholder {
    min-height: 200px;
    font-size: 40px;
}

.pn-card-badge {
    position: absolute;
    top: 12px;
    left: 14px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 999px;
}

.pn-card-badge.blog {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    box-shadow: 0 3px 10px var(--green-glow);
}

.pn-card-badge.news {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    color: #fff;
    box-shadow: 0 3px 10px rgba(13, 31, 60, .3);
}

.pn-card-body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

.pn-card-title {
    font-family: "Outfit", sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.35;
    margin: 0;
    transition: var(--t);
}

.pn-card:hover .pn-card-title {
    color: var(--green-dark);
}

.pn-card-news:hover .pn-card-title {
    color: var(--primary);
}

.pn-card-excerpt {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    flex: 1;
    margin: 0;
}

.pn-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 800;
    color: var(--green-dark);
    font-family: "Outfit", sans-serif;
    text-decoration: none;
    transition: var(--t);
    margin-top: auto;
}

.pn-card-link:hover {
    gap: 10px;
    color: var(--green);
}

.pn-card-link.news {
    color: var(--navy);
}

.pn-card-link.news:hover {
    color: var(--primary);
}

/* ── Pagination ──────────────────────────────────────────────── */
.pn-pagination {
    display: flex;
    justify-content: center;
    margin-top: 52px;
}

.pn-pagination .pagination {
    gap: 6px;
}

.pn-pagination .page-link {
    border-radius: var(--r-sm) !important;
    border: 1.5px solid var(--border);
    color: var(--navy);
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    padding: 8px 16px;
    transition: var(--t);
}

.pn-pagination .page-link:hover {
    background: var(--green-dim);
    border-color: var(--green);
    color: var(--green-dark);
}

.pn-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 12px var(--green-glow);
}

/* ── Empty state ─────────────────────────────────────────────── */
.pn-empty {
    text-align: center;
    padding: 72px 20px;
}

.pn-empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--green-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--green-dark);
    margin: 0 auto 20px;
}

.pn-empty-icon.news {
    background: rgba(13, 31, 60, .07);
    color: var(--navy);
}

.pn-empty h4 {
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.pn-empty p {
    color: var(--muted);
    font-size: 15px;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 991px) {
    .pn-featured {
        grid-template-columns: 1fr;
    }

    .pn-featured-img {
        min-height: 260px;
    }

    .pn-featured-body {
        padding: 28px 28px 32px;
    }

    .pn-featured-title {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .pn-tabs {
        gap: 8px;
    }

    .pn-tab {
        padding: 9px 16px;
        font-size: 13px;
    }

    .pn-section {
        padding: 48px 0 56px;
    }

}

/* Article body */
.pn-article-body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #374151;
}

.pn-article-body p {
    margin-bottom: 1.2rem;
}

.pn-article-body h2,
.pn-article-body h3 {
    color: var(--navy);
    font-weight: 700;
    margin: 2rem 0 1rem;
}

.pn-article-body img {
    max-width: 100%;
    border-radius: 8px;
    margin: 1rem 0;
}

/* Sidebar */
.pn-sidebar {
    position: sticky;
    top: 100px;
}

.pn-sidebar-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    margin-bottom: 12px;
    border: 1px solid #e5e7eb;
    transition: background .2s, border-color .2s;
}

.pn-sidebar-card:hover {
    background: #f0fdf4;
    border-color: var(--primary);
}

.pn-sidebar-img {
    width: 80px;
    min-width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
}

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

.pn-sidebar-body {
    flex: 1;
}

.pn-sidebar-title {
    font-size: .88rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 4px;
    line-height: 1.4;
}
.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    animation: fadeLeft .8s ease forwards;
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    animation: fadeRight .8s ease forwards;
}

@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}