/*
  Novacore Technologies Website Theme
  Change these variables to update colors globally.
*/
:root {
    --bg: #02070e;
    --bg-soft: #06111d;
    --bg-deep: #00040a;
    --surface: rgba(8, 23, 38, 0.74);
    --surface-strong: #081827;
    --card: rgba(10, 26, 44, 0.82);
    --card-solid: #0b1d31;
    --line: rgba(129, 232, 255, 0.16);
    --line-strong: rgba(0, 229, 255, 0.35);
    --primary: #00e5ff;
    --primary-rgb: 0, 229, 255;
    --accent: #2f8cff;
    --accent-rgb: 47, 140, 255;
    --cyan-soft: #90f8ff;
    --text: #f3fbff;
    --heading: #ffffff;
    --muted: #9ab2c6;
    --muted-2: #6f8799;
    --black: #000;
    --white: #fff;
    --success: #28d997;
    --danger: #ff5370;
    --warning: #ffd166;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    --glow-shadow: 0 0 30px rgba(var(--primary-rgb), .22), 0 20px 70px rgba(var(--accent-rgb), .16);
    --radius-xs: 10px;
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 36px;
    --transition: all .35s cubic-bezier(.2, .8, .2, 1);
    --nav-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    line-height: 1.65;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 10%, rgba(var(--primary-rgb), .12), transparent 30%),
        radial-gradient(circle at 85% 20%, rgba(var(--accent-rgb), .12), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,.02), transparent 36%);
    z-index: -3;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary); }
