/* ============================================================
   DVK GLOBAL — McLarens-style Design System
   Colors: #0095da (blue), #0c1b33 (navy), #f7f7f7 (light), #fff
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;600;700;800&display=swap');

:root {
    --blue:         #0095da;
    --blue-dark:    #0079b8;
    --blue-deeper:  #0062a0;
    --navy:         #0c1b33;
    --navy-2:       #122040;
    --white:        #ffffff;
    --light:        #f7f7f7;
    --light-2:      #eef4f9;
    --border:       #dde7ef;
    --text:         #3a4a5c;
    --text-light:   #6b7c93;
    --ink:          #0c1b33;
    --gold:         #e8a020;
    --shadow-sm:    0 2px 10px rgba(0,149,218,0.10);
    --shadow:       0 8px 32px rgba(12,27,51,0.12);
    --shadow-lg:    0 20px 60px rgba(12,27,51,0.18);
    --radius:       8px;
    --radius-lg:    16px;
    --transition:   0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
}

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

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: none; background: none; }
svg {
    width: 1em; height: 1em;
    fill: none; stroke: currentColor;
    stroke-linecap: round; stroke-linejoin: round; stroke-width: 2;
}
:focus-visible { outline: 3px solid rgba(0,149,218,0.45); outline-offset: 3px; }

/* ── Layout ── */
.container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    max-width: 100%;
    overflow-x: hidden;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ── Kicker / Label ── */
.kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 28px;
    border: 2px solid transparent;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: background var(--transition), border-color var(--transition),
                color var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

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

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

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

.btn-white {
    background: #fff;
    border-color: #fff;
    color: var(--blue);
}
.btn-white:hover {
    background: var(--light);
    border-color: var(--light);
    color: var(--blue-dark);
}

.btn-ghost {
    background: transparent;
    border-color: var(--blue);
    color: var(--blue);
}
.btn-ghost:hover {
    background: var(--blue);
    color: #fff;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(12,27,51,0.10);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(12,27,51,0.15);
}

/* Top utility bar */
.utility-bar {
    background: var(--navy);
    color: rgba(255,255,255,0.75);
    font-size: 0.82rem;
    padding: 0;
}

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

.utility-left {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
}

.utility-left svg { width: 14px; height: 14px; color: var(--blue); }

.utility-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.utility-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.75);
    font-size: 0.8rem;
    transition: color 0.2s;
}
.utility-links a:hover { color: var(--blue); }
.utility-links a svg { width: 14px; height: 14px; }

/* Main nav bar */
.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.brand-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.brand-text { line-height: 1.2; }

.brand-name {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.18rem;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.brand-name span { color: var(--blue); }

.brand-tagline {
    display: block;
    font-size: 0.72rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.10em;
    font-weight: 600;
}

/* Nav links */
.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    position: relative;
    padding: 8px 14px;
    color: var(--navy);
    font-size: 0.84rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
    transition: color var(--transition), background var(--transition);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 14px; right: 14px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform var(--transition);
}

.main-nav a:hover { color: var(--blue); }
.main-nav a:hover::after,
.main-nav a.is-active::after { transform: scaleX(1); }
.main-nav a.is-active { color: var(--blue); }

.nav-cta {
    background: var(--blue);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 4px;
}
.nav-cta:hover {
    background: var(--blue-dark) !important;
    color: #fff !important;
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 2px solid var(--border);
    border-radius: 6px;
    background: transparent;
    color: var(--navy);
    padding: 8px;
}
.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* ============================================================
   HERO — McLarens style with sky-blue diagonal shapes
   ============================================================ */
.home-hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: var(--navy);
    display: flex;
}

/* Left "Find an Expert" side strip — like McLarens */
.hero-side-strip {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 48px;
    background: var(--navy);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 18px;
}

