:root {
    --blue: #0361eb;
    /* primary */
    --dark: #002a61;
    /* deep navy */
    --charcoal: #011438;
    /* darkest navy (headings) */
    --gray: #f4f6f8;
    /* light section bg */
    --accent: #00a5fa;
    /* bright accent */
    --muted: #6d6d6d;
    /* body text gray */
    --white: #fff;
    --font: "Helvetica", Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--charcoal);
    background: #fff;
    overflow-x: hidden;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 3px;
}

/* ── HEADER ── */
header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    /* padding: 20px 6%; */
    padding: 10px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: 0.3s;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--dark), var(--accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    font-family: var(--font);
    box-shadow: 0 4px 15px rgba(30, 115, 185, 0.4);
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font);
    font-size: 19px;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: -0.3px;
}

.logo-text span {
    color: var(--blue);
}

nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

nav a {
    color: var(--charcoal);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 15px;
    transition: 0.25s;
}

nav a:hover {
    color: var(--blue);
    background: rgba(30, 115, 185, 0.07);
}

.nav-cta {
    background: var(--blue) !important;
    color: #fff !important;
    padding: 9px 20px !important;
    border-radius: 7px !important;
    box-shadow: 0 4px 14px rgba(30, 115, 185, 0.3);
    margin-left: 20px;
}

.nav-cta:hover {
    background: var(--dark) !important;
    transform: translateY(-1px);
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    position: fixed;
    /* top: 74px; */
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px 6%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    z-index: 999;
    border-bottom: 1px solid #eee;
}

.mobile-nav a {
    color: var(--charcoal);
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    transition: 0.2s;
}

.mobile-nav a:hover {
    color: var(--blue);
    background: rgba(30, 115, 185, 0.07);
}

.mobile-nav.open {
    display: flex;
}

/* ── HERO ── */
.hero {
    background: linear-gradient(135deg,
            var(--dark) 0%,
            #1a5f9e 50%,
            var(--blue) 100%);
    color: #fff;
    /* // padding: 120px 6% 100px; */
    /* padding: 0px 6% 100px; */
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 60px 60px;
    }
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: float 8s ease-in-out infinite;
}

.orb1 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.orb2 {
    width: 350px;
    height: 350px;
    background: #0f4c81;
    bottom: -100px;
    left: -80px;
    animation-delay: 3s;
}

.orb3 {
    width: 200px;
    height: 200px;
    background: var(--accent);
    bottom: 150px;
    right: 200px;
    animation-delay: 5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both;
}

.hero-badge .dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.4);
    }
}

.hero h2 {
    font-family: var(--font);
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 24px;
    animation: fadeUp 0.7s ease 0.1s both;
}

.hero h2 .line2 {
    color: var(--accent);
}

/* TYPING */
.typing-wrap {
    font-size: clamp(18px, 2.5vw, 24px);
    margin-bottom: 14px;
    min-height: 38px;
    animation: fadeUp 0.7s ease 0.2s both;
}

.typing-static {
    color: rgba(255, 255, 255, 0.75);
    margin-right: 6px;
}

.typed-text {
    color: var(--accent);
    font-weight: 600;
}

.cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: var(--accent);
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: blink 0.7s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-sub {
    font-size: clamp(15px, 1.8vw, 18px);
    color: rgba(255, 255, 255, 0.8);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeUp 0.7s ease 0.3s both;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.7s ease 0.4s both;
}

.btn-primary {
    background: #fff;
    color: var(--dark);
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: #fff;
    padding: 15px 35px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.7);
}

.hero-scroll {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    animation: fadeUp 0.7s ease 0.6s both;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 1;
        transform: scaleY(1);
    }

    50% {
        opacity: 0.5;
        transform: scaleY(0.7);
    }
}

/* ── TRUST STRIP ── */
.trust-strip {
    background: var(--gray);
    padding: 28px 6%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6d6d6d;
    font-size: 14px;
    font-weight: 500;
}

.trust-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--dark), var(--blue));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
}

/* ── SECTIONS ── */
section.section {
    padding: 100px 6%;
}

.section-label {
    display: inline-block;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title span {
    color: var(--blue);
}

.section-sub {
    color: #6d6d6d;
    font-size: 17px;
    line-height: 1.7;
    max-width: 600px;
}

/* ── SERVICES ── */
#services {
    background: #fff;
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro .section-sub {
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

@media (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: #fff;
    border: 1px solid #e8edf2;
    padding: 38px 32px;
    border-radius: 16px;
    transition: 0.35s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dark), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.35s;
}

.service-card:hover {
    box-shadow: 0 20px 50px rgba(30, 115, 185, 0.12);
    transform: translateY(-8px);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--dark), var(--blue));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
    box-shadow: 0 6px 18px rgba(30, 115, 185, 0.25);
}

.service-card h4 {
    font-family: var(--font);
    font-size: 20px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.service-card p {
    color: #6d6d6d;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.service-tag {
    display: inline-block;
    background: rgba(30, 115, 185, 0.08);
    color: var(--blue);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin: 3px 3px 0 0;
}

/* ── ABOUT ── */
/* #about {
    background: var(--gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-card {
    background: linear-gradient(135deg, var(--dark) 0%, var(--blue) 100%);
    border-radius: 20px;
    padding: 50px 40px;
    color: #fff;
    text-align: center;
    box-shadow: 0 25px 60px rgba(15, 76, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.about-img-card::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(0, 194, 255, 0.15);
    top: -60px;
    right: -60px;
}

.about-img-card h3 {
    font-family: var(--font);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.about-img-card p {
    opacity: 0.8;
    font-size: 15px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.stat-box h4 {
    font-family: var(--font);
    font-size: 30px;
    font-weight: 800;
    color: var(--accent);
}

.stat-box p {
    font-size: 12px;
    opacity: 0.75;
    margin-top: 4px;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #fff;
    border-radius: 12px;
    padding: 14px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.badge-icon {
    font-size: 22px;
}

.badge-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
}

.badge-text span {
    display: block;
    color: var(--blue);
    font-size: 11px;
    font-weight: 500;
}

.about-content {
    max-width: 520px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-check {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--dark), var(--blue));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    margin-top: 2px;
}

.feature-item h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--charcoal);
}

.feature-item p {
    font-size: 14px;
    color: #6D6D6D;
    line-height: 1.6;
} */

/* ── HOW IT WORKS ── */
#process {
    background: #fff;
}

.process-intro {
    text-align: center;
    margin-bottom: 60px;
}

.process-intro .section-sub {
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    position: relative;
}

.steps-grid::before {
    content: "";
    position: absolute;
    top: 55px;
    left: calc(12.5% + 23px);
    right: calc(12.5% + 23px);
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--accent));
    z-index: 0;
}

.step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--dark), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font);
    font-weight: 800;
    font-size: 18px;
    color: #fff;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(30, 115, 185, 0.35);
    position: relative;
    z-index: 2;
    border: 3px solid #fff;
}

.step h5 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--charcoal);
}

.step p {
    font-size: 14px;
    color: #6d6d6d;
    line-height: 1.6;
}

/* ── CLIENTS / SOCIAL PROOF ── */
.proof-strip {
    background: var(--charcoal);
    padding: 60px 6%;
    text-align: center;
}

.proof-strip h3 {
    font-family: var(--font);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.proof-strip p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.proof-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.proof-logo {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 14px 28px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.25s;
}

.proof-logo:hover {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

.proof-logo .picon {
    font-size: 20px;
}

/* ── TESTIMONIALS ── */
#testimonials {
    background: var(--gray);
}

.testimonials-intro {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
    border: 1px solid #edf2f7;
}

.testimonial-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.stars {
    color: #f6ad37;
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 22px;
    font-style: italic;
    position: relative;
}

.testimonial-card blockquote::before {
    content: '"';
    font-size: 60px;
    color: var(--blue);
    opacity: 0.15;
    position: absolute;
    top: -20px;
    left: -8px;
    line-height: 1;
    font-family: serif;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dark), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    font-family: var(--font);
    flex-shrink: 0;
}

.author-info .name {
    font-weight: 700;
    font-size: 15px;
    color: var(--charcoal);
}

.author-info .role {
    font-size: 13px;
    color: #6d6d6d;
}

/* ── CONTACT ── */
#contact {
    background: linear-gradient(135deg,
            var(--dark) 0%,
            #1a5f9e 60%,
            var(--blue) 100%);
    color: #fff;
    padding: 100px 6%;
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    font-family: var(--font);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.location-group {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.location-item {
    display: flex;
    flex-direction: column;
}

.c-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.c-label {
    font-size: 13px;
    opacity: 0.65;
    display: block;
}

.c-value {
    font-size: 15px;
    font-weight: 500;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    height: 48px;
    /* or 50px */
    min-height: 48px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9px;
    color: #fff;
    font-size: 15px;
    font-family: var(--font);
    transition: 0.25s;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.18);
}

.form-group select option {
    background: var(--dark);
    color: #fff;
}

.form-group textarea {
    resize: none;
    min-height: 110px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--accent), var(--blue));
    color: #fff;
    border: none;
    border-radius: 9px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 6px 20px rgba(0, 194, 255, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 194, 255, 0.4);
}

/* ── FOOTER ── */
footer {
    background: #0a1628;
    color: rgba(255, 255, 255, 0.5);
    padding: 60px 6% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand .logo-text {
    color: #fff;
    font-size: 20px;
}

.footer-brand .logo-icon {
    background: linear-gradient(135deg, var(--dark), var(--accent));
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 260px;
}

.footer-col h5 {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: 0.2s;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
}

.ms-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 13px;
}

.ms-badge span {
    color: rgba(255, 255, 255, 0.7);
}

/* FADE UP ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

.reveal-delay-6 {
    transition-delay: 0.6s;
}

.reveal-delay-7 {
    transition-delay: 0.7s;
}

.reveal-delay-8 {
    transition-delay: 0.8s;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-grid::before {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .trust-strip {
        gap: 24px;
    }

    .trust-item {
        min-width: 185px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-scroll {
        display: none;
    }

    footer {
        padding: 30px 6% 30px;
    }

    .footer-brand .logo-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ===== GLOBAL MOBILE SAFETY ===== */
img,
video,
svg:not(.leaflet-zoom-animated),
canvas:not(.leaflet-zoom-animated) {
    max-width: 100%;
    height: auto;
}

* {
    min-width: 0;
    /* prevents flex overflow */
}

body {
    overflow-x: hidden;
}

/* ===== HEADER FIX ===== */
header {
    width: 100%;
}

.logo-wrap {
    min-width: 0;
}

.logo-text {
    white-space: nowrap;
    font-size: 16px;
}