p { color: var(--muted); margin-bottom: 1rem; }
h1, h2, h3, h4, h5, h6 { color: var(--heading); font-weight: 700; letter-spacing: -0.035em; }
::selection { background: rgba(var(--primary-rgb), .35); color: #fff; }

.container-xl { max-width: 1200px; }
.section-pad { padding: 110px 0; }
.section-pad-sm { padding: 72px 0; }
.section-title { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-title.text-start { margin-left: 0; }
.section-title h2 { font-size: clamp(2rem, 4vw, 3.25rem); margin-bottom: 14px; }
.section-title p { font-size: 1.02rem; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 21px;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 15px;
}
.eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary), transparent);
}
.text-gradient {
    background: linear-gradient(120deg, #fff 0%, var(--cyan-soft) 42%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-deep);
    display: grid;
    place-items: center;
    z-index: 9999;
    transition: opacity .45s ease, visibility .45s ease;
}
.preloader.loaded { opacity: 0; visibility: hidden; }
.preloader-core { display: flex; gap: 10px; }
.preloader-core span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 22px rgba(var(--primary-rgb), .9);
    animation: pulseDot 1s infinite ease-in-out;
}
.preloader-core span:nth-child(2) { animation-delay: .15s; }
.preloader-core span:nth-child(3) { animation-delay: .3s; }
@keyframes pulseDot { 0%, 100% { transform: scale(.65); opacity: .45; } 50% { transform: scale(1.2); opacity: 1; } }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}
.site-header.is-scrolled {
    background: rgba(1, 7, 14, .86);
    box-shadow: 0 16px 70px rgba(0,0,0,.32);
    backdrop-filter: blur(20px);
}
.top-strip {
    font-size: .82rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.24);
    color: var(--muted);
}
.top-strip .container-xl { min-height: 36px; }
.top-strip-left, .top-strip-right { display: flex; align-items: center; gap: 22px; }
.top-strip i { color: var(--primary); margin-right: 6px; }
.nav-glass {
    min-height: var(--nav-height);
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(180deg, rgba(1, 7, 14, .56), rgba(1, 7, 14, .18));
    backdrop-filter: blur(14px);
}
.brand-wrap { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: .04em; }
.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    border: 1px solid rgba(var(--primary-rgb), .36);
    display: grid;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), .15), rgba(var(--accent-rgb), .08));
    box-shadow: 0 0 35px rgba(var(--primary-rgb), .14);
    position: relative;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-mark.no-logo::before {
    content: "N";
    font-size: 1.45rem;
    color: var(--primary);
    font-weight: 900;
}
.brand-text { font-size: 1.05rem; line-height: 1.1; color: #fff; }
.brand-text small { display: block; font-size: .68rem; letter-spacing: .22em; color: var(--muted); margin-top: 2px; }
.navbar-nav .nav-link {
    color: rgba(255,255,255,.78);
    padding: .75rem .9rem !important;
    font-weight: 650;
    font-size: .93rem;
    position: relative;
}
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: .9rem;
    right: .9rem;
    bottom: .45rem;
    height: 2px;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: #fff; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
.custom-toggler {
    border: 0;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(var(--primary-rgb), .08);
    box-shadow: none !important;
}
.custom-toggler span { display: block; height: 2px; background: #fff; margin: 6px 0; border-radius: 2px; transition: var(--transition); }

.btn {
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: -.01em;
    padding: .86rem 1.24rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    transition: var(--transition);
}
.btn-sm { padding: .62rem 1rem; font-size: .86rem; }
.btn-glow {
    color: #00131a;
    background: linear-gradient(120deg, var(--primary), #74f3ff 45%, var(--accent));
    box-shadow: 0 10px 34px rgba(var(--primary-rgb), .22);
    position: relative;
    overflow: hidden;
}
.btn-glow::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
    transform: translateX(-120%);
    transition: transform .7s ease;
}
.btn-glow:hover::before { transform: translateX(120%); }
.btn-glow:hover { transform: translateY(-3px); color: #00131a; box-shadow: var(--glow-shadow); }
.btn-outline-glow {
    color: #fff;
    border: 1px solid rgba(var(--primary-rgb), .34);
    background: rgba(var(--primary-rgb), .05);
}
.btn-outline-glow:hover { border-color: var(--primary); background: rgba(var(--primary-rgb), .12); transform: translateY(-3px); color: #fff; }

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 170px 0 90px;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 30%, rgba(var(--primary-rgb), .16), transparent 28%),
        radial-gradient(circle at 55% 15%, rgba(var(--accent-rgb), .12), transparent 28%),
        linear-gradient(135deg, var(--bg-deep), #06121d 48%, #02070e);
}
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0,229,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,229,255,.055) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
}
.hero-section::after {
    content: "";
    position: absolute;
    width: 850px;
    height: 850px;
    border-radius: 50%;
    right: -260px;
    top: 110px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), .18), rgba(var(--accent-rgb), .05) 35%, transparent 65%);
    filter: blur(4px);
    animation: floatGlow 8s ease-in-out infinite alternate;
}
@keyframes floatGlow { from { transform: translateY(-20px) scale(1); } to { transform: translateY(28px) scale(1.05); } }
#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: .55;
    z-index: 0;
}
.hero-content { position: relative; z-index: 2; }
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(var(--primary-rgb), .25);
    background: rgba(255,255,255,.04);
    color: var(--cyan-soft);
    font-weight: 750;
    margin-bottom: 22px;
    box-shadow: inset 0 0 20px rgba(var(--primary-rgb), .04);
}
.hero-kicker .pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 rgba(40,217,151,.8); animation: pulseRing 1.8s infinite; }
@keyframes pulseRing { 0% { box-shadow: 0 0 0 0 rgba(40,217,151,.7); } 70% { box-shadow: 0 0 0 12px rgba(40,217,151,0); } 100% { box-shadow: 0 0 0 0 rgba(40,217,151,0); } }
.hero-title { font-size: clamp(2.7rem, 6.5vw, 6.6rem); line-height: .95; letter-spacing: -.07em; margin-bottom: 24px; }
.hero-lead { font-size: clamp(1rem, 1.3vw, 1.22rem); max-width: 670px; color: #b8cfe0; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 32px; }
.hero-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 45px; max-width: 720px; }
.hero-meta-card {
    padding: 18px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(var(--primary-rgb), .16);
    background: rgba(6, 21, 36, .62);
    backdrop-filter: blur(14px);
}
.hero-meta-card strong { display: block; color: #fff; font-size: 1.35rem; letter-spacing: -.03em; }
.hero-meta-card span { color: var(--muted); font-size: .86rem; }
.hero-visual { position: relative; z-index: 2; min-height: 560px; }
.orbit-system {
    position: absolute;
    inset: 8% 0 0 0;
    margin: auto;
    width: min(540px, 100%);
    height: 540px;
    display: grid;
    place-items: center;
}
.orbit-ring {
    position: absolute;
    border: 1px solid rgba(var(--primary-rgb), .2);
    border-radius: 50%;
    box-shadow: inset 0 0 24px rgba(var(--primary-rgb), .08);
    animation: rotateRing 18s linear infinite;
}
.orbit-ring.r1 { width: 92%; height: 92%; }
.orbit-ring.r2 { width: 70%; height: 70%; animation-duration: 25s; animation-direction: reverse; }
.orbit-ring.r3 { width: 48%; height: 48%; animation-duration: 16s; }
.orbit-ring::after {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 22px rgba(var(--primary-rgb), .8);
    position: absolute;
    left: 50%;
    top: -6px;
}
@keyframes rotateRing { to { transform: rotate(360deg); } }
.core-chip {
    width: 190px;
    height: 190px;
    border-radius: 46px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(var(--primary-rgb), .2), rgba(var(--accent-rgb), .12)),
        rgba(4, 14, 24, .94);
    border: 1px solid rgba(var(--primary-rgb), .36);
    box-shadow: 0 0 60px rgba(var(--primary-rgb), .24), inset 0 0 50px rgba(var(--primary-rgb), .08);
    color: var(--primary);
    font-size: 4.1rem;
    position: relative;
}
.core-chip::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px dashed rgba(var(--primary-rgb), .24);
    border-radius: 36px;
}
.float-card {
    position: absolute;
    width: 210px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(8, 26, 44, .82);
    border: 1px solid rgba(var(--primary-rgb), .18);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    animation: floatCard 5s ease-in-out infinite alternate;
}
.float-card i { color: var(--primary); font-size: 1.4rem; }
.float-card strong { display: block; color: #fff; margin-top: 8px; }
.float-card span { display: block; color: var(--muted); font-size: .82rem; }
.float-card.fc1 { top: 82px; right: 28px; }
.float-card.fc2 { left: 0; top: 210px; animation-delay: .6s; }
.float-card.fc3 { right: 15px; bottom: 56px; animation-delay: 1.2s; }
@keyframes floatCard { from { transform: translateY(-10px); } to { transform: translateY(14px); } }

.trust-strip { position: relative; margin-top: -54px; z-index: 5; }
.trust-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(var(--primary-rgb), .16);
    background: rgba(var(--primary-rgb), .12);
    box-shadow: var(--shadow);
}
.trust-item {
    background: rgba(6, 18, 31, .95);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.trust-item i { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; color: var(--primary); background: rgba(var(--primary-rgb), .09); font-size: 1.4rem; }
.trust-item strong { display: block; color: #fff; }
.trust-item span { color: var(--muted); font-size: .88rem; }

.split-card {
    position: relative;
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(var(--primary-rgb), .16);
    background: linear-gradient(150deg, rgba(9, 28, 46, .82), rgba(6, 13, 24, .84));
    box-shadow: var(--shadow);
    overflow: hidden;
}
.split-card::before, .glass-card::before, .service-card::before, .industry-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(var(--primary-rgb), .18), transparent 30%);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}
.split-card:hover::before, .glass-card:hover::before, .service-card:hover::before, .industry-card:hover::before { opacity: 1; }
.tech-window {
    border-radius: var(--radius-md);
    border: 1px solid rgba(var(--primary-rgb), .18);
    background: rgba(0,0,0,.26);
    overflow: hidden;
}
.window-top { display: flex; gap: 7px; padding: 14px; border-bottom: 1px solid rgba(255,255,255,.08); }
.window-top span { width: 10px; height: 10px; border-radius: 50%; background: rgba(var(--primary-rgb), .42); }
.window-body { padding: 22px; }
.command-line { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; color: var(--muted); font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .88rem; }
.command-line::before { content: ">"; color: var(--primary); }
.progress-glow {
    height: 9px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    overflow: hidden;
    margin: 14px 0 24px;
}
.progress-glow span { display: block; height: 100%; width: 78%; background: linear-gradient(90deg, var(--primary), var(--accent)); box-shadow: 0 0 22px rgba(var(--primary-rgb), .65); animation: loadGlow 2.8s ease-in-out infinite alternate; }
@keyframes loadGlow { from { width: 58%; } to { width: 94%; } }
.mini-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.mini-grid div { padding: 14px; border-radius: 14px; background: rgba(var(--primary-rgb), .06); color: #dffbff; border: 1px solid rgba(var(--primary-rgb), .12); font-size: .88rem; }

.glass-card, .service-card, .industry-card, .why-card, .partner-card, .process-card, .contact-card {
    position: relative;
    border-radius: var(--radius-md);
    border: 1px solid rgba(var(--primary-rgb), .14);
    background: linear-gradient(150deg, rgba(8, 25, 42, .78), rgba(5, 12, 22, .86));
    box-shadow: 0 20px 70px rgba(0,0,0,.24);
    overflow: hidden;
    transition: var(--transition);
}
.glass-card:hover, .service-card:hover, .industry-card:hover, .why-card:hover, .partner-card:hover, .process-card:hover, .contact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--primary-rgb), .35);
    box-shadow: var(--glow-shadow);
}