.hero-side-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    color: rgba(255,255,255,0.65);
    font-size: 0.70rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    white-space: nowrap;
    cursor: pointer;
    transition: color var(--transition);
}
.hero-side-text:hover { color: var(--blue); }

.hero-side-icon {
    width: 20px;
    height: 20px;
    color: rgba(255,255,255,0.45);
}

.hero-slide {
    position: absolute;
    inset: 0;
    left: 48px; /* offset for side strip */
    display: flex;
    align-items: center;
    padding: 0;
    background-size: cover;
    background-position: center;
    /* background-image is set directly via inline style on each slide */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.75s ease, visibility 0.75s ease;
    overflow: hidden;
}

.hero-slide.is-active { opacity: 1; visibility: visible; }

/* ── Sky-blue diagonal shape overlays (McLarens signature) ── */
.hero-slide::before,
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Primary large sky-blue shape */
.hero-slide::before {
    background: rgba(82, 170, 235, 0.72);
    clip-path: polygon(0 0, 58% 0, 36% 100%, 0 100%);
}

/* Secondary deeper-blue angled shape (creates depth) */
.hero-slide::after {
    background: rgba(10, 80, 150, 0.78);
    clip-path: polygon(0 0, 38% 0, 20% 100%, 0 100%);
}

/* ── McLarens-style hero text layout ── */
.hero-text-layout {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 60px;
    width: 100%;
    max-width: 860px;
}

.hero-keyword {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 6vw, 5.2rem);
    font-weight: 300;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
    white-space: nowrap;
    flex-shrink: 0;
}

.hero-vline {
    width: 2px;
    height: 70px;
    background: rgba(255,255,255,0.55);
    margin: 0 36px;
    flex-shrink: 0;
}

/* .hero-subtitle-block {} */

.hero-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.70);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.hero-subtitle {
    margin: 0 0 28px;
    color: #fff;
    font-size: clamp(1.1rem, 2.2vw, 1.55rem);
    font-weight: 400;
    line-height: 1.4;
    max-width: 360px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Angled bottom on hero */
.home-hero::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 72px;
    background: var(--white);
    clip-path: polygon(0 55%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 8;
}

/* Hero controls */
.hero-prev,
.hero-next {
    position: absolute;
    bottom: 88px;
    z-index: 9;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1.5px solid rgba(255,255,255,0.40);
    border-radius: 4px;
    color: #fff;
    background: rgba(12,27,51,0.35);
    backdrop-filter: blur(6px);
    transition: all var(--transition);
}

.hero-prev { right: 72px; }
.hero-next { right: 22px; }

.hero-prev:hover,
.hero-next:hover {
    background: var(--blue);
    border-color: var(--blue);
}

.hero-prev svg, .hero-next svg { width: 20px; height: 20px; }

.hero-dots {
    position: absolute;
    bottom: 98px;
    left: 80px;
    z-index: 9;
    display: flex;
    gap: 8px;
    align-items: center;
}

.hero-dots button {
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: rgba(255,255,255,0.35);
    transition: background var(--transition), width var(--transition);
}

.hero-dots button.is-active {
    background: #fff;
    width: 44px;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    background: var(--blue);
    padding: 0;
    position: relative;
    z-index: 3;
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px 24px;
    border-right: 1px solid rgba(255,255,255,0.18);
    text-align: center;
    position: relative;
}

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

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.stat-suffix {
    font-size: 1.5rem;
    vertical-align: super;
    font-weight: 300;
}

.stat-label {
    color: rgba(255,255,255,0.78);
    font-size: 0.80rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.10em;
}
/* ===========================================
   HERO TEXT ANIMATION
=========================================== */

.hero-keyword{
    opacity:0;
    transform:translateX(-80px);
}

.hero-vline{
    transform:scaleY(0);
    transform-origin:top;
}

.hero-subtitle-block{
    opacity:0;
    transform:translateX(70px);
}

.hero-actions{
    opacity:0;
    transform:translateY(30px);
}

/* When slide becomes active */

.hero-slide.is-active .hero-keyword{
    animation:heroKeyword .8s cubic-bezier(.22,1,.36,1) forwards;
}

.hero-slide.is-active .hero-vline{
    animation:heroLine .6s ease .35s forwards;
}

.hero-slide.is-active .hero-subtitle-block{
    animation:heroText .8s cubic-bezier(.22,1,.36,1) .45s forwards;
}

.hero-slide.is-active .hero-actions{
    animation:heroButtons .7s ease .9s forwards;
}

/* Keyframes */

@keyframes heroKeyword{

    from{
        opacity:0;
        transform:translateX(-80px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }

}

@keyframes heroLine{

    from{
        transform:scaleY(0);
    }

    to{
        transform:scaleY(1);
    }

}

@keyframes heroText{

    from{
        opacity:0;
        transform:translateX(70px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }

}

@keyframes heroButtons{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}
.hero-keyword{

    font-size:6rem;
    font-weight:300;
    letter-spacing:-2px;

}

.hero-subtitle{

    font-size:2.2rem;
    line-height:1.25;

}

.hero-eyebrow{

    letter-spacing:.22em;
    text-transform:uppercase;

}

/* ============================================================
   ABOUT / PROFILE SECTION
   ============================================================ */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.split-grid.reverse .split-img { order: 2; }

.split-img {
    position: relative;
}

.split-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Blue badge overlay on image */
.img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--blue);
    color: #fff;
    padding: 22px 26px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.img-badge-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.img-badge-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.88;
    display: block;
    margin-top: 4px;
}

.split-body h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--ink);
}