@media (max-width: 420px) {
    header {
        padding: 10px 4%;
    }

    .logo-text {
        font-size: 14px;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

/* ===== HERO SECTION ===== */
@media (max-width: 600px) {
    .hero {
        padding: 100px 5% 70px;
        min-height: auto;
        /* height: 75vh !important; */
    }

    .hero-sub {
        font-size: 15px;
    }
}

/* ===== ABOUT CARD FIX (MAIN OVERFLOW ISSUE) ===== */
.about-img-card {
    padding: 36px 20px;
}

.stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.stat-box {
    padding: 14px 10px;
}

.stat-box h4 {
    font-size: 22px;
    word-break: break-word;
}

.stat-box p {
    font-size: 11px;
    line-height: 1.3;
}

@media (max-width: 420px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== SERVICE CARDS ===== */
.service-card {
    padding: 28px 22px;
}

.service-card p {
    font-size: 14px;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    padding: 28px 20px;
}

.contact-grid {
    gap: 40px;
}

/* ===== FOOTER ===== */
.footer-grid {
    gap: 28px;
}

.footer-brand p {
    max-width: 100%;
}

/* ===== TEXT WRAP SAFETY ===== */
h1,
h2,
h3,
h4,
h5,
p,
span {
    overflow-wrap: break-word;
    word-break: break-word;
}

/* ===== CONTAINER SIDE SPACING ===== */
@media (max-width: 600px) {
    section.section {
        padding: 70px 5%;
    }
}

.hero-carousel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    height: 100%;
}

.hero-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================
   HERO
========================== */

.hero {
    /* padding-top: 90px; */
    background: #fff;
}

/* .heroSwiper {
    width: 100%;
    max-height: 75vh;
    overflow: hidden;
} */

/* .heroSwiper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
} */
.heroSwiper {
    width: 100%;
    aspect-ratio: 1923 / 702;
    /* uniform box on desktop */
    max-height: none;
    overflow: hidden;
}

.heroSwiper .swiper-wrapper,
.heroSwiper .swiper-slide {
    height: 100%;
}

.heroSwiper picture {
    display: block;
    width: 100%;
    height: 100%;
}

.heroSwiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* fills the uniform box; no per-slide jump */
    display: block;
}

@media (max-width: 768px) {
    .heroSwiper {
        aspect-ratio: 800 / 1014;
    }

    /* uniform box on mobile */
}

/* .hero-btns {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 28px auto 10px;
    flex-wrap: wrap;
}

.hero-btns .btn-primary,
.hero-btns .btn-outline {
    min-width: 220px;
    height: 54px;
    border-radius: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.hero-btns .btn-primary {
    background: var(--blue);
    color: #fff;
}

.hero-btns .btn-outline {
    border: 2px solid var(--blue);
    color: var(--blue);
    background: #fff;
}

.hero-btns .btn-primary:hover {
    background: var(--dark);
}

.hero-btns .btn-outline:hover {
    background: var(--blue);
    color: #fff;
} */

/* ---- HERO BUTTONS: primary gradient + shine, secondary outline ---- */
.hero-btns .btn-primary,
.hero-btns .btn-outline {
    position: relative;
    overflow: hidden;
    /* clips the shine to the pill */
    min-width: 240px;
    height: 56px;
    padding: 0 32px;
    border-radius: 999px;
    /* pill shape */
    font-family: var(--font);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

/* PRIMARY — filled gradient + glow */
.hero-btns .btn-primary {
    background: linear-gradient(135deg,
            var(--accent) 0%,
            var(--blue) 55%,
            var(--dark) 115%);
    color: #fff;
    border: none;
    box-shadow:
        0 5px 20px rgba(3, 97, 235, 0.45),
        inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.hero-btns .btn-primary::after {
    /* arrow */
    content: "→";
    font-size: 16px;
    transition: transform 0.25s ease;
}

.hero-btns .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 16px 40px rgba(3, 97, 235, 0.55),
        inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.hero-btns .btn-primary:hover::after {
    transform: translateX(4px);
}

/* SHINE / glitter sweep (only on the primary) */
.hero-btns .btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 45%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.55) 50%,
            transparent 100%);
    transform: skewX(-20deg);
    animation: btnShine 3.8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes btnShine {
    0% {
        left: -75%;
    }

    55%,
    100% {
        left: 140%;
    }
}

/* SECONDARY — outline with soft glow */
.hero-btns .btn-outline {
    background: #fff;
    color: var(--blue);
    border: 1.5px solid var(--blue);
    box-shadow: 0 0 0 4px rgba(3, 97, 235, 0.06);
}

.hero-btns .btn-outline:hover {
    background: rgba(3, 97, 235, 0.06);
    transform: translateY(-2px);
    box-shadow:
        0 8px 22px rgba(3, 97, 235, 0.2),
        0 0 0 4px rgba(3, 97, 235, 0.1);
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--blue) !important;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 75px;
        padding-bottom: 0 !important;
    }

    .hero-btns {
        padding: 0 20px;
        flex-direction: column;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-outline {
        width: 100%;
    }
}

/* ── CLIENTS / SOCIAL PROOF ── (light card-grid layout, per pptx reference) */
#clients {
    background: #fff;
    padding: 90px 6%;
    text-align: center;
}

.clients-intro {
    margin-bottom: 46px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

#clients .section-sub {
    margin: 0 auto;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}

.client-logo {
    background: #fff;
    border: 1.5px dashed #d7e0e9;
    border-radius: 10px;
    padding: 22px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s;
    min-height: 90px;
}

.client-logo:hover {
    border-color: var(--blue);
    box-shadow: 0 10px 25px rgba(30, 115, 185, 0.1);
    transform: translateY(-3px);
}

.client-logo img {
    max-height: 52px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

.client-logo .clicon-fallback {
    color: #9aa8b6;
    font-weight: 600;
    font-size: 13.5px;
}

/* =====================================================================
   PPTX-MATCH OVERRIDES  (appended — matches Cevolve_website_changes.pptx)
   Later in the file = wins the cascade at equal specificity.
   ===================================================================== */

/* ---- HERO: compact banner on white, slider + two buttons below ---- */
.hero {
    background: #fff;
    min-height: auto;
    display: block;
    padding: 0;
    height: 100vh;
}

.heroSwiper {
    width: 100%;
    max-height: none;
}

.hero-btns {
    background: #fff;
    margin: 26px auto 6px;
    padding: 0 6%;
}

/* ---- TRUST STRIP: MS + IBM logos + 3 icon badges (reference) ---- */
.trust-strip {
    background: #fff;
    border-top: 1px solid #eef1f5;
    border-bottom: 1px solid #eef1f5;
    gap: 26px;
    padding: 22px 6%;
}

.trust-item {
    color: #64748b;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.25;
}

.trust-divider {
    width: 1px;
    height: 34px;
    background: #e3e8ef;
    flex-shrink: 0;
}

.trust-item--logo {
    padding: 0;
}

.trust-logo {
    height: 34px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
}

.trust-logo-fallback {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    color: #475569;
    text-align: left;
}

.trust-logo-fallback strong {
    font-size: 16px;
    font-weight: 800;
    color: #1f2937;
}

.trust-logo-fallback small {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
}

/* light badge (not gradient) for the 3 icon items */
.trust-item .trust-icon {
    width: 32px;
    height: 32px;
    background: #eef4fb;
    border-radius: 8px;
    box-shadow: none;
    color: var(--blue);
    font-size: 15px;
}

.trust-item .trust-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

@media (max-width: 767px) {
    .trust-divider {
        display: none;
    }

    .trust-strip {
        gap: 18px 26px;
    }
}

/* ---- CORE SERVICES: light icon box, blue icon from assets ---- */
.service-icon {
    background: #eef4fb;
    box-shadow: none;
    border-radius: 14px;
}

.service-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* ---- WHY CEVOLVE: light circular tick badges w/ blue icon ---- */
.feature-check {
    background: #eef4fb;
    border-radius: 50%;
    color: var(--blue);
}

.feature-check img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: none;
    /* keep icon blue on the light badge */
}

/* ---- ABOUT CARD: globe top-right, stats in ONE row of 4 ---- */
.about-img-card {
    position: relative;
    overflow: hidden;
    padding: 46px 40px;
    text-align: left;
}

.about-img-card>* {
    position: relative;
    z-index: 2;
}

.about-img-card .globe-bg {
    display: none;
}

.about-img-card .globe-img {
    position: absolute;
    top: -30px;
    right: -40px;
    width: 58%;
    max-width: 420px;
    height: auto;
    opacity: 0.9;
    z-index: 1;
    pointer-events: none;
}

.about-img-card h3 {
    font-size: 30px;
    max-width: 62%;
}

.about-img-card>p {
    max-width: 68%;
}

.stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 34px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    overflow: hidden;
}

.stat-box {
    background: transparent;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    padding: 22px 12px;
}

.stat-box:last-child {
    border-right: none;
}

@media (max-width: 767px) {

    .about-img-card h3,
    .about-img-card>p {
        max-width: 100%;
    }

    .about-img-card .globe-img {
        object-position: top center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-box:nth-child(2) {
        border-right: none;
    }

    .stat-box:nth-child(1),
    .stat-box:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }
}

/* ---- PROVEN PROCESS: icon circle + line + number badge + title ---- */
.steps-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* connector line runs through the icon-circle centres (~36px into each step) */
.steps-grid::before {
    top: 55px;
    left: calc(12.5% + 12px);
    right: calc(12.5% + 12px);
    height: 1px;
    background: linear-gradient(90deg, var(--blue), var(--accent));
    opacity: 0.4;
}

.step {
    padding: 24px 18px;
}

.step-icon {
    /* padding added cause icon sizes are not correct */
    /* padding: 16px; */
    width: 52px;
    height: 52px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    font-size: 18px;
    /* color: #fff; */
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(30, 115, 185, 0.35);
    position: relative;
    z-index: 2;
    /* border: 3px solid #fff; */
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* vertical connector between the icon circle and the number below it */
.step-icon::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 24px;
    background: var(--blue);
    opacity: 0.3;
}

/* number badge is now a small blue pill UNDER the icon (not the big circle) */
.step .step-num {
    width: 24px;
    height: 24px;
    margin: 0 auto 14px;
    font-size: 12px;
    border: none;
    box-shadow: 0 3px 8px rgba(30, 115, 185, 0.35);
    background: var(--blue);
}

@media (max-width: 767px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- OUR TEAM / LEADERSHIP ---- */
#team {
    background: var(--gray);
}

/* Banner */
.leadership-banner {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 40px;
    line-height: 0;
}

.leadership-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* fallback panel + overlaid text if the banner image is missing */
.leadership-banner.is-fallback {
    line-height: normal;
    background: linear-gradient(120deg,
            var(--charcoal) 0%,
            var(--dark) 55%,
            var(--blue) 100%);
    min-height: 300px;
    display: flex;
    align-items: center;
    padding: 48px clamp(24px, 5vw, 70px);
}

.leadership-banner-text {
    display: none;
}

.leadership-banner.is-fallback .leadership-banner-text {
    display: block;
    max-width: 620px;
    color: #fff;
}

.leadership-banner-text h2 {
    font-family: var(--font);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
}

.leadership-banner-text h2 span {
    color: var(--accent);
}

.leadership-banner-text p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

/* Trust badges row */
.leadership-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 26px;
    padding: 8px 0 44px;
}

/* Outcomes / passionate */
.leadership-outcomes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 56px;
}

.lo-eyebrow {
    font-size: 15px;
    color: #6d6d6d;
    margin-bottom: 14px;
}

.lo-left h2 {
    font-family: var(--font);
    font-size: clamp(52px, 3vw, 38px);
    font-weight: 500;
    line-height: 1;
    color: var(--charcoal);
}

.lo-left h2 span {
    color: var(--blue);
}

.lo-left h2 span:last-child {
    color: var(--accent);
}

.lo-right {
    margin-top: 35px;
}

.lo-right p {
    font-size: 15px;
    line-height: 1.8;
    color: #6d6d6d;
    margin-bottom: 16px;
}

.lo-right p:last-child {
    margin-bottom: 0;
}

/* Team table image (desktop) */
.leadership-table {
    border-radius: 18px;
    overflow: hidden;
    line-height: 0;
    text-align: center;
}

.leadership-table img {
    width: 100%;
    height: auto;
    display: block;
}

.leadership-table.is-fallback {
    line-height: normal;
    background: #eef2f7;
    border: 1px dashed #d7e0e9;
    padding: 40px;
    text-align: center;
    color: #9aa8b6;
    font-weight: 600;
}

.leadership-table.is-fallback::after {
    content: "Team table image → assets/team/leadership-table.png";
}

/* Rounded circles (mobile / fallback) — hidden on desktop */
.leadership-circles {
    display: none;
}

.lc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.lc-avatar {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: #e3e8ef center / cover no-repeat;
    flex-shrink: 0;
}

.lc-item h5 {
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    color: var(--charcoal);
}

.lc-item span {
    font-size: 12.5px;
    color: #6d6d6d;
    line-height: 1.4;
}

