/* ============================================================
   LILIUM INFO TECH — style.css
   Bootstrap 5 + Custom CSS — Light/Dark Theme
   ============================================================ */

/* ── CSS Variables ── */
:root {
    --primary: #0d2b52;
    --primary-rgb: 13, 43, 82;
    --accent: #0ea5e9;
    --accent-rgb: 14, 165, 233;
    --bg: #f1f5f9;
    --fg: #1e293b;
    --card-bg: #ffffff;
    --muted: #64748b;
    --muted-bg: #f1f5f9;
    --border: #e2e8f0;
    --radius: 0.5rem;
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(255, 255, 255, 0.6);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, .1);
    --shadow-primary: 0 8px 24px rgba(13, 43, 82, .22);
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

[data-theme="dark"] {
    --primary: #0ea5e9;
    --bg: #0f172a;
    --fg: #f1f5f9;
    --card-bg: #1e293b;
    --muted: #94a3b8;
    --muted-bg: #1e293b;
    --border: #1e293b;
    --glass-bg: rgba(15, 23, 42, 0.72);
    --glass-border: rgba(255, 255, 255, 0.07);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .28);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, .32);
}

/* ── Base ── */
*,
*::before,
*::after {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--fg);
    font-size: 1rem;
    line-height: 1.6;
    transition: background .3s, color .3s;
}

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

img {
    max-width: 100%
}

/* ── Utility: colors ── */
.text-accent {
    color: var(--accent) !important;
}

.text-blue {
    color: #3b82f6 !important;
}

.text-violet {
    color: #8b5cf6 !important;
}

.text-emerald {
    color: #10b981 !important;
}

.text-orange {
    color: #f97316 !important;
}

.text-pink {
    color: #ec4899 !important;
}

/* icon bg soft colors */
.bg-blue-soft {
    background: rgba(59, 130, 246, .12) !important;
}

.bg-violet-soft {
    background: rgba(139, 92, 246, .12) !important;
}

.bg-emerald-soft {
    background: rgba(16, 185, 129, .12) !important;
}

.bg-orange-soft {
    background: rgba(249, 115, 22, .12) !important;
}

.bg-pink-soft {
    background: rgba(236, 72, 153, .12) !important;
}

.bg-yellow-soft {
    background: rgba(234, 179, 8, .12) !important;
}

.bg-accent-soft {
    background: rgba(14, 165, 233, .12) !important;
}

.bg-success-subtle {
    background: rgba(16, 185, 129, .15);
}

.bg-accent-subtle {
    background: rgba(14, 165, 233, .15);
}

/* ── Gradient text ── */
.gradient-text {
    background: linear-gradient(135deg, var(--accent), #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Glass effect ── */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

/* ============================================================
   NAVBAR / HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: box-shadow .3s, background .3s;
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(14, 165, 233, .3);
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--fg);
    white-space: nowrap;
}

.brand-accent {
    color: var(--accent);
}

/* Nav pills */
.navbar {
    padding: 0;
    min-height: 64px;
}

.nav-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(30, 41, 59, .7);
    transition: background .2s, color .2s;
}

[data-theme="dark"] .nav-pill {
    color: rgba(241, 245, 249, .7);
}

.nav-pill:hover {
    background: rgba(30, 41, 59, .07);
    color: var(--fg);
}

[data-theme="dark"] .nav-pill:hover {
    background: rgba(255, 255, 255, .08);
    color: var(--fg);
}

.nav-pill.active {
    background: var(--primary);
    color: #fff !important;
}

/* Dropdown */
.glass-dropdown {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border) !important;
    border-radius: 1rem !important;
    box-shadow: var(--shadow-lg) !important;
    padding: 0.25rem !important;
    min-width: 200px;
    overflow: hidden;
}

.glass-dropdown .dropdown-item {
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    color: var(--fg);
    border-radius: 0.5rem;
    transition: background .15s;
    opacity: .82;
}

.glass-dropdown .dropdown-item:hover {
    background: rgba(14, 165, 233, .1);
    color: var(--fg);
    opacity: 1;
}

/* Free Consultation button */
.btn-consult {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1.25rem;
    background: #0d2b52;
    color: #fff !important;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: opacity .2s, transform .2s;
    box-shadow: 0 4px 14px rgba(13, 43, 82, .25);
    white-space: nowrap;
}