.offering-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { padding: 26px; min-height: 300px; display: flex; flex-direction: column; }
.service-card .icon-box, .why-card .icon-box, .process-card .icon-box, .industry-card .icon-box {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(var(--primary-rgb), .09);
    color: var(--primary);
    font-size: 1.65rem;
    border: 1px solid rgba(var(--primary-rgb), .18);
    margin-bottom: 22px;
}
.service-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.service-card p { font-size: .94rem; }
.card-link { margin-top: auto; color: var(--primary); font-weight: 800; display: inline-flex; gap: 8px; align-items: center; }
.card-link i { transition: var(--transition); }
.card-link:hover i { transform: translateX(5px); }

.sector-showcase { background: linear-gradient(180deg, var(--bg) 0%, #06111d 100%); position: relative; overflow: hidden; }
.sector-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(var(--primary-rgb), .1), transparent 45%);
}
.industry-card { padding: 28px; min-height: 270px; }
.industry-card .code {
    position: absolute;
    right: 24px;
    top: 22px;
    color: rgba(255,255,255,.08);
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -.08em;
}
.industry-card h3 { font-size: 1.18rem; margin-bottom: 11px; }
.industry-card p { margin: 0; font-size: .94rem; }

.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.why-card { padding: 28px; }
.why-card h3 { font-size: 1.1rem; }
.why-card p { margin-bottom: 0; font-size: .93rem; }