.split-body p {
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 18px;
}

/* Check list */
.check-list {
    list-style: none;
    display: grid;
    gap: 14px;
    margin: 24px 0 32px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-weight: 500;
}

.check-list li::before {
    content: '';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--blue);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5L20 7'/%3E%3C/svg%3E");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
}

/* ============================================================
   BLUE ANGLED BAND (Mission/Vision/Values)
   ============================================================ */
.blue-band {
    --band-blue: #0095da;
    position: relative;
    background: var(--band-blue);
    color: #fff;
    padding: 120px 0 80px;
    overflow: hidden;
    clip-path: polygon(0 6vw, 100% 0, 100% 100%, 0 100%);
    margin-top: -2px;
}

.blue-band .kicker { color: rgba(255,255,255,0.75); }

.blue-band h2 {
    color: #fff;
    font-size: 2.4rem;
    margin-bottom: 48px;
}

/* Glass card on blue */
.glass-card {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    padding: 36px 32px;
    transition: background var(--transition), transform var(--transition);
}

.glass-card:hover {
    background: rgba(255,255,255,0.20);
    transform: translateY(-4px);
}

.glass-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.18);
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    color: #fff;
}

.glass-card-icon svg { width: 26px; height: 26px; }

.glass-card h3 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.glass-card p {
    color: rgba(255,255,255,0.82);
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-section { background: var(--light); }

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

.section-head h2 { font-size: 2.35rem; margin-bottom: 16px; }

.section-head p {
    color: var(--text-light);
    font-size: 1.04rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--blue-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
    z-index: 3;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0,149,218,0.25);
}

.service-card:hover h3, .service-card:hover p {
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.8), 0 0 1px rgba(255, 255, 255, 0.5);
}

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

/* Overlay mask for background images */
.service-card-mask {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.5);
    transition: background-color var(--transition);
    z-index: 1;
}

.service-card:hover .service-card-mask {
    background-color: rgba(255, 255, 255, 0.40);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--light-2);
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    color: var(--blue);
    transition: background var(--transition), color var(--transition);
}

.service-card:hover .service-icon {
    background: var(--blue);
    color: #fff;
}

.service-icon svg { width: 28px; height: 28px; }