[data-theme="dark"] .btn-consult {
    background: var(--accent);
    box-shadow: 0 4px 14px rgba(14, 165, 233, .3);
}

.btn-consult:hover {
    opacity: .9;
}

/* Theme toggle */
.theme-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, color .2s;
    font-size: 1rem;
}

.theme-toggle:hover {
    background: rgba(30, 41, 59, .08);
    color: var(--fg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 43, 82, .06) 0%, var(--bg) 50%, rgba(14, 165, 233, .06) 100%);
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-blob-1 {
    width: 320px;
    height: 320px;
    background: rgba(13, 43, 82, .1);
    top: 25%;
    left: 30%;
    animation: floatBlob 6s ease-in-out infinite;
}

.hero-blob-2 {
    width: 420px;
    height: 420px;
    background: rgba(14, 165, 233, .1);
    bottom: 15%;
    right: 15%;
    animation: floatBlob 6s ease-in-out 2s infinite;
}

.hero-dot-grid {
    position: absolute;
    inset: 0;
    opacity: .035;
    background-image: radial-gradient(circle, currentColor 1px, transparent 0);
    background-size: 44px 44px;
}

@keyframes floatBlob {

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

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

.hero-heading {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1.08;
    color: var(--fg);
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 500px;
    line-height: 1.7;
}

.hero-sub strong {
    color: var(--fg);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--muted);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

    50% {
        opacity: .6;
        transform: scale(1.3)
    }
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted);
}

/* CTA buttons */
.btn-primary-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.8rem 2rem;
    background: #0d2b52;
    color: #fff !important;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 500;
    transition: opacity .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 8px 24px rgba(13, 43, 82, .25);
}

[data-theme="dark"] .btn-primary-pill {
    background: var(--accent);
}

.btn-primary-pill:hover {
    opacity: .9;
    transform: translateY(-1px);
}

.btn-outline-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.8rem 2rem;
    border: 1px solid var(--border);
    color: var(--fg) !important;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 500;
    transition: background .2s, border-color .2s;
    background: transparent;
}

.btn-outline-pill:hover {
    background: rgba(30, 41, 59, .06);
}

/* ── Hero Visual ── */
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1;
    margin: 0 auto;
}

.hero-glow {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-glow::after {
    content: '';
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(13, 43, 82, .25), rgba(14, 165, 233, .25));
    border-radius: 50%;
    filter: blur(60px);
}

.hero-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    padding: 1.4rem;
}

.hero-card-main {
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    z-index: 2;
}

.hero-card-sales {
    bottom: 80px;
    left: 16px;
    width: 200px;
    border-radius: 1rem;
    padding: 1.2rem;
}

.hero-card-fast {
    bottom: 96px;
    right: 0;
    width: 190px;
    border-radius: 1rem;
    padding: 1.2rem;
}

.card-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0d2b52, #0ea5e9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    font-family: var(--font-heading);
    flex-shrink: 0;
}

.dash-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--fg);
    opacity: .85;
}

.card-mini-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.hero-stat {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--fg);
}

/* Floating animations */
.float-anim {
    animation: heroFloat 6s ease-in-out infinite;
}

.float-anim-delayed {
    animation: heroFloat 6s ease-in-out 2s infinite;
}

@keyframes heroFloat {

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

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

.hero-card-main.float-anim {
    transform: translateX(-50%) translateY(0);
    animation: heroFloatCenter 6s ease-in-out infinite;
}

@keyframes heroFloatCenter {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(-10px)
    }
}

/* ============================================================
   WHY CARDS
   ============================================================ */
.why-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 1.25rem;
    padding: 2rem;
    transition: box-shadow .3s, transform .3s;
}

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

.why-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.why-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--fg);
    margin-bottom: 0.5rem;
}

.why-desc {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
    background: rgba(30, 41, 59, .04);
}

[data-theme="dark"] .services-section {
    background: rgba(0, 0, 0, .15);
}

.section-eyebrow {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.75rem, 3.5vw, 2.8rem);
    color: var(--fg);
    margin: 0;
}

.section-sub {
    color: var(--muted);
    font-size: 1rem;
    max-width: 580px;
    margin: 0.8rem auto 0;
}