/* What Defines Our Team */
.team-values {
    max-width: 900px;
    margin: 56px auto 0;
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 16px;
    padding: 40px clamp(24px, 4vw, 48px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.team-values h3 {
    font-family: var(--font);
    font-size: 22px;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 22px;
}

.values-list {
    list-style: none;
    display: grid;
    gap: 14px;
}

.values-list li {
    position: relative;
    padding-left: 30px;
    font-size: 15px;
    line-height: 1.6;
    color: #6d6d6d;
}

/* styled pointer bullet (not a number) */
.values-list li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 8px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--blue);
    border-bottom: 2px solid var(--blue);
    transform: rotate(-45deg);
}

.values-list li strong {
    color: var(--charcoal);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {
    .leadership-outcomes {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 768px) {

    /* vertical team image on mobile — centred, not full-bleed-tall */
    .leadership-table img {
        max-width: 460px;
        margin: 0 auto;
    }
}

/* ---- ABOUT + WHY-CEVOLVE: full structural base ----
   (the first #about block in this file is commented out, and the previously
   active duplicate was removed to fix a display:flex bug — this is now the
   single, self-contained source for the About section.) */
#about {
    background: var(--gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
    /* both sides equal height */
}

.about-content {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* vertically centre text against the tall card */
}

.about-visual {
    position: relative;
    display: flex;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-check {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    background: #eef4fb;
    border-radius: 50%;
    color: var(--blue);
    font-size: 16px;
}

.feature-check img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: none;
}

.feature-item h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--charcoal);
}

.feature-item p {
    font-size: 14px;
    color: #6d6d6d;
    line-height: 1.6;
}

.about-img-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 80%;
    /* match the left column height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--blue) 100%);
    border-radius: 20px;
    padding: 46px 40px;
    color: #fff;
    text-align: left;
    box-shadow: 0 25px 60px rgba(1, 20, 56, 0.3);
}

.about-img-card>* {
    position: relative;
    z-index: 2;
}

.about-img-card .globe-bg {
    display: none;
}

/* globe image now covers the FULL card background (no visible seam) */
.about-img-card .globe-pic {
    position: absolute;
    inset: 0;
    z-index: 0;
    line-height: 0;
    pointer-events: none;
}

.about-img-card .globe-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right top;
    display: block;
}

.about-img-card h3 {
    font-family: var(--font);
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 8px;
    max-width: 62%;
}

.about-img-card>p {
    opacity: 0.82;
    font-size: 15px;
    max-width: 68%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 34px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    overflow: hidden;
}

.stat-box {
    background: transparent;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    padding: 22px 12px;
    text-align: center;
}

.stat-box:last-child {
    border-right: none;
}

.stat-box h4 {
    font-family: var(--font);
    font-size: 30px;
    font-weight: 800;
    color: var(--accent);
}

.stat-box p {
    font-size: 12px;
    opacity: 0.75;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .about-img-card {
        height: 100%;
    }

    .about-content {
        max-width: 100%;
    }

    .about-img-card h3,
    .about-img-card>p {
        max-width: 100%;
    }

    .about-img-card .globe-img {
        object-position: top center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-box:nth-child(2) {
        border-right: none;
    }

    .stat-box:nth-child(1),
    .stat-box:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }
}

/* ---- CONTACT FORM: white card with dark-readable fields ---- */
.contact-form {
    background: #fff;
    border: 1px solid #e8edf2;
    box-shadow: 0 20px 50px rgba(1, 20, 56, 0.18);
}

.contact-form .form-group label {
    color: var(--charcoal);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    background: #f4f6f8;
    border: 1px solid #e2e8f0;
    color: var(--charcoal);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9aa8b6;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    background: #fff;
    border-color: var(--accent);
}

.contact-form select option {
    background: #fff;
    color: var(--charcoal);
}

/* ---- TRUST STRIP as image (desktop + mobile), badge fallback ---- */
.trust-strip {
    padding: 26px 6%;
}

.trust-strip-pic {
    width: 100%;
    display: flex;
    justify-content: center;
    line-height: 0;
}

.trust-strip-pic img {
    width: 100%;
    max-width: 1040px;
    height: auto;
    display: block;
}

.trust-fallback {
    /* display: none; */
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 26px;
    width: 100%;
}

.trust-strip.is-fallback .trust-fallback {
    display: flex;
}

@media (max-width: 767px) {
    .trust-fallback {
        gap: 18px 26px;
    }

    .trust-fallback .trust-divider {
        display: none;
    }
}

/* ---- TESTIMONIALS: match "What Our Clients Say" (no stars, 2 cards) ---- */
#testimonials {
    background: #fff;
}

.testimonials-intro {
    text-align: center;
    margin-bottom: 46px;
}

.testimonials-intro .section-sub {
    margin: 0 auto;
}

.tstyle-title {
    color: var(--blue);
}

.tstyle-title .what {
    color: var(--charcoal);
}

.testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(1, 20, 56, 0.06);
    padding: 34px 36px;
}

.testimonial-card blockquote {
    font-style: normal;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 20px;
}

.testimonial-card blockquote::before {
    content: none;
}

/* no quote glyph */
.t-author {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.t-name {
    font-family: var(--font);
    font-weight: 700;
    font-size: 15px;
    color: var(--blue);
}

.t-role {
    font-style: italic;
    font-size: 13px;
    color: var(--blue);
    opacity: 0.85;
}

@media (max-width: 767px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/*  */
/* =====================================================================
   FINAL FIXES + POLISH (append last)
   ===================================================================== */

/* --- Globe fills the WHOLE About card (overrides stale top:-30px/right:-40px) --- */
.about-img-card .globe-pic {
    position: absolute;
    inset: 0;
    z-index: 0;
    line-height: 0;
    pointer-events: none;
}

.about-img-card .globe-img {
    position: absolute;
    inset: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    z-index: 0;
    display: block;
}

/* --- Hero button: use the Bootstrap arrow icon, kill the old ::after arrow --- */
.hero-btns .btn-primary::after {
    content: none;
}

.hero-btns .btn-primary i.bi {
    font-size: 16px;
    transition: transform 0.25s ease;
}

.hero-btns .btn-primary:hover i.bi {
    transform: translateX(4px);
}

.submit-btn i.bi {
    margin-right: 2px;
}

/* --- Trust strip: bigger badges; 2-per-row on mobile --- */
.trust-strip-pic img {
    max-width: 1120px;
}

/* if using the single strip image */
.trust-fallback {
    gap: 34px 50px;
}

/* if using individual badges */
.trust-logo {
    height: 46px;
}

@media (max-width: 767px) {
    .trust-strip {
        padding: 22px 5%;
    }

    .trust-strip.is-fallback .trust-fallback {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* 2 x 2 (last one centers) */
        gap: 26px 20px;
        justify-items: center;
        align-items: center;
    }

    .trust-fallback .trust-divider {
        display: none;
    }

    .trust-logo {
        height: 40px;
    }
}

/* --- Consistent section spacing everywhere --- */
#clients,
#contact {
    padding: 100px 6%;
}

@media (max-width: 600px) {

    #clients,
    #contact {
        padding: 70px 5%;
    }
}

/* --- Tasteful, professional motion (respects reduced-motion) --- */
@media (prefers-reduced-motion: no-preference) {
    .about-img-card .globe-img {
        animation: globeDrift 1s ease-in-out infinite alternate;
        transform-origin: center;
    }

    @keyframes globeDrift {
        from {
            transform: scale(1);
        }

        to {
            transform: scale(1.06);
        }
    }
}

.service-icon {
    transition: transform 0.35s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-4px) scale(1.06);
}

.step {
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-4px);
}

.trust-logo {
    filter: grayscale(30%);
    opacity: 0.85;
    transition:
        filter 0.3s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}

.trust-logo:hover {
    filter: none;
    opacity: 1;
    transform: translateY(-2px);
}

nav a:not(.nav-cta) {
    position: relative;
}

nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 2px;
    height: 1px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s ease;
}

nav a:not(.nav-cta):hover::after {
    transform: scaleX(1);
}

/* =====================================================================
   HERO SIZING · TRUST-STRIP MOBILE (2+2+1) · UNIFORM SECTION SPACING
   Append at the very end — overrides earlier rules by cascade order.
   ===================================================================== */

/* ---------- HERO: keep the CTA buttons inside the first screen ---------- */
.heroSwiper {
    max-height: 68vh;
}

/* desktop safety cap */
.hero-btns {
    margin: 24px auto 10px;
}

/* consistent gap under the slider */

@media (max-width: 767px) {
    .heroSwiper {
        aspect-ratio: auto;
        /* drop the tall 800/1014 portrait box */
        height: 50vh;
        min-height: 320px;
        max-height: 440px;
        /* so buttons show without scrolling */
    }

    .heroSwiper .swiper-slide {
        height: 100%;
    }

    .heroSwiper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin: 16px auto 8px;
        padding: 0 6%;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-outline {
        width: 100%;
        min-width: 0;
    }

    .heroSwiper {
        height: auto;
        /* let the box follow the image ratio */
        min-height: 0;
        max-height: none;
        aspect-ratio: 800 / 1014;
        /* your mobile banner ratio = no letterbox, no crop */
    }

    .heroSwiper .swiper-slide picture,
    .heroSwiper .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        /* whole image inside the slide */
        object-position: center;
    }
}

/* ---------- TRUST STRIP on mobile: 2 + 2 + 1 (last one centred) ---------- */
@media (max-width: 767px) {
    .trust-strip {
        padding: 26px 6% 28px;
    }

    /* whichever element wraps the badges becomes a centred flex-wrap row */
    .trust-strip,
    .trust-fallback {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 24px 20px;
    }

    .trust-fallback {
        flex-basis: 100%;
        width: 100%;
    }

    /* full width if badges are nested */
    .trust-strip .trust-divider {
        display: none;
    }

    /* two per row; the lone 5th wraps to row 3 and centres automatically */
    .trust-strip .trust-item {
        flex: 0 0 40%;
        justify-content: center;
        min-height: 44px;
        margin: 0;
    }

    .trust-strip .trust-logo {
        height: 34px;
    }
}

/* ---------- UNIFORM VERTICAL SPACING for every section (hero excluded) ---------- */
#services,
#about,
#process,
#team,
#clients,
#testimonials,
#contact {
    padding-top: 96px;
    padding-bottom: 96px;
}

@media (max-width: 767px) {

    #services,
    #about,
    #process,
    #team,
    #clients,
    #testimonials,
    #contact {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* ---- TESTIMONIALS: left title/subtitle + right auto-slider ---- */
#testimonials {
    background: #fff;
}

.testi-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 64px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.testi-left {
    position: sticky;
    top: 120px;
}

.testi-title {
    text-align: left;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin: 0;
}

.testi-left :nth-child(1 of .testi-sub) {
    margin-top: 16px;
}

.testi-sub {
    text-align: left;
    color: var(--muted);
    font-size: 16px;
    /* margin-top: 16px; */
    margin: 0;
    max-width: 340px;
}

.testimonialSwiper {
    width: 100%;
}

.testimonialSwiper .swiper-slide {
    height: auto;
    padding-bottom: 4px;
}

.testi-quote {
    display: inline-block;
    font-size: 48px;
    line-height: 1;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.testimonialSwiper blockquote {
    font-style: normal;
    border: none;
    padding: 0;
    margin: 0 0 22px;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.85;
}

.testi-author {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

/* dots — bottom-left, pill active */
.testi-pagination {
    text-align: left;
    margin-top: 18px;
}

.testi-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: #c7ced8;
    opacity: 1;
    margin: 0 7px 0 0 !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testi-pagination .swiper-pagination-bullet-active {
    background: var(--blue);
    width: 26px;
    border-radius: 5px;
}

@media (max-width: 900px) {
    .testi-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .testi-left {
        position: static;
    }

    .testi-sub {
        max-width: none;
    }
}

.testimonialSwiper .swiper-wrapper {
    align-items: stretch;
}

.testimonialSwiper .swiper-slide {
    height: auto;
    min-height: 320px;
    /* fixed box — no resize between quotes */
    display: flex;
    flex-direction: column;
}

.testimonialSwiper blockquote {
    flex: 1 0 auto;
}

/* pushes author to a consistent spot */

/* dots: inactive must be visible on white */
.testi-pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
}

.testi-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: #c7ced8;
    /* visible grey (was blending into white) */
    opacity: 1;
    margin: 0 !important;
    border-radius: 50%;
    cursor: pointer;
    transition:
        width 0.3s ease,
        background 0.3s ease;
}