.stats-band {
    overflow:hidden;
    border-radius: var(--radius-lg);
    padding: 13px;
    background: linear-gradient(120deg, rgba(var(--primary-rgb), .12), rgba(var(--accent-rgb), .08));
    border: 1px solid rgba(var(--primary-rgb), .2);
    display: grid;
    grid-template-columns: repeat(4,1fr);
    /*gap: 14px;*/
}
.stat-box { padding: 18px; text-align: center; }
.stat-box strong { display: block; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1; color: #fff; }
.stat-box span { color: var(--muted); font-weight: 650; }

.logo-cloud {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.partner-pill, .partner-card {
    min-height: 96px;
    display: grid;
    place-items: center;
    text-align: center;
    border-radius: 18px;
    color: #dffbff;
    border: 1px solid rgba(var(--primary-rgb), .14);
    background: rgba(255,255,255,.035);
    font-weight: 850;
    letter-spacing: -.02em;
}
.partner-pill:hover { color: var(--primary); transform: translateY(-5px); border-color: rgba(var(--primary-rgb), .35); box-shadow: var(--glow-shadow); }

.inner-hero {
    position: relative;
    padding: 175px 0 90px;
    min-height: 480px;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 20%, rgba(var(--primary-rgb), .16), transparent 32%),
        linear-gradient(135deg, var(--bg-deep), var(--bg-soft));
}
.inner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0,229,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,229,255,.05) 1px, transparent 1px);
    background-size: 70px 70px;
    opacity: .62;
}
.inner-hero .container-xl { position: relative; z-index: 2; }
.breadcrumb-modern { display: flex; gap: 10px; align-items: center; color: var(--muted); margin-bottom: 20px; font-weight: 650; }
.breadcrumb-modern a { color: var(--primary); }
.inner-hero h1 { font-size: clamp(2.6rem, 5.8vw, 5.2rem); line-height: 1; max-width: 850px; }
.inner-hero p { max-width: 720px; font-size: 1.08rem; }

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
}
.filter-btn {
    border: 1px solid rgba(var(--primary-rgb), .2);
    background: rgba(var(--primary-rgb), .05);
    color: #dffbff;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 800;
    transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: #00131a; box-shadow: var(--glow-shadow); }

.service-detail-list { list-style: none; padding: 0; margin: 18px 0 0; }
.service-detail-list li { color: var(--muted); margin: 8px 0; display: flex; gap: 9px; }
.service-detail-list li::before { content: "\F26A"; font-family: bootstrap-icons; color: var(--primary); }
.service-card.filtered-out { transform: scale(.94); opacity: 0; display: none; }

.timeline { position: relative; padding-left: 22px; }
.timeline::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 2px; background: linear-gradient(var(--primary), transparent); }
.timeline-item { padding: 0 0 24px 24px; position: relative; }
.timeline-item::before { content: ""; position: absolute; left: -29px; top: 8px; width: 14px; height: 14px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 18px rgba(var(--primary-rgb), .8); }
.timeline-item h4 { font-size: 1.05rem; }
.timeline-item p { margin-bottom: 0; }

