:root {
    /* Colors */
    --clr-navy: #002b5c;
    --clr-navy-dark: #001533;
    --clr-navy-card: #001e4d;
    --clr-red: #d12a2e;
    --clr-pink-light: #ffcbd1;
    --clr-pink-bg: #fff1f2;
    --clr-blue-tag: #e0f0ff;
    --clr-blue-bright: #0066ff;
    --clr-text-main: #1a1a1a;
    --clr-text-light: #4a4a4a;
    --clr-white: #ffffff;
    --clr-bg-light: #f8fafc;

    /* Spacing - Responsive using clamp */
    --space-xs: clamp(0.5rem, 1vw, 0.75rem);
    --space-sm: clamp(0.75rem, 1.5vw, 1rem);
    --space-md: clamp(1.25rem, 2.5vw, 2rem);
    --space-lg: clamp(2rem, 4vw, 3.5rem);
    --space-xl: clamp(3rem, 6vw, 6rem);
    --container-padding: 6%;

    /* Typography - Responsive using clamp */
    --fs-h1: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    --fs-h2: clamp(1.75rem, 3.5vw, 2.5rem);
    --fs-h3: clamp(1.25rem, 2.5vw, 1.75rem);
    --fs-body: clamp(1rem, 1.1vw, 1.125rem);
    --fs-small: clamp(0.875rem, 0.9vw, 1rem);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#overlay { position: fixed; background-color: rgba(0,0,0,.6); width: 100%; height: 100%; top: 0; z-index: 999999; align-items: center; justify-content: center; display: none; }
    #message { width: 30%; color: #000; text-align: center; padding: 20px; background-color: rgba(255,255,255,1); }
    #message > p { color: #000; font-weight: 400; font-size: 1.1em; margin-bottom: 15px; }
    #message #okbtn { color: #fff; padding: 10px 20px; background: #002b5c;    text-transform: uppercase; border-radius: 30px; cursor: pointer; }
    #overlay.closes { display: flex; }
    #message h2 { font-weight: 700; font-size: 1.6em; padding: 0px 0 15px;    color: #d12a2e; }
/* Honeypot anti-spam field — visually hidden, off-screen, and non-interactive for humans */
.yb-hp { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.yb-hp input { pointer-events: none; }
@media (min-width: 1440px) {
    :root {
        --container-padding: 3%;
    }
}

@media (width: 1440px) {
    :root {
        --container-padding: 6%;
    }
}

@media (min-width: 1920px) {
    :root {
        --container-padding: 2%;
    }

    .container {
        max-width: 1800px;
    }
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Neue Haas Grotesk Display Pro', 'Neue Haas Grotesk Text Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--clr-text-main);
    line-height: 1.5;
    background-color: var(--clr-white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

@media (min-width: 1920px) {
    .container {
        max-width: 1800px;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8em 1.8em;
    border-radius: 100px;
    font-weight: 600;
    font-size: var(--fs-small);
    line-height: 1;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-navy {
    background-color: var(--clr-navy);
    color: var(--clr-white);
}

.btn-navy:hover {
    background-color: #001a38;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 43, 92, 0.2);
}

.btn-red {
    background-color: var(--clr-red);
    color: var(--clr-white);
}

.btn-red:hover {
    background-color: #a82025;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(209, 42, 46, 0.2);
}

/* Header & Nav */
.header {
    padding: clamp(1rem, 4vw, 3.4rem) 0 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.header.over-services {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: clamp(76px, 7vw, 196px);
    width: auto;
    transition: var(--transition);
}

@media (max-width: 1450px) and (min-width: 1025px) {
    .logo-img {
        height: 100px;
    }
}

.header.scrolled .logo-img {
    height: clamp(44px, 4vw, 72px);
}

.nav-links {
    display: none;
    /* Mobile first hidden */
    gap: clamp(1.5rem, 2.55vw, 3.25rem);
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: var(--clr-white);
    padding: 100px var(--container-padding);
    z-index: 999;
    overflow-y: auto;
}

/* Fix containing block issues caused by backdrop-filter when mobile menu is active */
.header:has(.nav-links.active) {
    backdrop-filter: none !important;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-links a {
    font-weight: 500;
    font-size: clamp(1rem, 1.15vw, 1.45rem);
    color: var(--clr-text-main);
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--clr-navy);
}

.dropdown {
    position: relative;
}

.dropdown-toggle-btn {
    display: none;
}

.dropdown>a svg {
    flex: 0 0 auto;
    transition: transform 0.25s ease;
}

.dropdown:hover>a svg,
.dropdown:focus-within>a svg {
    transform: rotate(180deg);
}

.dropdown::after {
    content: '';
    position: absolute;
    left: -16px;
    right: -16px;
    top: 100%;
    height: 20px;
    display: none;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    z-index: 1002;
    display: grid;
    width: max-content;
    min-width: 310px;
    gap: 0.35rem;
    padding: 0.65rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 43, 92, 0.1);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 21, 51, 0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.dropdown:hover::after,
.dropdown:focus-within::after {
    display: block;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    color: var(--clr-navy-dark);
    font-size: 0.98rem;
    font-weight: 600;
    white-space: nowrap;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item.active {
    background: var(--clr-pink-bg);
    color: var(--clr-red);
}

.dropdown-menu .dropdown-item span {
    width: 1.35rem;
    text-align: center;
}

.nav-cta {
    display: none;
    /* Mobile first hidden */
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--clr-navy);
    transition: var(--transition);
}

.nav-links.active .dropdown {
    width: 100%;
    position: relative;
}

.nav-links.active .dropdown-toggle-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 100%;
    min-height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.nav-links.active .dropdown::after {
    display: none;
}

.nav-links.active .dropdown>a {
    justify-content: space-between;
}

.nav-links.active .dropdown>a svg {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.nav-links.active .dropdown.open>a svg {
    transform: rotate(180deg);
}

.nav-links.active .dropdown-menu {
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-left: 2px solid rgba(209, 42, 46, 0.2);
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    display: none;
    transition: all 0.3s ease;
}

.nav-links.active .dropdown.open .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin-top: 0.7rem;
    padding: 0.3rem 0 0.3rem 0.8rem;
}

.nav-links.active .dropdown-menu .dropdown-item {
    width: 100%;
    padding: 0.75rem 0.9rem;
    background: rgba(248, 250, 252, 0.9);
    border-radius: 12px;
    font-size: 0.98rem;
}

.header .btn {
    min-width: clamp(154px, 10.7vw, 219px);
    min-height: clamp(44px, 2.8vw, 57px);
    padding: 0 2rem;
    font-size: clamp(1rem, 1.05vw, 1.35rem);
    font-weight: 400;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: stretch;
    background-image: url('assets/herobanner.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    min-height: 100vh;
    min-height: 100svh;
    padding-top: clamp(8rem, 22vh, 14rem);
    padding-bottom: clamp(4.5rem, 9.5vh, 8.6rem);
}

.hero-content {
    max-width: min(100%, 900px);
}

.badge {
    display: inline-flex;
    background: var(--clr-pink-bg);
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid rgba(209, 42, 46, 0.2);
    margin-bottom: var(--space-md);
}

.badge span {
    color: var(--clr-red);
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    font-weight: 600;
}

.hero-title {
    font-size: clamp(2.25rem, 9.5vw, 4.1rem);
    font-weight: 800;
    line-height: 1.13;
    margin-bottom: var(--space-sm);
}

.text-red {
    color: var(--clr-red);
}

.text-navy {
    color: var(--clr-navy);
}

.hero-subtitle {
    font-size: clamp(1.15rem, 4.8vw, 1.65rem);
    font-weight: 700;
    color: var(--clr-text-main);
    margin-bottom: var(--space-sm);
}

.hero-description {
    font-size: clamp(1rem, 4vw, 1.25rem);
    line-height: 1.42;
    color: #0b1320;
    max-width: 760px;
    margin-bottom: clamp(1.75rem, 4vw, 2.4rem);
}

.hero-actions,
.about-hero-actions,
.ct-hero-actions,
.sv-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 1.5vw, 1.9rem);
    margin-top: 1.5rem;
    margin-bottom: clamp(2rem, 3.4vw, 2.35rem);
}

.hero-actions .btn,
.about-hero-actions .btn,
.ct-hero-actions .btn,
.sv-hero-actions .btn {
    min-width: min(100%, clamp(190px, 12.5vw, 256px));
    min-height: clamp(48px, 2.8vw, 57px);
    padding: 0 2rem;
    font-size: clamp(1rem, 1.08vw, 1.4rem);
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.operating-in {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.operating-in .label {
    font-size: clamp(1rem, 1.15vw, 1.5rem);
    font-weight: 400;
    color: #111827;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: clamp(38px, 2.3vw, 47px);
    min-width: clamp(105px, 5.3vw, 108px);
    background: rgba(224, 240, 255, 0.16);
    border: 1px solid #9ec3ff;
    padding: 0 20px;
    border-radius: 100px;
    font-size: clamp(0.9rem, 0.85vw, 1.05rem);
    font-weight: 400;
    color: #111827;
    transition: all 0.25s ease;
}

.tag:hover {
    background: rgba(224, 240, 255, 0.32);
    border-color: #0056f5;
    transform: translateY(-2px);
}

.hero-flag-icon {
    width: clamp(20px, 1.6vw, 24px);
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.tag .dot {
    position: static;
    flex: 0 0 auto;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    transform: none;
}

.dot.red {
    background: #ff4d4d;
}

.dot.blue {
    background: #4d79ff;
}

.dot.purple {
    background: #a64dff;
}

.hero .tag .dot {
    background: var(--clr-red);
}

.hero .badge {
    background: rgba(255, 241, 242, 0.65);
    border-color: var(--clr-red);
    padding: 6px 20px;
    margin-bottom: clamp(1.4rem, 1.5vw, 1.65rem);
}

.hero .badge span {
    color: var(--clr-navy);
    font-size: clamp(1rem, 1.1vw, 1.45rem);
}

/* Responsive Breakpoints */
@media (min-width: 1024px) {
    .header {
        padding: clamp(1rem, 1vw, 2.2rem) 0 0;
    }

    .nav {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }

    .logo {
        justify-self: start;
    }

    .nav-links {
        display: flex;
        margin-top: 0;
        justify-self: center;
    }

    .nav-links a {
        position: relative;
        padding: 6px 0;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--clr-red, #d12a2e);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    .nav-cta {
        display: block;
        margin-top: 0;
        justify-self: end;
    }

    .menu-toggle {
        display: none;
    }

    .header.scrolled .nav {
        align-items: center;
    }

    .header.scrolled .nav-links,
    .header.scrolled .nav-cta {
        margin-top: 0;
    }

    .hero-container {
        align-items: flex-end;
    }

    .hero-title {
        font-size: clamp(4.25rem, 4.7vw, 6rem);
        margin-bottom: 0;
    }

    .hero-subtitle {
        font-size: clamp(1.35rem, 1.45vw, 1.85rem);
    }

    .hero-description {
        font-size: clamp(1.15rem, 1.17vw, 1.5rem);
    }
}

@media (width: 1440px) {
    .hero-container {
        padding-top: 220px;
    }
}

/* Pillars Section */
.pillars {
    background-color: #031433;
    /* Deep premium navy dark void background */
    padding: clamp(5rem, 7vw, 9rem) 0 clamp(6rem, 9vw, 11rem);
    color: var(--clr-white);
    position: relative;
    overflow: hidden;
}

@media (min-width: 1920px) {
    .pillars .container {
        max-width: 1816px;
    }
}

.pillars-header {
    text-align: left;
    margin-bottom: clamp(3rem, 4vw, 5rem);
}

/* Custom capsule badge matching screenshot */
.pillars .badge-alt {
    display: flex;
    align-items: center;
    width: max-content;
    min-height: clamp(38px, 2.3vw, 47px);
    padding: 0 clamp(1rem, 1.15vw, 1.45rem);
    background: #ffe8ee;
    /* Pink background exactly like Why YB Solutions */
    border: 1px solid #d12a2e;
    /* Red border exactly like Why YB Solutions */
    border-radius: 100px;
    margin-bottom: clamp(1rem, 0.9vw, 1.2rem);
}

.pillars .badge-alt span {
    color: #111111;
    /* Dark text exactly like Why YB Solutions */
    font-size: clamp(1rem, 1.15vw, 1.5rem);
    font-weight: 700;
    line-height: 1;
}

.pillars-title {
    font-size: clamp(3.2rem, 5vw, 6.2rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: clamp(1rem, 1.2vw, 1.5rem);
    background: linear-gradient(90deg, #f16f8d 0%, #ffc4d3 42%, #d94769 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.pillars-subtitle {
    font-size: clamp(1.1rem, 1.3vw, 1.6rem);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
}

/* 2x2 Symmetric Card Grid */
.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 2vw, 2.5rem);
}

/* Card Normal State: Subtle Dark Blue Border, NO glow, solid background */
.pillar-card {
    background:
        linear-gradient(#031633, #031633) padding-box,
        linear-gradient(135deg, rgba(0, 82, 209, 0.35), rgba(0, 162, 255, 0.2)) border-box;
    border: 1.5px solid transparent;
    border-radius: 20px;
    padding: clamp(2rem, 3.5vw, 4rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    min-height: clamp(380px, 32vw, 460px);
    box-shadow: none;
    /* NO glow in normal state */
}

/* Card Hover State: Pink/Red Gradient Border, Soft Crimson/Pink Glow, Radial Highlight */
.pillar-card:hover {
    background:
        radial-gradient(circle at 85% 50%, rgba(255, 122, 169, 0.08) 0%, rgba(255, 122, 169, 0) 60%) padding-box,
        linear-gradient(#031633, #031633) padding-box,
        linear-gradient(135deg, #d12a2e, #ff6fa2) border-box;
    box-shadow: 0 15px 40px rgba(209, 42, 46, 0.22);
    /* Beautiful pink/red active glow on hover */
    transform: translateY(-6px);
}

.pillar-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.pillar-name {
    font-size: clamp(1.9rem, 2.2vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: clamp(0.8rem, 1vw, 1.2rem);
    color: #ff9eb8;
    /* Beautiful pink coral title */
    letter-spacing: -0.5px;
}

.pillar-desc {
    font-size: clamp(1.05rem, 1.16vw, 1.35rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: clamp(1.8rem, 2.2vw, 2.8rem);
    line-height: 1.45;
    max-width: 90%;
}

/* Pill Crimson Learn More Button */
.btn-learn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #b31621;
    /* Rich premium crimson red */
    color: var(--clr-white);
    min-width: clamp(150px, 11vw, 190px);
    min-height: clamp(44px, 2.8vw, 50px);
    padding: 0 1.8rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: clamp(0.95rem, 1vw, 1.15rem);
    line-height: 1;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-learn:hover {
    background: #940f17;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(179, 22, 33, 0.35);
}

/* Centered and Clean Illustration Container - No Box background */
.pillar-icon-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    position: relative;
    background: none;
    border-radius: 0;
    transition: var(--transition);
}

.pillar-img-icon {
    width: 100%;
    max-width: 190px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pillar-card:hover .pillar-img-icon {
    transform: translateY(-5px) scale(1.05);
}

/* Responsive Breakpoints */
@media (min-width: 768px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(1.75rem, 2.2vw, 2.5rem);
    }

    .pillar-card {
        padding: clamp(2.2rem, 3vw, 3.8rem);
        min-height: clamp(480px, 46vw, 560px);
    }

    .pillar-icon-box {
        margin-top: auto;
        padding-top: 1.5rem;
    }

    .pillar-img-icon {
        max-width: clamp(170px, 16vw, 210px);
    }
}

@media (min-width: 1024px) {
    .pillar-card {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: clamp(1.5rem, 2vw, 3rem);
        min-height: clamp(340px, 24vw, 420px);
        padding: clamp(2.5rem, 3.5vw, 4rem);
    }

    .pillar-content {
        flex: 1;
        max-width: 58%;
    }

    .pillar-icon-box {
        flex: 0 0 38%;
        width: 38%;
        margin-top: 0;
        padding-top: 0;
        justify-content: flex-end;
    }

    .pillar-img-icon {
        max-width: 100%;
        max-height: clamp(160px, 14vw, 210px);
    }
}

/* Why Us Timeline Section */
.why-us {
    --timeline-progress: 0;
    padding: clamp(5rem, 5vw, 6.5rem) 0 clamp(7rem, 8.8vw, 11.25rem);
    background: var(--clr-white);
    overflow: hidden;
}

.why-us-header {
    text-align: center;
    margin-bottom: clamp(4.2rem, 4.85vw, 6.4rem);
}

.why-us .badge {
    align-items: center;
    min-height: clamp(38px, 2.05vw, 42px);
    padding: 0 clamp(1rem, 1.05vw, 1.35rem);
    background: #fff2f4;
    border-color: #d12a2e;
    margin-bottom: clamp(1.5rem, 1.55vw, 2rem);
}

.why-us .badge span {
    color: #111111;
    font-size: clamp(1rem, 1.05vw, 1.35rem);
    line-height: 1;
}

.why-us-title {
    font-size: clamp(3.2rem, 5vw, 6.4rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: clamp(1.15rem, 1.3vw, 1.65rem);
}

.why-us-subtitle {
    font-size: clamp(1.05rem, 1.12vw, 1.45rem);
    color: #2a2a2a;
    line-height: 1.35;
    max-width: 880px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    max-width: 1350px;
    margin: 0 auto;
    min-height: clamp(1120px, 72.7vw, 1490px);
    --connector-size: clamp(72px, 7.05vw, 145px);
}

.timeline::before,
.timeline::after {
    content: '';
    position: absolute;
    left: 50%;
    z-index: 4;
    width: clamp(20px, 1.35vw, 28px);
    height: clamp(20px, 1.35vw, 28px);
    border: 4px solid color-mix(in srgb, #c91d32 calc(var(--timeline-progress) * 100%), #d4d4d4);
    border-radius: 50%;
    background: #ffffff;
    transform: translate(-50%, -50%);
}

.timeline::before {
    top: 0;
}

.timeline::after {
    bottom: 0;
    border-color: color-mix(in srgb, #002b5c calc(var(--timeline-end-progress, 0) * 100%), #d4d4d4);
    transform: translate(-50%, 50%);
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #d4d4d4;
    border-radius: 999px;
    transform: translateX(-50%);
    overflow: hidden;
    z-index: 2;
}

.timeline-line::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: calc(var(--timeline-progress) * 100%);
    background: linear-gradient(to bottom,
            #c91d32 0%,
            #c91d32 30%,
            #6a2449 43%,
            #002b5c 58%,
            #002b5c 100%);
    border-radius: inherit;
    transition: height 0.12s linear;
}

.timeline-item {
    --item-progress: 0;
    --accent: #c91d32;
    --active-bg: #fff8fb;
    --active-border: #d12a2e;
    --curve-radius: clamp(24px, 2.5vw, 36px);
    position: relative;
    width: 100%;
    margin-bottom: clamp(1.5rem, 5vw, 3rem);
    padding-left: clamp(2.25rem, 10vw, 4rem);
}

.timeline-item.blue {
    --accent: #002b5c;
    --active-bg: #eaf2ff;
    --active-border: #5da4ff;
}

.timeline-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: clamp(48px, 3.15vw, 64px) 1fr;
    column-gap: clamp(0.75rem, 0.9vw, 1.15rem);
    align-items: center;
    width: 100%;
    min-height: clamp(240px, 13.3vw, 272px);
    padding: clamp(2rem, 2.55vw, 3.3rem);
    background: color-mix(in srgb, var(--active-bg) calc(var(--item-progress) * 100%), #eeeeee);
    border: 1.5px solid color-mix(in srgb, var(--active-border) calc(var(--item-progress) * 100%), #bfbfbf);
    border-radius: 16px;
    color: color-mix(in srgb, #292929 calc(var(--item-progress) * 100%), #9a9a9a);
    transition: background-color 0.18s linear, border-color 0.18s linear, color 0.18s linear;
}

.timeline-icon {
    width: clamp(48px, 3.15vw, 64px);
    height: clamp(48px, 3.15vw, 64px);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    flex-shrink: 0;
}

.timeline-img-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: calc(0.48 + (var(--item-progress) * 0.52));
    filter: grayscale(calc(1 - var(--item-progress)));
    transition: filter 0.18s linear, opacity 0.18s linear;
}

.timeline-title {
    font-size: clamp(1.55rem, 1.65vw, 2.15rem);
    font-weight: 800;
    line-height: 1.08;
    margin: 0;
    color: color-mix(in srgb, var(--accent) calc(var(--item-progress) * 100%), #9d9d9d);
    transition: color 0.18s linear;
}

.timeline-desc {
    grid-column: 1 / -1;
    margin-top: clamp(1rem, 1.1vw, 1.4rem);
    font-size: clamp(1rem, 1.08vw, 1.4rem);
    color: inherit;
    line-height: 1.25;
}

@media (min-width: 768px) {
    .timeline-item {
        width: 50%;
        padding-left: 0;
        margin-bottom: 4rem;
    }

    .timeline-item.left {
        left: 0;
        padding-right: var(--connector-size);
        text-align: left;
    }

    .timeline-item.right {
        left: 50%;
        padding-left: var(--connector-size);
        text-align: left;
    }

    .timeline-item::before,
    .timeline-item::after {
        content: '';
        position: absolute;
        bottom: 50%;
        height: var(--curve-radius);
        background: transparent;
        pointer-events: none;
        z-index: 1;
    }

    .timeline-item.left::before {
        right: -2px;
        width: calc(var(--connector-size) + 2px);
        border-bottom: 4px solid #d4d4d4;
        border-right: 4px solid #d4d4d4;
        border-bottom-right-radius: var(--curve-radius);
    }

    .timeline-item.left::after {
        right: -2px;
        width: calc(var(--connector-size) + 2px);
        border-bottom: 4px solid var(--accent);
        border-right: 4px solid var(--accent);
        border-bottom-right-radius: var(--curve-radius);
        clip-path: inset(0 0 0 calc((1 - var(--item-progress)) * 100%));
        transition: clip-path 0.12s linear;
    }

    .timeline-item.right::before {
        left: -2px;
        width: calc(var(--connector-size) + 2px);
        border-bottom: 4px solid #d4d4d4;
        border-left: 4px solid #d4d4d4;
        border-bottom-left-radius: var(--curve-radius);
    }

    .timeline-item.right::after {
        left: -2px;
        width: calc(var(--connector-size) + 2px);
        border-bottom: 4px solid var(--accent);
        border-left: 4px solid var(--accent);
        border-bottom-left-radius: var(--curve-radius);
        clip-path: inset(0 calc((1 - var(--item-progress)) * 100%) 0 0);
        transition: clip-path 0.12s linear;
    }
}

@media (min-width: 1024px) {
    .timeline-item {
        position: absolute;
        margin-bottom: 0;
    }

    .timeline-item:nth-of-type(2) {
        top: clamp(62px, 3.28vw, 67px);
    }

    .timeline-item:nth-of-type(3) {
        top: clamp(286px, 14.65vw, 300px);
    }

    .timeline-item:nth-of-type(4) {
        top: clamp(508px, 26.2vw, 536px);
    }

    .timeline-item:nth-of-type(5) {
        top: clamp(770px, 39.45vw, 808px);
    }

    .timeline-item:nth-of-type(6) {
        top: clamp(1000px, 52vw, 1065px);
    }
}

@media (max-width: 767px) {

    .why-us-title br,
    .why-us-subtitle br {
        display: none;
    }

    .why-us {
        padding-bottom: 2.5rem !important;
    }

    .timeline {
        min-height: 0;
        padding-left: 0;
    }

    .timeline::before,
    .timeline::after,
    .timeline-line {
        left: 1rem;
    }

    .timeline-item:last-of-type {
        margin-bottom: 0 !important;
    }

    .timeline-content {
        min-height: auto;
    }

    .full-image-section {
        padding-top: 2rem !important;
    }
}

/* Full Image Section */
.full-image-section {
    padding-top: 80px;
    overflow: hidden;
}

.image-banner {
    position: relative;
    width: 100%;
/*    max-width: 1920px;*/
    aspect-ratio: 21/9;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-overlay-left {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 25%;
    background: linear-gradient(90deg, rgba(209, 42, 46, 0.3) 0%, rgba(209, 42, 46, 0) 100%);
    pointer-events: none;
}

.banner-overlay-right {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 25%;
    background: linear-gradient(-90deg, rgba(0, 43, 92, 0.3) 0%, rgba(0, 43, 92, 0) 100%);
    pointer-events: none;
}

/* Growth Solutions Section */
.growth-solutions {
    --services-arc-rotation: 0deg;
    --services-progress: 0;
    --services-dasharray: 0px 307.919px;
    position: relative;
    height: 500vh;
    min-height: 3500px;
    background:
        radial-gradient(ellipse at 15% 20%, rgba(0, 40, 90, 0.25), transparent 50%),
        radial-gradient(ellipse at 85% 80%, rgba(0, 40, 90, 0.25), transparent 50%),
        #00040d;
    background-attachment: fixed;
    text-align: center;
}

.growth-solutions::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(0, 16, 46, 0.34), transparent 35%),
        linear-gradient(300deg, rgba(0, 20, 56, 0.42), transparent 42%),
        radial-gradient(circle at 50% 55%, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.28) 44%, transparent 72%);
    background-attachment: fixed;
    pointer-events: none;
    z-index: 0;
}

.services-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    background: transparent;
}

.services-sticky .container {
    position: relative;
    z-index: 1;
}

.solutions-header {
    position: relative;
    padding-top: clamp(4rem, 8vh, 6rem);
    padding-bottom: clamp(1rem, 2vh, 2rem);
    text-align: center;
    width: 100%;
    margin: 0 auto;
    z-index: 10;
}

.growth-solutions .badge-alt {
    display: flex;
    align-items: center;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    min-height: clamp(38px, 2.15vw, 43px);
    padding: 0 clamp(1rem, 1.05vw, 1.34rem);
    background: #fff2f4;
    border: 1px solid var(--clr-red);
    border-radius: 100px;
    margin-bottom: clamp(1.2rem, 1.8vw, 1.8rem);
}

.growth-solutions .badge-alt span {
    color: #111111;
    font-size: clamp(1rem, 1.08vw, 1.32rem);
    font-weight: 600;
    line-height: 1;
}

.solutions-title {
    font-size: clamp(2.2rem, 3.8vw, 5.2rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: clamp(0.8rem, 1.2vh, 1.2rem);
    background: linear-gradient(90deg, #e45670 0%, #ffc1ce 50%, #d83253 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.solutions-subtitle {
    font-size: clamp(1.05rem, 1.1vw, 1.34rem);
    color: rgba(255, 255, 255, 0.94);
    max-width: 840px;
    margin: 0 auto;
    line-height: 1.3;
}

.circular-carousel {
    position: relative;
    width: min(820px, 80vw, calc(100svh - 200px));
    min-width: 300px;
    aspect-ratio: 1/1;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    overflow: visible;
}

.service-ring-base,
.service-ring-progress {
    stroke-width: 1.35px;
    vector-effect: non-scaling-stroke;
}

.service-ring-base {
    stroke: rgba(255, 255, 255, 0.92);
    fill: #000000;
}

.service-ring-progress {
    fill: none;
    stroke: var(--clr-red);
    stroke-linecap: round;
    stroke-dasharray: var(--services-dasharray, 0px 307.919px);
    stroke-dashoffset: 0;
    transition: stroke-dasharray 0.15s cubic-bezier(0.25, 1, 0.5, 1);
}

.circle-node {
    position: absolute;
    z-index: 3;
    width: clamp(28px, 1.85vw, 36px);
    height: clamp(28px, 1.85vw, 36px);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    box-shadow: 0 0 0 0 rgba(209, 42, 46, 0);
    cursor: pointer;
    transition: background-color 0.28s ease, box-shadow 0.28s ease, transform 0.24s ease;
}

.circle-node:hover {
    transform: translate(-50%, -50%) scale(1.12);
}

.circle-node::after {
    content: '';
    position: absolute;
    width: 4.5px;
    height: 4.5px;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    background: var(--clr-white);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.22s ease;
}

.circle-node.is-active {
    background: var(--clr-red);
    box-shadow: 0 0 18px rgba(209, 42, 46, 0.32);
}

.circle-node.is-active::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.node-top {
    top: 1%;
    left: 50%;
}

.node-right {
    top: 50%;
    left: 99%;
}

.node-bottom {
    top: 99%;
    left: 50%;
}

.node-left {
    top: 50%;
    left: 1%;
}

.solution-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(82%, 620px);
    min-height: min(500px, 64%);
    padding: clamp(1.35rem, 2.8vw, 2.8rem);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.solution-name {
    font-size: clamp(1.85rem, 2.08vw, 2.55rem);
    font-weight: 800;
    line-height: 1.06;
    margin-bottom: clamp(2.2rem, 3vw, 3.65rem);
    color: #ffffff;
    white-space: nowrap;
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.12);
    transition: opacity 0.32s cubic-bezier(0.25, 1, 0.5, 1), transform 0.32s cubic-bezier(0.25, 1, 0.5, 1);
}

.solution-icon {
    width: clamp(120px, 9.6vw, 178px);
    height: clamp(120px, 9.6vw, 178px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(2.55rem, 4.25vw, 4.95rem);
    transition: opacity 0.32s cubic-bezier(0.25, 1, 0.5, 1), transform 0.32s cubic-bezier(0.25, 1, 0.5, 1);
}

.solution-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(209, 42, 46, 0.45));
}

.solution-desc {
    max-width: 585px;
    font-size: clamp(1rem, 1.1vw, 1.28rem);
    color: rgba(255, 255, 255, 0.96);
    margin-bottom: clamp(1.4rem, 1.65vw, 2rem);
    line-height: 1.35;
    transition: opacity 0.32s cubic-bezier(0.25, 1, 0.5, 1), transform 0.32s cubic-bezier(0.25, 1, 0.5, 1);
}

.solution-card .btn-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: clamp(220px, 15.2vw, 310px);
    min-height: clamp(48px, 2.7vw, 54px);
    padding: 0 2rem;
    border-radius: 999px;
    font-size: clamp(1rem, 1.06vw, 1.24rem);
    line-height: 1;
    font-weight: 400;
    transition: opacity 0.32s cubic-bezier(0.25, 1, 0.5, 1), transform 0.32s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease, box-shadow 0.3s ease;
}

.solution-card.is-changing .solution-name,
.solution-card.is-changing .solution-icon,
.solution-card.is-changing .solution-desc,
.solution-card.is-changing .btn-red {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
    transition: opacity 0.18s ease-in, transform 0.18s ease-in;
}

@media (min-width: 1025px) {
    .circular-carousel {
        width: min(850px, 80vw, calc(100svh - 180px));
    }

    .solution-card {
        padding: 2.2rem;
        width: min(85%, 640px);
        min-height: min(520px, 68%);
    }

    .solution-name {
        font-size: clamp(2rem, 2.3vw, 2.75rem);
        margin-bottom: clamp(1.8rem, 2.5vw, 2.5rem);
    }

    .solution-icon {
        width: clamp(130px, 8vw, 160px);
        height: clamp(130px, 8vw, 160px);
        margin-bottom: clamp(2rem, 3vw, 3rem);
    }

    .solution-desc {
        font-size: clamp(1.05rem, 1.1vw, 1.25rem);
        margin-bottom: clamp(1.5rem, 2vw, 2.2rem);
        max-width: 540px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .service-ring-progress,
    .circle-node,
    .solution-name,
    .solution-icon,
    .solution-desc,
    .solution-card .btn-red {
        transition: none;
    }
}

@media (max-width: 900px) {
    .growth-solutions {
        min-height: 2400px;
    }

    .services-sticky {
        padding: 0 !important;
    }

    .circular-carousel {
        width: min(650px, 88vw, calc(100svh - 220px));
    }
}

@media (max-width: 600px) {
    .solutions-title {
        font-size: clamp(2.5rem, 13vw, 3.75rem);
    }

    .circular-carousel {
        width: min(88vw, calc(100svh - 200px));
        min-width: 282px;
    }

    .solution-card {
        width: 78%;
        min-height: auto;
        padding: 1rem;
    }

    .solution-name {
        font-size: clamp(1.35rem, 7vw, 1.75rem);
        white-space: normal;
        max-width: 240px;
        margin-bottom: 0.9rem;
    }

    .solution-icon {
        width: clamp(74px, 22vw, 90px);
        height: clamp(74px, 22vw, 90px);
        margin-bottom: 1rem;
    }

    .solution-desc {
        max-width: 260px;
        font-size: 0.86rem;
        line-height: 1.28;
        margin-bottom: 1rem;
    }

    .solution-card .btn-red {
        min-width: min(72vw, 240px);
        min-height: 44px;
        padding: 0 1.15rem;
        font-size: 0.88rem;
    }
}

/* Our Reach Section */
.reach {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, #fff5f6 0%, #f0f7ff 100%);
    text-align: center;
}

.reach-header {
    margin-bottom: var(--space-xl);
}

.reach-title {
    font-size: var(--fs-h1);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.reach-subtitle {
    font-size: var(--fs-body);
    color: var(--clr-text-light);
    max-width: 700px;
    margin: 0 auto;
}

.reach-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: var(--space-xl);
}

.reach-card {
    position: relative;
    background: var(--clr-white);
    padding: 3rem 2rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 43, 92, 0.05);
    border: 1.5px solid rgba(0, 43, 92, 0.03);
    transition: var(--transition);
    z-index: 1;
}

.reach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(209, 42, 46, 0.18);
    border-color: transparent;
}

.reach-card::after {
    content: '';
    position: absolute;
    inset: -1.5px;
    border-radius: 30px;
    padding: 1.5px;
    background:
        linear-gradient(45deg, rgba(0, 43, 92, 0.08) 0%, rgba(209, 42, 46, 0.08) 100%) content-box,
        linear-gradient(var(--clr-white), var(--clr-white)) content-box,
        linear-gradient(45deg, var(--clr-navy), var(--clr-red)) border-box;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.reach-card:hover::after {
    opacity: 1;
}

.flag-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--clr-white);
}

.flag-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reach-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-red);
    margin-bottom: 0.5rem;
}

.reach-tagline {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-navy);
    margin-bottom: 1rem;
}

.reach-desc {
    font-size: 0.95rem;
    color: var(--clr-text-light);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .reach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .reach-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reach-card {
        padding: 4rem 2.5rem;
    }
}

/* Final CTA Section */
.final-cta {
    background-color: var(--clr-navy-dark);
    background-image: url('assets/sectionbanner2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: clamp(6rem, 12vh, 10rem) 0;
    overflow: hidden;
    color: var(--clr-white);
    min-height: 500px;
    display: flex;
    align-items: center;
}

.cta-container {
    width: 100%;
}

.cta-content {
    max-width: 800px;
    z-index: 2;
}

.cta-title {
    font-size: clamp(3.2rem, 5vw, 5.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    background: linear-gradient(90deg, #ee617f 0%, #ffd3de 52%, #d73758 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: clamp(1.15rem, 1.4vw, 1.4rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
    line-height: 1.45;
    max-width: 700px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.btn-outline-white {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: var(--clr-white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--clr-white);
    transform: translateY(-2px);
}

.cta-footer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.cta-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.cta-glow {
    position: absolute;
    width: clamp(300px, 60vw, 600px);
    height: clamp(300px, 60vw, 600px);
    background: radial-gradient(circle, rgba(166, 77, 255, 0.3) 0%, rgba(166, 77, 255, 0) 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    z-index: 1;
}

.cta-img {
    width: 100%;
    height: auto;
    max-width: 600px;
    z-index: 2;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.3));
}

@media (min-width: 1024px) {
    .cta-container {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 5rem;
    }

    .cta-content {
        text-align: left;
    }

    .cta-buttons {
        justify-content: flex-start;
    }
}

/* Footer */
.footer {
    background-color: #030303;
    background-image: url('assets/footerbg.png');
    background-size: cover;
    background-position: center;
    padding: clamp(10rem, 20vh, 16rem) 0 3rem;
    color: var(--clr-white);
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Footer Top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.footer-logo-img {
    height: 140px;
    width: auto;
}

.footer-headline {
    flex: 1;
    min-width: 300px;
    max-width: 650px;
}

.footer-headline h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 500;
    line-height: 1.3;
    color: var(--clr-white);
}

.footer-cta .btn {
    padding: 1.2rem 3rem;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Divider */
.footer-divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0;
    width: 100%;
}

/* Common row structure for Middle and Contact */
.footer-middle,
.footer-services-row,
.footer-contact-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.footer-label {
    color: #ee617f;
    font-weight: 700;
    font-size: 1.35rem;
    width: 150px;
    flex-shrink: 0;
}

/* Footer Middle */
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9rem;
    flex: 1;
}

@media (max-width: 1450px) and (min-width: 1025px) {
    .footer-nav {
        gap: 6rem;
    }
}

.footer-nav a {
    color: var(--clr-white);
    font-weight: 600;
    font-size: 1.15rem;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--clr-red);
}

.footer-services-row .footer-nav {
    gap: clamp(1.5rem, 4vw, 4rem);
}

.footer-socials {
    display: none !important;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--clr-white);
    color: #030303;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

/* Per-platform hover colours */
.social-icon:hover {
    transform: translateY(-2px);
}

.social-icon[aria-label="Instagram"]:hover {
    background: #ee2a7b;
    color: var(--clr-white);
}

.social-icon[aria-label="Facebook"]:hover {
    background: #1877F2;
    color: var(--clr-white);
}

.social-icon[aria-label="X"]:hover {
    background: #000000;
    color: var(--clr-white);
}

.social-icon[aria-label="YouTube"]:hover {
    background: var(--clr-red);
    color: var(--clr-white);
}

/* Footer Contact Row */
.footer-contact-items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex: 1;
}

.contact-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--clr-white);
    font-weight: 600;
    font-size: 1.15rem;
    transition: var(--transition);
}

.contact-badge:hover {
    opacity: 0.8;
}

.contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--clr-red);
    color: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    display: block;
}

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

/* Footer Bottom */
.footer-copyright {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.05rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--clr-white);
}

.floating-wa {
    position: fixed;
    right: clamp(18px, 2vw, 28px);
    bottom: clamp(18px, 2vw, 28px);
    z-index: 998;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    font-size: 1.55rem;
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.34);
}

.floating-wa:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 22px 44px rgba(37, 211, 102, 0.42);
}

/* Responsive Overrides */
@media (max-width: 1024px) {

    .footer-top,
    .footer-middle,
    .footer-services-row,
    .footer-contact-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .footer-headline {
        max-width: 100%;
    }

    .footer-nav {
        gap: 1.5rem;
    }

    .footer-contact-items {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-contact-items {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-copyright {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (width: 1440px) {
    .timeline {
        min-height: 1350px;
    }

    .timeline-content {
        min-height: 180px;
        padding: 1.75rem 2rem;
    }

    .timeline-desc {
        margin-top: 0.75rem;
    }

    .footer-contact-items {
        flex-wrap: nowrap;
        gap: 1.2rem;
    }

    .contact-badge {
        font-size: 1.05rem;
        white-space: nowrap;
    }

    /* Reduced size for YB Popup Modal in 1440px view */
    .popup-container {
        max-width: 530px;
        padding: 2rem 2.5rem;
    }

    .popup-container .ct-form-title {
        font-size: 2rem;
        margin-bottom: 0.25rem;
    }

    .popup-container .ct-form-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .popup-container .ct-form {
        gap: 0.9rem;
    }

    .popup-container .ct-form-row {
        gap: 0.9rem;
    }

    .popup-container .ct-field {
        gap: 0.35rem;
    }

    .popup-container .ct-field label {
        font-size: 0.9rem;
    }

    .popup-container .ct-field input,
    .popup-container .ct-field textarea,
    .popup-container .custom-select-trigger {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    .popup-container .ct-field textarea {
        min-height: 90px;
        height: 90px;
    }

    .popup-container .ct-submit-btn {
        padding: 0.9rem;
        font-size: 1rem;
        margin-top: 0.25rem;
    }

    .circular-carousel {
        width: min(850px, 80vw, calc(100svh - 100px));
    }
}

/* ===== POPUP MODAL ===== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 12, 30, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background: #ffffff;
    width: 90%;
    max-width: 650px;
    max-height: 90vh;
    border-radius: 20px;
    padding: clamp(2rem, 4vw, 3.5rem);
    position: relative;
    transform: translateY(20px) scale(0.98);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.popup-content {
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    padding-right: 0;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.popup-content::-webkit-scrollbar {
    display: none;
}

.popup-overlay.active .popup-container {
    transform: translateY(0) scale(1);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: var(--clr-navy);
    color: var(--clr-white);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 3px; /* vertical alignment adjustment for times symbol */
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.popup-close:hover {
    background: var(--clr-red);
    color: var(--clr-white);
    transform: scale(1.05);
}

/* Modal Form Styles */
.popup-container .ct-form-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 500;
    color: var(--clr-navy-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    margin-top: 0;
}

.popup-container .ct-form-subtitle {
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    color: var(--clr-text-light);
    margin-bottom: 2rem;
}

.popup-container .ct-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.popup-container .ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.popup-container .ct-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.popup-container .ct-field-full {
    grid-column: 1 / -1;
}

.popup-container .ct-field label {
    font-size: clamp(0.95rem, 1vw, 1.05rem);
    font-weight: 700;
    color: #111827;
}

.popup-container .ct-field input,
.popup-container .ct-field textarea,
.popup-container .custom-select-trigger {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(209, 42, 46, 0.08);
    border-radius: 10px;
    font-size: 1.05rem;
    color: #1e293b;
    background: #ffeef1;
    transition: all 0.25s ease;
    outline: none;
    font-family: inherit;
    box-sizing: border-box;
}

.popup-container .ct-field input:focus,
.popup-container .ct-field textarea:focus,
.popup-container .custom-select-wrapper.open .custom-select-trigger {
    border-color: var(--clr-red);
    box-shadow: 0 0 0 3px rgba(209, 42, 46, 0.12);
    background: #ffffff;
}

.popup-container .ct-field textarea {
    resize: vertical;
    min-height: 120px;
}

.popup-container .custom-select-wrapper {
    position: relative;
    width: 100%;
}

.popup-container .custom-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.popup-container .arrow-icon {
    width: 14px;
    height: 10px;
    transition: transform 0.25s ease;
}

.popup-container .custom-select-wrapper.open .arrow-icon {
    transform: rotate(180deg);
}

.popup-container .custom-options-container {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid rgba(209, 42, 46, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.popup-container .custom-select-wrapper.open .custom-options-container {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.popup-container .custom-option {
    padding: 1rem 1.2rem;
    font-size: 1.05rem;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
}

.popup-container .custom-option:hover,
.popup-container .custom-option.selected {
    background: #ffeef1;
    color: var(--clr-red);
    font-weight: 700;
}

.popup-container .ct-submit-btn {
    width: 100%;
    padding: 1.15rem 2rem;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 100px;
    background-color: var(--clr-red);
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.popup-container .ct-submit-btn:hover {
    background-color: #b02024;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(209, 42, 46, 0.25);
}

.popup-container .ct-form-disclaimer {
    font-size: 0.95rem;
    color: #6b7280;
    text-align: left;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .popup-container .ct-form-row {
        grid-template-columns: 1fr;
    }

    .popup-container {
        padding: 2rem 1.5rem;
    }
}

/* Compact popup form for 1440px-class desktops with limited viewport height */
@media (min-width: 1024px) and (max-height: 900px) {
    .popup-container {
        max-width: 500px;
        padding: clamp(1.2rem, 2.5vw, 2rem);
        max-height: 92vh;
    }

    .popup-container .ct-form-title {
        font-size: clamp(1.5rem, 2.2vw, 1.85rem);
        margin-bottom: 0.25rem;
    }

    .popup-container .ct-form-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .popup-container .ct-form {
        gap: 0.7rem;
    }

    .popup-container .ct-form-row {
        gap: 0.7rem;
    }

    .popup-container .ct-field {
        gap: 0.3rem;
    }

    .popup-container .ct-field label {
        font-size: 0.9rem;
    }

    .popup-container .ct-field input,
    .popup-container .ct-field textarea,
    .popup-container .custom-select-trigger {
        padding: 0.65rem 1rem;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    .popup-container .ct-field textarea {
        min-height: 70px;
    }

    .popup-container .ct-submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        margin-top: 0.25rem;
    }

    .popup-container .ct-form-disclaimer {
        font-size: 0.85rem;
        margin-top: 0.25rem;
    }

    .popup-close {
        top: 12px;
        right: 16px;
        width: 32px;
        height: 32px;
        font-size: 1.25rem;
        padding-bottom: 2px;
    }
}

/* ─── SCROLL REVEAL ANIMATIONS ─── */
.reveal-on-scroll {
    opacity: 0 !important;
    transform: translateY(28px) !important;
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
        transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    will-change: transform, opacity !important;
}

.reveal-on-scroll.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ─── HERO ENTRANCE STAGGERED ANIMATIONS ─── */
@keyframes heroRevealUp {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }

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

.hero-title,
.sv-hero-title,
.sd-hero-title,
.about-hero-title,
.ct-hero-title,
.hero-content .badge,
.sd-hero-copy .badge,
.about-hero-copy .badge {
    opacity: 0;
    animation: heroRevealUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.hero-content .badge,
.sd-hero-copy .badge,
.about-hero-copy .badge {
    animation-delay: 0.1s;
}

.hero-title,
.sv-hero-title,
.sd-hero-title,
.about-hero-title,
.ct-hero-title {
    animation-delay: 0.2s;
}

.hero-subtitle,
.hero-description,
.sd-hero-copy>p,
.about-hero-copy>p,
.ct-hero-copy>p,
.sv-hero-sub {
    opacity: 0;
    animation: heroRevealUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    animation-delay: 0.35s;
}

.hero-actions,
.sd-hero-actions,
.about-hero-actions,
.ct-hero-actions,
.sv-hero-actions {
    opacity: 0;
    animation: heroRevealUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    animation-delay: 0.5s;
}

.hero-image,
.sd-hero-panel,
.about-hero-image,
.ct-hero-image {
    opacity: 0;
    animation: heroRevealUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    animation-delay: 0.6s;
}

/* ─── MOBILE CAROUSEL FOR PILLARS ─── */
@media (max-width: 767px) {
    .pillars-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 1rem !important;
        padding: 0.5rem 1.25rem 1.5rem !important;
        margin: 0 -1.25rem !important;
        scrollbar-width: none !important;
        /* Firefox */
    }

    .pillars-grid::-webkit-scrollbar {
        display: none !important;
        /* Safari and Chrome */
    }

    .pillar-card {
        flex: 0 0 85% !important;
        scroll-snap-align: center !important;
        min-height: 400px !important;
        padding: 2.2rem 1.8rem !important;
    }
}

/* Carousel Dots */
.carousel-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
    width: 100%;
}

@media (max-width: 767px) {
    .carousel-dots {
        display: flex;
    }
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.carousel-dot.active {
    background: var(--clr-red);
    width: 24px;
    border-radius: 4px;
}

/* ─── HOME HERO MOBILE OVERRIDES ─── */
@media (max-width: 767px) {
    .hero {
        background: url('assets/homeheromobile.png') no-repeat center / cover !important;
        min-height: 810px !important;
    }

    .hero::before {
        display: none !important;
    }

    .hero-container {
        padding-top: 150px !important;
        align-items: flex-start !important;
        min-height: 810px !important;
    }

    .operating-in {
        display: none !important;
    }

    .final-cta {
        background-image: url('assets/homebelowmobile.png') !important;
        background-position: center !important;
        background-size: cover !important;
    }

    /* ─── GROWTH SOLUTIONS ARC CONTENT MOBILE OVERRIDES ─── */
    .solution-card {
        width: 80% !important;
        padding: 0.5rem !important;
    }
    .solution-name {
        font-size: clamp(1.1rem, 5.5vw, 1.4rem) !important;
        margin-bottom: 0.5rem !important;
        max-width: 200px !important;
        white-space: normal !important;
    }
    .solution-icon {
        width: clamp(50px, 15vw, 70px) !important;
        height: clamp(50px, 15vw, 70px) !important;
        margin-bottom: 0.6rem !important;
    }
    .solution-desc {
        max-width: 220px !important;
        font-size: clamp(0.75rem, 3.2vw, 0.85rem) !important;
        line-height: 1.25 !important;
        margin-bottom: 0.6rem !important;
    }
    .solution-card .btn-red {
        min-width: min(65vw, 180px) !important;
        min-height: 36px !important;
        padding: 0 1rem !important;
        font-size: clamp(0.75rem, 3vw, 0.8rem) !important;
    }

    /* Stacking footer trust line/disclaimer spans vertically on mobile */
    .cta-footer span,
    .ct-form-disclaimer span {
        display: block !important;
        margin-bottom: 0.35rem !important;
    }
    .cta-footer span:last-child,
    .ct-form-disclaimer span:last-child {
        margin-bottom: 0 !important;
    }
}