.service-card h3 {
    font-size: 1.13rem;
    margin-bottom: 12px;
    color: var(--ink);
    transition: color var(--transition);
}

.service-card:hover h3 { color: var(--blue); }

.service-card p {
    color: #000000;
    font-size: 0.94rem;
    line-height: 1.75;
    margin: 0;
}

/* ============================================================
   DIRECTOR SECTION
   ============================================================ */
.director-section { background: var(--white); }

.director-card {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    max-width: 960px;
    margin: 0 auto;
}

.director-img {
    position: relative;
    overflow: hidden;
}

.director-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 440px;
}

.director-img-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(12,27,51,0.85), transparent);
}

.director-body {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.director-badge {
    display: inline-block;
    background: var(--light-2);
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.director-body h3 {
    font-size: 1.9rem;
    color: var(--ink);
    margin-bottom: 6px;
}

.director-quals {
    color: var(--blue);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.03em;
}

.director-divider {
    width: 48px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
    margin-bottom: 24px;
}

.director-bullets {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
}

.director-bullets li {
    display: flex;
    gap: 12px;
    color: var(--text);
    font-size: 0.94rem;
    line-height: 1.65;
}

.director-bullets li::before {
    content: '';
    flex-shrink: 0;
    margin-top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
}

.director-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.director-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--light-2);
    border-radius: 6px;
    color: var(--ink);
    font-size: 0.85rem;
    font-weight: 600;
    transition: background var(--transition), color var(--transition);
}

.director-contact-link:hover {
    background: var(--blue);
    color: #fff;
}

.director-contact-link svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; }
.director-contact-link:hover svg { color: #fff; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-section { background: var(--light); }

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--border);
}

.process-step {
    background: var(--white);
    padding: 36px 28px;
    position: relative;
    transition: background var(--transition);
}

.process-step:hover { background: var(--light-2); }

.step-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--border);
    line-height: 1;
    margin-bottom: 16px;
    transition: color var(--transition);
}

.process-step:hover .step-number { color: rgba(0,149,218,0.18); }

.step-label {
    display: inline-block;
    color: var(--blue);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    margin-bottom: 10px;
}

.process-step h4 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--ink);
}

.process-step p {
    color: var(--text-light);
    font-size: 0.90rem;
    line-height: 1.70;
    margin: 0;
}

/* ============================================================
   INDUSTRIES TAG CLOUD
   ============================================================ */
.industries-section {
    background: var(--navy);
    position: relative;
    padding: 80px 0;
    clip-path: polygon(0 0, 100% 4vw, 100% 100%, 0 100%);
    margin-top: -2px;
}

.industries-section .kicker { color: rgba(255,255,255,0.65); }

.industries-section h2 { color: #fff; font-size: 2.2rem; margin-bottom: 12px; }

.industries-section .sub-text {
    color: rgba(255,255,255,0.65);
    margin-bottom: 40px;
    font-size: 1rem;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.tag-cloud span {
    display: inline-flex;
    align-items: center;
    height: 44px;
    padding: 0 20px;
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 999px;
    color: rgba(255,255,255,0.88);
    font-size: 0.88rem;
    font-weight: 500;
    background: rgba(255,255,255,0.07);
    transition: background var(--transition), border-color var(--transition);
}

.tag-cloud span:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 52px;
}

.why-card {
    padding: 32px 26px;
    border-top: 3px solid var(--border);
    transition: border-color var(--transition), transform var(--transition);
}

.why-card:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
}

.why-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--border);
    line-height: 1;
    margin-bottom: 16px;
    transition: color var(--transition);
}

.why-card:hover .why-num { color: rgba(0,149,218,0.22); }

.why-card h3 {
    font-size: 1.05rem;
    color: var(--ink);
    margin-bottom: 10px;
}

.why-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.70;
    margin: 0;
}

/* ============================================================
   URGENT LOSS / CTA STRIP
   ============================================================ */