.testi-pagination .swiper-pagination-bullet-active {
    background: var(--blue);
    width: 26px;
    /* active = blue pill */
    border-radius: 5px;
}

/* ---- Testimonial dots: force-visible + clickable ---- */
.testi-pagination {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    width: auto;
}

.testi-pagination .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: #b8c2cf !important;
    /* grey — visible on white */
    opacity: 1 !important;
    margin: 0 !important;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    display: inline-block !important;
    transition:
        width 0.3s ease,
        background 0.3s ease;
}

.testi-pagination .swiper-pagination-bullet:hover {
    background: #8a97a8 !important;
}

.testi-pagination .swiper-pagination-bullet-active {
    background: var(--blue) !important;
    /* blue pill for active */
    width: 28px !important;
    border-radius: 5px;
}

/* ---- Swiper nav arrows: rounded translucent buttons ---- */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: scale(1.06);
}

/* Swiper draws the arrow via a ::after glyph — size it down to fit the circle */
.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}

/* nudge them in from the very edge */
.heroSwiper .swiper-button-prev {
    left: 16px;
}

.heroSwiper .swiper-button-next {
    right: 16px;
}

/* Mobile: smaller circles, closer to the edge */
@media (max-width: 767px) {

    .heroSwiper .swiper-button-next,
    .heroSwiper .swiper-button-prev {
        width: 35px;
        height: 35px;
        background: rgba(255, 255, 255, 0.18);
        border-width: 1px;
    }

    .heroSwiper .swiper-button-next::after,
    .heroSwiper .swiper-button-prev::after {
        font-size: 15px;
    }

    .heroSwiper .swiper-button-prev {
        left: 10px;
    }

    .heroSwiper .swiper-button-next {
        right: 10px;
    }
}

/* ---- Header logo: horizontal (desktop) / vertical (mobile) ---- */
.logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.logo picture {
    display: block;
    line-height: 0;
}

/* DESKTOP — horizontal logo */
.logo-img {
    height: 55px;
    /* controls the size; width auto-keeps ratio */
    width: auto;
    /* max-width: 200px; */
    object-fit: contain;
    display: block;
}

/* MOBILE — vertical logo */
@media (max-width: 767px) {
    .logo-img {
        height: 50px;
        /* vertical marks are taller — a bit more height */
        max-width: 180px;
    }
}

/* =====================================================================
   APPEND-LAST · client-logo marquee · trust-strip mobile centring
   ===================================================================== */

/* ---- CLIENT LOGOS: single row, continuous left→right, pause on hover ---- */
.clients-marquee {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    /* soft fade at both edges */
    mask-image: linear-gradient(90deg,
            transparent,
            #000 7%,
            #000 93%,
            transparent);
    -webkit-mask-image: linear-gradient(90deg,
            transparent,
            #000 7%,
            #000 93%,
            transparent);
}

.clients-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 18px;
    width: max-content;
    animation: clientsMarquee 40s linear infinite;
    will-change: transform;
}

/* content is duplicated by script.js, so -50% → 0 loops seamlessly */
@keyframes clientsMarquee {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.clients-marquee:hover .clients-track,
.clients-marquee:focus-within .clients-track {
    animation-play-state: paused;
}

.clients-track .client-logo {
    flex: 0 0 auto;
    width: 170px;
    min-height: 90px;
    margin: 0;
}

@media (max-width: 767px) {
    .clients-track {
        gap: 14px;
        animation-duration: 30s;
    }

    .clients-track .client-logo {
        width: 140px;
        min-height: 78px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .clients-track {
        animation: none;
    }
}

/* ---- MOBILE TRUST STRIP: 2 per row, lone last badge centred ---- */
@media (max-width: 767px) {
    .trust-strip {
        display: block;
        padding: 26px 6% 28px;
    }

    .trust-strip.is-fallback .trust-fallback {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 26px 0;
        width: 100%;
    }

    .trust-fallback .trust-divider {
        display: none;
    }

    /* half-width cells → even count fills rows 2-up,
       an odd last badge wraps to its own row and centres itself */
    .trust-strip.is-fallback .trust-fallback>.trust-item--logo {
        flex: 0 0 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .trust-strip.is-fallback .trust-logo {
        height: 38px;
    }
}

/* =====================================================================
   APPEND-LAST · CLIENTS MARQUEE — FINAL
   (overrides the earlier #clients + marquee blocks by cascade order)
   ===================================================================== */

/* kill the leftover travelling-line effect from the earlier patch */
.client-logo::after {
    content: none !important;
    animation: none !important;
}

/* ---- viewport: edge fade, matches the reference strip ---- */
.clients-marquee {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    overflow: hidden;
    padding: 6px 0;
    /* breathing room so scaled logos never touch the mask */
    mask-image: linear-gradient(90deg,
            transparent 0,
            #000 8%,
            #000 92%,
            transparent 100%);
    -webkit-mask-image: linear-gradient(90deg,
            transparent 0,
            #000 8%,
            #000 92%,
            transparent 100%);
}

/* ---- track: slow, continuous, seamless ---- */
.clients-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 28px;
    width: max-content;
    animation: clientsMarquee 75s linear infinite;
    /* was 40s — much slower now */
    will-change: transform;
}

@keyframes clientsMarquee {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* pause the whole strip while the cursor is anywhere over it */
.clients-marquee:hover .clients-track,
.clients-marquee:focus-within .clients-track {
    animation-play-state: paused;
}

/* ---- card: fixed box, generous inner space, NO movement on hover ---- */
.clients-track .client-logo {
    flex: 0 0 auto;
    width: 188px;
    height: 108px;
    min-height: 0;
    margin: 0;
    padding: 28px 24px;
    /* the inner space that stops the clipping */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* keeps the zoom inside the rounded card */
    background: #fff;
    border: 1.5px dashed #d7e0e9;
    border-radius: 12px;
    transition:
        border-color 0.3s ease,
        background 0.3s ease;
}

/* neutralise the old lift/shadow so only the logo reacts */
.clients-track .client-logo:hover {
    transform: none;
    box-shadow: none;
    border-color: #c3d0dd;
}

/* ---- logo: greyscale at rest, zooms + colourises on hover ---- */
.clients-track .client-logo img {
    max-height: 50px;
    /* 44 × 1.12 = 49px < 52px inner height → cannot clip */
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: grayscale(100%);
    opacity: 0.62;
    transform-origin: center center;
    transition:
        transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1),
        filter 0.35s ease,
        opacity 0.35s ease;
}

.clients-track .client-logo:hover img {
    transform: scale(1.12);
    filter: grayscale(0%);
    opacity: 1;
}

.clients-track .clicon-fallback {
    color: #9aa8b6;
    font-weight: 600;
    font-size: 13.5px;
    text-align: center;
}

/* ---- mobile ---- */
@media (max-width: 767px) {
    .clients-track {
        gap: 18px;
        animation-duration: 55s;
    }

    .clients-track .client-logo {
        width: 152px;
        height: 92px;
        padding: 22px 18px;
    }

    .clients-track .client-logo img {
        max-height: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .clients-track {
        animation: none;
    }
}

/* =====================================================================
   APPEND-LAST · trust-strip small-phone fix · clients clip + tap-to-pause
   ===================================================================== */

/* ---------- 1 · TRUST STRIP: true 2-up on small phones ---------- */
@media (max-width: 767px) {

    /* neutralises the ≤600px `.trust-item { min-width: 185px }` that was
       pushing the Microsoft + IBM cells onto rows of their own */
    .trust-strip.is-fallback .trust-fallback>.trust-item,
    .trust-strip.is-fallback .trust-fallback>.trust-item--logo {
        min-width: 0;
        flex: 0 0 50%;
        max-width: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 6px;
        margin: 0;
    }

    /* logos scale down inside the half-width cell instead of overflowing it */
    .trust-strip.is-fallback .trust-logo {
        height: auto;
        width: auto;
        max-height: 38px;
        max-width: 100%;
        object-fit: contain;
    }
}

/* very small phones — a touch smaller so 2-up never gets tight */
@media (max-width: 400px) {
    .trust-strip.is-fallback .trust-fallback {
        gap: 22px 0;
    }

    .trust-strip.is-fallback .trust-logo {
        max-height: 32px;
    }
}

/* ---------- 2 · CLIENTS: stop the top/bottom clipping ---------- */
.clients-marquee {
    padding: 20px 0;
    /* clip sideways only — top and bottom now paint freely, so the
       dashed border and the 1.12 zoom can never be cut off */
    overflow: visible;
    overflow-x: clip;
    overflow-y: visible;
}

/* ---------- 3 · CLIENTS: dotted border only on hover / tap ---------- */
.clients-track .client-logo {
    background: transparent;
    border-color: transparent;
    /* space reserved, so nothing shifts when it appears */
    -webkit-tap-highlight-color: transparent;
}

/* desktop / mouse only — keeps iOS from leaving a sticky :hover behind */
@media (hover: hover) and (pointer: fine) {
    .clients-track .client-logo:hover {
        background: #fff;
        border-color: #d7e0e9;
    }

    .clients-track .client-logo:hover img {
        transform: scale(1.12);
        filter: grayscale(0%);
        opacity: 1;
    }
}

/* touch devices: kill sticky hover, drive everything from .is-active */
@media (hover: none) {
    .clients-marquee:hover .clients-track {
        animation-play-state: running;
    }

    .clients-track .client-logo:hover {
        background: transparent;
        border-color: transparent;
    }

    .clients-track .client-logo:hover img {
        transform: none;
        filter: grayscale(100%);
        opacity: 0.62;
    }
}

/* ---------- 4 · CLIENTS: tapped card state + paused strip ---------- */
.clients-marquee.is-paused .clients-track {
    animation-play-state: paused !important;
}

.clients-track .client-logo.is-active {
    background: #fff;
    border-color: #d7e0e9;
}

.clients-track .client-logo.is-active img {
    transform: scale(1.12);
    filter: grayscale(0%);
    opacity: 1;
}


/* =====================================================================
   APPEND-LAST · CONTACT-US PAGE (contact-us.html)
   Reuses the existing tokens, buttons and .contact-form styling.
   Scoped under body.contact-page so index.html is untouched.
   ===================================================================== */

/* ---------------------------------------------------------------------
   1 · MAP — full width, directly under the header
   --------------------------------------------------------------------- */
.contact-page .offices-map-section {
    width: 100%;
    padding: 0;
    margin: 0;
    background: #fff;
    border-bottom: 1px solid #eef1f5;
    overflow: hidden;
}

/* aspect ratio ≈ the world map's own, so the map fills the width
   edge-to-edge with no letterboxing at any screen size */
.contact-page .offices-map {
    width: 100%;
    aspect-ratio: 900 / 430;
    min-height: 230px;
}

/* CRITICAL — your global reset (`svg { max-width:100%; height:auto }`)
   was collapsing the map SVG and rendering it tiny. Undo it here only. */
/* .contact-page .offices-map svg,
.contact-page .jvm-container svg {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    display: block;
} */

.contact-page .jvm-container {
    background: transparent;
    touch-action: auto;
    /* page still scrolls over the map on mobile */
}

/* countries are decoration only — no pointer, no tooltip, no cursor */
.contact-page .jvm-region {
    pointer-events: none;
    cursor: default;
}

/* hit-testing is handled by the .cev-hit buttons that contact-us.js adds,
   so the SVG circles themselves take no pointer events */
.contact-page .jvm-marker {
    pointer-events: none;
}

/* the pulse rings, tap targets and address card are styled by
   contact-us.js (injected last) so nothing here can override them */
.contact-page .offices-map {
    position: relative;
}

/* graceful message if the map library can't load */
.contact-page .offices-map.is-unavailable {
    aspect-ratio: auto;
    min-height: 0;
    height: auto;
    margin: 24px 6%;
    padding: 40px 20px;
    border: 1px dashed #d7e0e9;
    border-radius: 12px;
    text-align: center;
    color: #9aa8b6;
    font-weight: 600;
}

.contact-page .offices-map.is-unavailable::after {
    content: "Map unavailable — office addresses are listed below.";
}

/* ---------------------------------------------------------------------
   2 · ZOOM BUTTONS + our own marker address card
   --------------------------------------------------------------------- */

/* library tooltips are fully suppressed (no country names, no cursor-
   following card) — contact-us.js renders .cev-tip instead */
.contact-page .jvm-tooltip {
    display: none !important;
}

/* zoom controls, top-right, brand styled */
.contact-page .jvm-zoom-btn {
    left: auto;
    right: 16px;
    width: 32px;
    height: 32px;
    line-height: 30px;
    padding: 0;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: var(--blue);
    border-radius: 9px;
    box-shadow: 0 4px 14px rgba(3, 97, 235, .32);
    transition: background .25s ease, transform .25s ease;
}

.contact-page .jvm-zoom-btn:hover {
    background: var(--dark);
    transform: translateY(-1px);
}

.contact-page .jvm-zoom-btn.jvm-zoomin {
    top: 16px;
}

.contact-page .jvm-zoom-btn.jvm-zoomout {
    top: 54px;
}

/* ---------------------------------------------------------------------
   3 · TITLE + OFFICES + FORM
   --------------------------------------------------------------------- */
.contact-page .offices-section {
    max-width: 1240px;
    margin: 0 auto;
    padding: 56px 6% 90px;
}

.contact-page .offices-head {
    margin-bottom: 42px;
}

.contact-page .offices-head .section-title {
    margin-bottom: 10px;
}

.offices-head-note {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    max-width: 640px;
}

.offices-head-note a {
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(3, 97, 235, .35);
}

.offices-head-note a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.offices-layout {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: start;
}

.form-col-title {
    font-family: var(--font);
    font-size: 22px;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.office-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

/* ---------- office card ---------- */
.office-card {
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 14px;
    padding: 22px 20px 20px;
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.office-card:hover {
    border-color: #c9d8ea;
    box-shadow: 0 12px 30px rgba(1, 20, 56, .07);
    transform: translateY(-2px);
}

.office-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 2px;
}

.office-country {
    font-family: var(--font);
    font-size: 19px;
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1.25;
}

.office-tag {
    display: inline-block;
    background: rgba(3, 97, 235, .08);
    color: var(--blue);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .3px;
    white-space: nowrap;
}

.office-city {
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.office-address {
    font-style: normal;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.75;
    margin-bottom: 12px;
}

.office-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 14px;
    color: var(--charcoal);
    margin-bottom: 18px;
}

.office-contact i {
    color: var(--blue);
    margin-right: 6px;
}

.office-contact a {
    color: var(--charcoal);
    text-decoration: none;
}

.office-contact a:hover {
    color: var(--blue);
}

/* ---------- "View on map" → opens Google Maps ---------- */
.btn-map {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 42px;
    padding: 0 22px;
    border: none;
    border-radius: 999px;
    font-family: var(--font);
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--accent) 0%, var(--blue) 55%, var(--dark) 115%);
    box-shadow: 0 5px 18px rgba(3, 97, 235, .38), inset 0 0 0 1px rgba(255, 255, 255, .12);
    transition: transform .25s ease, box-shadow .25s ease;
}

.btn-map:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(3, 97, 235, .48), inset 0 0 0 1px rgba(255, 255, 255, .18);
}

.btn-map:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* ---------- form column ---------- */
.contact-page .contact-form {
    border-radius: 20px;
    padding: 34px 32px;
}

/* ---------------------------------------------------------------------
   4 · RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 1100px) {
    .offices-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .contact-page .offices-map {
        aspect-ratio: 900 / 480;
        min-height: 210px;
    }

    .contact-page .jvm-zoom-btn {
        right: 10px;
        width: 30px;
        height: 30px;
        line-height: 28px;
    }

    .contact-page .jvm-zoom-btn.jvm-zoomin {
        top: 10px;
    }

    .contact-page .jvm-zoom-btn.jvm-zoomout {
        top: 46px;
    }

    .contact-page .offices-section {
        padding: 40px 5% 64px;
    }

    .contact-page .offices-head {
        margin-bottom: 30px;
    }

    .office-list {
        grid-template-columns: 1fr;
    }

    .contact-page .contact-form {
        padding: 26px 20px;
    }

    .btn-map {
        width: 100%;
    }
}


/* scrollbar: lock to light so dark mode can't repaint the gutter */
html {
    color-scheme: light;
    scrollbar-width: thin;
    scrollbar-color: var(--blue) #f1f1f1;
    /* Firefox */
}

::-webkit-scrollbar {
    width: 8px;
    background: #f1f1f1;
    /* was unset — this is the dark strip */
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark);
}


