@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&display=swap");

:root {
    --primary: #1261b0;
    --primary-2: #1976d2;
    --primary-dark: #082b59;
    --blue: #2b8cff;
    --cyan: #25c5e8;
    --accent: #ff7a18;
    --accent-2: #ffb347;
    --ink: #10233f;
    --muted: #64748b;
    --line: #dce8f4;
    --soft: #f3f8fd;
    --white: #fff;
    --shadow: 0 22px 70px rgba(8, 43, 89, 0.12);
    --radius: 24px;
}

/* ========================================
   GLOBAL
======================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", Arial, sans-serif;
    color: var(--ink);
    line-height: 1.7;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
}

/* ========================================
   TOPBAR
======================================== */

.topbar {
    background: linear-gradient(90deg, #061c3d, #0b376f);
    color: #eaf5ff;
    font-size: 12px;
}

.topbar-inner {
    min-height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.topbar-left,
.topbar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.topbar span {
    display: inline-flex;
    gap: 7px;
    align-items: center;
}

.topbar i {
    color: #58c7ff;
}

.iso-pill {
    padding: 4px 9px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.06);
}

/* ========================================
   NAVBAR
======================================== */

.premium-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 35px rgba(8, 43, 89, 0.08);
    border-bottom: 1px solid rgba(220, 232, 244, 0.8);
}

.navbar-brand img {
    width: 120px;
}