.cta-strip {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 60%, var(--navy) 100%);
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.cta-strip::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.cta-strip .kicker { color: rgba(255,255,255,0.70); }

.cta-strip h2 {
    color: #fff;
    font-size: 2.3rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-strip p {
    color: rgba(255,255,255,0.78);
    font-size: 1.04rem;
    max-width: 560px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
    z-index: 1;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--light); }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.quote-icon {
    color: var(--blue);
    font-size: 3.5rem;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 16px;
    display: block;
    opacity: 0.35;
}

.testimonial-card blockquote {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.80;
    margin: 0 0 24px;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.testimonial-meta strong {
    display: block;
    color: var(--ink);
    font-size: 0.88rem;
}

.testimonial-meta span {
    color: var(--text-light);
    font-size: 0.80rem;
}

.placeholder-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.90rem;
    margin-top: 32px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px dashed var(--border);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { background: var(--white); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
    align-items: start;
}

.contact-info h2 { font-size: 2.1rem; margin-bottom: 18px; }

.contact-info p {
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.80;
}

.contact-cards {
    display: grid;
    gap: 14px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    color: var(--ink);
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.contact-card:hover {
    background: var(--light-2);
    border-color: var(--blue);
    transform: translateX(4px);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    background: var(--blue);
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #fff;
    flex-shrink: 0;
}

.contact-card-icon svg { width: 20px; height: 20px; }

.contact-card-body strong {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue);
    margin-bottom: 2px;
}

.contact-card-body span {
    font-size: 0.93rem;
    color: var(--ink);
    font-weight: 500;
}

/* Form */
.form-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    box-shadow: var(--shadow);
}

.form-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-panel .form-sub {
    color: var(--text-light);
    font-size: 0.92rem;
    margin-bottom: 28px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 600;
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--light);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    color: var(--ink);
    font-size: 0.95rem;
    transition: border-color var(--transition), background var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.form-note {
    font-size: 0.88rem;
    color: var(--text-light);
}

.form-note.success { color: #059669; }
.form-note.error   { color: #dc2626; }

/* ============================================================
   LOCATION MAP
   ============================================================ */
.map-section { background: var(--light); padding: 72px 0; }

.map-shell {
    margin-top: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    height: 400px;
}

.map-shell iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--blue);
    font-weight: 600;
    font-size: 0.88rem;
    transition: color var(--transition);
}

.map-link:hover { color: var(--blue-dark); }
.map-link svg { width: 18px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.70);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}

.footer-brand img {
    height: 54px;
    width: auto;
    object-fit: contain;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand p {
    font-size: 0.90rem;
    line-height: 1.80;
    max-width: 280px;
    margin-bottom: 24px;
}

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

.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.18);
    display: grid;
    place-items: center;
    color: rgba(255,255,255,0.70);
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.footer-social-btn:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.footer-social-btn svg { width: 16px; height: 16px; }

.footer-col h4 {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
}

.footer-col a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.62);
    font-size: 0.88rem;
    margin-bottom: 10px;
    transition: color var(--transition);
}

.footer-col a:hover { color: var(--blue); }

.footer-col a svg { width: 14px; height: 14px; flex-shrink: 0; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom a { color: var(--blue); transition: color var(--transition); }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: 0 6px 28px rgba(37,211,102,0.45);
    transition: transform var(--transition), box-shadow var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 36px rgba(37,211,102,0.55);
}

.floating-whatsapp svg { width: 28px; height: 28px; }

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--navy);
    color: #fff;
    font-size: 0.80rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 6px 14px;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), right var(--transition);
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    right: 74px;
}

/* Pulse ring */
.whatsapp-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 3px solid rgba(37,211,102,0.45);
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0%   { transform: scale(1);    opacity: 0.8; }
    70%  { transform: scale(1.35); opacity: 0; }
    100% { transform: scale(1.35); opacity: 0; }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.is-visible > *:nth-child(1)  { opacity:1; transform:none; transition-delay:0.05s; }