/* =====================================================================
   APPEND-LAST · faster client marquee · footer social icons
   ===================================================================== */

/* ---- faster logo strip ---- */
.clients-track {
    animation-duration: 30s;
}

@media (max-width: 767px) {
    .clients-track {
        animation-duration: 26s;
    }
}

/* ---- footer social icons ---- */
.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .75);
    font-size: 16px;
    text-decoration: none;
    transition: background .28s ease, color .28s ease, transform .28s ease,
        border-color .28s ease, box-shadow .28s ease;
}

.footer-social a:hover {
    color: #fff;
    transform: translateY(-3px);
    border-color: transparent;
}

/* official brand colours on hover */
.footer-social a.s-linkedin:hover {
    background: #0a66c2;
    box-shadow: 0 8px 20px rgba(10, 102, 194, .45);
}

.footer-social a.s-instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
    box-shadow: 0 8px 20px rgba(220, 39, 67, .45);
}

.footer-social a.s-facebook:hover {
    background: #1877f2;
    box-shadow: 0 8px 20px rgba(24, 119, 242, .45);
}

/* X has no colour — invert instead so it stays visible on the dark footer */
.footer-social a.s-x:hover {
    background: #fff;
    color: #0a1628;
    box-shadow: 0 8px 20px rgba(255, 255, 255, .28);
}

.footer-social a.s-whatsapp:hover {
    background: #25d366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, .45);
}

@media (max-width: 600px) {
    .footer-social {
        justify-content: center;
    }
}



/* =====================================================================
   APPEND-LAST · equal breathing room above / below the trust strip
   ===================================================================== */

/* the 100vh hero left dead white space above the strip — let it hug
   its own content (slider + CTA buttons) instead */
.hero {
    height: auto;
    min-height: 0;
    padding-bottom: 10px;
}

.hero-btns {
    margin: 26px auto 0;
}

/* one knob controls both sides */
.trust-strip {
    --strip-gap: 64px;
    padding: 28px 6%;
    /* symmetric inside */
    margin: var(--strip-gap) 0 0;
    /* gap above */
}

#services {
    padding-top: var(--strip-gap, 64px);
    /* gap below == gap above */
}

@media (max-width: 767px) {
    .trust-strip {
        --strip-gap: 40px;
        padding: 26px 6%;
    }

    #services {
        padding-top: 40px;
    }
}


/* =====================================================================
   APPEND-LAST · CLIENTS: continuous marquee, larger logos
   ===================================================================== */

.clientsSwiper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 0 0;
    overflow: hidden;
    /* soft fade at both edges */
    mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

/* linear timing is what turns autoplay into a smooth drift */
.clientsSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: center;
}

/* pagination no longer used */
.clients-pagination {
    display: none !important;
}

/* ---- card: fixed width so slidesPerView:"auto" works ---- */
.clientsSwiper .client-logo {
    width: 230px;
    height: 146px;
    min-height: 0;
    flex-shrink: 0;
    margin: 0;
    padding: 30px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
    border: 1.5px dashed transparent;
    border-radius: 14px;
    transition: background .3s ease, border-color .3s ease;
    -webkit-tap-highlight-color: transparent;
}

/* ---- logo: bigger again ---- */
.clientsSwiper .client-logo img {
    max-height: 78px;
    /* 78 × 1.1 = 86px < 86px inner height → cannot clip */
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    pointer-events: none;
    filter: grayscale(100%);
    opacity: .65;
    transform-origin: center;
    transition: transform .4s cubic-bezier(.2, .7, .3, 1), filter .35s ease, opacity .35s ease;
}

@media (hover: hover) and (pointer: fine) {
    .clientsSwiper .client-logo:hover {
        background: #fff;
        border-color: #d7e0e9;
    }

    .clientsSwiper .client-logo:hover img {
        transform: scale(1.1);
        filter: grayscale(0%);
        opacity: 1;
    }
}

.clientsSwiper .clicon-fallback {
    color: #9aa8b6;
    font-weight: 600;
    font-size: 13.5px;
    text-align: center;
}

@media (max-width: 767px) {
    .clientsSwiper .client-logo {
        width: 172px;
        height: 118px;
        padding: 24px 18px;
    }

    .clientsSwiper .client-logo img {
        max-height: 58px;
    }
}

/* =====================================================================
   APPEND-LAST · CLIENTS MARQUEE — 30s loop, bigger logos, hover zoom
   ===================================================================== */

.clients-marquee {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 22px 0;
    /* clip sideways only, so the hover zoom can't be cut off */
    overflow: visible;
    overflow-x: clip;
    overflow-y: visible;
    mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.clients-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 30px;
    width: max-content;
    animation: 20s linear infinite marquee;
    will-change: transform;
}