.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.process-card { padding: 26px; }
.process-card .step { color: rgba(255,255,255,.12); font-size: 3rem; font-weight: 900; line-height: 1; margin-bottom: 12px; }
.process-card h3 { font-size: 1.1rem; }
.process-card p { margin-bottom: 0; }

.partner-group { padding: 28px; margin-bottom: 20px; }
.partner-group h3 { font-size: 1.28rem; margin-bottom: 18px; display: flex; gap: 10px; align-items: center; }
.partner-group h3 i { color: var(--primary); }
.partner-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.partner-tags span {
    padding: 10px 15px;
    border-radius: 999px;
    color: #dffbff;
    border: 1px solid rgba(var(--primary-rgb), .18);
    background: rgba(var(--primary-rgb), .055);
    font-weight: 750;
}

.contact-shell {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(var(--primary-rgb), .16);
    overflow: hidden;
    background: rgba(6, 18, 31, .78);
    box-shadow: var(--shadow);
}
.contact-info-panel { padding: 42px; background: linear-gradient(150deg, rgba(var(--primary-rgb), .12), rgba(var(--accent-rgb), .08)); height: 100%; }
.contact-form-panel { padding: 42px; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: flex; gap: 12px; margin-bottom: 18px; color: var(--muted); }
.contact-list i { color: var(--primary); font-size: 1.2rem; margin-top: 2px; }
.form-control, .form-select {
    min-height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(var(--primary-rgb), .16);
    background: rgba(0,0,0,.22);
    color: #fff;
    box-shadow: none !important;
}
.form-control::placeholder { color: rgba(216, 237, 255, .58); }
.form-control:focus, .form-select:focus { border-color: var(--primary); background: rgba(0,0,0,.34); color: #fff; }
.form-select option { color: #0b1d31; }
textarea.form-control { padding-top: 14px; }
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.form-response { min-height: 24px; font-weight: 700; }
.form-response.success { color: var(--success); }
.form-response.error { color: var(--danger); }
.map-frame { border-radius: var(--radius-md); overflow: hidden; border: 1px solid rgba(var(--primary-rgb), .16); min-height: 370px; }
.map-frame iframe { width: 100%; height: 370px; border: 0; display: block; filter: grayscale(1) invert(.92) contrast(.88); }

.footer-cta { background: linear-gradient(180deg, var(--bg) 0%, #02070e 100%); }
.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 42px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(var(--primary-rgb), .2);
    background:
        radial-gradient(circle at 86% 20%, rgba(var(--primary-rgb), .16), transparent 36%),
        linear-gradient(140deg, rgba(8, 25, 42, .9), rgba(2, 8, 15, .96));
    box-shadow: var(--shadow);
}
.cta-panel h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
.cta-panel p { margin-bottom: 0; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.site-footer { position: relative; padding: 80px 0 28px; background: #00050b; overflow: hidden; }
.footer-grid-bg { position: absolute; inset: 0; background: linear-gradient(rgba(0,229,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,229,255,.04) 1px, transparent 1px); background-size: 68px 68px; mask-image: radial-gradient(circle at 50% 0%, #000, transparent 70%); }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; color: #fff; letter-spacing: .04em; }
.footer-brand small { display: block; color: var(--muted); font-size: .66rem; letter-spacing: .22em; }
.footer-about { max-width: 390px; }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; border: 1px solid rgba(var(--primary-rgb), .15); background: rgba(var(--primary-rgb), .05); color: #dffbff; }
.social-links a:hover { color: var(--primary); transform: translateY(-4px); border-color: rgba(var(--primary-rgb), .45); }
.site-footer h6 { color: #fff; margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 58px; padding-top: 24px; display: flex; justify-content: space-between; gap: 18px; color: var(--muted-2); font-size: .9rem; flex-wrap: wrap; }

.enquiry-modal .modal-content { border: 1px solid rgba(var(--primary-rgb), .22); background: #06111d; border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 20px 90px rgba(0,0,0,.55); }
.enquiry-modal .btn-close { position: absolute; right: 16px; top: 16px; z-index: 3; }
.modal-side { padding: 42px; background: radial-gradient(circle at 20% 20%, rgba(var(--primary-rgb), .18), transparent 36%), linear-gradient(150deg, #071827, #02070e); }
.modal-contact { display: grid; gap: 10px; margin-top: 28px; }
.modal-contact a { color: var(--muted); display: flex; gap: 10px; align-items: center; }
.modal-contact i { color: var(--primary); }

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    height: 56px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    background: #25D366;
    color: #06111d;
    font-weight: 900;
    box-shadow: 0 14px 40px rgba(37,211,102,.32);
}
.whatsapp-float i { font-size: 1.35rem; }
.whatsapp-float:hover { color: #06111d; transform: translateY(-4px); }
.back-to-top {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(var(--primary-rgb), .28);
    background: rgba(6, 18, 31, .82);
    color: var(--primary);
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(12px);
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px); box-shadow: var(--glow-shadow); }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .75s ease, transform .75s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.tilt-card { transform-style: preserve-3d; }

@media (max-width: 1199px) {
    .offering-grid { grid-template-columns: repeat(2, 1fr); }
    .logo-cloud { grid-template-columns: repeat(3, 1fr); }
    .hero-visual { min-height: 470px; }
}
@media (max-width: 991px) {
    :root { --nav-height: 72px; }
    .nav-glass { background: rgba(1, 7, 14, .9); }
    .navbar-collapse { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.08); margin-top: 12px; }
    .navbar-nav .nav-link { padding-left: 0 !important; }
    .navbar-nav .nav-link::after { left: 0; right: auto; width: 44px; }
    .hero-section { padding-top: 135px; }
    .hero-visual { min-height: 420px; margin-top: 40px; }
    .trust-panel { grid-template-columns: repeat(2,1fr); }
    .why-grid, .process-grid { grid-template-columns: repeat(2,1fr); }
    .stats-band { grid-template-columns: repeat(2,1fr); }
    .cta-panel { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 767px) {
    .section-pad { padding: 78px 0; }
    .section-pad-sm { padding: 54px 0; }
    .hero-title { font-size: clamp(2.55rem, 14vw, 4.2rem); }
    .hero-meta { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .trust-strip { margin-top: 0; padding-top: 20px; }
    .trust-panel, .offering-grid, .why-grid, .process-grid, .stats-band, .logo-cloud { grid-template-columns: 1fr; }
    .trust-item { padding: 20px; }
    .split-card, .cta-panel, .contact-info-panel, .contact-form-panel { padding: 26px; }
    .inner-hero { padding: 132px 0 64px; min-height: auto; }
    .whatsapp-float span { display: none; }
    .whatsapp-float { width: 56px; padding: 0; justify-content: center; }
    .back-to-top { display: none; }
    .footer-bottom { display: block; }
    .footer-bottom span { display: block; margin-bottom: 8px; }
}
@media (max-width: 420px) {
    .brand-text { font-size: .88rem; }
    .brand-text small { font-size: .56rem; }
    .brand-mark { width: 42px; height: 42px; border-radius: 13px; }
    .hero-actions .btn { width: 100%; }
}

/* Logo-only header/footer override */
.brand-wrap.logo-only {
    gap: 0;
    padding: 0;
    max-width: 230px;
}
.brand-logo-img {
    display: block;
    width: auto;
    max-width: 210px;
    height: 62px;
    object-fit: contain;
}
.footer-logo-only {
    display: inline-flex;
    align-items: center;
    gap: 0;
}
.footer-logo-img {
    display: block;
    width: auto;
    max-width: 220px;
    height: 62px;
    object-fit: contain;
}
@media (max-width: 767.98px) {
    .brand-logo-img {
        max-width: 175px;
        height: 52px;
    }
    .footer-logo-img {
        max-width: 180px;
        height: 54px;
    }
}





.partner-slider-section {
    position: relative;
    overflow: hidden;
}

.section-subtitle {
    max-width: 720px;
    margin: 16px auto 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.partner-logo-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 45px;
    padding: 15px 0;
}

.partner-logo-marquee::before,
.partner-logo-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 4;
    pointer-events: none;
}

.partner-logo-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--dark), transparent);
}

.partner-logo-marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--dark), transparent);
}

.partner-logo-track {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    animation: partnerLogoScroll 34s linear infinite;
}

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

.partner-logo-slide {
    flex: 0 0 clamp(190px, 19vw, 245px);
    height: 125px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 229, 255, 0.28);
    border-radius: 22px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.30),
        inset 0 0 0 1px rgba(255, 255, 255, 0.65);
    transition: 0.35s ease;
}

.partner-logo-inner {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow: hidden;
}

.partner-logo-slide:hover {
    transform: translateY(-6px) scale(1.03);
    border-color: var(--primary);
    box-shadow:
        0 20px 55px rgba(0, 229, 255, 0.24),
        0 0 0 1px rgba(0, 229, 255, 0.28);
}

.partner-logo-slide img {
    max-width: 165px;
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: none;
    transform: scale(var(--logo-scale, 1));
}

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

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

@media (max-width: 991px) {
    .partner-logo-slide {
        flex-basis: 185px;
        height: 110px;
    }

    .partner-logo-slide img {
        max-width: 145px;
        max-height: 62px;
    }
}

@media (max-width: 575px) {
    .partner-logo-track {
        gap: 16px;
        animation-duration: 25s;
    }

    .partner-logo-slide {
        flex-basis: 155px;
        height: 95px;
        border-radius: 18px;
        padding: 10px;
    }

    .partner-logo-inner {
        border-radius: 13px;
        padding: 12px;
    }

    .partner-logo-slide img {
        max-width: 120px;
        max-height: 52px;
    }

    .partner-logo-marquee::before,
    .partner-logo-marquee::after {
        width: 55px;
    }
}



.footer-bottom a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ffffff;
    text-decoration: underline;
}