.stagger-children.is-visible > *:nth-child(2)  { opacity:1; transform:none; transition-delay:0.15s; }
.stagger-children.is-visible > *:nth-child(3)  { opacity:1; transform:none; transition-delay:0.25s; }
.stagger-children.is-visible > *:nth-child(4)  { opacity:1; transform:none; transition-delay:0.35s; }
.stagger-children.is-visible > *:nth-child(5)  { opacity:1; transform:none; transition-delay:0.45s; }
.stagger-children.is-visible > *:nth-child(6)  { opacity:1; transform:none; transition-delay:0.55s; }
.stagger-children.is-visible > *:nth-child(7)  { opacity:1; transform:none; transition-delay:0.65s; }
.stagger-children.is-visible > *:nth-child(8)  { opacity:1; transform:none; transition-delay:0.75s; }
.stagger-children.is-visible > *:nth-child(9)  { opacity:1; transform:none; transition-delay:0.85s; }
.stagger-children.is-visible > *:nth-child(10) { opacity:1; transform:none; transition-delay:0.95s; }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    background-image:
        linear-gradient(100deg, rgba(12,27,51,0.93) 0%, rgba(0,149,218,0.55) 100%),
        var(--hero-img);
    background-size: cover;
    background-position: center;
    padding-bottom: 60px;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
    margin-bottom: -2px;
}

.page-hero .kicker { color: rgba(255,255,255,0.72); }

.page-hero h1 {
    color: #fff;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    max-width: 680px;
    margin-top: 10px;
}

.page-hero p {
    color: rgba(255,255,255,0.80);
    max-width: 600px;
    margin-top: 14px;
    font-size: 1.04rem;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.60);
    margin-bottom: 16px;
}

.breadcrumb a { color: rgba(255,255,255,0.60); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb svg { width: 14px; height: 14px; }

/* ============================================================
   ABOUT PAGE — profile timeline
   ============================================================ */
.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.18); }
    .director-card { grid-template-columns: 300px 1fr; }
    .why-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
    .split-grid { grid-template-columns: 1fr; gap: 40px; }
    .split-grid.reverse .split-img { order: 0; }
    .service-grid { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 44px; }
    .director-card { grid-template-columns: 1fr; }
    .director-img img { min-height: 300px; }
    .utility-links { display: none; }
    .profile-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
    .main-nav { display: none; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--border); box-shadow: var(--shadow); padding: 12px 0 20px; z-index: 99; }
    .main-nav.is-open { display: flex; }
    .main-nav a { padding: 12px 24px; border-radius: 0; width: 100%; }
    .main-nav a::after { display: none; }
    .menu-toggle { display: flex; }
    .service-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .home-hero { min-height: 540px; }
    .hero-slide { padding: 80px 0 120px; }
    .hero-content h1, .hero-content h2 { font-size: 2.0rem; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .blue-band { clip-path: none; }
    .industries-section { clip-path: none; }
    .form-panel { padding: 28px 22px; }
}

@media (max-width: 480px) {
    .why-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: 1fr 1fr; }
    .section { padding: 64px 0; }
    .hero-prev, .hero-next { display: none; }
    .director-body { padding: 30px 24px; }
    .hero-keyword { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-vline { height: 50px; margin: 0 22px; }
    .hero-text-layout { padding: 0 28px; flex-wrap: wrap; }
}

/* Mobile hero side strip */
@media (max-width: 700px) {
    .hero-side-strip { width: 36px; }
    .hero-slide { left: 36px; }
    .hero-dots { left: 50px; }
    .hero-text-layout { padding: 0 32px; }
}

@media (max-width: 540px) {
    .hero-side-strip { display: none; }
    .hero-slide { left: 0; }
    .hero-dots { left: 20px; }
}

/* ============================================================
   ADDRESS BLOCK
   ============================================================ */