/* script.js duplicates the row, so -50% → 0 is a seamless loop */
@keyframes marquee {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* hover anywhere on the strip freezes it instantly */
.clients-marquee:hover .clients-track,
.clients-marquee:focus-within .clients-track,
.clients-marquee.is-paused .clients-track {
    animation-play-state: paused;
}

/* ---- card: bigger box, dashed border on hover only ---- */
.clients-track .client-logo {
    flex: 0 0 auto;
    width: 226px;
    height: 142px;
    min-height: 0;
    margin: 0;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
    border: 1.5px dashed transparent;
    border-radius: 14px;
    transition: background .3s ease, border-color .3s ease;
    -webkit-tap-highlight-color: transparent;
}

.clients-track .client-logo:hover,
.clients-track .client-logo.is-active {
    transform: none;
    box-shadow: none;
    background: #fff;
    border-color: #d7e0e9;
}

/* ---- logo: larger, greyscale at rest, zooms + colourises on hover ---- */
.clients-track .client-logo img {
    max-height: 76px;
    /* 76 × 1.1 = 83.6px < 86px inner height → cannot clip */
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: grayscale(100%);
    opacity: .65;
    transform-origin: center;
    transition: transform .4s cubic-bezier(.2, .7, .3, 1), filter .35s ease, opacity .35s ease;
}

.clients-track .client-logo:hover img,
.clients-track .client-logo.is-active img {
    transform: scale(1.1);
    filter: grayscale(0%);
    opacity: 1;
}

/* ---- mobile ---- */
@media (max-width: 767px) {
    .clients-track {
        gap: 20px;
        animation-duration: 20s;
    }

    .clients-track .client-logo {
        width: 168px;
        height: 116px;
        padding: 24px 18px;
    }

    .clients-track .client-logo img {
        max-height: 56px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .clients-track {
        animation: none;
    }
}






/* v2 */

/* =====================================================================
   APPEND-LAST · CONTACT-US PAGE + FOOTER SOCIAL ICONS
   Paste this at the very END of styles.css.
   IMPORTANT: delete any earlier "CONTACT-US PAGE" block of mine first —
   an older copy sitting after this one would override it.
   Scoped under body.contact-page, so index.html is untouched.
   ===================================================================== */

/* ---------------------------------------------------------------------
   1 · MAP — full width, directly under the header
   --------------------------------------------------------------------- */
.contact-page .offices-map-section {
    width: 100%;
    padding: 0;
    margin: 0;
    background: #fff;
    border-bottom: 1px solid #eef1f5;
    overflow: hidden;
}

/* aspect ratio ≈ the world map's own, so it fills the width edge-to-edge
   with no letterboxing at any screen size */
.contact-page .offices-map {
    position: relative;
    width: 100%;
    aspect-ratio: 900 / 430;
    min-height: 230px;
}

/* CRITICAL — the global reset (`svg { max-width:100%; height:auto }`)
   collapses the map SVG and renders it tiny. Undo it here only. */
.contact-page .jvm-container svg {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    display: block;
}

.contact-page .jvm-container {
    background: transparent;
    touch-action: auto;
    /* page still scrolls over the map on mobile */
}

/* countries are decoration only — no pointer, no tooltip, no cursor.
   Their outline / highlight colours are set in contact-us.js. */
.contact-page .jvm-region {
    pointer-events: none;
    cursor: default;
}

/* hit-testing is handled by the .cev-hit buttons contact-us.js adds,
   so the SVG pointer circles themselves take no pointer events */
.contact-page .jvm-marker {
    pointer-events: none;
}

/* the pulse rings, tap targets and address card are styled by
   contact-us.js (injected last) so nothing here can override them */

/* graceful message if the map library can't load */
.contact-page .offices-map.is-unavailable {
    aspect-ratio: auto;
    min-height: 0;
    height: auto;
    margin: 24px 6%;
    padding: 40px 20px;
    border: 1px dashed #d7e0e9;
    border-radius: 12px;
    text-align: center;
    color: #9aa8b6;
    font-weight: 600;
}

.contact-page .offices-map.is-unavailable::after {
    content: "Map unavailable — office addresses are listed below.";
}

/* ---------------------------------------------------------------------
   2 · ZOOM BUTTONS
   White chip with a blue glyph — stays readable over the outline map,
   the white ocean and any tinted country.
   --------------------------------------------------------------------- */

/* the library tooltip is fully suppressed; contact-us.js renders .cev-tip */
.contact-page .jvm-tooltip {
    display: none !important;
}

.contact-page .jvm-zoom-btn {
    left: auto;
    right: 16px;
    width: 34px;
    height: 34px;
    line-height: 30px;
    padding: 0;
    text-align: center;
    font-size: 19px;
    font-weight: 700;
    color: var(--blue);
    background: #fff;
    border: 1.5px solid #d9e3f0;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(1, 20, 56, .22);
    transition: background .25s ease, color .25s ease, transform .25s ease;
}

.contact-page .jvm-zoom-btn:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    transform: translateY(-1px);
}

.contact-page .jvm-zoom-btn:active {
    transform: translateY(0);
}

.contact-page .jvm-zoom-btn.jvm-zoomin {
    top: 16px;
}

.contact-page .jvm-zoom-btn.jvm-zoomout {
    top: 58px;
}

/* ---------------------------------------------------------------------
   3 · TITLE + OFFICES + FORM
   --------------------------------------------------------------------- */
.contact-page .offices-section {
    max-width: 1240px;
    margin: 0 auto;
    padding: 56px 6% 90px;
}

.contact-page .offices-head {
    margin-bottom: 42px;
}

.contact-page .offices-head .section-title {
    margin-bottom: 10px;
}

.offices-head-note {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    max-width: 640px;
}

.offices-head-note a {
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(3, 97, 235, .35);
}

.offices-head-note a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.offices-layout {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: start;
}

.form-col-title {
    font-family: var(--font);
    font-size: 22px;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.office-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

/* ---------- office card ---------- */
.office-card {
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 14px;
    padding: 22px 20px 20px;
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.office-card:hover {
    border-color: #c9d8ea;
    box-shadow: 0 12px 30px rgba(1, 20, 56, .07);
    transform: translateY(-2px);
}

.office-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 2px;
}

.office-country {
    font-family: var(--font);
    font-size: 19px;
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1.25;
}

.office-tag {
    display: inline-block;
    background: rgba(3, 97, 235, .08);
    color: var(--blue);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .3px;
    white-space: nowrap;
}

.office-city {
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.office-address {
    font-style: normal;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.75;
    margin-bottom: 12px;
}

.office-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 14px;
    color: var(--charcoal);
    margin-bottom: 18px;
}

.office-contact i {
    color: var(--blue);
    margin-right: 6px;
}

.office-contact a {
    color: var(--charcoal);
    text-decoration: none;
}

.office-contact a:hover {
    color: var(--blue);
}

/* ---------- "View on map" → opens Google Maps ---------- */
.btn-map {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 42px;
    padding: 0 22px;
    border: none;
    border-radius: 999px;
    font-family: var(--font);
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--accent) 0%, var(--blue) 55%, var(--dark) 115%);
    box-shadow: 0 5px 18px rgba(3, 97, 235, .38), inset 0 0 0 1px rgba(255, 255, 255, .12);
    transition: transform .25s ease, box-shadow .25s ease;
}

.btn-map:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(3, 97, 235, .48), inset 0 0 0 1px rgba(255, 255, 255, .18);
}

.btn-map:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* ---------- form column ---------- */
.contact-page .contact-form {
    border-radius: 20px;
    padding: 34px 32px;
}

/* ---------------------------------------------------------------------
   4 · FOOTER SOCIAL ICONS (both index.html and contact-us.html)
   --------------------------------------------------------------------- */
.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .75);
    font-size: 16px;
    text-decoration: none;
    transition: background .28s ease, color .28s ease, transform .28s ease,
        border-color .28s ease, box-shadow .28s ease;
}

.footer-social a:hover {
    color: #fff;
    transform: translateY(-3px);
    border-color: transparent;
}

.footer-social a.s-linkedin:hover {
    background: #0a66c2;
    box-shadow: 0 8px 20px rgba(10, 102, 194, .45);
}

.footer-social a.s-instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
    box-shadow: 0 8px 20px rgba(220, 39, 67, .45);
}

.footer-social a.s-facebook:hover {
    background: #1877f2;
    box-shadow: 0 8px 20px rgba(24, 119, 242, .45);
}

/* X has no brand colour — invert so it stays visible on the dark footer */
.footer-social a.s-x:hover {
    background: #fff;
    color: #0a1628;
    box-shadow: 0 8px 20px rgba(255, 255, 255, .28);
}

.footer-social a.s-whatsapp:hover {
    background: #25d366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, .45);
}

/* ---------------------------------------------------------------------
   5 · RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 1100px) {
    .offices-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .contact-page .offices-map {
        aspect-ratio: 900 / 480;
        min-height: 210px;
    }

    .contact-page .jvm-zoom-btn {
        right: 10px;
        width: 32px;
        height: 32px;
        line-height: 28px;
        font-size: 18px;
    }

    .contact-page .jvm-zoom-btn.jvm-zoomin {
        top: 10px;
    }

    .contact-page .jvm-zoom-btn.jvm-zoomout {
        top: 50px;
    }

    .contact-page .offices-section {
        padding: 40px 5% 64px;
    }

    .contact-page .offices-head {
        margin-bottom: 30px;
    }

    .office-list {
        grid-template-columns: 1fr;
    }

    .contact-page .contact-form {
        padding: 26px 20px;
    }

    .btn-map {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .footer-social {
        justify-content: center;
    }
}



/* countries are decoration only — no pointer, no tooltip, no cursor.
   `non-scaling-stroke` keeps the border at 1 device pixel no matter how
   far you zoom, so adjacent countries' strokes read as one thin line
   instead of a thick double band. */
.contact-page .jvm-region {
    pointer-events: none;
    cursor: default;
    vector-effect: non-scaling-stroke;
    stroke-width: 1px;
    stroke-linejoin: round;
}





/* =====================================================================
   APPEND-LAST · CONTACT PAGE: tighter gutters, wider form,
   corner-ribbon office tags, non-breaking contact rows
   ===================================================================== */

/* ---- tighter side spacing, more usable width ---- */
.contact-page .offices-section {
    max-width: 1400px;
    padding: 56px 4% 90px;
}

/* form column now the wider of the two, as on the home page */
.offices-layout {
    grid-template-columns: 1fr 1.12fr;
    gap: 40px;
}

.contact-page .contact-form {
    padding: 36px 34px;
}

.office-list {
    gap: 16px;
}

/* ---- office card: tag becomes a tucked corner ribbon ---- */
.office-card {
    position: relative;
    overflow: hidden;
    /* clips the ribbon to the rounded corner */
    padding: 22px 20px 20px;
}

.office-card-head {
    display: block;
    /* was flex + wrap — that's what pushed the tag onto its own line */
    margin-bottom: 6px;
    margin-top: 24px;
}

.office-country {
    /* padding-right: 96px; */
    /* keeps long names clear of the ribbon */
    font-size: 18px;
}

.office-tag {
    position: absolute;
    top: 0;
    right: 0;
    padding: 6px 12px 6px 14px;
    background: rgba(3, 97, 235, .09);
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .6px;
    /* text-transform: uppercase; */
    white-space: nowrap;
    /* flush with the card's top-right radius, tucked at bottom-left */
    border-radius: 0 13px 0 12px;
}

/* ---- contact rows: icon stays beside its text ---- */
.office-contact {
    gap: 8px;
    margin-bottom: 18px;
}

.office-contact span {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.office-contact i {
    margin: 0;
    flex-shrink: 0;
    /* was margin-right — the gap handles spacing now */
    position: relative;
    top: 2px;
}

.office-contact a {
    overflow-wrap: anywhere;
    /* long email can't overflow the card */
}

.office-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.office-content {
    flex: 1;
}

.office-footer {
    margin-top: auto;
    padding-top: 20px;
}

.btn-map {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* ---- responsive ---- */
@media (max-width: 1100px) {
    .offices-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .contact-page .offices-section {
        padding: 40px 5% 64px;
    }

    .contact-page .contact-form {
        padding: 26px 20px;
    }

    .office-country {
        padding-right: 75px;
    }

    .office-tag {
        font-size: 14px;
    }
}



/* =====================================================================
   APPEND-LAST · PROCESS ICONS — bare SVG inside the existing circle
   ===================================================================== */

.step-icon {
    width: 52px;
    height: 52px;
    background: #fff;
    border: 1px solid #eef3fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    /* softer than the old 0.35 — the ring is drawn here now, not in the PNG */
    box-shadow:
        0 8px 20px rgba(3, 97, 235, .14),
        0 2px 6px rgba(1, 20, 56, .05);
    transition: box-shadow .3s ease;
}

/* the icon no longer fills the box — a fixed size keeps it razor sharp.
   `max-width: none` is required: the global `img { max-width:100% }`
   reset would otherwise fight the fixed height and squash it. */
.step-icon img {
    width: 28px;
    height: 28px;
    max-width: none;
    object-fit: contain;
    display: block;
}

.step:hover .step-icon {
    box-shadow:
        0 14px 28px rgba(3, 97, 235, .2),
        0 2px 6px rgba(1, 20, 56, .06);
}

/* connector line through the circle's centre: .step padding-top 24 + 26 */
.steps-grid::before {
    top: 50px;
}


#home {
    scroll-margin-top: 88px;
}

#services {
    scroll-margin-top: 10px;
}


/* =====================================================================
   APPEND-LAST · intl-tel-input matched to the contact form
   ===================================================================== */