.service-card {
    display: block;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 1.25rem;
    padding: 1.75rem;
    transition: transform .3s, box-shadow .3s;
    height: 100%;
    color: inherit;
}

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

.svc-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: transform .3s;
}

.service-card:hover .svc-icon-wrap {
    transform: scale(1.1);
}

.svc-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--fg);
    margin-bottom: 0.6rem;
}

.svc-desc {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 1.1rem;
}

.svc-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: var(--muted-bg);
    color: var(--muted);
    border: 1px solid var(--border);
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent);
    transition: gap .2s;
}

.service-card:hover .svc-link {
    gap: 0.5rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 1.25rem;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.testi-quote {
    font-size: 2rem;
    color: rgba(14, 165, 233, .28);
    line-height: 1;
}

.testi-text {
    font-size: 0.875rem;
    color: var(--fg);
    opacity: .82;
    line-height: 1.7;
    flex: 1;
    margin: 0;
}

.testi-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--fg);
    margin: 0;
}

.testi-role {
    font-size: 0.78rem;
    color: var(--muted);
    margin: 0;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: #0d2b52;
}

[data-theme="dark"] .cta-section {
    background: #051220;
}

.cta-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: #fff;
    margin: 0;
}

.cta-sub {
    color: rgba(255, 255, 255, .65);
    font-size: 1.05rem;
    max-width: 520px;
    margin-inline: auto;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.85rem 2rem;
    background: #fff;
    color: #0d2b52 !important;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .22);
    transition: opacity .2s, transform .2s;
}

.btn-cta-white:hover {
    opacity: .95;
    transform: translateY(-1px);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.85rem 2rem;
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff !important;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 500;
    transition: background .2s;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, .1);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #0d2b52;
    color: rgba(255, 255, 255, .7);
}

[data-theme="dark"] .site-footer {
    background: #020c1b;
}

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .6);
    margin: 0;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links li a,
.footer-links li span.footer-address {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, .65);
    transition: color .2s;
    display: flex;
    align-items: flex-start;
    gap: 0.3rem;
}

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

.footer-social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .8);
    font-size: 0.9rem;
    transition: background .2s, color .2s;
}

.footer-social:hover {
    background: rgba(255, 255, 255, .2);
    color: #fff;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, .4);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
    background: linear-gradient(135deg, rgba(13, 43, 82, .06), var(--bg), rgba(14, 165, 233, .06));
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--fg);
}

.page-hero-sub {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 540px;
    margin-inline: auto;
}

/* Stats row */
.stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 1.75rem;
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--accent);
    margin: 0;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted);
    margin: 0.25rem 0 0;
}

/* Team card */
.team-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 1.25rem;
    padding: 1.75rem;
    text-align: center;
    transition: box-shadow .3s;
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
}

.team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin: 0 auto 1rem;
}

.team-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--fg);
    margin: 0 0 .25rem;
}

.team-role {
    font-size: 0.825rem;
    color: var(--muted);
    margin: 0;
}

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */
.portfolio-filter .filter-btn {
    padding: 0.45rem 1.2rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
}

.portfolio-filter .filter-btn.active,
.portfolio-filter .filter-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.portfolio-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 1.25rem;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}

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

.portfolio-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.portfolio-body {
    padding: 1.4rem;
}

.portfolio-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--fg);
    margin-bottom: 0.4rem;
}

.portfolio-desc {
    font-size: 0.825rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-form-wrap {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 1.5rem;
    padding: 2.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--fg);
    margin-bottom: 0.35rem;
}

.form-control,
.form-select {
    background: var(--card-bg) !important;
    border: 1px solid var(--border) !important;
    color: var(--fg) !important;
    border-radius: 0.75rem !important;
    padding: 0.65rem 1rem !important;
    font-size: 0.9rem;
    transition: border-color .2s, box-shadow .2s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, .15) !important;
}

.form-control::placeholder {
    color: var(--muted);
    opacity: .7;
}

.contact-info-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 1.25rem;
    padding: 1.75rem;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--fg);
    opacity: .85;
}

.feature-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(14, 165, 233, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-check i {
    color: var(--accent);
    font-size: 0.7rem;
}

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 1.25rem;
    padding: 2rem;
    transition: box-shadow .3s, transform .3s;
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(14, 165, 233, .25);
}

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

.pricing-badge {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
}