.address-block {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255,255,255,0.62);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-top: 8px;
}

.address-block svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--blue);
}

.contact-address-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: var(--light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    color: var(--ink);
}

.contact-address-card .contact-card-icon {
    width: 44px;
    height: 44px;
    background: var(--blue);
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #fff;
    flex-shrink: 0;
}

.contact-address-card .contact-card-icon svg { width: 20px; height: 20px; }

.contact-address-card .contact-card-body strong {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue);
    margin-bottom: 4px;
}

.contact-address-card .contact-card-body address {
    font-style: normal;
    font-size: 0.90rem;
    color: var(--text);
    line-height: 1.60;
}

/* ============================================================
   STAR RATING
   ============================================================ */
.star-rating {
    display: flex;
    gap: 6px;
    margin-top: 6px;
}

.star-rating .star {
    background: none;
    border: none;
    font-size: 2rem;
    color: #d4d4d4;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.15s ease, transform 0.15s ease;
}

.star-rating .star:hover,
.star-rating .star.active {
    color: #f5a623;
    transform: scale(1.15);
}

.star-rating .star.hovered {
    color: #f5a623;
}

/* ============================================================
   TESTIMONIAL FORM WRAP
   ============================================================ */
.testimonial-form-wrap {
    border-top: 2px solid var(--border);
    padding-top: 64px;
}

.testimonial-form-wrap .section-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

/* ============================================================
   HIGHLIGHTED VALUE CARDS
   ============================================================ */
/* ============================================================
   VALUES TREE LAYOUT
   ============================================================ */
.values-tree-container {
    display: grid;
    grid-template-columns: 1fr 260px 1fr;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
    position: relative;
}

.values-tree-side {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.values-tree-center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}

.values-tree-center svg {
    width: 100%;
    height: 420px;
    filter: drop-shadow(0 4px 15px rgba(0, 149, 218, 0.15));
}

.tree-branch-line {
    fill: none;
    stroke: rgba(0, 149, 218, 0.35);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 5 4;
    animation: flowDash 20s linear infinite;
}

@keyframes flowDash {
    to { stroke-dashoffset: -200; }
}

.tree-trunk {
    fill: none;
    stroke: #c5a059;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tree-leaf-node {
    fill: #0095da;
    stroke: #ffffff;
    stroke-width: 1.5;
    filter: drop-shadow(0 0 5px rgba(0, 149, 218, 0.6));
    transition: transform 0.3s ease;
}

.tree-leaf-node:hover {
    transform: scale(1.25);
}

.values-tree-root-wrap {
    margin-top: 36px;
    display: flex;
    justify-content: center;
}

@media (max-width: 900px) {
    .values-tree-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .values-tree-center {
        display: none;
    }
}

.value-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(0, 149, 218, 0.30);
    border-top: 3px solid rgba(0, 149, 218, 0.80);
    border-radius: 16px;
    padding: 24px 22px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(8px);
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top left, rgba(0,149,218,0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.value-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(0, 149, 218, 0.80);
    box-shadow: 0 12px 36px rgba(0, 149, 218, 0.25), 0 0 0 1px rgba(0,149,218,0.20);
}

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

.value-card-emoji {
    width: 52px;
    height: 52px;
    background: rgba(0, 149, 218, 0.18);
    border: 1.5px solid rgba(0, 149, 218, 0.40);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 14px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.value-card:hover .value-card-emoji {
    background: rgba(0, 149, 218, 0.30);
    transform: scale(1.1) rotate(-4deg);
}

.value-card h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 8px;
    letter-spacing: 0.01em;
}

.value-card p {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   ABOUT SECTION — ANIMATED LOGO VISUAL
   ============================================================ */
.about-anim-wrap {
    position: relative;
    width: 340px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pulsing rings */
.anim-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 149, 218, 0.25);
    animation: ringPulse 3s ease-in-out infinite;
}