/* the library ships `.iti { display: inline-block }` — that would shrink
   the phone field out of the form grid */
.iti {
    display: block;
    width: 100%;
}

/* v29 exposes theming via custom properties */
.contact-form .iti {
    --iti-border-color: #e2e8f0;
    --iti-country-selector-bg: #f4f6f8;
    --iti-hover-color: #eef4fb;
    --iti-icon-color: var(--muted);
}

/* the tel input inherits .contact-form input styling; just guarantee width */
.contact-form .iti__tel-input {
    width: 100%;
}

.contact-form .iti__country-list,
.contact-form .iti__search-input {
    font-family: var(--font);
    font-size: 14px;
    color: var(--charcoal);
    background: #fff;
}

.contact-form .iti__search-input {
    padding-left: 30px;
}

.contact-form .iti__country-list {
    border-radius: 10px;
    box-shadow: 0 18px 44px rgba(1, 20, 56, .18);
}

.contact-form .iti__selected-country:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 1px;
}


/* =====================================================================
   APPEND-LAST · footer brand copy + centred motto
   ===================================================================== */

.footer-tagline {
    color: #fff;
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.45;
    margin-top: 18px;
    max-width: 320px;
}

/* the description paragraph sits closer under the tagline */
.footer-brand .footer-tagline+p {
    margin-top: 8px;
    max-width: 340px;
}

/* motto: centred under the copy, with a hairline rule above it */
.footer-motto {
    margin-top: 18px;
    padding-top: 16px;
    max-width: 340px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    text-align: left;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: .6px;
    color: rgba(255, 255, 255, .8);
}

.footer-motto span {
    color: var(--white);
    margin: 0 4px;
    font-weight: 400;
}

@media (max-width: 600px) {

    .footer-tagline,
    .footer-brand .footer-tagline+p,
    .footer-motto {
        max-width: 100%;
    }
}




.presence-section {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    margin: 28px auto 30px;
}

/* .presence-section .section-title {
    margin: 0 0 10px;
    font-size: 23px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #111111;
}

.presence-section .section-title span {
    color: #1456c5;
    font-weight: 300;
} */

.presence-section .section-title {
    margin: 0 0 10px;
    font-size: clamp(28px, 4vw, 44px);
}

.presence-flags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
}

.presence-flags img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    display: block;
    cursor: pointer;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 767px) {

    .presence-section {
        margin: 22px auto 24px;
    }

    /* .presence-section .section-title {
        margin: 0 0 10px;
        font-size: 23px;
        letter-spacing: -0.5px;
    } */
    .presence-section .section-title {
        margin: 0 0 10px;
        font-size: clamp(28px, 4vw, 44px);
    }

    .presence-flags {
        gap: 45px;
    }

    .presence-flags img {
        width: 35px;
        height: 35px;
    }
}



/* map new styles */

/* ============================================================
   CEVOLVE AMCHARTS OFFICE TOOLTIP
   ============================================================ */

.cevolve-map-tooltip {
    width: 340px;
    max-width: 340px;

    padding: 2px 0;

    font-family: Helvetica, Arial, sans-serif;

    color: #011438;

    line-height: 1.5;
}

.cevolve-map-country {
    font-size: 22px;
    font-weight: 800;

    color: #011438;

    margin-bottom: 4px;
}

.cevolve-map-city {
    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1.2px;

    color: #0361eb;

    margin-bottom: 22px;
}

.cevolve-map-address {
    font-size: 16px;

    line-height: 1.6;

    color: #666;

    margin-bottom: 18px;
}

.cevolve-map-contact {
    display: flex;

    flex-direction: column;

    gap: 8px;

    font-size: 15px;
}

.cevolve-map-contact>div {
    display: flex;

    align-items: flex-start;

    gap: 10px;
}

.cevolve-map-contact strong {
    min-width: 48px;

    color: #666;

    font-weight: 700;
}

.cevolve-map-contact span {
    color: #011438;

    word-break: break-word;
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 767px) {

    .cevolve-map-tooltip {
        width: 260px;
        max-width: 260px;
    }

    .cevolve-map-country {
        font-size: 18px;
    }

    .cevolve-map-city {
        font-size: 11px;

        margin-bottom: 16px;
    }

    .cevolve-map-address {
        font-size: 14px;
    }

    .cevolve-map-contact {
        font-size: 13px;
    }

}





/* ================================================================
   AMCHARTS CONTACT MAP
   ================================================================ */

.contact-page .offices-map {
    position: relative;
    overflow: visible;
}

/* amCharts root must fill the existing map area */
/* Removed: `.offices-map > div { width/height:100% !important; }`.
   That amCharts-only rule overrides Leaflet's map and control panes. */

/* Remove old jsVectorMap-specific styling */
.contact-page .jvm-zoom-btn,
.contact-page .jvm-region,
.contact-page .jvm-marker,
.contact-page .jvm-container {
    /* no longer used by amCharts */
}


/* ================================================================
   AMCHARTS OFFICE TOOLTIP
   ================================================================ */

.cevolve-map-card {
    width: 350px;
    max-width: calc(100vw - 40px);
    padding: 22px 24px;
    font-family: var(--font, Arial, sans-serif);
    background: #fff;
    color: #011438;
}

.cevolve-map-card-country {
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 6px;
}

.cevolve-map-card-city {
    color: #0361eb;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.cevolve-map-card-city span {
    margin: 0 5px;
}

.cevolve-map-card-address {
    color: #666;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 18px;
}

.cevolve-tip-line {
    margin: 0;
}

.cevolve-map-card-contact {
    border-top: 1px solid #edf1f5;
    padding-top: 14px;
}

.cevolve-map-card-contact>div {
    display: flex;
    gap: 10px;
    margin-top: 7px;
    font-size: 14px;
    line-height: 1.5;
}

.cevolve-map-card-contact strong {
    min-width: 48px;
    color: #011438;
}

.cevolve-map-card-contact span {
    color: #4f5965;
    overflow-wrap: anywhere;
}


/* ================================================================
   MOBILE TOOLTIP
   ================================================================ */

@media (max-width: 767px) {

    .cevolve-map-card {
        width: 290px;
        padding: 18px;
    }

    .cevolve-map-card-country {
        font-size: 17px;
    }

    .cevolve-map-card-address {
        font-size: 13px;
    }

    .cevolve-map-card-contact>div {
        font-size: 13px;
    }

}




/* =========================================================
   CEvolve Offices Map - Leaflet
   ========================================================= */

.contact-page .offices-map-section {
    position: relative;
    width: 100%;
    background: #ffffff;
}

.contact-page .offices-map {
    width: 100%;
    height: 550px;
    position: relative;
    background: #ffffff;
}

/* Leaflet map must have an actual height */
#worldMap {
    width: 100%;
    height: 550px;
    background: #ffffff;
}

/* Zoom buttons */
.leaflet-top.leaflet-right {
    top: 15px;
    right: 15px;
}

.leaflet-control-zoom {
    border: none !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
    border-radius: 8px !important;
    overflow: hidden;
}

.leaflet-control-zoom a {
    width: 34px !important;
    height: 34px !important;
    line-height: 34px !important;
    color: #011438 !important;
    background: #ffffff !important;
    border: none !important;
    border-bottom: 1px solid #edf1f5 !important;
}

.leaflet-control-zoom a:hover {
    background: #f5f8fc !important;
}

/* Remove default Leaflet marker shadow */
.custom-pin-wrapper {
    background: transparent !important;
    border: none !important;
}

/* =========================================================
   CUSTOM LOCATION POINTER
   ========================================================= */

.custom-pin-container {
    position: relative;
    width: 26px;
    height: 26px;
    cursor: pointer;
}

.pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 26px;
    height: 26px;
    background: rgba(3, 97, 235, 0.35);
    border-radius: 50%;
    animation: leaflet-pulse 1.8s infinite ease-out;
}

.pin-dot {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 14px;
    height: 14px;
    background: #0361eb;
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(1, 20, 56, 0.3);
}

@keyframes leaflet-pulse {
    0% {
        transform: scale(0.6);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* =========================================================
   TOOLTIP
   ========================================================= */

.leaflet-tooltip.cev-am-tooltip-override {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
    display: none !important;
}

.cev-am-tip {
    width: 300px;
    max-width: calc(100vw - 32px);
    padding: 16px 18px;

    font-family: Helvetica, Arial, sans-serif;

    background: #ffffff;
    color: #011438;

    border-radius: 8px;

    box-shadow:
        0 10px 25px rgba(1, 20, 56, 0.18);

    text-align: left;
}

.cev-am-tip-country {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;

    color: #011438;

    margin-bottom: 4px;
}

.cev-am-tip-city {
    color: #0361eb;

    font-size: 12px;
    line-height: 1.45;

    font-weight: 800;

    letter-spacing: 0.8px;

    text-transform: uppercase;

    margin-bottom: 10px;
}

.cev-am-tip-address {
    color: #5f6772;

    font-size: 13px;
    line-height: 1.5;

    margin-bottom: 10px;
}

.cev-am-tip-contact {
    padding-top: 10px;

    border-top: 1px solid #edf1f5;
}

.cev-am-tip-contact>div {
    display: flex;

    gap: 10px;

    margin-top: 4px;

    font-size: 12px;
    line-height: 1.5;
}

.cev-am-tip-contact strong {
    min-width: 44px;
    color: #011438;
}

.cev-am-tip-contact span {
    color: #4f5965;
    word-break: break-word;
}

/* Mobile */
@media (max-width: 767px) {

    .contact-page .offices-map,
    #worldMap {
        height: 400px;
    }

    .cev-am-tip {
        width: 250px;
        padding: 14px;
    }
}



/* =========================================================
   CEvolve Offices Map - Leaflet
   ========================================================= */

.contact-page .offices-map-section {
    position: relative;
    width: 100%;
    background: #ffffff;
}

.contact-page .offices-map {
    width: 100%;
    height: 550px;
    position: relative;
    background: #ffffff;
}

/* Leaflet map must have an actual height */
#worldMap {
    width: 100%;
    height: 550px;
    background: #ffffff;
}

/* Zoom buttons */
.leaflet-top.leaflet-right {
    top: 15px;
    right: 15px;
}

.leaflet-control-zoom {
    border: none !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
    border-radius: 8px !important;
    overflow: hidden;
}

.leaflet-control-zoom a {
    width: 34px !important;
    height: 34px !important;
    line-height: 34px !important;
    color: #011438 !important;
    background: #ffffff !important;
    border: none !important;
    border-bottom: 1px solid #edf1f5 !important;
}

.leaflet-control-zoom a:hover {
    background: #f5f8fc !important;
}

/* Remove default Leaflet marker shadow */
.custom-pin-wrapper {
    background: transparent !important;
    border: none !important;
}

/* =========================================================
   CUSTOM LOCATION POINTER
   ========================================================= */

.custom-pin-container {
    position: relative;
    width: 26px;
    height: 26px;
    cursor: pointer;
}

.pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 26px;
    height: 26px;
    background: rgba(3, 97, 235, 0.35);
    border-radius: 50%;
    animation: leaflet-pulse 1.8s infinite ease-out;
}

.pin-dot {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 14px;
    height: 14px;
    background: #0361eb;
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(1, 20, 56, 0.3);
}