.pricing-price {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--fg);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 70px;
        min-height: auto;
    }

    .navbar-collapse {
        background: var(--glass-bg);
        backdrop-filter: blur(14px);
        border-top: 1px solid var(--glass-border);
        padding: 1rem;
        border-radius: 0 0 1rem 1rem;
    }

    .nav-pill {
        border-radius: 0.75rem;
    }

    .glass-dropdown {
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        background: rgba(14, 165, 233, .05) !important;
        border: none !important;
    }
}

@media (max-width: 575.98px) {
    .hero-heading {
        font-size: 2rem;
    }

    .btn-primary-pill,
    .btn-outline-pill {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .contact-form-wrap {
        padding: 1.5rem;
    }
}

/* Dark mode form select arrow */
[data-theme="dark"] .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2394a3b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
}


/* ============================================================
   INDUSTRIES SECTION
   ============================================================ */
.industries-section {
    background: rgba(30, 41, 59, .03);
}

[data-theme="dark"] .industries-section {
    background: rgba(0, 0, 0, .1);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1.25rem;
}

@media (max-width: 991.98px) {
    .industry-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 575.98px) {
    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.8rem;
    color: var(--muted);
    cursor: default;
    transition: color .2s;
}

.industry-item:hover {
    color: var(--fg);
}

.industry-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: transform .2s;
}

.industry-item:hover .industry-icon {
    transform: translateY(-3px);
}

/* ============================================================
   WHY CHOOSE US CARDS
   ============================================================ */
.why-choose-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 1.25rem;
    padding: 1.5rem;
    height: 100%;
    transition: box-shadow .3s, transform .3s;
}

.why-choose-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.why-choose-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.why-choose-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--fg);
    margin-bottom: 0.4rem;
}

.why-choose-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   STATS GLANCE SECTION
   ============================================================ */
.stats-section {
    background: var(--bg);
}

.stat-glance-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 1.25rem;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: box-shadow .3s, transform .3s;
}

.stat-glance-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.stat-glance-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 0.75rem;
}

.stat-glance-num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.9rem;
    margin: 0 0 0.2rem;
    line-height: 1;
}

.stat-glance-label {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0;
}

/* ============================================================
   CTA CARD (rounded blue card style)
   ============================================================ */
.cta-card-wrap {
    background: linear-gradient(135deg, #0d2b52 0%, #0ea5e9 100%);
    border-radius: 2rem;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-card-eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 1rem;
}

.cta-card-trust {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, .5);
    margin: 0;
}

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

.leadership-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.leadership-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: .14em;
    color: var(--muted);
}

/* Founder photo wrap */
.founder-photo-wrap {
  position: sticky;
  top: 100px; /* adjust if your navbar height differs */
  display: flex;
  flex-direction: column;
  align-items: center;
}


.founder-img-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.founder-img {
  width: 100%;
  display: block;
  object-fit: cover;
  min-height: 800px;
}

.founder-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13, 43, 82, .92) 0%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
}

.founder-overlay-role {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .6);
    margin: 0 0 0.3rem;
}

.founder-overlay-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    color: #fff;
    margin: 0 0 0.25rem;
}

.founder-overlay-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, .6);
    margin: 0;
}

/* Floating badges */
.founder-badge-years,
.founder-badge-trained {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 0.65rem 1rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.founder-badge-years {
    top: 1.5rem;
    left: -1rem;
}

.founder-badge-trained {
    bottom: 5rem;
    right: -1rem;
}

.founder-badge-num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--fg);
    line-height: 1;
}

.founder-badge-label {
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 0.15rem;
}

/* Right side */
.founder-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  color: var(--fg);
  line-height: 1.15;
}

.founder-section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 0.5rem;
  margin-top: 0.75rem;
}

.expertise-tag {
  font-size: 0.72rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--fg);
  background: var(--card-bg);
}

/* Professional roles */
.pro-role-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}


.pro-role-item:last-child {
    border-bottom: none;
}

.pro-role-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.pro-role-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--fg);
  margin: 0;
}

.pro-role-sub {
  font-size: 0.69rem;
  color: var(--muted);
  margin: 0;
}

.pro-role-active-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    margin-left: auto;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

@media (max-width: 991.98px) {
    .founder-badge-years {
        left: 0;
    }

    .founder-badge-trained {
        right: 0;
    }
}