.nav-link {
    font-weight: 800 !important;
    color: #20334d !important;
    font-size: 13px;
    padding: 0.85rem 0.7rem !important;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.login-link {
    font-size: 13px;
    font-weight: 900;
    color: var(--primary-dark);
}

.login-link:hover {
    color: var(--primary);
}

.nav-cta {
    padding: 10px 18px !important;
}

.navbar-toggler {
    border: 1px solid var(--line);
    padding: 8px 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ========================================
   MEGA MENU
======================================== */

.premium-menu {
    border: 1px solid #e1eaf4 !important;
    border-radius: 18px !important;
    padding: 14px !important;
    box-shadow: 0 24px 65px rgba(8, 43, 89, 0.18) !important;
    margin-top: 10px !important;
    background: rgba(255, 255, 255, 0.98);
}

.services-menu {
    min-width: 730px;
    left: 50% !important;
    transform: translateX(-50%);
}

.mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 220px;
    gap: 10px;
}

.mega-grid > div {
    padding: 8px 10px;
}

.mega-grid small {
    font-size: 10px;
    letter-spacing: 1.4px;
    font-weight: 900;
    color: #7b8ba1;
    display: block;
    margin-bottom: 8px;
}

.mega-grid a {
    display: block;
    padding: 8px 9px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
    color: #243b58;
}

.mega-grid a:hover {
    background: #edf6ff;
    color: var(--primary);
}

.menu-feature {
    background: linear-gradient(145deg, #082b59, #1672c8);
    border-radius: 14px;
    color: #fff !important;
    padding: 18px !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-feature span {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: #8ddfff;
    font-weight: 900;
}

.menu-feature strong {
    font-size: 17px;
    line-height: 1.3;
}

.menu-cta {
    background: #fff !important;
    color: var(--primary-dark) !important;
    margin-top: 12px;
    text-align: center;
}

.compact-menu {
    min-width: 240px;
}

.compact-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
}

.compact-menu a i {
    width: 18px;
    color: var(--primary);
}

/* ========================================
   BUTTONS
======================================== */

.btn-brand {
    background: linear-gradient(135deg, var(--accent), #ff9b38);
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(255, 122, 24, 0.24);
    transition: 0.25s;
}

.btn-brand:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(255, 122, 24, 0.32);
}

.btn-outline-brand {
    border: 1.5px solid var(--primary);
    color: var(--primary);
    border-radius: 999px;
    padding: 11px 22px;
    font-weight: 900;
    background: #fff;
}

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

.btn-light-outline {
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    border-radius: 999px;
    padding: 11px 22px;
    font-weight: 900;
    background: rgba(255, 255, 255, 0.05);
}

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

/* ========================================
   HERO
======================================== */

.hero-premium {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 80% 25%,
            rgba(37, 197, 232, 0.18),
            transparent 28%
        ),
        radial-gradient(
            circle at 5% 80%,
            rgba(255, 122, 24, 0.12),
            transparent 25%
        ),
        linear-gradient(135deg, #edf7ff, #fff 50%, #eef6ff);
    padding: 70px 0 75px;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(18, 97, 176, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(18, 97, 176, 0.05) 1px,
            transparent 1px
        );
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.8px;
}

.hero-premium h1 {
    font-size: clamp(43px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -3px;
    font-weight: 900;
    color: var(--primary-dark);
    margin: 16px 0 22px;
    max-width: 760px;
}

.hero-premium h1 span {
    background: linear-gradient(90deg, var(--primary), #22a7d7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-premium p {
    font-size: 17px;
    color: #566b84;
    max-width: 660px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-trust {
    display: flex;
    gap: 25px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.hero-trust span {
    font-size: 11px;
    color: #708198;
    border-right: 1px solid #cbd8e6;
    padding-right: 24px;
}

.hero-trust span:last-child {
    border: 0;
}

.hero-trust strong {
    display: block;
    font-size: 22px;
    color: var(--primary-dark);
    line-height: 1.1;
}

/* ========================================
   HERO VISUAL
======================================== */

.hero-visual,
.hero-dashboard,
.hero-quote {
    height: 410px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.hero-visual {
    background: linear-gradient(145deg, #092e61, #1174ca);
    box-shadow: 0 30px 80px rgba(8, 43, 89, 0.25);
}

.hero-orb {
    position: absolute;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    right: -90px;
    top: -70px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow:
        0 0 0 45px rgba(255, 255, 255, 0.05),
        0 0 0 95px rgba(255, 255, 255, 0.03);
}

.hero-panel {
    position: absolute;
    left: 38px;
    right: 38px;
    top: 48px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(15px);
    border-radius: 22px;
    color: #fff;
}

.panel-top {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.progress-line {
    height: 8px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    margin: 22px 0;
}

.progress-line span {
    display: block;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(90deg, #5ae0ff, #fff);
}

.mini-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mini-stat i {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #79ddff;
}

.mini-stat b,
.mini-stat small {
    display: block;
}

.mini-stat b {
    font-size: 13px;
}

.mini-stat small {
    font-size: 10px;
    color: #bcd8f0;
}

.floating-chip {
    position: absolute;
    padding: 11px 14px;
    border-radius: 12px;
    background: #fff;
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 900;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.chip-one {
    left: 20px;
    bottom: 22px;
}

.chip-two {
    right: 20px;
    bottom: 22px;
}

/* ========================================
   DASHBOARD HERO
======================================== */

.hero-dashboard {
    background: #fff;
    border: 1px solid #dce8f4;
    box-shadow: 0 30px 80px rgba(8, 43, 89, 0.16);
    padding: 25px;
}

.dash-head {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 900;
    color: var(--primary-dark);
}

.dash-head b {
    font-size: 10px;
    color: var(--primary);
    background: #edf6ff;
    border-radius: 99px;
    padding: 5px 9px;
}

.dash-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 25px;
}

.dash-cards > div {
    background: #f6faff;
    border: 1px solid #e2edf6;
    border-radius: 14px;
    padding: 13px;
}

.dash-cards i {
    color: var(--primary);
    font-size: 15px;
}

.dash-cards strong {
    display: block;
    font-size: 22px;
    color: var(--primary-dark);
    margin-top: 5px;
}

.dash-cards small {
    font-size: 9px;
    color: #7b8ba1;
}

.dash-bars {
    height: 190px;
    display: flex;
    align-items: end;
    gap: 12px;
    padding: 25px 10px 5px;
    border-bottom: 1px solid #dbe7f2;
}

.dash-bars span {
    flex: 1;
    border-radius: 8px 8px 2px 2px;
    background: linear-gradient(180deg, #24bce0, #176bc0);
    animation: barPulse 3s ease-in-out infinite alternate;
}

.dash-bars span:nth-child(2n) {
    animation-delay: 0.3s;
}

/* ========================================
   HERO QUOTE
======================================== */

.hero-quote {
    background: linear-gradient(145deg, #ff7a18, #ffae4f);
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 30px 80px rgba(255, 122, 24, 0.22);
}

.hero-quote i {
    font-size: 28px;
}

.hero-quote h3 {
    font-size: 28px;
    line-height: 1.25;
    margin: 20px 0;
}

.hero-quote p {
    color: #fff;
    font-size: 14px;
}

.quote-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
    margin: 10px 0 14px;
}

.hero-quote small {
    font-weight: 800;
}

/* ========================================
   CAROUSEL
======================================== */

.carousel-control-prev,
.carousel-control-next {
    width: 30px;
    height: 30px;
    top: auto;
    bottom: 0;
    border-radius: 50%;
    background: black;
    opacity: 1;
}

.hero-premium .carousel-control-prev {
    left: auto;
    right: 55px;
}

.hero-premium .carousel-control-next {
    right: 5px;
}

.hero-premium .carousel-indicators {
    justify-content: flex-start;
    margin: 0 0 -20px 0;
}

.hero-premium .carousel-indicators button {
    width: 10px;
    height: 4px;
    border: 0;
    border-radius: 99px;
    background: #bdd1e5;
}

.hero-premium .carousel-indicators .active {
    background: var(--primary);
    width: 45px;
}

/* ========================================
   LOGO STRIP
======================================== */

.logo-strip {
    padding: 28px 0;
    background: #fff;
    border-bottom: 1px solid #e8f0f7;
}

.logo-strip-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.logo-strip-head span {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.7px;
    color: #8a99aa;
}

.logo-strip-head b {
    font-size: 12px;
    color: #2a3f59;
}

.client-slider {
    overflow: hidden;
}

.client-track {
    display: flex;
    gap: 18px;
    animation: clientMove 22s linear infinite;
    width: max-content;
}

.client-logo {
    width: 175px;
    height: 76px;
    border: 1px solid #e6edf5;
    border-radius: 14px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: 0 7px 20px rgba(8, 43, 89, 0.04);
}

.client-logo img {
    max-height: 48px;
    object-fit: contain;
}

/* ========================================
   COMMON SECTIONS
======================================== */

.section {
    padding: 90px 0;
}

.section-soft {
    background: linear-gradient(180deg, #f6faff, #fff);
}

.section-head {
    max-width: 800px;
    margin: 0 auto 45px;
    text-align: center;
}

.kicker {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 900;
}

.section-head h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
    margin: 10px 0 14px;
    color: var(--primary-dark);
    font-weight: 900;
    letter-spacing: -1.4px;
}

.section-head p {
    color: var(--muted);
    margin: 0;
}

.section-head-light h2 {
    color: #fff;
}

.section-head-light p {
    color: #b9cee5;
}

.section-head-light .kicker {
    color: #69d9ff;
}

/* ========================================
   SERVICE SLIDER
======================================== */

.service-slider-wrap,
.team-slider {
    position: relative;
}

.service-track,
.team-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 6px 2px 16px;
}

.service-track::-webkit-scrollbar,
.team-track::-webkit-scrollbar {
    display: none;
}

.premium-service-card {
    flex: 0 0 calc(33.333% - 12px);
    min-height: 300px;
    background: #fff;
    border: 1px solid #dfeaf4;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 12px 40px rgba(8, 43, 89, 0.06);
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.premium-service-card::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    right: -70px;
    top: -70px;
    background: rgba(37, 197, 232, 0.12);
}

.premium-service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
    border-color: #b8d7f1;
}

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, #eaf7ff, #e9f0ff);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    margin-bottom: 30px;
}

.premium-service-card > span {
    font-size: 10px;
    font-weight: 900;
    color: #9aa9ba;
}

.premium-service-card h3 {
    font-size: 19px;
    font-weight: 900;
    color: var(--primary-dark);
    margin: 8px 0;
}

.premium-service-card p {
    font-size: 13px;
    color: var(--muted);
    min-height: 65px;
}

.premium-service-card a {
    font-size: 12px;
    font-weight: 900;
    color: var(--primary);
}

/* ========================================
   SLIDER ARROWS
======================================== */

.slider-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid #d7e5f1;
    background: #fff;
    border-radius: 50%;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(8, 43, 89, 0.1);
    position: absolute;
    top: 45%;
    z-index: 5;
}

.slider-arrow:hover {
    background: var(--primary);
    color: #fff;
}

.slider-arrow.prev {
    left: -22px;
}

.slider-arrow.next {
    right: -22px;
}

/* ========================================
   SPLIT SECTION
======================================== */

.split-premium {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

.split-copy h2 {
    font-size: clamp(34px, 4.5vw, 56px);
    line-height: 1.05;
    font-weight: 900;
    color: var(--primary-dark);
    letter-spacing: -2px;
    margin: 10px 0 18px;
}

.split-copy > p {
    color: var(--muted);
    max-width: 620px;
}

.feature-list {
    display: grid;
    gap: 14px;
    margin: 25px 0;
}

.feature-list > div {
    display: flex;
    gap: 12px;
}

.feature-list i {
    color: var(--primary);
    margin-top: 5px;
}

.feature-list b,
.feature-list small {
    display: block;
}

.feature-list b {
    font-size: 13px;
}

.feature-list small {
    font-size: 11px;
    color: var(--muted);
}

/* ========================================
   EXPERIENCE CARD
======================================== */

.experience-card {
    height: 480px;
    border-radius: 32px;
    background: linear-gradient(145deg, #082b59, #1578ca);
    position: relative;
    overflow: hidden;
    box-shadow: 0 35px 80px rgba(8, 43, 89, 0.22);
}

.experience-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    right: -90px;
    top: -80px;
    box-shadow:
        0 0 0 55px rgba(255, 255, 255, 0.04),
        0 0 0 115px rgba(255, 255, 255, 0.025);
}

.experience-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.experience-content span {
    font-size: 105px;
    line-height: 0.8;
    font-weight: 900;
}

.experience-content b {
    font-size: 24px;
}

.experience-content small {
    font-size: 11px;
    color: #bcd9ef;
}

.experience-pill {
    position: absolute;
    padding: 11px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    border-radius: 13px;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.p1 {
    left: 25px;
    top: 30px;
}

.p2 {
    right: 22px;
    bottom: 40px;
}

.p3 {
    left: 30px;
    bottom: 90px;
}

/* ========================================
   DARK SECTION / INSIGHTS
======================================== */

.section-dark {
    background: linear-gradient(145deg, #061e42, #0a3972);
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    right: -220px;
    top: -250px;
    background: rgba(37, 197, 232, 0.1);
}

.insight-slider {
    overflow: hidden;
}

.insight-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
}

.insight-track::-webkit-scrollbar {
    display: none;
}

.insight-card {
    flex: 0 0 calc(25% - 14px);
    min-height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    border-radius: 22px;
    padding: 25px;
    color: #fff;
    transition: 0.3s;
}

.insight-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.insight-card .insight-number {
    font-size: 11px;
    color: #69d9ff;
    font-weight: 900;
}

.insight-card > i {
    font-size: 28px;
    color: #fff;
    margin: 30px 0 18px;
}

.insight-card h3 {
    font-size: 17px;
    font-weight: 900;
}

.insight-card p {
    font-size: 12px;
    color: #bfd4ea;
    min-height: 58px;
}

.insight-card a {
    font-size: 11px;
    font-weight: 900;
    color: #7ce1ff;
}

/* ========================================
   METRICS
======================================== */

.metrics-section {
    padding: 80px 0;
    background: #fff;
}

.metrics-panel {
    background: linear-gradient(135deg, #082b59, #126bc0);
    border-radius: 32px;
    padding: 45px;
    color: #fff;
    box-shadow: 0 30px 80px rgba(8, 43, 89, 0.2);
    overflow: hidden;
    position: relative;
}

.metrics-panel::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    right: -150px;
    bottom: -170px;
}

.metrics-panel h2 {
    font-size: 40px;
    line-height: 1.05;
    font-weight: 900;
    margin: 10px 0 15px;
}

.metrics-panel h2 span {
    color: #69d9ff;
}

.metrics-panel p {
    color: #bdd5eb;
    font-size: 13px;
}

.metric-tile {
    min-height: 120px;
    padding: 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
}

.metric-tile::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    right: -30px;
    top: -30px;
    background: rgba(255, 255, 255, 0.07);
}

.metric-tile strong {
    display: block;
    font-size: 28px;
}

.metric-tile small {
    color: #bcd5eb;
    font-size: 10px;
    font-weight: 800;
}

/* ========================================
   UPDATES
======================================== */

.updates-slider {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
}

.updates-slider::-webkit-scrollbar {
    display: none;
}

.update-card {
    flex: 0 0 calc(33.333% - 12px);
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(8, 43, 89, 0.05);
    min-height: 250px;
}

.update-card span {
    font-size: 10px;
    color: var(--accent);
    font-weight: 900;
    letter-spacing: 1.5px;
}

.update-card h3 {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary-dark);
    margin: 12px 0;
}

.update-card p {
    font-size: 13px;
    color: var(--muted);
}

.update-card a {
    font-size: 12px;
    font-weight: 900;
    color: var(--primary);
}

/* ========================================
   TEAM
======================================== */

.team-track {
    padding-left: 2px;
    padding-right: 2px;
}

.team-premium {
    flex: 0 0 calc(25% - 14px);
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 35px rgba(8, 43, 89, 0.05);
}

.team-photo {
    height: 315px;
    background: linear-gradient(145deg, #eef7ff, #fff);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.team-photo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center bottom;
    mix-blend-mode: multiply;
}

.team-body {
    padding: 20px;
}

.team-body h3 {
    font-size: 16px;
    font-weight: 900;
    margin: 0;
    color: var(--primary-dark);
}

.team-body span {
    font-size: 10px;
    color: var(--primary);
    font-weight: 900;
}

.team-body p {
    font-size: 11px;
    color: var(--muted);
    margin: 10px 0 0;
}

/* ========================================
   TESTIMONIAL
======================================== */

.testimonial-carousel {
    max-width: 860px;
    margin: auto;
}

.testimonial {
    padding: 45px 70px;
    text-align: center;
}

.testimonial > i {
    font-size: 30px;
    color: #69d9ff;
}

.testimonial p {
    font-size: 23px;
    color: #fff;
    line-height: 1.5;
    margin: 20px 0;
}

.testimonial strong,
.testimonial small {
    display: block;
}

.testimonial strong {
    color: #fff;
    font-size: 12px;
}

.testimonial small {
    color: #a8c4dd;
    font-size: 10px;
}

/* ========================================
   QUIZ
======================================== */

.quiz-premium {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 35px;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    box-shadow: 0 15px 50px rgba(8, 43, 89, 0.07);
}

.quiz-premium h2 {
    font-size: 34px;
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1.1;
}

.quiz-premium p {
    font-size: 13px;
    color: var(--muted);
}

.quiz-question-wrap {
    padding: 25px;
    border-radius: 20px;
    background: #f5f9fd;
}

.quiz-question-wrap > strong {
    font-size: 15px;
    color: var(--primary-dark);
}

.quiz-options {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.quiz-options button {
    border: 1px solid #dce8f3;
    background: #fff;
    padding: 12px 14px;
    text-align: left;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
    color: #334c68;
}

.quiz-options button:hover {
    border-color: var(--primary);
    background: #eef7ff;
}

.quiz-result {
    min-height: 20px;
    margin-top: 10px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
}

/* ========================================
   MARQUEE
======================================== */

.marquee-strip {
    overflow: hidden;
    background: #061e42;
    color: #fff;
    padding: 13px 0;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    gap: 35px;
    animation: marquee 28s linear infinite;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.6px;
}

.marquee-track b {
    color: #58c7ff;
}

/* ========================================
   FAQ
======================================== */

.faq-premium {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    border-bottom: 1px solid #e0eaf3;
}

.faq-item button {
    width: 100%;
    border: 0;
    background: none;
    padding: 20px 5px;
    text-align: left;
    font-size: 14px;
    font-weight: 900;
    color: var(--primary-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item button i {
    color: var(--primary);
    transition: 0.25s;
}

.faq-item.open button i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 12px;
    transition: max-height 0.3s ease;
    padding: 0 5px;
}

.faq-item.open .faq-answer {
    max-height: 120px;
    padding: 0 5px 20px;
}

/* ========================================
   CTA
======================================== */

.cta-premium {
    border-radius: 30px;
    padding: 45px;
    background: linear-gradient(135deg, #eaf6ff, #fff);
    border: 1px solid #d9e8f4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-premium h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-dark);
    margin: 8px 0;
}

.cta-premium p {
    color: var(--muted);
    margin: 0;
}

.cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ========================================
   FOOTER
======================================== */

.footer {
    background: #061c3d;
    color: #d5e5f3;
    padding: 75px 0 0;
}

.footer-logo {
    width: 190px;
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 18px;
}

.footer p {
    font-size: 12px;
    color: #9fb8cf;
}

.footer h5 {
    font-size: 13px;
    color: #fff;
    font-weight: 900;
    margin-bottom: 18px;
}

.footer-links {
    display: grid;
    gap: 8px;
}

.footer-links a {
    font-size: 12px;
    color: #9fb8cf;
}

.footer-links a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9fdfff;
}

.footer-contact p {
    display: flex;
    gap: 10px;
}

.footer-contact i {
    color: #58c7ff;
    margin-top: 4px;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 45px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 10px;
    color: #7894ad;
}

/* ========================================
   FLOATING BUTTONS
======================================== */

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 22px;
    width: 57px;
    height: 57px;
    border-radius: 50%;
    background: #21c76b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.back-top {
    position: fixed;
    right: 25px;
    bottom: 92px;
    width: 43px;
    height: 43px;
    border: 0;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: none;
    z-index: 998;
    box-shadow: 0 10px 25px rgba(8, 43, 89, 0.25);
}

/* ========================================
   PAGE HERO
======================================== */

.page-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #edf7ff, #fff);
}

.page-hero h1 {
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 900;
    color: var(--primary-dark);
}

.breadcrumb-item a {
    color: var(--primary);
}

/* ========================================
   AUTH PAGE
======================================== */

.auth-page {
    min-height: calc(100vh - 120px);
    padding: 70px 20px;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(37, 197, 232, 0.15),
            transparent 30%
        ),
        linear-gradient(135deg, #eef7ff, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    width: min(470px, 100%);
    background: #fff;
    border: 1px solid #dfeaf4;
    border-radius: 28px;
    padding: 38px;
    box-shadow: 0 30px 80px rgba(8, 43, 89, 0.14);
}

.auth-brand img {
    width: 170px;
    margin: 0 auto 25px;
}

.auth-kicker {
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 900;
    color: var(--primary);
}

.auth-card h1 {
    font-size: 34px;
    font-weight: 900;
    color: var(--primary-dark);
    margin: 8px 0;
}

.auth-card p {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 22px;
}

.auth-card label {
    font-size: 11px;
    font-weight: 900;
    color: #344d68;
    margin: 13px 0 6px;
    display: block;
}

.password-field {
    position: relative;
}

.password-field button {
    position: absolute;
    right: 8px;
    top: 8px;
    border: 0;
    background: none;
    color: #7b8da2;
}

.auth-msg {
    font-size: 11px;
    font-weight: 800;
    margin-top: 12px;
    min-height: 18px;
}

.auth-bottom {
    text-align: center;
    font-size: 11px;
    color: var(--muted);
    margin-top: 20px;
}

.auth-bottom a {
    color: var(--primary);
    font-weight: 900;
}

.demo-note {
    display: block;
    text-align: center;
    color: #8999aa;
    font-size: 9px;
    margin-top: 20px;
}

/* ========================================
   DASHBOARD
======================================== */

.dashboard-page {
    padding: 60px 0;
    background: #f5f9fd;
    min-height: 75vh;
}

.dashboard-hero {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 28px;
}

.dashboard-hero h1 {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-dark);
    margin: 8px 0;
}

.dashboard-hero p {
    color: var(--muted);
    font-size: 13px;
}

.dash-tile {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 23px;
    box-shadow: 0 10px 30px rgba(8, 43, 89, 0.05);
}

.dash-tile i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #edf6ff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dash-tile strong {
    display: block;
    font-size: 29px;
    color: var(--primary-dark);
    margin-top: 15px;
}

.dash-tile span,
.dash-tile small {
    display: block;
}

.dash-tile span {
    font-size: 12px;
    font-weight: 900;
}

.dash-tile small {
    font-size: 10px;
    color: #8495a9;
}

.portal-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 25px;
}

.portal-dark {
    background: linear-gradient(145deg, #082b59, #126bc0);
    color: #fff;
}

.portal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.portal-head span,
.portal-dark > span {
    font-size: 9px;
    letter-spacing: 1.4px;
    font-weight: 900;
    color: #7c9bb7;
}

.portal-head h3,
.portal-dark h3 {
    font-size: 20px;
    font-weight: 900;
    margin: 5px 0;
    color: var(--primary-dark);
}

.portal-dark h3 {
    color: #fff;
}

.portal-dark p {
    font-size: 12px;
    color: #bfd5e9;
}

.activity-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid #e8eff6;
}

.activity-row > i {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #edf6ff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-row div {
    flex: 1;
}

.activity-row b,
.activity-row small {
    display: block;
}

.activity-row b {
    font-size: 12px;
}

.activity-row small {
    font-size: 9px;
    color: #8395a9;
}

.status-chip {
    font-size: 9px;
    font-weight: 900;
    border-radius: 99px;
    padding: 5px 8px;
}

.status-chip.green {
    background: #eaf9ef;
    color: #15904b;
}

.status-chip.orange {
    background: #fff2e6;
    color: #cc6410;
}

.status-chip.blue {
    background: #edf5ff;
    color: #2569b7;
}

/* ========================================
   ANIMATIONS
======================================== */

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

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

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

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

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

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

@keyframes barPulse {
    from {
        opacity: 0.65;
        filter: saturate(0.8);
    }

    to {
        opacity: 1;
        filter: saturate(1.3);
    }
}

/* ========================================
   RESPONSIVE - 1199px
======================================== */

@media (max-width: 1199px) {
    .services-menu {
        min-width: 680px;
    }

    .nav-link {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .premium-service-card {
        flex-basis: calc(50% - 9px);
    }

    .team-premium {
        flex-basis: calc(50% - 9px);
    }

    .insight-card {
        flex-basis: calc(50% - 9px);
    }
}

/* ========================================
   RESPONSIVE - 991px
======================================== */

@media (max-width: 991px) {
    .topbar-left span:nth-child(1),
    .topbar-right span:first-child {
        display: none;
    }

    .topbar-inner {
        justify-content: center;
    }

    .navbar-brand img {
        width: 170px;
    }

    .nav-actions {
        padding: 12px 0 5px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-actions .btn {
        width: 100%;
        text-align: center;
    }

    .services-menu {
        min-width: 100%;
        transform: none;
        left: 0 !important;
    }

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

    .menu-feature {
        display: none;
    }

    .hero-premium {
        padding: 55px 0 70px;
    }

    .hero-premium h1 {
        letter-spacing: -2px;
    }

    .hero-visual,
    .hero-dashboard,
    .hero-quote {
        height: 360px;
    }

    .split-premium {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .experience-card {
        height: 400px;
    }

    .quiz-premium {
        grid-template-columns: 1fr;
    }

    .cta-premium {
        flex-direction: column;
        align-items: flex-start;
    }

    .testimonial p {
        font-size: 19px;
    }

    .slider-arrow.prev {
        left: 5px;
    }

    .slider-arrow.next {
        right: 5px;
    }
}

/* ========================================
   RESPONSIVE - 575px
======================================== */

@media (max-width: 575px) {
    .topbar {
        display: none;
    }

    .hero-premium {
        padding: 45px 0 60px;
    }

    .hero-premium h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .hero-premium p {
        font-size: 14px;
    }

    .hero-trust {
        gap: 12px;
    }

    .hero-trust span {
        padding-right: 12px;
    }

    .hero-visual,
    .hero-dashboard,
    .hero-quote {
        height: 310px;
    }

    .hero-panel {
        left: 18px;
        right: 18px;
        top: 28px;
    }

    .floating-chip {
        font-size: 9px;
        padding: 8px 10px;
    }

    .chip-one {
        left: 10px;
        bottom: 12px;
    }

    .chip-two {
        right: 10px;
        bottom: 12px;
    }

    .dash-bars {
        height: 125px;
    }

    .section {
        padding: 65px 0;
    }

    .section-head {
        margin-bottom: 32px;
    }

    .section-head h2 {
        font-size: 32px;
    }

    .premium-service-card {
        flex-basis: 88%;
    }

    .team-premium {
        flex-basis: 88%;
    }

    .insight-card {
        flex-basis: 88%;
    }

    .update-card {
        flex-basis: 88%;
    }

    .client-logo {
        width: 150px;
    }

    .logo-strip-head {
        display: block;
    }

    .logo-strip-head b {
        display: block;
        margin-top: 5px;
    }

    .metrics-panel {
        padding: 28px 22px;
    }

    .metrics-panel h2 {
        font-size: 32px;
    }

    .experience-card {
        height: 350px;
    }

    .experience-content span {
        font-size: 80px;
    }

    .testimonial {
        padding: 35px;
    }

    .testimonial p {
        font-size: 17px;
    }

    .quiz-premium {
        padding: 25px;
    }

    .quiz-premium h2 {
        font-size: 30px;
    }

    .cta-premium {
        padding: 30px 24px;
    }

    .cta-premium h2 {
        font-size: 31px;
    }

    .auth-card {
        padding: 28px 22px;
    }

    .dashboard-hero {
        display: block;
    }

    .dashboard-hero h1 {
        font-size: 33px;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
    }

    .back-top {
        right: 18px;
        bottom: 83px;
    }
}


/* =========================================================
   MODERN PROFESSIONAL SMALL SLIDER ARROWS
   ========================================================= */

/* Main horizontal slider arrows */
.slider-arrow {
    width: 34px !important;
    height: 34px !important;
    padding: 0 !important;
    border: 1px solid rgba(18, 97, 176, 0.16) !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.96) !important;
    color: #1769b0 !important;
    font-size: 12px !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 6px 18px rgba(8, 43, 89, 0.12) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.22s ease !important;
}

.slider-arrow i {
    font-size: 11px !important;
    line-height: 1 !important;
    margin: 0 !important;
}

.slider-arrow:hover {
    background: #1769b0 !important;
    border-color: #1769b0 !important;
    color: #fff !important;
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 9px 22px rgba(18, 97, 176, 0.22) !important;
}

.slider-arrow:active {
    transform: scale(0.96);
}

.slider-arrow.prev {
    left: -17px !important;
}

.slider-arrow.next {
    right: -17px !important;
}

/* Hero carousel controls — smaller, cleaner and premium */
.hero-premium .carousel-control-prev,
.hero-premium .carousel-control-next {
    width: 32px !important;
    height: 32px !important;
    top: auto !important;
    bottom: 0 !important;
    border: 1px solid rgba(18, 97, 176, 0.15) !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.94) !important;
    opacity: 1 !important;
    box-shadow: 0 7px 18px rgba(8, 43, 89, 0.12) !important;
    transition: all 0.22s ease !important;
}

.hero-premium .carousel-control-prev:hover,
.hero-premium .carousel-control-next:hover {
    background: #1769b0 !important;
    border-color: #1769b0 !important;
    transform: translateY(-1px);
}

.hero-premium .carousel-control-prev-icon,
.hero-premium .carousel-control-next-icon {
    width: 9px !important;
    height: 9px !important;
    background-size: 9px 9px !important;
    filter: brightness(0) saturate(100%) invert(34%) sepia(52%) saturate(1058%) hue-rotate(166deg) brightness(87%) contrast(92%);
}

.hero-premium .carousel-control-prev:hover .carousel-control-prev-icon,
.hero-premium .carousel-control-next:hover .carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

/* Keep hero arrows aligned and compact */
.hero-premium .carousel-control-prev {
    left: auto !important;
    right: 48px !important;
}

.hero-premium .carousel-control-next {
    right: 7px !important;
}

/* Mobile: keep arrows easy to tap but visually compact */
@media (max-width: 767px) {
    .slider-arrow {
        width: 32px !important;
        height: 32px !important;
    }

    .slider-arrow.prev {
        left: 5px !important;
    }

    .slider-arrow.next {
        right: 5px !important;
    }

    .hero-premium .carousel-control-prev,
    .hero-premium .carousel-control-next {
        width: 30px !important;
        height: 30px !important;
        bottom: 2px !important;
    }

    .hero-premium .carousel-control-prev {
        right: 44px !important;
    }

    .hero-premium .carousel-control-next {
        right: 7px !important;
    }
}