@keyframes leaflet-pulse {
    0% {
        transform: scale(0.6);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* =========================================================
   TOOLTIP
   ========================================================= */

.leaflet-tooltip.cev-am-tooltip-override {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
    display: none !important;
}

.cev-am-tip {
    width: 300px;
    max-width: calc(100vw - 32px);
    padding: 16px 18px;

    font-family: Helvetica, Arial, sans-serif;

    background: #ffffff;
    color: #011438;

    border-radius: 8px;

    box-shadow:
        0 10px 25px rgba(1, 20, 56, 0.18);

    text-align: left;
}

.cev-am-tip-country {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;

    color: #011438;

    margin-bottom: 4px;
}

.cev-am-tip-city {
    color: #0361eb;

    font-size: 12px;
    line-height: 1.45;

    font-weight: 800;

    letter-spacing: 0.8px;

    text-transform: uppercase;

    margin-bottom: 10px;
}

.cev-am-tip-address {
    color: #5f6772;

    font-size: 13px;
    line-height: 1.5;

    margin-bottom: 10px;
}

.cev-am-tip-contact {
    padding-top: 10px;

    border-top: 1px solid #edf1f5;
}

.cev-am-tip-contact>div {
    display: flex;

    gap: 10px;

    margin-top: 4px;

    font-size: 12px;
    line-height: 1.5;
}

.cev-am-tip-contact strong {
    min-width: 44px;
    color: #011438;
}

.cev-am-tip-contact span {
    color: #4f5965;
    word-break: break-word;
}

/* Mobile */
@media (max-width: 767px) {

    .contact-page .offices-map,
    #worldMap {
        height: 400px;
    }

    .cev-am-tip {
        width: 250px;
        padding: 14px;
    }
}

/* Cevolve contact-page Leaflet map; load after styles.css. */
.contact-page .offices-map-section {
    position: relative;
    width: 100%;
    background: #fff;
}

.contact-page .offices-map {
    width: 100%;
    height: 550px;
    position: relative;
    background: #fff;
    overflow: hidden;
}

.contact-page .offices-map .leaflet-container {
    font-family: var(--font, Helvetica, Arial, sans-serif);
}

.leaflet-top.leaflet-right {
    top: 15px;
    right: 15px;
}

.leaflet-control-zoom {
    border: 0 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08) !important;
    border-radius: 8px !important;
    overflow: hidden;
}

.leaflet-control-zoom a {
    width: 34px !important;
    height: 34px !important;
    line-height: 34px !important;
    color: var(--charcoal, #011438) !important;
    background: #fff !important;
    border: 0 !important;
    border-bottom: 1px solid #edf1f5 !important;
}

.leaflet-control-zoom a:hover {
    background: #f5f8fc !important;
}

.custom-pin-wrapper {
    background: transparent !important;
    border: 0 !important;
}

.custom-pin-container {
    position: relative;
    width: 26px;
    height: 26px;
    cursor: pointer;
}

.pulse-ring {
    position: absolute;
    inset: 0;
    width: 26px;
    height: 26px;
    background: rgba(3, 97, 235, .35);
    border-radius: 50%;
    animation: leaflet-pulse 1.8s infinite ease-out;
}

.pin-dot {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 14px;
    height: 14px;
    background: var(--blue, #0361eb);
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(1, 20, 56, .3);
}

@keyframes leaflet-pulse {
    from {
        transform: scale(.6);
        opacity: .8;
    }

    to {
        transform: scale(2.2);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pulse-ring {
        animation: none;
        display: none;
    }
}

.leaflet-tooltip.cev-office-tooltip {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.leaflet-tooltip.cev-office-tooltip::before {
    display: none !important;
}

.cev-am-tip {
    width: 300px;
    max-width: calc(100vw - 32px);
    padding: 16px 18px;
    font-family: var(--font, Helvetica, Arial, sans-serif);
    background: #fff;
    color: var(--charcoal, #011438);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(1, 20, 56, .18);
    text-align: left;
}

.cev-am-tip-country {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 4px;
}

.cev-am-tip-city {
    color: var(--blue, #0361eb);
    font-size: 12px;
    line-height: 1.45;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.cev-am-tip-address {
    color: #5f6772;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.cev-am-tip-contact {
    padding-top: 10px;
    border-top: 1px solid #edf1f5;
}

.cev-am-tip-contact>div {
    display: flex;
    gap: 10px;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.5;
}

.cev-am-tip-contact strong {
    min-width: 44px;
    color: var(--charcoal, #011438);
}

.cev-am-tip-contact span {
    color: #4f5965;
    overflow-wrap: anywhere;
}

@media (max-width: 767px) {
    .contact-page .offices-map {
        height: 400px;
    }

    .cev-am-tip {
        width: 250px;
        padding: 14px;
    }
}

/* Small Indian sub-location name */
.leaflet-tooltip.cev-location-name-tooltip {
    padding: 6px 10px !important;
    background: #011438 !important;
    color: #ffffff !important;
    border: 0 !important;
    border-radius: 6px !important;
    box-shadow: 0 5px 15px rgba(1, 20, 56, 0.2) !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    z-index: 1200 !important;
}

.leaflet-tooltip.cev-location-name-tooltip::before {
    display: none !important;
}

/* Increase contact-person icon size */
.leaflet-tooltip .cev-am-tip-person i,
.office-contact .office-person i {
    width: 18px;
    flex: 0 0 18px;
    font-size: 18px !important;
    line-height: 1;
    color: #0361eb;
}


/* Keep office tooltip inside the visible map/screen */
.leaflet-tooltip.cev-office-tooltip {
    max-width: calc(100vw - 24px) !important;
    white-space: normal !important;
}

.leaflet-tooltip.cev-office-tooltip .cev-am-tip {
    max-width: calc(100vw - 32px) !important;
}

/* =====================================================================
   FINAL CONTACT-PAGE LEAFLET LAYER
   One source of truth for map sizing, controls, pointers and scrollbar.
   ===================================================================== */

body.contact-page>header {
    position: sticky;
    top: 0;
    z-index: 5000 !important;
    background: #ffffff;
}

body.contact-page>.offices-map-section {
    position: relative;
    width: 100%;
    height: 550px;
    min-height: 550px;
    max-height: 550px;
    margin: 0;
    padding: 0;
    z-index: 0;
    isolation: isolate;
    contain: layout paint;
    overflow: hidden;
    overflow-anchor: none;
    background: #ffffff;
}

.contact-page #worldMap.offices-map,
.contact-page #worldMap.leaflet-container {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: 100% !important;
    aspect-ratio: auto !important;
    overflow: hidden !important;
    overflow-anchor: none;
    background: #ffffff;
}

/* Never apply the site's responsive media sizing to Leaflet's internal
   transformed vector layer. */
.contact-page #worldMap svg,
.contact-page #worldMap canvas,
.contact-page #worldMap .leaflet-zoom-animated {
    max-width: none !important;
    max-height: none !important;
}

/* The generated control container is a separate overlay. It is not inside
   .leaflet-map-pane and therefore never moves when the map zooms. */
.contact-page #worldMap .leaflet-control-container {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1000 !important;
    pointer-events: none !important;
}

.contact-page #worldMap .leaflet-top.leaflet-right {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    bottom: auto !important;
    left: auto !important;
    width: 34px !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 1001 !important;
    transform: none !important;
    transition: none !important;
    pointer-events: auto !important;
}

.contact-page #worldMap .leaflet-control-zoom,
.contact-page #worldMap .leaflet-control-zoom:hover,
.contact-page #worldMap .leaflet-control-zoom:focus-within,
.contact-page #worldMap .leaflet-control-zoom:active {
    position: static !important;
    float: none !important;
    display: block !important;
    width: 34px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(1, 20, 56, 0.12) !important;
    transform: none !important;
    transition: none !important;
    pointer-events: auto !important;
}

.contact-page #worldMap .leaflet-control-zoom a,
.contact-page #worldMap .leaflet-control-zoom a:hover,
.contact-page #worldMap .leaflet-control-zoom a:focus,
.contact-page #worldMap .leaflet-control-zoom a:active {
    position: static !important;
    display: block !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 34px !important;
    text-align: center !important;
    font-family: Arial, sans-serif !important;
    font-size: 22px !important;
    font-weight: 400 !important;
    color: #011438 !important;
    background: #ffffff !important;
    border: 0 !important;
    border-bottom: 1px solid #edf1f5 !important;
    border-radius: 0 !important;
    outline-offset: -2px;
    text-decoration: none !important;
    transform: none !important;
    transition: none !important;
    touch-action: manipulation;
}

.contact-page #worldMap .leaflet-control-zoom a:last-child {
    border-bottom: 0 !important;
}

.contact-page #worldMap .leaflet-control-zoom a:hover,
.contact-page #worldMap .leaflet-control-zoom a:focus-visible {
    color: #0361eb !important;
    background: #f5f8fc !important;
}

/* Old manually generated controls are intentionally disabled. */
.contact-page #worldMap .cev-map-zoom,
.contact-page #worldMap .jvm-zoom-btn {
    display: none !important;
}

/* Keep office details above pointers but inside the clipped map. */
.contact-page #worldMap .leaflet-marker-pane {
    z-index: 600 !important;
}

.contact-page #worldMap .leaflet-tooltip-pane {
    z-index: 1100 !important;
}

.contact-page #worldMap .leaflet-tooltip.cev-office-tooltip {
    z-index: 1101 !important;
}

.contact-page #worldMap .cev-am-tip {
    position: relative;
    z-index: 1102 !important;
}

/* Decorative ripple is a separate non-interactive marker. */
.contact-page #worldMap .office-pulse-wrapper {
    width: 26px !important;
    height: 26px !important;
    border: 0 !important;
    background: transparent !important;
    pointer-events: none !important;
}

.contact-page #worldMap .office-pulse-ring {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(3, 97, 235, 0.35);
    animation: leaflet-pulse 1.8s infinite ease-out;
    pointer-events: none !important;
}

.contact-page #worldMap .office-dot-wrapper {
    width: 14px !important;
    height: 14px !important;
    border: 0 !important;
    background: transparent !important;
    cursor: pointer;
    pointer-events: auto !important;
}

.contact-page #worldMap .office-pin-dot {
    width: 14px;
    height: 14px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: #0361eb;
    box-shadow: 0 2px 6px rgba(1, 20, 56, 0.3);
    cursor: pointer;
    pointer-events: auto !important;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* The large mobile hit area stays invisible and never receives the browser's
   rectangular SVG focus outline. The selected location uses the round ring. */
/* Leaflet/browser focus on an SVG path creates the square shown around a
   tapped circle marker. Remove it from every interactive map path. */
.contact-page #worldMap .leaflet-interactive,
.contact-page #worldMap .leaflet-interactive:focus,
.contact-page #worldMap .leaflet-interactive:focus-visible,
.contact-page #worldMap .cev-sub-location-touch-target,
.contact-page #worldMap .cev-sub-location-touch-target:focus,
.contact-page #worldMap .cev-sub-location-touch-target:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    filter: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

.contact-page #worldMap .cev-sub-location-touch-target {
    stroke: transparent !important;
}

.office-contact a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
}

.office-contact a[href^="tel:"]:hover {
    color: #0361eb;
    text-decoration: underline;
}

@media (max-width: 767px) {
    body.contact-page>.offices-map-section {
        height: 400px;
        min-height: 400px;
        max-height: 400px;
    }

    .contact-page #worldMap .leaflet-top.leaflet-right {
        top: 10px !important;
        right: 10px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-page #worldMap .office-pulse-ring {
        animation: none;
        opacity: 0;
    }
}

/* Desktop page scrollbar in Cevolve blue. */
@media (min-width: 768px) {
    html {
        color-scheme: light;
        scrollbar-gutter: stable;
        scrollbar-width: thin;
        scrollbar-color: #0361eb #f1f1f1;
    }

    html::-webkit-scrollbar {
        width: 8px;
    }

    html::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    html::-webkit-scrollbar-thumb {
        min-height: 40px;
        background: #0361eb;
        border-radius: 8px;
    }

    html::-webkit-scrollbar-thumb:hover {
        background: #002a61;
    }
}



/* Uniform anchor position and spacing for every section */
#services,
#about,
#process,
#team,
#clients,
#testimonials,
#contact {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
    scroll-margin-top: 16px;
}

@media (max-width: 767px) {

    #services,
    #about,
    #process,
    #team,
    #clients,
    #testimonials,
    #contact {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
        scroll-margin-top: 40px;
    }
}