.anim-ring-1 { width: 160px; height: 160px; animation-delay: 0s; }
.anim-ring-2 { width: 240px; height: 240px; animation-delay: 0.8s; border-color: rgba(0,149,218,0.15); }
.anim-ring-3 { width: 320px; height: 320px; animation-delay: 1.6s; border-color: rgba(0,149,218,0.08); }

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50%       { transform: scale(1.06); opacity: 1; }
}

/* Central shield */
.anim-shield {
    position: relative;
    z-index: 5;
    animation: shieldFloat 4s ease-in-out infinite;
}

.shield-svg {
    width: 130px;
    height: 150px;
    filter: drop-shadow(0 0 18px rgba(0,149,218,0.55)) drop-shadow(0 0 6px rgba(245,166,35,0.35));
}

@keyframes shieldFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}

/* Orbiting service icon containers */
.orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    animation: orbitSpin 18s linear infinite;
    transform-origin: center center;
}

.orbit-1 { animation-duration: 14s; }
.orbit-2 { animation-duration: 16s; animation-direction: reverse; }
.orbit-3 { animation-duration: 20s; }
.orbit-4 { animation-duration: 12s; animation-direction: reverse; }
.orbit-5 { animation-duration: 22s; }

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.orbit-icon {
    position: absolute;
    top: -18px;
    left: calc(50% - 18px);
    width: 36px;
    height: 36px;
    background: rgba(10, 30, 60, 0.95);
    border: 1.5px solid rgba(0, 149, 218, 0.60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(0,149,218,0.25);
    /* Counter-rotate so icon stays upright */
    animation: counterSpin 18s linear infinite;
}

.orbit-1 .orbit-icon { animation-duration: 14s; animation-direction: normal; }
.orbit-2 .orbit-icon { animation-duration: 16s; animation-direction: reverse; }
.orbit-3 .orbit-icon { animation-duration: 20s; }
.orbit-4 .orbit-icon { animation-duration: 12s; animation-direction: reverse; }
.orbit-5 .orbit-icon { animation-duration: 22s; }

@keyframes counterSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(-360deg); }
}

/* Position each orbit at different angles using rotation offset */
.orbit-1 { transform: rotate(0deg); }
.orbit-2 { transform: rotate(72deg); }
.orbit-3 { transform: rotate(144deg); }
.orbit-4 { transform: rotate(216deg); }
.orbit-5 { transform: rotate(288deg); }

/* Floating stat badges */
.anim-badge {
    position: absolute;
    background: rgba(10, 30, 60, 0.92);
    border: 1.5px solid rgba(0, 149, 218, 0.55);
    border-radius: 12px;
    padding: 8px 14px;
    text-align: center;
    z-index: 10;
    animation: badgeFloat 3.5s ease-in-out infinite;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.anim-badge-tl { top: 8px;  left: 4px;   animation-delay: 0s; }
.anim-badge-tr { top: 8px;  right: 4px;  animation-delay: 0.8s; }
.anim-badge-bl { bottom: 8px; left: 4px; animation-delay: 1.6s; }
.anim-badge-br { bottom: 8px; right: 4px; animation-delay: 2.4s; }

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-5px); }
}

.anim-badge-num {
    display: block;
    color: #0095da;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1;
}

.anim-badge-lbl {
    display: block;
    color: rgba(255,255,255,0.60);
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 3px;
    white-space: nowrap;
}


@media (max-width: 860px) {
    .about-anim-wrap { width: 280px; height: 280px; }
    .anim-ring-3 { display: none; }
}

/* ── Redesigned Service Card Layout (Left Icon + Title, Full Background Image) ── */
.service-card-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.service-card .service-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 0;
    flex-shrink: 0;
    border-radius: 8px;
}

.service-card .service-icon svg {
    width: 22px;
    height: 22px;
}

.service-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0;
    line-height: 1.3;
}