/* =========================================================
   Tectignis â€“ custom overrides (header + hero)
   Loaded after style.css so these rules win.
   ========================================================= */

/* ---------- Brand typography (from design mockup) ----------
   Headings use Poppins (geometric display); body keeps Inter. */
h1, h2, h3, h4, h5, h6,
.heading,
.breadcrumb-title,
.section-title,
.svc-section-title,
.svc-hero__title,
.header-top-btn,
.btn,
.ht-btn {
    font-family: 'Poppins', 'Inter', ui-sans-serif, system-ui, sans-serif;
}

h1, h2, h3, h4, h5, h6,
.heading {
    letter-spacing: -0.01em;
}

/* ---------- Light header theme ----------
   The whole header â€” top utility bar and the main navigation â€” sits on a
   white background with the dark wordmark, dark menu text and magenta
   accents. Covers the JS sticky state too. */
.header-area--default {
    background-color: #ffffff;
    border-color: #E5E7EB;
    box-shadow: 0 1px 0 #E5E7EB, 0 8px 24px rgba(15, 23, 42, 0.06);
}

.header-top-wrap.border-bottom {
    background-color: #ffffff;
    border-color: #E5E7EB !important;
}

.header-bottom-wrap {
    background-color: #ffffff;
}

/* Sticky header */
.header-area .is-sticky,
.header-area .header-bottom-wrap.is-sticky {
    background-color: #ffffff !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
}

/* ---------- Header top bar ---------- */
.header-top-wrap .header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 7px 0;
}

.header-top-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-top-info li {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.4;
}

.header-top-info li i {
    color: #19587F;
    margin-right: 6px;
}

.header-top-info a {
    color: #6B7280;
    transition: color 0.2s;
}

.header-top-info a:hover {
    color: #374151;
}

/* ---------- Main navigation: dark text on white ---------- */
.navigation-menu > ul > li > a,
.navigation-menu > ul > li > a span {
    color: #374151;
}

.navigation-menu > ul > li.has-children > a:after {
    color: #9aa0ad;
}

.navigation-menu > ul > li:hover > a span,
.navigation-menu > ul > li.active > a span,
.navigation-menu > ul > li:hover > a:after,
.navigation-menu > ul > li.active > a:after {
    color: #2C73A0;
}

/* Brighten the active/hover underline so it reads on the dark bar */
.navigation-menu > ul > li > a:before {
    background-color: #19587F;
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.header-top-btn {
    display: inline-block;
    background: #19587F;
    color: #fff !important;
    padding: 7px 22px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s;
}

.header-top-btn:hover {
    background: #124A66;
    color: #fff !important;
}

@media only screen and (max-width: 991px) {
    .header-top-wrap .header-top-inner {
        justify-content: center;
        text-align: center;
    }
    .header-top-right .header-top-info {
        display: none;
    }
}

@media only screen and (max-width: 575px) {
    .header-top-left .header-top-info li.d-sm-hide {
        display: none;
    }
}

/* ---------- Mega menu: service categories + CTA row ----------
   One column per live service category (driven by the admin). The columns
   are laid out as a fixed N-column grid (N = --cap-count, set in the markup)
   so every category stays on a single row and never wraps to a second line,
   which would break the responsive layout. Columns shrink to fit and their
   link text wraps when the viewport gets narrow. */
.navigation-menu > ul > li .megamenu.megamenu--mega.megamenu--services {
    display: grid;
    grid-template-columns: repeat(var(--cap-count, 4), minmax(0, 1fr));
    gap: 0 28px;
    min-width: 0;
}

.megamenu--services > li {
    min-width: 0;
    max-width: none;
    /* Grid `gap` controls column spacing; drop the theme's per-column padding. */
    padding-left: 0;
    padding-right: 0;
}

.megamenu--services > li .page-list-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.megamenu--services > li .page-list-title > a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.megamenu--services > li .cap-title-icon {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, #19587F 0%, #0F766E 100%);
    padding: 6px;
}

.megamenu--services > li .cap-title-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.megamenu--services > li > ul > li > a {
    padding: 7px 0;
    font-size: 13.5px;
}

/* CTA row inside the mega menu: span every column on its own row below. */
.megamenu--services > li.megamenu-cta-row {
    grid-column: 1 / -1;
    max-width: 100%;
    margin-top: 18px;
    padding: 0 15px;
}

.megamenu-cta {
    display: flex;
    gap: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.megamenu-cta-box {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    background: #faf6fb;
    border: 1px solid #E2EEF2;
    border-radius: 8px;
    padding: 16px 20px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.megamenu-cta-box:hover {
    box-shadow: 0 8px 20px rgba(25, 88, 127, 0.12);
    transform: translateY(-2px);
}

.megamenu-cta-box .cta-icon {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #19587F;
    color: #fff;
    font-size: 18px;
}

.megamenu-cta-box h6 {
    margin: 0 0 2px;
    font-size: 15px;
    color: #1a1a3d;
}

.megamenu-cta-box span {
    font-size: 13px;
    color: #6b6b7b;
}

/* =========================================================
   Navbar dropdowns â€“ stable hover + content-sized panels
   Replaces the old translate/slide reveal that jittered and
   the fixed-width slab that left big empty gaps.
   ========================================================= */

/* A wide panel that extends past the viewport edge used to spawn a
   horizontal scrollbar; the scrollbar flipping on/off reflowed the page
   and made the menu flicker. Clip the overflow so that can never happen.
   (The sticky header is JS `position: fixed`, so clip does not affect it.) */
html,
body {
    overflow-x: clip;
}

/* Anchor each compact dropdown under its own menu item. The wide mega panel
   is excluded so it keeps the full-width header as its positioning context
   and can be centered on the page (see the .megamenu--services rule below). */
.navigation-menu > ul > li.has-children:not(:has(.megamenu--services)) {
    position: relative;
}

/* Base panel: instant, opacity-only reveal â€” no sliding transform and no
   transition-delay (those were the source of the "lag then snap" feel). */
.navigation-menu > ul > li .megamenu {
    top: 100%;
    left: 0;
    transform: none;
    width: auto;
    min-width: 0;
    transition: opacity 0.15s ease, visibility 0.15s ease;
    transition-delay: 0s;
}

.navigation-menu > ul > li.has-children:hover .megamenu {
    transform: none;
    width: auto;
}

/* Compact single-column menus (Solutions, Industries, Resources):
   sized to their content instead of a 980px slab. */
.navigation-menu > ul > li .megamenu--mega:not(.megamenu--services) {
    display: block;
    min-width: 230px;
    padding: 16px 12px;
}

.navigation-menu > ul > li .megamenu--mega:not(.megamenu--services) > li {
    flex-basis: auto;
    max-width: none;
    padding-left: 8px;
    padding-right: 8px;
}

/* Wide Capabilities mega panel: keep the multi-column grid but center it
   under the bar and clamp it inside the viewport so it cannot overflow. */
.navigation-menu > ul > li .megamenu.megamenu--services,
.navigation-menu > ul > li.has-children:hover .megamenu.megamenu--services {
    left: 50%;
    transform: translateX(-50%);
    min-width: 0;
    width: max-content;
    max-width: calc(100vw - 40px);
}

/* Mobile capabilities sub-menu: category captions between service links */
.offcanvas-navigation .sub-menu .mobile-sub-heading {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    padding: 12px 0 4px;
    border: 0;
}

.offcanvas-navigation .sub-menu .mobile-sub-heading:first-child {
    padding-top: 0;
}

/* ---------- Hero fix (was a broken 120px heading) ---------- */
.software-innovation-hero-wrapper {
    background: linear-gradient(120deg, #EAF2F7 0%, #EAF2F7 100%);
}

.software-innovation-hero-text h1 {
    color: #1a1a3d;
    font-size: 46px;
    line-height: 1.22;
    font-weight: 700;
    margin-bottom: 18px;
}

.software-innovation-hero-text h1 .text-color-primary {
    color: #19587F;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .software-innovation-hero-text h1 {
        font-size: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .software-innovation-hero-text h1 {
        font-size: 34px;
        line-height: 1.25;
    }
}

@media only screen and (max-width: 767px) {
    .software-innovation-hero-text h1 {
        font-size: 28px;
        line-height: 1.3;
    }
}

.software-innovation-hero-text .info-heading {
    margin-top: 16px;
}

/* Keep the hero illustration inside its column */
.software-innovation-hero-image {
    margin-left: 0;
    margin-right: 0;
}

@media only screen and (min-width: 992px) {
    .software-innovation-hero-image {
        margin-left: 10px;
    }
}

.software-innovation-hero-text .hero-button .ht-btn {
    margin-bottom: 10px;
}

/* =========================================================
   Service detail page â€“ redesigned sections (scoped `.svc-`)
   These classes are used only by resources/views/components/
   public/service/* so they never affect other pages.
   ========================================================= */
:root {
    --svc-primary: #19587F;
    --svc-accent: #2C73A0;
    --svc-dark: #14132e;
    --svc-navy: #0c0a26;
    --svc-body: #5b5b72;
    --svc-line: #ececf3;
    --svc-soft: #faf6fb;
}

/* ---------- Shared building blocks ---------- */
.svc-section {
    padding: 55px 0;
}


.svc-section-head {
    max-width: 720px;
    margin: 0 auto 36px;
}

.svc-section-head.text-left {
    margin-left: 0;
}

.svc-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--svc-primary);
    background: rgba(25, 88, 127, 0.08);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.svc-eyebrow--light {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
}

.svc-section-title {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--svc-dark);
    margin: 0;
}

.svc-accent {
    color: var(--svc-primary);
}

/* ---------- Buttons ---------- */
.svc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    padding: 15px 30px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
    cursor: pointer;
}

.svc-btn--primary {
    background: var(--svc-primary);
    color: #fff;
    box-shadow: 0 10px 24px rgba(25, 88, 127, 0.28);
}

.svc-btn--primary:hover {
    background: #124A66;
    color: #fff;
    transform: translateY(-2px);
}

.svc-btn--ghost {
    background: transparent;
    color: var(--svc-dark);
    border-color: rgba(20, 19, 46, 0.18);
}

.svc-btn--ghost:hover {
    border-color: var(--svc-primary);
    color: var(--svc-primary);
    transform: translateY(-2px);
}

.svc-btn--white {
    background: #fff;
    color: var(--svc-primary);
}

.svc-btn--white:hover {
    background: var(--svc-dark);
    color: #fff;
    transform: translateY(-2px);
}

.svc-btn--block {
    width: 100%;
}

/* ---------- Hero ---------- */
.svc-hero {
    position: relative;
    overflow: hidden;
    padding: 40px 0 80px;
    background: linear-gradient(120deg, #EAF2F7 0%, #EAF2F7 100%);
}

.svc-hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.35;
    z-index: 0;
}

.svc-hero__blob--1 {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -120px;
    background: radial-gradient(circle, rgba(44, 115, 160, 0.35), transparent 70%);
}

.svc-hero__blob--2 {
    width: 320px;
    height: 320px;
    bottom: -120px;
    left: -80px;
    background: radial-gradient(circle, rgba(15, 118, 110, 0.25), transparent 70%);
}

.svc-hero .container {
    position: relative;
    z-index: 1;
}

.svc-hero__title {
    font-size: 46px;
    line-height: 1.18;
    font-weight: 800;
    color: var(--svc-dark);
    margin: 0 0 18px;
}

.svc-hero__intro {
    font-size: 17px;
    line-height: 1.7;
    color: var(--svc-body);
    margin-bottom: 30px;
    max-width: 540px;
}

.svc-hero__bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: grid;
    gap: 12px;
    max-width: 540px;
}

.svc-hero__bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    line-height: 1.5;
    color: var(--svc-body);
}

.svc-hero__bullets i {
    color: var(--svc-primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.svc-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 42px;
}

.svc-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.svc-stat {
    flex: 1 1 0;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.svc-stat__top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.svc-stat__icon {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 15px;
    color: #fff;
    background: linear-gradient(135deg, var(--svc-primary) 0%, #0F766E 100%);
    box-shadow: 0 6px 14px rgba(25, 88, 127, 0.25);
}

.svc-stat__value {
    font-size: 20px;
    font-weight: 800;
    color: var(--svc-dark);
    line-height: 1.1;
}

.svc-stat__label {
    font-size: 12.5px;
    line-height: 1.3;
    color: var(--svc-body);
}

.svc-hero__media {
    position: relative;
}

.svc-hero__image-frame {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(20, 19, 46, 0.18);
}

.svc-hero__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
}

.svc-hero__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    font-size: 80px;
    color: #fff;
    background: linear-gradient(135deg, var(--svc-primary) 0%, #0F766E 100%);
}

/* ---------- Sub-services (rectangle cards) ---------- */
.svc-sub-services {
    padding-top: 50px;
}

/* Heading + eyebrow on a single row, compact spacing. */
.svc-sub-services .svc-section-head {
    /*max-width: none;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-bottom: 40px;
}

.svc-sub-services .svc-section-head .svc-section-title {
    margin: 0;
}

.svc-sub-services .svc-section-head .svc-eyebrow {
    margin-bottom: 0;
}

.svc-sub-services__grid {
    row-gap: 24px;
}

.svc-rect-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    height: 100%;
    background: #fff;
    border: 1px solid var(--svc-line);
    border-radius: 14px;
    padding: 24px 16px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.svc-rect-card:hover {
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: 0 18px 40px rgba(20, 19, 46, 0.1);
}

.svc-rect-card__icon {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 22px;
    color: var(--svc-primary);
    background: rgba(25, 88, 127, 0.08);
    transition: background 0.25s, color 0.25s;
}

.svc-rect-card:hover .svc-rect-card__icon {
    background: var(--svc-primary);
    color: #fff;
}

.svc-rect-card__icon img {
    max-width: 30px;
    max-height: 30px;
    object-fit: contain;
}

.svc-rect-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--svc-dark);
    margin: 0 0 6px;
}

.svc-rect-card__text {
    font-size: 13px;
    line-height: 1.55;
    color: var(--svc-body);
    margin: 0;
}

/* ---------- Process ---------- */
.svc-process {
    background: var(--svc-soft);
}

.svc-process__intro {
    padding-bottom: 45px;
}

.svc-process__lead {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--svc-body);
    margin: 18px 0 28px;
}

.svc-process__steps .row {
    row-gap: 30px;
    --bs-gutter-x: 0;
}

.svc-step {
    position: relative;
    height: 100%;
    text-align: center;
    padding: 0 10px;
}

/* Connecting line that runs through the row of circles. The white circle
   background masks the line within each icon, so it reads as a journey. */
.svc-step::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--svc-line);
    z-index: 0;
}

.svc-process__steps .col:first-child .svc-step::before {
    left: 50%;
}

.svc-process__steps .col:last-child .svc-step::before {
    right: 50%;
}

.svc-step__icon {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(25, 88, 127, 0.25);
    font-size: 22px;
    color: var(--svc-primary);
    background: #fff;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.svc-step:hover .svc-step__icon {
    border-color: var(--svc-primary);
    box-shadow: 0 10px 24px rgba(25, 88, 127, 0.18);
}

.svc-step__icon img {
    max-width: 26px;
    max-height: 26px;
    object-fit: contain;
}

.svc-step__num {
    display: block;
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
    color: var(--svc-primary);
    margin-bottom: 8px;
}

.svc-step__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--svc-dark);
    margin: 0 0 8px;
}

.svc-step__text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--svc-body);
    margin: 0;
}

/* ---------- Technologies ---------- */
.svc-tech__grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 14px;
}

@media (max-width: 1199px) {
    .svc-tech__grid { grid-template-columns: repeat(8, 1fr); }
}

@media (max-width: 767px) {
    .svc-tech__grid { grid-template-columns: repeat(5, 1fr); }
}

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

.svc-tech-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: #fff;
    border-radius: 12px;
    padding: 16px 8px;
    box-shadow: 0 6px 20px rgba(20, 19, 46, 0.07);
    transition: transform 0.25s, box-shadow 0.25s;
    min-width: 0;
}

.svc-tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(25, 88, 127, 0.15);
}

.svc-tech-card__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
    min-height: 48px;
}

.svc-tech-card__logo {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.svc-tech-card__fallback {
    font-size: 28px;
    color: var(--svc-primary);
    line-height: 1;
}

.svc-tech-card__name {
    font-size: 11px;
    font-weight: 600;
    color: var(--svc-dark);
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* ---------- Industries ---------- */
.svc-industries {
    background: var(--svc-soft);
}

.svc-industries__grid {
    row-gap: 26px;
}

.svc-industries__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    height: 100%;
    background: #fff;
    border-radius: 14px;
    padding: 22px 14px;
    box-shadow: 0 10px 30px rgba(20, 19, 46, 0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}

.svc-industries__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(20, 19, 46, 0.1);
}

.svc-industries__icon {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--svc-primary) 0%, #0F766E 100%);
}

.svc-industries__title {
    font-size: 13px;
    font-weight: 700;
    color: var(--svc-dark);
    margin: 0;
    line-height: 1.3;
}

.svc-industries__card:hover .svc-industries__title {
    color: var(--svc-primary);
}

/* ---------- Why choose ---------- */
.svc-why {
    background: var(--svc-soft);
}

.svc-why__grid {
    row-gap: 26px;
}

.svc-why-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    height: 100%;
    background: #fff;
    border-radius: 14px;
    padding: 22px 14px;
    box-shadow: 0 10px 30px rgba(20, 19, 46, 0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}

.svc-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(20, 19, 46, 0.1);
}

.svc-why-card__icon {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--svc-primary) 0%, #0F766E 100%);
}

.svc-why-card__icon img {
    max-width: 28px;
    max-height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.svc-why-card__title {
    font-size: 13px;
    font-weight: 700;
    color: var(--svc-dark);
    margin: 0 0 4px;
    line-height: 1.3;
}

.svc-why-card__text {
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--svc-body);
    margin: 0;
}

/* ---------- Case studies ---------- */
.svc-cases__head {
    margin-bottom: 46px;
}

.svc-cases__lead {
    font-size: 16px;
    line-height: 1.7;
    color: var(--svc-body);
    margin: 16px 0 0;
}

.svc-cases__grid {
    row-gap: 26px;
}

.svc-case-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 360px;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    padding: 28px;
    background-color: var(--svc-dark);
    background-size: cover;
    background-position: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.svc-case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 50px rgba(20, 19, 46, 0.28);
}

.svc-case-card__content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.svc-case-card__tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
    background: var(--svc-primary);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.svc-case-card__title {
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.svc-case-card__text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 14px;
}

.svc-case-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--svc-accent);
}

.svc-case-card:hover .svc-case-card__link i {
    transform: translateX(5px);
}

.svc-case-card__link i {
    transition: transform 0.25s;
}

/* ---------- FAQ ---------- */
.svc-faq__main {
    padding-right: 30px;
}

.svc-faq .svc-section-head {
    margin-bottom: 30px;
}

.svc-accordion__item {
    border: 1px solid var(--svc-line);
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 14px;
    background: #fff;
}

.svc-accordion__button {
    font-size: 16px;
    font-weight: 600;
    color: var(--svc-dark);
    padding: 18px 20px;
    box-shadow: none !important;
}

.svc-accordion__button:not(.collapsed) {
    color: var(--svc-primary);
    background: rgba(25, 88, 127, 0.05);
}

.svc-accordion__button:focus {
    box-shadow: none;
    border-color: transparent;
}

.svc-accordion__body {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--svc-body);
    padding: 4px 20px 20px;
}

.svc-sell-panel {
    background: linear-gradient(150deg, var(--svc-primary) 0%, #0F766E 100%);
    border-radius: 18px;
    padding: 38px 34px;
    color: #fff;
    box-shadow: 0 24px 50px rgba(25, 88, 127, 0.28);
}

.svc-sell-panel__title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}

.svc-sell-panel__text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 22px;
}

.svc-sell-panel__list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.svc-sell-panel__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 14px;
}

.svc-sell-panel__list i {
    margin-top: 2px;
    color: #fff;
}

/* ---------- Lets start (contact) ---------- */
.svc-start__card {
    background: #fff;
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(12, 10, 38, 0.08);
    border: 1px solid var(--svc-line);
}

.svc-start__info {
    padding: 56px 50px;
}

.svc-start__form-col {
    background: #f7f6fe;
    padding: 56px 50px;
    display: flex;
    flex-direction: column;
}

.svc-start__title {
    font-size: 34px;
    font-weight: 800;
    color: var(--svc-dark);
    margin: 0 0 16px;
}

.svc-start__text {
    font-size: 15.5px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0 0 30px;
}

.svc-start__contacts {
    list-style: none;
    margin: 0;
    padding: 0;
}

.svc-start__contacts li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

.svc-start__contact-icon {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 17px;
    color: var(--svc-primary);
    background: rgba(25, 88, 127, 0.08);
}

.svc-start__contact-label {
    display: block;
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 2px;
}

.svc-start__contacts a,
.svc-start__contacts div > span:last-child {
    color: var(--svc-dark);
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1.5;
}

.svc-start__contacts a:hover {
    color: var(--svc-primary);
}

.svc-start__form {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--svc-line);
    flex: 1;
}

.svc-start__form .row {
    row-gap: 16px;
}

.svc-input {
    width: 100%;
    background: #f6f6fa;
    border: 1px solid var(--svc-line);
    border-radius: 10px;
    padding: 14px 11px;
    font-size: 15px;
    color: var(--svc-dark);
    transition: border-color 0.2s, background 0.2s;
}

.svc-input:focus {
    outline: none;
    background: #fff;
    border-color: var(--svc-primary);
}

.svc-input--area {
    resize: vertical;
    min-height: 120px;
}

/* =========================================================
   Dark footer
   ========================================================= */

.ft-dark__main {
    background: linear-gradient(180deg, #080c24 0%, #0a0e27 100%);
    color: #a0aec0;
    font-size: 14px;
    line-height: 1.6;
    border-top: 1px solid rgba(25, 88, 127, 0.2);
}

/* Top section: 6-column grid */
.ft-dark__top {
    padding: 60px 0 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr 1fr 1fr;
    gap: 32px;
}

/* Brand column */
.ft-dark__brand-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    text-decoration: none;
}

.ft-dark__brand-logo img {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
}

.ft-dark__brand-tagline {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 20px;
}

.ft-dark__brand-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ft-dark__brand-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

.ft-dark__brand-contact li:last-child {
    margin-bottom: 0;
}

.ft-dark__brand-contact i {
    flex-shrink: 0;
    width: 16px;
    margin-top: 3px;
    color: #F59E0B;
    font-size: 13px;
    text-align: center;
}

.ft-dark__brand-contact a {
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
}

.ft-dark__brand-contact a:hover {
    color: #F59E0B;
}

/* Social icons */
.ft-dark__socials {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ft-dark__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.ft-dark__socials a:hover {
    background: #F59E0B;
    border-color: #F59E0B;
    color: #fff;
}

/* Column headings */
.ft-dark__heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 20px;
    position: relative;
    padding-bottom: 10px;
}

.ft-dark__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #19587F, #F59E0B);
    border-radius: 2px;
}

/* Nav links */
.ft-dark__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ft-dark__links li {
    margin-bottom: 10px;
}

.ft-dark__links li:last-child {
    margin-bottom: 0;
}

.ft-dark__links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s, padding-left 0.2s;
}

.ft-dark__links a::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 8px;
    color: #F59E0B;
    flex-shrink: 0;
}

.ft-dark__links a:hover {
    color: #F59E0B;
    padding-left: 4px;
}

/* Middle section */
.ft-dark__middle {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 40px;
}

.ft-dark__section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.ft-dark__section-header i {
    color: #0F766E;
    font-size: 18px;
}

.ft-dark__section-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin: 0;
    position: relative;
    padding-bottom: 8px;
}

.ft-dark__section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #19587F, #9c27b0);
    border-radius: 2px;
}

/* Popular services grid */
.ft-dark__services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.ft-dark__service-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
}

.ft-dark__service-item::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 8px;
    color: #F59E0B;
    flex-shrink: 0;
}

.ft-dark__service-item:hover {
    color: #F59E0B;
    padding-left: 4px;
}

/* Location tags */
.ft-dark__location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.ft-dark__location-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(25, 88, 127, 0.1);
    border: 1px solid rgba(25, 88, 127, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: #D1D5DB;
}

.ft-dark__location-tag i {
    font-size: 10px;
    color: #F59E0B;
}

/* Location tags + lower split */
.ft-dark__locations-lower {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
    margin-top: 20px;
}

/* World map */
.ft-dark__map-wrap {
    position: relative;
}

.ft-dark__world-map {
    width: 100%;
    height: 160px;
    background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/World_location_map_%28equirectangular_180%29.svg/1920px-World_location_map_%28equirectangular_180%29.svg.png') center/contain no-repeat;
    opacity: 0.5;
    position: relative;
}

.ft-dark__map-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #19587F;
    border-radius: 50%;
    box-shadow: 0 0 10px #19587F, 0 0 20px #19587F;
    animation: ft-dark-pulse 2s infinite;
}

.ft-dark__map-dot--india    { top: 45%; left: 68%; }
.ft-dark__map-dot--uae      { top: 42%; left: 62%; }
.ft-dark__map-dot--uk       { top: 28%; left: 48%; }
.ft-dark__map-dot--usa      { top: 35%; left: 22%; }
.ft-dark__map-dot--singapore { top: 55%; left: 75%; }
.ft-dark__map-dot--australia { top: 75%; left: 82%; }

@keyframes ft-dark-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.5); opacity: 0.7; }
}

/* Global clients / countries list */
.ft-dark__global-clients h4 {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ft-dark__countries-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
}

.ft-dark__countries-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.ft-dark__countries-list img {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0;
}

/* Bottom bar */
.ft-dark__bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.ft-dark__certifications {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ft-dark__cert-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.ft-dark__cert-label i {
    color: #19587F;
    font-size: 16px;
}

.ft-dark__partner-logos {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ft-dark__partner-logos img {
    display: block;
    height: 34px;
    width: auto;
    background: #fff;
    padding: 7px 14px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    object-fit: contain;
    box-sizing: content-box;
}

.ft-dark__copyright {
    text-align: right;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.ft-dark__copyright p {
    margin-bottom: 4px;
}

.ft-dark__copyright a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.ft-dark__copyright a:hover {
    color: #fff;
}

.ft-dark__legal-links {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-top: 4px;
}

.ft-dark__legal-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s;
}

.ft-dark__legal-links a:hover {
    color: #fff;
}

.ft-dark__reg-info {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-top: 4px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
}

@media only screen and (max-width: 1200px) {
    .ft-dark__top { grid-template-columns: repeat(3, 1fr); }
}

@media only screen and (max-width: 991px) {
    .ft-dark__top { padding: 50px 0 36px; }
    .ft-dark__middle { grid-template-columns: 1fr; }
    .ft-dark__services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media only screen and (max-width: 767px) {
    .ft-dark__top { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .ft-dark__services-grid { grid-template-columns: repeat(2, 1fr); }
    .ft-dark__locations-lower { grid-template-columns: 1fr; }
    .ft-dark__bottom { flex-direction: column; text-align: center; }
    .ft-dark__copyright { text-align: center; }
    .ft-dark__legal-links { justify-content: center; }
    .ft-dark__reg-info { justify-content: center; }
    .ft-dark__certifications { justify-content: center; }
}

@media only screen and (max-width: 480px) {
    .ft-dark__top { grid-template-columns: 1fr; }
    .ft-dark__services-grid { grid-template-columns: 1fr; }
    .ft-dark__countries-list { grid-template-columns: 1fr; }
}

/* ---------- Responsive ---------- */
@media only screen and (max-width: 1199px) {
    .svc-hero__title { font-size: 40px; }
    .svc-section-title { font-size: 32px; }
}

@media only screen and (max-width: 991px) {
    .svc-section { padding: 40px 0; }
    .svc-hero { padding: 70px 0 80px; }
    .svc-hero__title { font-size: 34px; }
    .svc-hero__media { margin-top: 40px; }
    .svc-process__intro { padding-right: 0; margin-bottom: 40px; }
    .svc-faq__main { padding-right: 0; margin-bottom: 40px; }
    .svc-start__info { padding: 44px 34px; }
    .svc-start__form-col { padding: 44px 34px; }
}

@media only screen and (max-width: 575px) {
    .svc-hero__title { font-size: 28px; }
    .svc-section-title { font-size: 26px; }
    .svc-hero__buttons .svc-btn { flex: 1 1 100%; }
    .svc-hero__stats { gap: 18px; }
    .svc-start__info { padding: 32px 22px; }
    .svc-start__form-col { padding: 32px 22px; }
    .svc-start__form { padding: 24px 18px; }
    .svc-rect-card { flex-direction: column; }
}

/* =========================================================
   Home â€“ Our Capabilities (expertise grid + mobile accordion)
   ========================================================= */
.capabilities-subtitle {
    max-width: 560px;
    color: #6B7280;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
}

.capabilities-row {
    row-gap: 28px;
}

.capability-card {
    --cap-color: #19587F;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    border: 1px solid #eef0f5;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(20, 27, 45, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(20, 27, 45, 0.1);
}

.capability-card__head {
    display: flex;
    flex-direction: column;
}

.capability-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background-color: color-mix(in srgb, var(--cap-color) 12%, #fff);
    margin-bottom: 18px;
}

.capability-card__icon img {
    max-width: 34px;
    max-height: 34px;
    width: auto;
    object-fit: contain;
}

.capability-card__title {
    font-size: 20px;
    font-weight: 600;
    color: #1A1A2E;
    margin-bottom: 10px;
}

.capability-card__line {
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--cap-color);
    margin-bottom: 16px;
}

.capability-card__toggle {
    display: none;
}

.capability-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.capability-card__text {
    color: #6B7280;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.capability-card__link {
    margin-top: auto;
    color: var(--cap-color);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}

.capability-card__link:hover {
    color: var(--cap-color);
    opacity: 0.8;
}

/* Mobile: cards convert into accordion-style list items */
@media (max-width: 767px) {
    .capabilities-row {
        row-gap: 14px;
    }

    .capability-card {
        padding: 18px 20px;
    }

    .capability-card__head {
        flex-direction: row;
        align-items: center;
        cursor: pointer;
    }

    .capability-card__icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        margin-bottom: 0;
        margin-right: 16px;
        flex-shrink: 0;
    }

    .capability-card__icon img {
        max-width: 26px;
        max-height: 26px;
    }

    .capability-card__heading-group {
        flex: 1;
    }

    .capability-card__title {
        font-size: 16px;
        margin-bottom: 0;
    }

    .capability-card__line {
        display: none;
    }

    .capability-card__toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        margin-left: 12px;
        padding: 0;
        border: none;
        background: transparent;
        color: #9aa1b2;
        flex-shrink: 0;
        transition: transform 0.3s ease;
    }

    .capability-card__body {
        max-height: 0;
        margin-top: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.35s ease, opacity 0.35s ease, margin-top 0.35s ease;
    }

    .capability-card.is-open .capability-card__body {
        max-height: 320px;
        margin-top: 16px;
        opacity: 1;
    }

    .capability-card.is-open .capability-card__toggle {
        transform: rotate(180deg);
    }
}

/* =========================================================
   Home â€“ Why Choose Tectignis (split layout + stats bar)
   ========================================================= */
.why-choose-badge {
    display: inline-block;
    background-color: #EAF2F7;
    color: #19587F;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
}

.why-choose-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: #475569;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Left composite: image + overlapping gradient card */
.why-choose-visual {
    position: relative;
}

.why-choose-visual__image img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
}

.why-choose-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #19587F 0%, #6D28D9 100%);
    border-radius: 16px;
    padding: 32px;
    color: #fff;
    box-shadow: 0 20px 45px rgba(109, 40, 217, 0.25);
}

.why-choose-card__dots {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 84px;
    height: 84px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.55) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.6;
}

.why-choose-card__watermark {
    position: absolute;
    right: 8px;
    bottom: -34px;
    font-size: 170px;
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.why-choose-card__title {
    position: relative;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 14px;
}

.why-choose-card__text {
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .why-choose-visual {
        padding-right: 36px;
        padding-bottom: 48px;
    }
    .why-choose-card {
        position: absolute;
        right: 0;
        bottom: 0;
        max-width: 330px;
    }
}

/* Right column: 2-column feature grid with row dividers */
.why-choose-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 32px;
}

.why-choose-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
}

.why-choose-feature:nth-child(n + 3) {
    border-top: 1px solid #E2E8F0;
}

.why-choose-feature__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #EAF2F7;
    color: #19587F;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.why-choose-feature__title {
    font-size: 16px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 6px;
}

.why-choose-feature__text {
    font-size: 14px;
    line-height: 1.5;
    color: #64748B;
    margin-bottom: 0;
}

/* Bottom stats bar */
.why-choose-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    background-color: #F8F9FA;
    border-radius: 16px;
    padding: 32px 40px;
    margin-top: 50px;
}

.why-choose-stat {
    display: flex;
    align-items: center;
    gap: 16px;
}

.why-choose-stat__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background-color: #EAF2F7;
    color: #19587F;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.why-choose-stat__number {
    font-size: 28px;
    font-weight: 700;
    color: #1E293B;
    line-height: 1;
}

.why-choose-stat__label {
    font-size: 14px;
    color: #64748B;
    margin-top: 4px;
}

@media (max-width: 991px) {
    .why-choose-card {
        margin-top: 24px;
        max-width: 100%;
    }
    .why-choose-stats {
        justify-content: flex-start;
    }
    .why-choose-stat {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 767px) {
    .why-choose-features {
        grid-template-columns: 1fr;
    }
    .why-choose-feature {
        border-top: 1px solid #E2E8F0;
    }
    .why-choose-feature:first-child {
        border-top: none;
    }
    .why-choose-stats {
        padding: 24px;
    }
    .why-choose-stat {
        flex: 0 0 100%;
    }
}

/* =========================================================
   Home â€“ Solutions We Deliver (card grid)
   ========================================================= */
.solutions-deliver-overline {
    display: inline-block;
    color: #19587F;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solutions-deliver-subtitle {
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
    color: #64748B;
    font-size: 16px;
    line-height: 1.6;
}

.solutions-deliver-row {
    margin-right: -12px;
    margin-left: -12px;
}

.solutions-deliver-row > [class*="col-"] {
    padding-right: 12px;
    padding-left: 12px;
}

.solution-deliver-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-deliver-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/*.solution-deliver-card__icon {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    width: 90px;*/
/*    height: 90px;*/
/*    border-radius: 50%;*/
/*    background: #EAF2F7;*/
/*    color: #19587F;*/
/*    font-size: 26px;*/
/*    margin-bottom: 20px;*/
/*    transition: background 0.3s ease;*/
/*}*/

/*.solution-deliver-card:hover .solution-deliver-card__icon {*/
/*    background: #FFE0E8;*/
/*}*/

/*.solution-deliver-card__icon img {*/
/*    width: 70px;*/
/*    height: 70px;*/
/*    object-fit: contain;*/
/*}*/

.solution-deliver-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(25, 88, 127, 0.08);
    border: 1px solid rgba(25, 88, 127, 0.08);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.solution-deliver-card:hover .solution-deliver-card__icon {
    background: rgba(25, 181, 165, 0.12);
    border-color: rgba(25, 181, 165, 0.2);
    transform: translateY(-2px);
}

.solution-deliver-card__icon img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.solution-deliver-card:hover .solution-deliver-card__icon img {
    transform: scale(1.08);
}

.solution-deliver-card__title {
    margin-bottom: 12px;
    color: #1E293B;
    font-size: 18px;
    font-weight: 700;
}

.solution-deliver-card__divider {
    display: block;
    width: 24px;
    height: 2px;
    margin-bottom: 16px;
    background: #19587F;
}

.solution-deliver-card__text {
    margin-bottom: 0;
    color: #64748B;
    font-size: 14px;
    line-height: 1.6;
}

/* =========================================================
   Home â€“ Industries We Serve (redesigned card grid + banner)
   ========================================================= */

/* --- Section header --- */
.industries-serve-header {
    text-align: center;
    margin-bottom: 48px;
}

.industries-serve-pretitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #19587F;
    margin-bottom: 16px;
}

.industries-serve-pretitle__line {
    display: inline-block;
    width: 32px;
    height: 1px;
    background: #19587F;
}

.industries-serve-pretitle__dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #19587F;
}

.industries-serve-heading {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
    margin: 0;
}

.industries-serve-heading--gradient {
    background: linear-gradient(90deg, #19587F 0%, #5B21B6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.industries-serve-subtitle {
    font-size: 17px;
    color: #64748B;
    line-height: 1.65;
    max-width: 780px;
    margin: 20px auto 0;
}

/* --- Card grid --- */
.industries-serve-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

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

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

@media (min-width: 992px) {
    .industries-serve-grid { grid-template-columns: repeat(6, 1fr); }
}

@media (min-width: 1200px) {
    .industries-serve-grid { grid-template-columns: repeat(6, 1fr); gap: 20px; }
}

/* --- Individual industry card --- */
.industry-serve-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 22px 12px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(17, 24, 39, 0.07);
    text-decoration: none;
    text-align: center;
    color: #111827;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.industry-serve-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px -8px rgba(17, 24, 39, 0.13);
    color: #111827;
    text-decoration: none;
}

/* Icon blob (soft circular background behind SVG) */
.industry-serve-card__blob {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #EAF2F7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.industry-serve-card__blob svg {
    width: 28px;
    height: 28px;
}

.industry-serve-card__blob i {
    font-size: 22px;
    color: #19587F;
}

.industry-serve-card__label {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    color: #111827;
}

/* --- Summary banner --- */
.industries-serve-banner {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    align-items: center;
    background: #FCF0F4;
    border-radius: 16px;
    padding: 28px 40px;
}

.industries-serve-banner__item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1 1 180px;
}

.industries-serve-banner__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fde0ea;
    color: #19587F;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.industries-serve-banner__icon svg {
    width: 22px;
    height: 22px;
}

.industries-serve-banner__title {
    font-size: 19px;
    font-weight: 700;
    color: #19587F;
    line-height: 1.2;
}

.industries-serve-banner__subtitle {
    font-size: 13px;
    color: #1E293B;
    line-height: 1.4;
    margin-top: 2px;
}

@media (max-width: 767px) {
    .industries-serve-heading { font-size: 28px; }
    .industries-serve-subtitle { font-size: 15px; }
    .industries-serve-banner { padding: 20px 24px; }
    .industries-serve-banner__item { flex: 1 1 140px; }
}

@media (max-width: 575px) {
    .industries-serve-heading { font-size: 24px; }
    .industries-serve-banner__item { flex: 1 1 100%; }
}

/* =========================================================
   Home â€“ Technology Stack (uniform logo cards)
   ========================================================= */
.tech-stack-row {
    margin-right: -8px;
    margin-left: -8px;
}

.tech-stack-row > [class*="col-"] {
    padding-right: 8px;
    padding-left: 8px;
    margin-top: 16px;
}

@media (min-width: 992px) {
    .tech-stack-row > [class*="col-"] {
        flex: 0 0 14.2857%;
        max-width: 14.2857%;
    }
}

@media (min-width: 1200px) {
    .tech-stack-row > [class*="col-"] {
        flex: 0 0 14.2857%;
        max-width: 14.2857%;
    }
}

.tech-stack-card {
    height: 100%;
    text-align: center;
    padding: 22px 12px 18px;
    background-color: #fff;
    border: 1px solid #eef0f5;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tech-stack-card:hover {
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 16px 30px rgba(24, 36, 60, 0.12);
}

.tech-stack-card__logo {
    height: 48px;
    line-height: 48px;
    text-align: center;
    margin-bottom: 14px;
}

.tech-stack-card__logo img {
    max-height: 48px;
    max-width: 100%;
    width: auto;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.tech-stack-card:hover .tech-stack-card__logo img {
    transform: scale(1.08);
}

.tech-stack-card__name {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: #333;
}

@media (max-width: 575px) {
    .tech-stack-card {
        padding: 16px 8px 14px;
    }

    .tech-stack-card__logo {
        height: 40px;
        margin-bottom: 10px;
    }

    .tech-stack-card__logo img {
        max-height: 40px;
    }

    .tech-stack-card__name {
        font-size: 12px;
    }
}

/* =========================================================
   Home â€“ Featured Services (responsive card/list design)
   ========================================================= */

.fs-section {
    background: #ffffff;
}

/* --- Section header --- */
.fs-header {
    text-align: center;
    margin-bottom: 48px;
}

.fs-pretitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #19587F;
    margin-bottom: 16px;
}

.fs-title {
    font-size: 40px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
    margin: 0 0 16px;
}

.fs-subtitle {
    font-size: 16px;
    color: #64748B;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto 0;
}

/* --- Services grid --- */
.fs-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* --- Individual card (mobile: horizontal row) --- */
.fs-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.fs-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--fs-color);
    color: inherit;
    text-decoration: none;
}

.fs-card__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--fs-color-bg, #E3F2F0);
    margin-right: 16px;
    flex-shrink: 0;
}

.fs-card__icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.fs-card__body {
    flex: 1;
    min-width: 0;
}

.fs-card__title {
    font-size: 14px;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
    line-height: 1.3;
}

.fs-card__desc {
    display: none;
}

.fs-card__arrow {
    color: #19587F;
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
    margin-left: 12px;
    transition: transform 0.2s ease;
}

.fs-card:hover .fs-card__arrow {
    transform: translateX(4px);
}

/* --- Tablet: 4-column grid (vertical cards) --- */
@media (min-width: 768px) {
    .fs-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .fs-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 16px;
        border-radius: 12px;
        height: 100%;
        justify-content: flex-start;
    }

    .fs-card__icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
        margin-right: 0;
        margin-bottom: 16px;
    }

    .fs-card__icon img {
        width: 28px;
        height: 28px;
    }

    .fs-card__body {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .fs-card__title {
        font-size: 15px;
        text-align: center;
        margin-bottom: 8px;
    }

    .fs-card__desc {
        display: block;
        font-size: 12px;
        color: #64748B;
        line-height: 1.5;
        text-align: center;
        flex: 1;
        margin-bottom: 0;
    }

    .fs-card__arrow {
        color: var(--fs-color);
        margin-left: 0;
        padding-top: 16px;
        font-size: 18px;
        align-self: center;
    }
}

/* --- Desktop: 6-column grid --- */
@media (min-width: 1200px) {
    .fs-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 16px;
    }

    .fs-card {
        padding: 24px 12px;
    }

    .fs-card__title {
        font-size: 14px;
    }
}

/* --- Mobile typography adjustments --- */
@media (max-width: 767px) {
    .fs-title { font-size: 28px; }
    .fs-subtitle { font-size: 14px; margin-bottom: 32px; }
    .fs-header { margin-bottom: 32px; }
}

/* =========================================================
   Contact page â€“ info cards (equal height + color accents)
   ========================================================= */
.contact-info-card .icon-box-wrap {
    display: flex;
    flex-direction: column;
    border-top: 4px solid transparent;
}

.contact-info-card .icon-box-wrap .content {
    flex: 1;
}

/* Coloured icon circle */
.contact-info-card__icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

/* Phone card â€” violet/purple */
.contact-info-card--phone .icon-box-wrap {
    background: linear-gradient(160deg, #faf5ff 0%, #fff 60%);
    border-top-color: #0F766E;
}

.contact-info-card--phone .contact-info-card__icon-wrap {
    background: #ede9fe;
    color: #0F766E;
}

.contact-info-card--phone .icon-box-wrap .content .heading {
    color: #6d28d9;
}

.contact-info-card--phone .feature-btn a {
    color: #0F766E;
}

.contact-info-card--phone .feature-btn a:hover {
    color: #4c1d95;
}

.contact-info-card--phone:hover .icon-box-wrap {
    border-top-color: #0F766E;
}

/* Address card â€” teal/emerald */
.contact-info-card--address .icon-box-wrap {
    background: linear-gradient(160deg, #f0fdf4 0%, #fff 60%);
    border-top-color: #059669;
}

.contact-info-card--address .contact-info-card__icon-wrap {
    background: #d1fae5;
    color: #059669;
}

.contact-info-card--address .icon-box-wrap .content .heading {
    color: #047857;
}

/* Email card â€” amber/orange */
.contact-info-card--email .icon-box-wrap {
    background: linear-gradient(160deg, #fff7ed 0%, #fff 60%);
    border-top-color: #D97706;
}

.contact-info-card--email .contact-info-card__icon-wrap {
    background: #ffedd5;
    color: #D97706;
}

.contact-info-card--email .icon-box-wrap .content .heading {
    color: #c2410c;
}

.contact-info-card--email .feature-btn a {
    color: #D97706;
}

.contact-info-card--email .feature-btn a:hover {
    color: #9a3412;
}

/* =========================================================
   Breadcrumb â€” compact (all pages)
   ========================================================= */
.breadcrumb-area {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
}

.breadcrumb-title {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 0;
}

.breadcrumb-list {
    margin-top: 8px !important;
}

@media only screen and (max-width: 767px) {
    .breadcrumb-area {
        padding-top: 24px !important;
        padding-bottom: 24px !important;
    }
    .breadcrumb-title {
        font-size: 22px;
    }
}

/* =========================================================
   Contact page â€” reduce section whitespace
   ========================================================= */
.feature-icon-wrapper.section-space--ptb_100 {
    padding-top: 50px !important;
    padding-bottom: 40px !important;
}

.contact-us-area.section-space--pb_100 {
    padding-bottom: 50px !important;
}

/* =========================================================
   Home â€“ Case Studies (3-column themed cards)
   ========================================================= */
.cs-section {
    background: #F8FAFC;
}

/* --- Header --- */
.cs-header {
    text-align: center;
    margin-bottom: 48px;
}

.cs-header__badge {
    display: inline-block;
    border: 1px solid #2C73A0;
    color: #2C73A0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.cs-header__title {
    font-size: 44px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
    margin: 0 0 16px;
}

.cs-header__subtitle {
    font-size: 16px;
    color: #64748B;
    line-height: 1.65;
    max-width: 680px;
    margin: 0 auto;
}

/* --- Grid --- */
.cs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

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

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

/* --- Card base --- */
.cs-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cs-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px -8px rgba(0, 0, 0, 0.13);
}

/* Theme tokens */
.cs-card--blue   { --cs-color: #3B82F6; --cs-badge-bg: #EFF6FF; --cs-grad-a: #3B82F6; --cs-grad-b: #1D4ED8; }
.cs-card--red    { --cs-color: #2C73A0; --cs-badge-bg: #EAF2F7; --cs-grad-a: #2C73A0; --cs-grad-b: #BE123C; }
.cs-card--purple { --cs-color: #14B8A6; --cs-badge-bg: #E3F2F0; --cs-grad-a: #14B8A6; --cs-grad-b: #5B21B6; }

/* --- Illustration area --- */
.cs-card__illus {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--cs-grad-a) 0%, var(--cs-grad-b) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-card__illus::before,
.cs-card__illus::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.cs-card__illus::before {
    width: 220px;
    height: 220px;
    top: -70px;
    right: -70px;
}

.cs-card__illus::after {
    width: 140px;
    height: 140px;
    bottom: -55px;
    left: -35px;
}

/* Top-left badge */
.cs-card__illus-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    z-index: 1;
}

.cs-card__illus-badge svg {
    width: 22px;
    height: 22px;
    stroke: var(--cs-color);
}

/* Large center icon */
.cs-card__illus-main {
    position: relative;
    z-index: 1;
    width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.15);
}

.cs-card__illus-main svg {
    width: 48px;
    height: 48px;
    stroke: rgba(255, 255, 255, 0.88);
}

/* --- Card body --- */
.cs-card__body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cs-card__badge {
    display: inline-block;
    background: var(--cs-badge-bg);
    color: var(--cs-color);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 14px;
}

.cs-card__title {
    font-size: 22px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.3;
    margin: 0 0 10px;
}

.cs-card__desc {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

.cs-card__divider {
    border: none;
    border-top: 1px solid #E2E8F0;
    margin: 24px 0;
}

.cs-card__features {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cs-card__feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #334155;
    line-height: 1.5;
}

.cs-card__check {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.cs-card__check svg {
    width: 18px;
    height: 18px;
    stroke: var(--cs-color);
}

.cs-card__link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--cs-color);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.cs-card__link:hover {
    color: var(--cs-color);
    gap: 10px;
    text-decoration: none;
}

/* --- Footer CTA --- */
.cs-footer {
    display: flex;
    justify-content: center;
}

.cs-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #19587F;
    color: #19587F;
    background: rgba(25, 181, 165, 0.05);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cs-cta-btn:hover {
    background: linear-gradient(90deg, #19587F 0%, #19B5A5 100%);
    color: #fff;
    border-color: #19B5A5;
    box-shadow: 0 10px 25px rgba(25, 88, 127, 0.3);
    transform: translateY(-2px);
}

/* --- Responsive --- */
@media (max-width: 767px) {
    .cs-header__title { font-size: 30px; }
    .cs-header { margin-bottom: 36px; }
}

@media (max-width: 575px) {
    .cs-header__title { font-size: 26px; }
    .cs-header__subtitle { font-size: 15px; }
    .cs-card__body { padding: 24px; }
    .cs-grid { gap: 24px; }
}

/* =========================================================
   Home â€“ Client Testimonials (custom carousel)
   ========================================================= */

.testi-section {
    /*background: #F8FAFC;*/
    padding-bottom: 80px;
}

/* --- Header --- */
.testi-header {
    text-align: center;
    margin-bottom: 48px;
}

.testi-pretitle {
    display: inline-block;
    color: #2C73A0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.testi-title {
    font-size: 40px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
    margin: 0 0 16px;
}

.testi-subtitle {
    font-size: 16px;
    color: #64748B;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Carousel wrap: arrow + track + arrow --- */
.testi-carousel-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* --- Navigation arrows --- */
.testi-nav {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2C73A0;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 2;
}

.testi-nav:hover:not(:disabled) {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testi-nav:disabled {
    opacity: 0.4;
    cursor: default;
}

.testi-nav svg {
    width: 20px;
    height: 20px;
}

/* --- Track outer: clips overflow so cards slide behind it --- */
.testi-track-outer {
    overflow: hidden;
    flex: 1;
    padding: 16px 0;
}

/* --- Track: horizontal flex row --- */
.testi-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Individual cards: 3-per-view on desktop --- */
.testi-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.06);
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: calc(33.333% - 16px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.1);
}

/* Quote icon */
.testi-card__quote {
    display: block;
    font-size: 52px;
    line-height: 1;
    color: #2C73A0;
    font-family: Georgia, 'Times New Roman', serif;
    margin-bottom: 8px;
}

/* Stars */
.testi-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testi-card__stars svg {
    width: 16px;
    height: 16px;
    fill: #2C73A0;
}

/* Body text */
.testi-card__text {
    color: #334155;
    font-size: 15px;
    line-height: 1.65;
    flex-grow: 1;
    margin-bottom: 0;
}

/* Divider */
.testi-card__divider {
    border: none;
    border-top: 1px solid #E2E8F0;
    margin: 24px 0;
}

/* Client block */
.testi-card__client {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testi-card__avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi-card__avatar svg {
    width: 24px;
    height: 24px;
}

/* Avatar colour themes */
.testi-avatar--pink    { background: #FCE7F3; color: #EC4899; }
.testi-avatar--indigo  { background: #E0E7FF; color: #0F766E; }
.testi-avatar--emerald { background: #D1FAE5; color: #10B981; }
.testi-avatar--violet  { background: #EDE9FE; color: #14B8A6; }
.testi-avatar--blue    { background: #DBEAFE; color: #3B82F6; }
.testi-avatar--amber   { background: #FEF3C7; color: #F59E0B; }

.testi-card__name {
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 2px;
    line-height: 1.3;
}

.testi-card__role {
    font-size: 14px;
    color: #64748B;
    margin: 0;
    line-height: 1.3;
}

/* --- Pagination dots --- */
.testi-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}

.testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #CBD5E1;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.testi-dot:hover {
    background: #94A3B8;
}

.testi-dot--active {
    background: #2C73A0;
    transform: scale(1.2);
}

/* --- Responsive --- */

/* Tablet: 2-per-view */
@media (max-width: 991px) {
    .testi-section { padding: 60px 0; }
    .testi-title   { font-size: 32px; }
    .testi-card    { width: calc(50% - 12px); }
    .testi-nav     { width: 40px; height: 40px; }
}

/* Mobile: 1-per-view */
@media (max-width: 575px) {
    .testi-title    { font-size: 26px; }
    .testi-subtitle { font-size: 14px; }
    .testi-header   { margin-bottom: 32px; }
    .testi-card     { width: 100%; }
    .testi-card     { padding: 24px; }
}

/* =========================================================
   Home â€“ Global Presence (map infographic + advantages + process)
   ========================================================= */
.gp-section {
    position: relative;
    background:
        radial-gradient(ellipse 60% 50% at 50% 42%, rgba(15, 118, 110, 0.05), transparent 70%),
        #ffffff;
    overflow: hidden;
}

/* --- Header --- */
.gp-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 64px;
}

.gp-pretitle {
    display: inline-block;
    color: #19587F;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.gp-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    color: #0F172A;
    margin: 0 0 18px;
}

.gp-title__accent {
    color: #19587F;
}

.gp-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: #64748B;
    margin: 0;
}

/* --- Map section: 3-column layout --- */
.gp-map-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 72px;
}

/* --- Sidebars --- */
.gp-sidebar {
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
    z-index: 2;
}

.gp-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.gp-badge svg {
    width: 18px;
    height: 18px;
}

.gp-badge--india { color: #19587F; }
.gp-badge--global { color: #0F766E; }

/* List with dashed timeline */
.gp-list {
    list-style: none;
    margin: 0;
    padding: 0 0 0 24px;
    position: relative;
}

.gp-list::before {
    content: '';
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 5px;
    width: 0;
    border-left: 2px dashed;
}

.gp-list--india::before { border-color: #F9C0D3; }
.gp-list--global::before { border-color: #C7C9F5; }

.gp-list__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 0;
    position: relative;
}

/*.gp-list__pin {*/
/*    position: absolute;*/
/*    left: -29px;*/
/*    top: 9px;*/
/*    width: 22px;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*}*/

/*.gp-list__pin svg {*/
/*    width: 16px;*/
/*    height: 16px;*/
/*    background: #fff;*/
/*}*/

.gp-list__pin {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(25, 181, 165, 0.12);
    color: #19B5A5;
}

.gp-list__pin svg {
    width: 16px;
    height: 16px;
    background: transparent;
    display: block;
}

.gp-list--india .gp-list__pin { color: #19587F; }
.gp-list--global .gp-list__pin { color: #0F766E; }

.gp-list__body {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.gp-list__city {
    font-size: 15px;
    font-weight: 700;
}

.gp-list--india .gp-list__city { color: #19587F; }
.gp-list--global .gp-list__city { color: #0F766E; }

.gp-list__type {
    font-size: 12.5px;
    color: #64748B;
    margin-top: 2px;
}

/* Stat card */
.gp-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #EEF1F6;
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07);
}

.gp-stat__icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gp-stat__icon svg {
    width: 24px;
    height: 24px;
}

.gp-stat--india .gp-stat__icon { background: #EAF2F7; color: #19587F; }
.gp-stat--global .gp-stat__icon { background: #EEF0FF; color: #0F766E; }

.gp-stat__body {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.gp-stat__num {
    font-size: 22px;
    font-weight: 800;
    color: #0F172A;
}

.gp-stat--india .gp-stat__num { color: #19587F; }
.gp-stat--global .gp-stat__num { color: #0F766E; }

.gp-stat__label {
    font-size: 12.5px;
    color: #64748B;
    margin-top: 2px;
}

/* --- Center map (dark world map with red location markers) --- */
.gp-map {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
    padding: 18px;
    border-radius: 18px;
    background: radial-gradient(120% 120% at 50% 0%, #11294a 0%, #0c1c36 55%, #0a1426 100%);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 24px 60px rgba(10, 20, 38, 0.35);
}

.gp-map__svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

.gp-map__india {
    fill: #ff3b5c;
    opacity: 0.92;
}

/* Connection arcs */
.gp-arc {
    stroke: #ff3b5c;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 6 7;
    opacity: 0.4;
    stroke-dashoffset: 0;
    animation: gpDash 1.6s linear infinite;
}

.gp-arc:nth-of-type(even) {
    stroke: #ff6b85;
}

@keyframes gpDash {
    to { stroke-dashoffset: -26; }
}

/* Pulsing red location markers */
.gp-node__dot { fill: #ff3b5c; }
.gp-node__ring {
    fill: #ff3b5c;
    opacity: 0.4;
    transform-box: fill-box;
    transform-origin: center;
    animation: gpPulse 2.4s ease-out infinite;
}

.gp-node--hub .gp-node__dot { fill: #ff3b5c; }
.gp-node--hub .gp-node__ring {
    fill: #ff3b5c;
    animation-duration: 2s;
}

.gp-node--global:nth-of-type(odd) .gp-node__dot { fill: #ff3b5c; }
.gp-node--global:nth-of-type(odd) .gp-node__ring { fill: #ff3b5c; }

@keyframes gpPulse {
    0%   { transform: scale(0.6); opacity: 0.5; }
    70%  { transform: scale(2.1); opacity: 0; }
    100% { transform: scale(2.1); opacity: 0; }
}

/* --- Shared block titles (advantages + process) --- */
.gp-block-title {
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0F172A;
    margin: 0 0 36px;
}

/* --- Advantages banner --- */
.gp-advantages {
    background: #FCFCFD;
    border: 1px solid #EEF1F6;
    border-radius: 20px;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
    padding: 36px 40px;
    margin-bottom: 72px;
}

.gp-advantages__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.gp-advantage {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}

.gp-advantage__icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gp-advantage__icon svg {
    width: 26px;
    height: 26px;
}

.gp-advantage__icon--rose { background: #EAF2F7; color: #19587F; }
.gp-advantage__icon--indigo { background: #EEF0FF; color: #0F766E; }

.gp-advantage__title {
    font-size: 15px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.35;
    margin: 0 0 4px;
}

.gp-advantage__desc {
    font-size: 13px;
    color: #64748B;
    line-height: 1.5;
    margin: 0;
}

/* --- Process stepper --- */
.gp-process__track {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    position: relative;
}

.gp-process__line {
    position: absolute;
    top: 48px;
    left: 9%;
    right: 9%;
    height: 0;
    border-top: 2px dashed #C7C9F5;
    z-index: 0;
}

.gp-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.gp-step__icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #EEF1F6;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gp-step__icon svg {
    width: 38px;
    height: 38px;
    color: #0F766E;
}

.gp-step:nth-child(even) .gp-step__icon svg { color: #19587F; }

.gp-step:hover .gp-step__icon {
    transform: translateY(-5px);
    box-shadow: 0 18px 38px rgba(15, 118, 110, 0.16);
}

.gp-step__title {
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 6px;
}

.gp-step__desc {
    font-size: 13px;
    color: #64748B;
    line-height: 1.5;
    max-width: 160px;
    margin: 0;
}

/* --- Responsive --- */
@media (max-width: 1199px) {
    .gp-title { font-size: 38px; }
    .gp-sidebar { width: 240px; }
    .gp-advantages { padding: 32px 28px; }
}

@media (max-width: 991px) {
    .gp-title { font-size: 32px; }
    .gp-header { margin-bottom: 48px; }

    /* Stack: India sidebar, map, global sidebar */
    .gp-map-section {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 56px;
    }

    .gp-sidebar {
        width: 100%;
        max-width: 460px;
    }

    .gp-map {
        order: -1;
        width: 100%;
        max-width: 620px;
    }

    .gp-advantages__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px 20px;
    }

    .gp-advantages { margin-bottom: 56px; }

    /* Process wraps to a 2-column grid; drop the connecting line */
    .gp-process__track {
        flex-wrap: wrap;
        justify-content: center;
        gap: 36px 16px;
    }

    .gp-process__line { display: none; }

    .gp-step {
        flex: 0 0 calc(33.333% - 16px);
    }
}

@media (max-width: 767px) {
    .gp-title { font-size: 27px; }
    .gp-advantages__grid { grid-template-columns: repeat(2, 1fr); }
    .gp-step { flex: 0 0 calc(50% - 16px); }
    .gp-step__icon { width: 84px; height: 84px; }
    .gp-step__icon svg { width: 34px; height: 34px; }
}

@media (max-width: 479px) {
    .gp-title { font-size: 23px; }
    .gp-advantages__grid { grid-template-columns: 1fr; }
    .gp-advantage {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 16px;
    }
    .gp-step { flex: 0 0 100%; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
    .gp-arc, .gp-node__ring { animation: none; }
    .gp-arc { opacity: 0.5; }
    .gp-node__ring { opacity: 0; }
}

/* =========================================================
   Home â€“ Ready to Transform CTA (rocket + orbiting badges)
   ========================================================= */
.cta-transform {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, rgba(248, 250, 252, 0.7) 100%);
}

.cta-transform__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(148, 163, 184, 0.18) 1px, transparent 1.4px),
        radial-gradient(ellipse 50% 55% at 78% 45%, rgba(15, 118, 110, 0.06), transparent 70%);
    background-size: 26px 26px, 100% 100%;
    background-position: 0 0, 0 0;
    opacity: 0.9;
}

.cta-transform__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
}

/* --- Left column --- */
.cta-transform__overline {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #19587F;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.cta-transform__overline-line {
    width: 30px;
    height: 2px;
    background: #19587F;
    border-radius: 2px;
}

.cta-transform__title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    color: #0F172A;
    margin: 0 0 22px;
}

.cta-transform__title-grad {
    display: block;
    background: linear-gradient(90deg, #0F766E 0%, #19587F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: #0F766E;
    -webkit-text-fill-color: transparent;
}

.cta-transform__desc {
    font-size: 16px;
    line-height: 1.65;
    color: #475569;
    margin: 0 0 32px;
    max-width: 540px;
}

/* --- Micro-features --- */
.cta-transform__features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 24px;
    border-right: 1px solid #E2E8F0;
}

.cta-feature:last-child {
    border-right: 0;
    padding-right: 0;
}

.cta-feature__icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    color: #0F766E;
}

.cta-feature:nth-child(2) .cta-feature__icon { color: #0F766E; }
.cta-feature:nth-child(3) .cta-feature__icon { color: #19587F; }

.cta-feature__icon svg { width: 100%; height: 100%; }

.cta-feature__text { display: flex; flex-direction: column; line-height: 1.3; }
.cta-feature__title { font-size: 13px; font-weight: 600; color: #0F172A; }
.cta-feature__sub { font-size: 12px; color: #64748B; }

/* --- Buttons --- */
.cta-transform__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.cta-btn--primary {
    background: linear-gradient(90deg, #19587F 0%, #0F4C75 50%, #19B5A5 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(25, 88, 127, 0.25);
    border: none;
}

.cta-btn--primary:hover {
    background: linear-gradient(90deg, #174F73 0%, #16A394 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(25, 88, 127, 0.35);
}

.cta-btn--ghost {
    background: #fff;
    color: #0F766E;
    border: 1px solid #D8B4FE;
}

.cta-btn--ghost:hover {
    color: #0F766E;
    background: #F3E8FF;
    border-color: #C084FC;
}

/* --- Right column: rocket + orbits --- */
.cta-transform__visual {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1.5px dashed rgba(15, 118, 110, 0.22);
    border-radius: 50%;
}

.cta-orbit--outer { width: 440px; height: 440px; animation: cta-spin 60s linear infinite; }
.cta-orbit--inner { width: 300px; height: 300px; border-color: rgba(25, 88, 127, 0.18); animation: cta-spin 45s linear infinite reverse; }

@keyframes cta-spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.cta-rocket {
    position: relative;
    z-index: 3;
    width: 168px;
    height: 168px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 35%, #0F766E 0%, #0F766E 55%, #3B1568 100%);
    box-shadow: 0 24px 50px rgba(15, 118, 110, 0.4), inset 0 0 30px rgba(255, 255, 255, 0.12);
    animation: cta-float 5s ease-in-out infinite;
}

.cta-rocket::after {
    content: "";
    position: absolute;
    bottom: -22px;
    width: 120px;
    height: 30px;
    background: radial-gradient(ellipse, rgba(15, 118, 110, 0.35), transparent 70%);
    filter: blur(4px);
}

.cta-rocket svg { width: 78px; height: 78px; }

@keyframes cta-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* --- Floating badges --- */
.cta-badge {
    position: absolute;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: cta-float 6s ease-in-out infinite;
}

.cta-badge__circle {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.cta-badge__circle svg { width: 26px; height: 26px; }
.cta-badge__circle--purple { color: #0F766E; }
.cta-badge__circle--red { color: #19587F; }

.cta-badge__label {
    font-size: 12px;
    font-weight: 500;
    color: #1E293B;
    white-space: nowrap;
}

.cta-badge--dev   { left: 0;    top: 46%; }
.cta-badge--ai    { left: 16%;  top: 6%;  animation-delay: 0.6s; }
.cta-badge--cloud { right: 14%; top: 4%;  animation-delay: 1.2s; }
.cta-badge--cyber { right: 0;   top: 48%; animation-delay: 0.9s; }
.cta-badge--infra { right: 16%; bottom: 8%; animation-delay: 0.3s; }

/* --- Responsive --- */
@media (max-width: 1199px) {
    .cta-transform__title { font-size: 40px; }
    .cta-transform__visual { height: 420px; }
    .cta-orbit--outer { width: 380px; height: 380px; }
    .cta-orbit--inner { width: 260px; height: 260px; }
}

@media (max-width: 991px) {
    .cta-transform__inner { grid-template-columns: 1fr; gap: 56px; }
    .cta-transform__content { text-align: center; }
    .cta-transform__overline, .cta-transform__actions, .cta-transform__features { justify-content: center; }
    .cta-transform__desc { margin-left: auto; margin-right: auto; }
}

@media (max-width: 575px) {
    .cta-transform__title { font-size: 30px; }
    .cta-feature {
        border-right: 0;
        padding-right: 0;
        flex: 0 0 100%;
        justify-content: center;
    }
    .cta-transform__features { gap: 16px; }
    .cta-transform__actions { flex-direction: column; }
    .cta-btn { justify-content: center; }
    .cta-transform__visual { height: 360px; }
    .cta-orbit--outer { width: 300px; height: 300px; }
    .cta-orbit--inner { width: 210px; height: 210px; }
    .cta-rocket { width: 130px; height: 130px; }
    .cta-rocket svg { width: 60px; height: 60px; }
    .cta-badge__label { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
    .cta-orbit, .cta-rocket, .cta-badge { animation: none; }
}

/* =========================================================
   Industry landing page (admin-managed, mockup-matching)
   Reuses the svc-* tokens (--svc-primary, --svc-dark, buttons,
   eyebrow, section titles) and adds ind-* for the unique layouts.
   ========================================================= */
:root {
    --ind-indigo: #0F766E;
    --ind-soft-purple: #E0F2F0;
}

.ind-btn--indigo {
    background: transparent;
    color: var(--ind-indigo);
    border-color: var(--ind-indigo);
}
.ind-btn--indigo:hover {
    background: var(--ind-indigo);
    color: #fff;
    transform: translateY(-2px);
}
.ind-btn--outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}
.ind-btn--outline-white:hover {
    background: #fff;
    color: var(--svc-dark);
    transform: translateY(-2px);
}

/* ---------- Hero ---------- */
.ind-hero {
    position: relative;
    overflow: hidden;
    padding: 28px 0 90px;
    background: linear-gradient(120deg, #EAF2F7 0%, #EAF2F7 100%);
}
.ind-hero__blob {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(25, 88, 127, 0.10) 0%, rgba(25, 88, 127, 0) 70%);
    z-index: 0;
}
.ind-hero .container { position: relative; z-index: 1; }

.ind-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: #64748B;
    margin-bottom: 34px;
}
.ind-breadcrumb a { color: #64748B; transition: color 0.2s; }
.ind-breadcrumb a:hover { color: var(--svc-primary); }
.ind-breadcrumb__current { color: var(--svc-dark); font-weight: 600; }

.ind-hero__title {
    font-size: 46px;
    line-height: 1.18;
    font-weight: 700;
    color: var(--svc-dark);
    margin: 0 0 20px;
}
.ind-hero__intro {
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--svc-body);
    margin: 0 0 26px;
    max-width: 540px;
}
.ind-hero__features {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 22px;
    max-width: 540px;
}
.ind-hero__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--svc-dark);
}
.ind-hero__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--ind-soft-purple);
    color: var(--ind-indigo);
    font-size: 14px;
    flex-shrink: 0;
}
.ind-hero__feature-icon img { width: 18px; height: 18px; object-fit: contain; }
.ind-hero__buttons { display: flex; flex-wrap: wrap; gap: 14px; }

.ind-hero__media { position: relative; }
.ind-hero__frame { position: relative; padding: 10px; }
.ind-hero__image {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 150px 16px 16px 16px;
    box-shadow: 0 30px 60px rgba(20, 19, 46, 0.16);
}
.ind-hero--solution .ind-hero__image {
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: contain;
}
.ind-hero--industry .ind-hero__image {
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
}
.ind-hero__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #efe7f7, #fbe7f1);
    color: var(--svc-primary);
    font-size: 80px;
}
.ind-hero__badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    box-shadow: 0 14px 30px rgba(20, 19, 46, 0.14);
    font-size: 13px;
    font-weight: 600;
    color: var(--svc-dark);
    max-width: 210px;
}
.ind-hero__badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--ind-soft-purple);
    color: var(--ind-indigo);
    flex-shrink: 0;
}
.ind-hero__badge-icon img { width: 16px; height: 16px; object-fit: contain; }
.ind-hero__badge--1 { top: 26px; left: -10px; }
.ind-hero__badge--2 { top: 120px; right: -16px; }
.ind-hero__badge--3 { bottom: 120px; left: -16px; }
.ind-hero__badge--4 { bottom: 24px; right: 10px; }

/* ---------- Trust ---------- */
.ind-trust { padding-top: 18px; }
.ind-trust__label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #94a3b8;
    margin: 0;
}
.ind-trust .brand-logo-slider-area { padding-top: 24px; padding-bottom: 36px; }

/* ---------- Challenges + Solutions split ---------- */
.ind-split__title { font-size: 32px; margin-bottom: 18px; }
.ind-split__intro {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--svc-body);
    margin: 0 0 26px;
}
.ind-split__right { padding-left: 24px; }

.ind-challenges { list-style: none; margin: 0; padding: 0; }
.ind-challenges li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid var(--svc-line);
    font-size: 15.5px;
    line-height: 1.5;
    color: var(--svc-dark);
}
.ind-challenges li:last-child { border-bottom: none; }
.ind-challenges__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(25, 88, 127, 0.10);
    color: var(--svc-primary);
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.ind-solutions__grid { row-gap: 22px; }
.ind-solution-card {
    height: 100%;
    border: 1px solid var(--svc-line);
    border-radius: 12px;
    padding: 24px;
    background: #fff;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.ind-solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(20, 19, 46, 0.10);
    border-color: transparent;
}
.ind-solution-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--ind-soft-purple);
    color: var(--ind-indigo);
    font-size: 20px;
    margin-bottom: 16px;
}
.ind-solution-card__icon img { width: 26px; height: 26px; object-fit: contain; }
.ind-solution-card__title {
    font-size: 17px;
    font-weight: 600;
    color: var(--svc-dark);
    margin: 0 0 8px;
}
.ind-solution-card__text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--svc-body);
    margin: 0;
}

/* ---------- Stats ---------- */
.ind-stats {
    padding: 55px 0;
    background: var(--svc-soft);
}
.ind-stats__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
}
.ind-stat {
    text-align: center;
    padding: 10px;
}
.ind-stat__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 18px rgba(20, 19, 46, 0.08);
    color: var(--svc-primary);
    font-size: 20px;
    margin-bottom: 14px;
}
.ind-stat__icon img { width: 26px; height: 26px; object-fit: contain; }
.ind-stat__value {
    display: block;
    font-size: clamp(26px, 1.55vw, 30px);
    font-weight: 700;
    color: var(--svc-dark);
    line-height: 1.2;
}
.ind-stat__label {
    display: block;
    font-size: clamp(14px, 0.8vw, 15px);
    color: var(--svc-body);
    margin-top: 6px;
    line-height: 1.5;
}

/* ---------- Success stories ---------- */
.ind-cases__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 36px;
}
.ind-cases__view {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--svc-primary);
    white-space: nowrap;
    transition: gap 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.ind-cases__view:hover { color: #124A66; gap: 12px; }
.ind-case-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--svc-line);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.ind-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(20, 19, 46, 0.12);
}
.ind-case-card__media {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #f1f0f6;
    overflow: hidden;
}
.ind-case-card__media img { width: 100%; height: 100%; object-fit: cover; }
.ind-case-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #c7c5d4;
    font-size: 40px;
}
.ind-case-card__body { padding: 22px 24px 26px; }
.ind-case-card__tag {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--ind-indigo);
    background: var(--ind-soft-purple);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.ind-case-card__title {
    font-size: 17.5px;
    font-weight: 600;
    color: var(--svc-dark);
    margin: 0 0 10px;
    line-height: 1.35;
}
.ind-case-card__text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--svc-body);
    margin: 0 0 16px;
}
.ind-case-card__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--svc-primary);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: gap 0.2s;
}
.ind-case-card__link:hover { color: #124A66; gap: 11px; }

/* ---------- Solutions grid ---------- */
.ind-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}
.ind-grid__item {
    text-align: center;
    padding: 12px;
}
.ind-grid__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    margin-bottom: 14px;
    color: var(--ind-indigo);
    font-size: 26px;
    background: var(--ind-soft-purple);
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    transition: transform 0.2s, color 0.2s, background 0.2s;
}
.ind-grid__icon img { width: 34px; height: 34px; object-fit: contain; }
.ind-grid__item:hover .ind-grid__icon {
    transform: translateY(-4px);
    background: var(--svc-primary);
    color: #fff;
}
.ind-grid__label {
    display: block;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--svc-dark);
    line-height: 1.4;
}

/* ---------- FAQ + mid CTA ---------- */
.ind-faq__main { padding-right: 30px; }
.ind-accordion__item {
    border: none;
    border-bottom: 1px solid var(--svc-line);
    background: transparent;
}
.ind-accordion__button {
    padding: 20px 0;
    font-size: 16.5px;
    font-weight: 600;
    color: var(--svc-dark);
    background: transparent;
    box-shadow: none;
}
.ind-accordion__button:not(.collapsed) { color: var(--svc-primary); background: transparent; box-shadow: none; }
.ind-accordion__button:focus { box-shadow: none; }
.ind-accordion__button::after {
    width: 18px;
    height: 18px;
    background-size: 18px;
}
.ind-accordion__body {
    padding: 0 0 22px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--svc-body);
}
.ind-midcta {
    position: relative;
    overflow: hidden;
    background: var(--svc-soft);
    border: 1px solid var(--svc-line);
    border-radius: 16px;
    padding: 38px 34px;
}
.ind-midcta__pattern {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 2px dashed rgba(25, 88, 127, 0.25);
}
.ind-midcta__title {
    position: relative;
    font-size: 23px;
    font-weight: 700;
    color: var(--svc-dark);
    margin: 0 0 14px;
    line-height: 1.3;
}
.ind-midcta__text {
    position: relative;
    font-size: 15px;
    line-height: 1.65;
    color: var(--svc-body);
    margin: 0 0 24px;
}

/* ---------- Bottom CTA band ---------- */
.ind-ctaband { padding: 0 0 70px; }
.ind-ctaband__inner {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 28px;
    background: linear-gradient(115deg, #1E1B4B 0%, #14132e 60%);
    border-radius: 20px;
    padding: 48px 54px;
}
.ind-ctaband__glow {
    position: absolute;
    left: -60px;
    top: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(25, 88, 127, 0.45) 0%, rgba(25, 88, 127, 0) 70%);
}
.ind-ctaband__text {
    position: relative;
    display: flex;
    align-items: center;
    gap: 22px;
    max-width: 620px;
}
.ind-ctaband__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    color: var(--svc-primary);
    font-size: 24px;
    flex-shrink: 0;
}
.ind-ctaband__title {
    font-size: 27px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.25;
}
.ind-ctaband__subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}
.ind-ctaband__buttons {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* ---------- Responsive ---------- */
@media only screen and (max-width: 1199px) {
    .ind-hero__title { font-size: 40px; }
    .ind-stats__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 34px; }
    .ind-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media only screen and (max-width: 991px) {
    .ind-hero { padding: 24px 0 70px; }
    .ind-hero__title { font-size: 34px; }
    .ind-hero__media { margin-top: 50px; }
    .ind-hero__image { height: 380px; }
    .ind-split__right { padding-left: 0; margin-top: 44px; }
    .ind-faq__main { padding-right: 0; margin-bottom: 40px; }
    .ind-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ind-ctaband__inner { padding: 40px 36px; }
    .ind-cases__head { flex-direction: column; align-items: flex-start; }
}

@media only screen and (max-width: 575px) {
    .ind-hero__title { font-size: 28px; }
    .ind-hero__features { grid-template-columns: 1fr; }
    .ind-hero__buttons .svc-btn { flex: 1 1 100%; }
    .ind-split__title { font-size: 26px; }
    .ind-stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ind-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
    .ind-ctaband__text { flex-direction: column; text-align: center; }
    .ind-ctaband__buttons { width: 100%; }
    .ind-ctaband__buttons .svc-btn { flex: 1 1 100%; }
}

/* =========================================================
   Solution landing page â€” why-choose + testimonial
   Reuses svc-* / ind-* primitives; only the bits unique to
   the solution "Why Choose" block are defined here.
   ========================================================= */
.sol-why__title { margin-bottom: 24px; }
.sol-why__points { margin-top: 6px; }
.sol-why__aside { padding-left: 24px; }
.sol-why__media {
    margin-bottom: 26px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(20, 19, 46, 0.14);
}
.sol-why__media img { width: 100%; height: auto; display: block; }

.sol-testimonial {
    position: relative;
    margin: 0;
    background: var(--svc-soft);
    border: 1px solid var(--svc-line);
    border-radius: 16px;
    padding: 34px 32px;
}
.sol-testimonial__mark {
    position: absolute;
    top: 26px;
    right: 28px;
    color: rgba(25, 88, 127, 0.18);
    font-size: 30px;
}
.sol-testimonial__quote {
    position: relative;
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--svc-dark);
    font-style: italic;
    margin: 0 0 20px;
}
.sol-testimonial__author { display: flex; flex-direction: column; gap: 2px; }
.sol-testimonial__name { font-size: 15.5px; font-weight: 700; color: var(--svc-dark); }
.sol-testimonial__role { font-size: 13.5px; color: var(--svc-body); }
.sol-testimonial__link { margin-top: 18px; }

@media only screen and (max-width: 991px) {
    .sol-why__aside { padding-left: 0; margin-top: 40px; }
}

/* =========================================================
   Solution hero — dark variant (AI / Cloud / Security mockups)
   Same layout primitives as .ind-hero; only the palette flips to a
   deep navy background with a teal glow. Toggled per solution from
   the admin panel (hero.theme = dark).
   ========================================================= */
.ind-hero--dark {
    background: radial-gradient(125% 120% at 82% -10%, #123a52 0%, var(--svc-navy, #0c0a26) 55%, #07061a 100%);
}
.ind-hero--dark .ind-hero__blob {
    width: 540px;
    height: 540px;
    top: -120px;
    right: 2%;
    background: radial-gradient(circle, rgba(44, 115, 160, 0.45) 0%, rgba(44, 115, 160, 0) 70%);
}
.ind-hero--dark .ind-breadcrumb,
.ind-hero--dark .ind-breadcrumb a { color: rgba(255, 255, 255, 0.55); }
.ind-hero--dark .ind-breadcrumb a:hover { color: #fff; }
.ind-hero--dark .ind-breadcrumb__current { color: rgba(255, 255, 255, 0.9); }
.ind-hero--dark .svc-eyebrow {
    color: #5aa6d8;
    background: rgba(44, 115, 160, 0.18);
}
.ind-hero--dark .ind-hero__title { color: #ffffff; }
.ind-hero--dark .svc-accent { color: #5aa6d8; }
.ind-hero--dark .ind-hero__intro { color: rgba(255, 255, 255, 0.72); }
.ind-hero--dark .ind-hero__features li { color: rgba(255, 255, 255, 0.86); }
.ind-hero--dark .ind-hero__feature-icon {
    background: rgba(44, 115, 160, 0.22);
    color: #5aa6d8;
}
.ind-hero--dark .ind-btn--indigo {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
}
.ind-hero--dark .ind-btn--indigo:hover {
    background: #fff;
    color: var(--svc-dark);
}
.ind-hero--dark .ind-hero__image {
    box-shadow: 0 30px 90px rgba(25, 88, 127, 0.32);
}
.ind-hero--dark .ind-hero__image--placeholder {
    background: radial-gradient(circle at 50% 42%, rgba(44, 115, 160, 0.42), rgba(12, 10, 38, 0.25) 68%);
    color: #5aa6d8;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 0 120px rgba(25, 88, 127, 0.30);
}
.ind-hero--dark .ind-hero__badge {
    background: rgba(16, 22, 44, 0.74);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.40);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.ind-hero--dark .ind-hero__badge-icon {
    background: rgba(44, 115, 160, 0.26);
    color: #5aa6d8;
}

/* ---------- Solution process: centred heading + full-width stepper ---------- */
.sol-process .svc-process__steps { margin-top: 10px; }
@media only screen and (max-width: 767px) {
    .sol-process .svc-process__steps .row.flex-nowrap { flex-wrap: wrap !important; row-gap: 36px; }
    .sol-process .svc-process__steps .row.flex-nowrap > .col { flex: 0 0 50%; max-width: 50%; }
    .sol-process .svc-step::before { display: none; }
}

/* =========================================================
   About Us page (2024 redesign)
   Scoped about-* classes; aligned to brand magenta/purple.
   ========================================================= */
:root {
    --about-primary: #19587F;
    --about-secondary: #0F766E;
    --about-soft: #EAF2F7;
    --about-heading: #111426;
    --about-body: #5a6072;
    --about-border: #ededed;
}

.about-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--about-primary);
    margin-bottom: 16px;
}
.about-section-label::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--about-primary);
    border-radius: 2px;
}
.about-section-label--center { justify-content: center; }

.about-section-heading {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--about-heading);
    margin: 0 0 20px;
}
.about-section-heading .text-color-primary { color: var(--about-primary); }

/* ---------- Buttons ---------- */
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}
.about-btn--primary {
    background: linear-gradient(135deg, var(--about-primary) 0%, var(--about-secondary) 100%);
    color: #fff;
    box-shadow: 0 12px 28px rgba(25, 88, 127, 0.28);
}
.about-btn--primary:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 18px 36px rgba(25, 88, 127, 0.34); }
.about-btn--ghost {
    background: transparent;
    color: var(--about-heading);
    border: 1.5px solid var(--about-border);
}
.about-btn--ghost:hover { color: var(--about-primary); border-color: var(--about-primary); }

/* ---------- Hero ---------- */
.about-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}
.about-hero__title {
    font-size: 46px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--about-heading);
    margin: 0 0 22px;
}
.about-hero__title .text-color-primary { color: var(--about-primary); }
.about-hero__desc {
    font-size: 17px;
    line-height: 1.75;
    color: var(--about-body);
    margin: 0 0 32px;
    max-width: 560px;
}
.about-hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

.about-hero__media { position: relative; padding: 28px; }
.about-hero__image {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(17, 20, 38, 0.18);
}
.about-hero__image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.about-hero__shape {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    width: 78%;
    height: 82%;
    background: linear-gradient(135deg, rgba(25, 88, 127, 0.12) 0%, rgba(15, 118, 110, 0.12) 100%);
    border-radius: 24px;
}
.about-hero__dots {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(var(--about-primary) 1.6px, transparent 1.6px);
    background-size: 16px 16px;
    opacity: 0.35;
}

/* ---------- Statistics bar ---------- */
.about-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    background: #fff;
    border: 1px solid var(--about-border);
    border-radius: 16px;
    box-shadow: 0 18px 44px rgba(17, 20, 38, 0.06);
    overflow: hidden;
}
.about-stat {
    text-align: center;
    padding: 34px 20px;
    border-right: 1px solid var(--about-border);
}
.about-stat:last-child { border-right: none; }
.about-stat__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    border-radius: 12px;
    color: var(--about-primary);
    background: var(--about-soft);
}
.about-stat__icon svg { width: 24px; height: 24px; }
.about-stat__num {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--about-heading);
    line-height: 1;
    margin-bottom: 8px;
}
.about-stat__label { font-size: 14px; color: var(--about-body); }

/* ---------- Company overview ---------- */
.about-overview__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}
.about-overview__image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 26px 54px rgba(17, 20, 38, 0.14);
}
.about-overview__image img { width: 100%; display: block; object-fit: cover; }
.about-overview__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--about-body);
    margin: 0 0 28px;
}
.about-checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.about-checklist__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    color: var(--about-heading);
    font-weight: 500;
}
.about-checklist__icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    margin-top: 1px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--about-primary) 0%, var(--about-secondary) 100%);
}
.about-checklist__icon svg { width: 15px; height: 15px; }

/* ---------- Vision & Mission ---------- */
.about-vm__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.about-vm__card {
    background: var(--about-soft);
    border: 1px solid rgba(25, 88, 127, 0.08);
    border-radius: 18px;
    padding: 42px;
}
.about-vm__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 22px;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--about-primary) 0%, var(--about-secondary) 100%);
    box-shadow: 0 14px 30px rgba(25, 88, 127, 0.26);
}
.about-vm__icon svg { width: 30px; height: 30px; }
.about-vm__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--about-heading);
    margin: 0 0 14px;
}
.about-vm__text { font-size: 16px; line-height: 1.8; color: var(--about-body); margin: 0; }

/* ---------- Values ---------- */
.about-values__subtitle {
    font-size: 16px;
    color: var(--about-body);
    max-width: 620px;
    margin: 0 auto;
}
.about-values__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}
.about-value-card {
    background: #fff;
    border: 1px solid var(--about-border);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.about-value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(25, 88, 127, 0.25);
    box-shadow: 0 22px 44px rgba(17, 20, 38, 0.1);
}
.about-value-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    border-radius: 14px;
    color: var(--about-primary);
    background: var(--about-soft);
    transition: color 0.25s, background 0.25s;
}
.about-value-card:hover .about-value-card__icon {
    color: #fff;
    background: linear-gradient(135deg, var(--about-primary) 0%, var(--about-secondary) 100%);
}
.about-value-card__icon svg { width: 28px; height: 28px; }
.about-value-card__title { font-size: 18px; font-weight: 700; color: var(--about-heading); margin: 0 0 10px; }
.about-value-card__text { font-size: 14px; line-height: 1.7; color: var(--about-body); margin: 0; }

/* ---------- Global presence ---------- */
.about-global__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 60px;
}
.about-global__text { font-size: 16px; line-height: 1.8; color: var(--about-body); margin: 0 0 28px; }
.about-global__map {
    position: relative;
    padding: 18px;
    border-radius: 18px;
}
.about-global__map svg { width: 100%; height: auto; display: block; }
.about-global__india { fill: #ff3b5c; opacity: 0.92; }
.about-global__arcs path { stroke: rgba(255, 59, 92, 0.4); stroke-width: 1.5; stroke-dasharray: 4 5; }
.about-global__nodes circle { fill: #ff3b5c; }
.about-global__hub-ring { fill: rgba(255, 59, 92, 0.25); }
.about-global__hub-dot { fill: #ff3b5c; }
.about-global__card {
    position: absolute;
    right: 5%;
    bottom: 7%;
    background: #fff;
    border: 1px solid var(--about-border);
    border-radius: 24px;
    padding: 20px 26px;
    text-align: center;
    box-shadow: 0 20px 44px rgba(17, 20, 38, 0.14);
}
.about-global__card-num {
    display: block;
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--about-primary);
    line-height: 1;
}
.about-global__card-label { font-size: 13px; color: var(--about-body); }

/* ---------- CTA banner ---------- */
.about-cta {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 40px 48px;
    border-radius: 20px;
    background: linear-gradient(120deg, var(--about-primary) 0%, var(--about-secondary) 100%);
    box-shadow: 0 26px 56px rgba(15, 118, 110, 0.3);
}
.about-cta__icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 18px;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
}
.about-cta__icon svg { width: 36px; height: 36px; }
.about-cta__body { flex: 1 1 auto; }
.about-cta__title { font-size: 26px; font-weight: 700; color: #fff; margin: 0 0 8px; }
.about-cta__text { font-size: 16px; color: rgba(255, 255, 255, 0.88); margin: 0; }
.about-cta__btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: 10px;
    background: #fff;
    color: var(--about-primary);
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.about-cta__btn:hover { color: var(--about-secondary); transform: translateY(-3px); box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2); }

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
    .about-hero__title { font-size: 40px; }
    .about-section-heading { font-size: 32px; }
}
@media (max-width: 991px) {
    .about-hero__grid,
    .about-overview__grid,
    .about-global__grid { grid-template-columns: 1fr; gap: 48px; }
    .about-overview__media { order: 2; }
    .about-hero__media { order: -1; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
    .about-stat:nth-child(3) { border-right: none; }
    .about-stat { border-bottom: 1px solid var(--about-border); }
    .about-values__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
    .about-hero__title { font-size: 32px; }
    .about-section-heading { font-size: 27px; }
    .about-vm__grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .about-stat:nth-child(3) { border-right: 1px solid var(--about-border); }
    .about-stat:nth-child(even) { border-right: none; }
    .about-values__grid { grid-template-columns: repeat(2, 1fr); }
    .about-cta { flex-direction: column; text-align: center; padding: 36px 28px; }
    .about-global__card { right: 50%; transform: translateX(50%); bottom: -10px; }
}
@media (max-width: 479px) {
    .about-stats { grid-template-columns: 1fr; }
    .about-stat { border-right: none !important; }
    .about-values__grid { grid-template-columns: 1fr; }
    .about-hero__actions .about-btn { flex: 1 1 100%; justify-content: center; }
}

/* =========================================================
   Contact Us page (2024 redesign)
   Scoped contact-* classes; reuses about-* brand tokens.
   ========================================================= */
:root {
    --contact-hero-bg: #020B24;
    --contact-hero-bg-end: #071838;
    --contact-cta-bg: #04102D;
    --contact-whatsapp: #25D366;
}

.contact-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--about-primary);
    margin-bottom: 16px;
}
.contact-section-label::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--about-primary);
    border-radius: 2px;
}
.contact-section-label--center { justify-content: center; }
.contact-section-label--light { color: #ff8fb6; }
.contact-section-label--light::before { background: var(--about-primary); }

/* ---------- Hero ---------- */
.contact-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--contact-hero-bg) 0%, var(--contact-hero-bg-end) 100%);
    padding: 70px 0;
}
.contact-hero__grid-bg {
    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: 46px 46px;
    mask-image: radial-gradient(ellipse at center, #000 0%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 78%);
}
.contact-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
    pointer-events: none;
}
.contact-hero__glow--one { width: 360px; height: 360px; top: -120px; right: -60px; background: rgba(44, 115, 160, 0.4); }
.contact-hero__glow--two { width: 320px; height: 320px; bottom: -140px; left: -80px; background: rgba(15, 118, 110, 0.4); }

.contact-hero__layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    gap: 40px;
}
.contact-hero__title {
    font-size: 42px;
    line-height: 1.18;
    font-weight: 700;
    color: #fff;
    margin: 0 0 24px;
}
.contact-hero__title .text-color-primary { color: #4A90BA; }
.contact-hero__desc {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 40px;
    max-width: 520px;
}
.contact-hero__methods { display: flex; flex-wrap: wrap; gap: 40px; }
.contact-method {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}
a.contact-method:hover .contact-method__value { color: #F59E0B; }
.contact-method__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-method__icon svg { width: 22px; height: 22px; }
.contact-method__body { display: flex; flex-direction: column; }
.contact-method__label { font-size: 13px; color: rgba(255, 255, 255, 0.55); }
.contact-method__value { font-size: 16px; font-weight: 600; color: #fff; transition: color 0.2s; }

/* Hero illustration */
.contact-hero__media { display: flex; justify-content: center; }
.contact-hero__rings {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-hero__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(44, 115, 160, 0.3);
}
.contact-hero__ring--lg { width: 320px; height: 320px; animation: contactSpin 26s linear infinite; }
.contact-hero__ring--md { width: 220px; height: 220px; border-color: rgba(255, 255, 255, 0.12); }
.contact-hero__core {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--about-primary) 0%, var(--about-secondary) 100%);
    box-shadow: 0 0 0 10px rgba(44, 115, 160, 0.12), 0 20px 50px rgba(44, 115, 160, 0.4);
}
.contact-hero__core svg { width: 46px; height: 46px; }
.contact-hero__float {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(4px);
}
.contact-hero__float svg { width: 24px; height: 24px; }
.contact-hero__float--phone { top: 24px; left: 30px; animation: contactFloat 5s ease-in-out infinite; }
.contact-hero__float--pin { bottom: 30px; right: 28px; animation: contactFloat 5s ease-in-out infinite 1.6s; }

@keyframes contactSpin { to { transform: rotate(360deg); } }
@keyframes contactFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Benefits ---------- */
.contact-benefits__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border: 1px solid var(--about-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(17, 20, 38, 0.06);
}
.contact-benefit-card {
    background: #fff;
    padding: 32px 24px;
    text-align: center;
    border-right: 1px solid var(--about-border);
    transition: background 0.25s, transform 0.25s;
}
.contact-benefit-card:last-child { border-right: none; }
.contact-benefit-card:hover { background: var(--about-soft); transform: translateY(-4px); }
.contact-benefit-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    border-radius: 14px;
    color: var(--about-primary);
    background: var(--about-soft);
}
.contact-benefit-card__icon svg { width: 28px; height: 28px; }
.contact-benefit-card__title { font-size: 17px; font-weight: 700; color: var(--about-heading); margin: 0 0 10px; }
.contact-benefit-card__text { font-size: 14px; line-height: 1.6; color: var(--about-body); margin: 0; }

/* ---------- Contact main (form + info) ---------- */
.contact-main__grid {
    display: grid;
    grid-template-columns: 62% 38%;
    align-items: start;
    gap: 40px;
}
.contact-form-card,
.contact-info-card {
    background: #fff;
    border: 1px solid var(--about-border);
    border-radius: 12px;
}
.contact-form-card { padding: 32px; }
.contact-form-card__desc { font-size: 15px; line-height: 1.7; color: var(--about-body); margin: 0 0 24px; }

.contact-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.contact-field { display: flex; flex-direction: column; }
.contact-field--full { grid-column: 1 / -1; }
.contact-field label {
    font-size: 14px;
    font-weight: 600;
    color: var(--about-heading);
    margin-bottom: 8px;
}
.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    padding: 13px 16px;
    font-size: 15px;
    color: var(--about-heading);
    background: #fff;
    border: 1px solid var(--about-border);
    border-radius: 10px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-field textarea { resize: vertical; min-height: 130px; }
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: var(--about-primary);
    box-shadow: 0 0 0 3px rgba(44, 115, 160, 0.12);
}
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: #9aa0ad; }
.contact-form__submit { margin-top: 24px; border: none; cursor: pointer; }
.contact-form__privacy { font-size: 13px; color: #8A8A8A; margin: 16px 0 0; }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.contact-info-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    color: var(--about-primary);
    background: var(--about-soft);
}
.contact-info-card__icon svg { width: 24px; height: 24px; }
.contact-info-card__body { flex: 1; }
.contact-info-card__title { font-size: 16px; font-weight: 700; color: var(--about-heading); margin: 0 0 4px; }
.contact-info-card__text { font-size: 14px; line-height: 1.55; color: var(--about-body); margin: 0; }
.contact-info-card__text a { color: var(--about-body); }
.contact-info-card__text a:hover { color: var(--about-primary); }
.contact-info-card--whatsapp:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(37, 211, 102, 0.18); border-color: var(--contact-whatsapp); }
.contact-info-card--whatsapp .contact-info-card__icon { color: var(--contact-whatsapp); background: rgba(37, 211, 102, 0.1); }
.contact-info-card__arrow { color: var(--contact-whatsapp); font-size: 20px; font-weight: 700; }

/* ---------- Statistics strip ---------- */
.contact-statbar__inner {
    display: grid;
    grid-template-columns: 1.6fr repeat(4, 1fr);
    align-items: center;
    background: var(--about-soft);
    border-radius: 12px;
    padding: 28px 36px;
}
.contact-statbar__intro { padding-right: 28px; border-right: 1px solid rgba(44, 115, 160, 0.18); }
.contact-statbar__intro .contact-section-label { margin-bottom: 8px; }
.contact-statbar__title { font-size: 22px; font-weight: 700; color: var(--about-heading); margin: 0; line-height: 1.3; }
.contact-stat { text-align: center; padding: 0 16px; border-right: 1px solid rgba(44, 115, 160, 0.18); }
.contact-stat:last-child { border-right: none; }
.contact-stat__num { font-size: 32px; font-weight: 700; color: var(--about-primary); line-height: 1; margin-bottom: 6px; }
.contact-stat__label { font-size: 13px; color: var(--about-body); }

/* ---------- FAQ ---------- */
.contact-faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}
.contact-faq-item {
    background: #fff;
    border: 1px solid var(--about-border);
    border-radius: 10px;
    overflow: hidden;
}
.contact-faq-item__q {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    cursor: pointer;
    list-style: none;
}
.contact-faq-item__q::-webkit-details-marker { display: none; }
.contact-faq-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 10px;
    color: var(--about-primary);
    background: var(--about-soft);
}
.contact-faq-item__icon svg { width: 20px; height: 20px; }
.contact-faq-item__text { flex: 1; font-size: 16px; font-weight: 600; color: var(--about-heading); }
.contact-faq-item__toggle {
    display: inline-flex;
    flex-shrink: 0;
    color: var(--about-body);
    transition: transform 0.25s;
}
.contact-faq-item__toggle svg { width: 18px; height: 18px; }
.contact-faq-item[open] .contact-faq-item__toggle { transform: rotate(180deg); }
.contact-faq-item__a {
    padding: 0 24px 22px 74px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--about-body);
}

/* ---------- CTA banner ---------- */
.contact-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, var(--contact-cta-bg) 0%, var(--contact-hero-bg-end) 100%);
    border-radius: 10px;
    padding: 32px 40px;
}
.contact-cta__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--about-primary) 0%, var(--about-secondary) 100%);
}
.contact-cta__icon svg { width: 30px; height: 30px; }
.contact-cta__body { flex: 1; }
.contact-cta__title { font-size: 24px; font-weight: 700; color: #fff; margin: 0 0 6px; }
.contact-cta__text { font-size: 15px; color: rgba(255, 255, 255, 0.7); margin: 0; }
.contact-cta__actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.contact-cta__call {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.2s, background 0.2s;
}
.contact-cta__call:hover { color: #fff; border-color: #fff; background: rgba(255, 255, 255, 0.08); }

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
    .contact-hero__title { font-size: 36px; }
    .contact-statbar__inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .contact-statbar__intro { padding-right: 0; padding-bottom: 24px; border-right: none; border-bottom: 1px solid rgba(44, 115, 160, 0.18); }
    .contact-statbar__intro .contact-section-label { justify-content: center; }
    .contact-stat:nth-child(odd) { border-right: none; }
}
@media (max-width: 991px) {
    .contact-hero__layout { grid-template-columns: 1fr; gap: 48px; }
    .contact-hero__media { order: -1; }
    .contact-benefits__grid { grid-template-columns: repeat(3, 1fr); }
    .contact-benefit-card:nth-child(3) { border-right: none; }
    .contact-benefit-card { border-bottom: 1px solid var(--about-border); }
    .contact-main__grid { grid-template-columns: 1fr; gap: 32px; }
    .contact-statbar__inner { grid-template-columns: repeat(2, 1fr); }
    .contact-stat { border-bottom: 1px solid rgba(44, 115, 160, 0.18); padding-top: 12px; padding-bottom: 12px; }
    .contact-stat:nth-child(even) { border-right: none; }
    .contact-statbar__intro { grid-column: 1 / -1; }
}
@media (max-width: 767px) {
    .contact-hero__title { font-size: 30px; }
    .contact-hero__methods { flex-direction: column; gap: 20px; }
    .contact-benefits__grid { grid-template-columns: repeat(2, 1fr); }
    .contact-benefit-card:nth-child(3) { border-right: 1px solid var(--about-border); }
    .contact-benefit-card:nth-child(even) { border-right: none; }
    .contact-form__grid { grid-template-columns: 1fr; }
    .contact-faq__grid { grid-template-columns: 1fr; }
    .contact-cta { flex-direction: column; text-align: center; padding: 32px 24px; }
    .contact-cta__actions { width: 100%; flex-direction: column; }
    .contact-cta__actions .about-btn,
    .contact-cta__call { width: 100%; justify-content: center; }
}
@media (max-width: 479px) {
    .contact-benefits__grid { grid-template-columns: 1fr; }
    .contact-benefit-card { border-right: none !important; }
    .contact-statbar__inner { grid-template-columns: 1fr; }
    .contact-stat { border-right: none; }
    .contact-form-card { padding: 24px; }
}

/* =====================================================================
   Request Consultation Modal
   ===================================================================== */
.consult-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    /* The whole overlay is the scroll container. The dialog is vertically
       centered when it fits, but when it is taller than the viewport it
       scrolls from the top (kept clear of the edges by the padding) so its
       header is never clipped. The inline-block + ghost-element approach is
       used instead of flexbox `align-items: center` / `margin: auto`, both of
       which push tall dialogs above the scroll origin and clip the header. */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 24px;
    text-align: center;
    white-space: nowrap;
}
.consult-modal[data-open] { display: block; }

/* Ghost element that provides the vertical-center baseline. */
.consult-modal::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 100%;
    vertical-align: middle;
}

.consult-modal__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    animation: consultFade 0.25s ease;
}

.consult-modal__dialog {
    position: relative;
    z-index: 1;
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
    text-align: left;
    width: 100%;
    max-width: 571px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(8, 11, 36, 0.4);
    padding: 24px;
    animation: consultPop 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Header ---------- */
.consult-modal__header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}
.consult-modal__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    color: var(--about-primary);
    background: var(--about-soft);
}
.consult-modal__icon svg { width: 24px; height: 24px; }
.consult-modal__heading { flex: 1; min-width: 0; }
.consult-modal__title {
    font-size: 19px;
    font-weight: 700;
    color: var(--about-heading);
    margin: 0 0 4px;
    line-height: 1.25;
}
.consult-modal__desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--about-body);
    margin: 0;
}
.consult-modal__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #222;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.consult-modal__close svg { width: 20px; height: 20px; }
.consult-modal__close:hover { background: var(--about-soft); color: var(--about-primary); }

/* ---------- Alerts ---------- */
.consult-modal__alert {
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    margin-bottom: 14px;
}
.consult-modal__alert--success { background: #eafaf0; color: #1b7d4f; border: 1px solid #b7e6cb; }
.consult-modal__alert--error { background: #fdecef; color: #b3243b; border: 1px solid #f5c2cb; }
.consult-modal__alert ul { margin: 0; padding-left: 18px; }

/* ---------- Form ---------- */
.consult-form { display: flex; flex-direction: column; gap: 12px; }
.consult-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.consult-field { display: flex; flex-direction: column; min-width: 0; }
.consult-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--about-heading);
    margin-bottom: 6px;
}
.consult-field label span[aria-hidden] { color: var(--about-primary); }
.consult-field__optional { font-weight: 500; color: #9aa0ad; }
.consult-field input,
.consult-field select,
.consult-field textarea {
    width: 100%;
    padding: 15px 14px;
    font-size: 14px;
    color: var(--about-heading);
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 6px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.consult-field textarea { min-height: 72px; resize: none; }
.consult-field input:focus,
.consult-field select:focus,
.consult-field textarea:focus {
    outline: none;
    border-color: var(--about-primary);
    box-shadow: 0 0 0 3px rgba(44, 115, 160, 0.12);
}
.consult-field input::placeholder,
.consult-field textarea::placeholder { color: #a0a0a0; }

.consult-form__submit {
    width: 100%;
    height: 46px;
    margin-top: 4px;
    border: none;
    border-radius: 6px;
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(135deg, var(--about-primary) 0%, var(--about-secondary) 100%);
    box-shadow: 0 12px 28px rgba(25, 88, 127, 0.28);
    transition: transform 0.2s, box-shadow 0.2s;
}
.consult-form__submit:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(25, 88, 127, 0.34); }

@keyframes consultFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes consultPop {
    from { opacity: 0; transform: translateY(16px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 575px) {
    .consult-modal { padding: 14px; }
    .consult-modal__dialog { padding: 20px; }
    .consult-modal__header { gap: 12px; margin-bottom: 14px; }
    .consult-modal__icon { width: 44px; height: 44px; }
    .consult-modal__icon svg { width: 22px; height: 22px; }
    .consult-modal__title { font-size: 18px; }
    .consult-form { gap: 10px; }
    .consult-form__row { grid-template-columns: 1fr; gap: 10px; }
}


/* =========================================================
   Resource pages (Blog, Insights, Downloads, FAQs) â€“ scoped `.res-`
   Shared dark hero, filter pills, article cards, sidebar
   widgets, pagination and CTA bands used by the pages in the
   Resources dropdown. Careers uses the `.car-` block below.
   ========================================================= */

/* ---------- Dark hero ---------- */
.res-hero {
    position: relative;
    overflow: hidden;
    padding: 70px 0 64px;
    background:
        radial-gradient(620px 320px at 85% 30%, rgba(25, 88, 127, 0.22) 0%, rgba(25, 88, 127, 0) 70%),
        linear-gradient(115deg, #0c0a26 0%, #14132e 55%, #1b0f2e 100%);
}

.res-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
}

.res-hero .container { position: relative; z-index: 1; }

.res-hero__eyebrow {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--svc-primary);
    margin-bottom: 14px;
}

.res-hero__title {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    max-width: 640px;
}

.res-hero__title .res-accent { color: var(--svc-primary); }

.res-hero__intro {
    font-size: 16.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    max-width: 560px;
}

/* ---------- Light content area ---------- */
.res-body {
    padding: 60px 0 80px;
    background: #f8f8fb;
}

.res-section-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--svc-dark);
    margin: 0 0 8px;
}

.res-section-sub {
    font-size: 15px;
    color: var(--svc-body);
    margin: 0 0 24px;
    max-width: 620px;
}

/* ---------- Toolbar: search + filter pills ---------- */
.res-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.res-search {
    position: relative;
    flex: 1 1 260px;
    max-width: 420px;
}

.res-search input {
    width: 100%;
    border: 1px solid var(--svc-line);
    border-radius: 10px;
    background: #fff;
    padding: 12px 16px 12px 42px;
    font-size: 14px;
    color: var(--svc-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.res-search input:focus {
    outline: none;
    border-color: var(--svc-primary);
    box-shadow: 0 0 0 3px rgba(25, 88, 127, 0.12);
}

.res-search .res-search__icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--svc-primary);
    font-size: 13px;
}

.res-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.res-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--svc-line);
    background: #fff;
    color: var(--svc-dark);
    border-radius: 30px;
    padding: 9px 18px;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s;
}

.res-pill:hover {
    border-color: var(--svc-primary);
    color: var(--svc-primary);
}

.res-pill.is-active {
    background: var(--svc-primary);
    border-color: var(--svc-primary);
    color: #fff;
    box-shadow: 0 8px 18px rgba(25, 88, 127, 0.28);
}

/* ---------- Article / insight cards ---------- */
.res-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid var(--svc-line);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}

.res-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 38px rgba(20, 19, 46, 0.12);
}

.res-card__media {
    display: block;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(120deg, #14132e 0%, #2a1240 100%);
}

.res-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.res-card:hover .res-card__media img { transform: scale(1.05); }

.res-card__media--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 34px;
}

.res-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px 22px 22px;
}

.res-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.res-card__topic {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--svc-primary);
}

.res-card__date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--svc-body);
    white-space: nowrap;
}

.res-card__title {
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
    margin: 0 0 10px;
}

.res-card__title a { color: var(--svc-dark); transition: color 0.2s; }
.res-card__title a:hover { color: var(--svc-primary); }

.res-card__excerpt {
    font-size: 14px;
    line-height: 1.65;
    color: var(--svc-body);
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.res-card__more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--svc-primary);
}

.res-card__more i { transition: transform 0.2s; font-size: 12px; }
.res-card__more:hover { color: #124A66; }
.res-card__more:hover i { transform: translateX(4px); }

/* ---------- Sidebar widgets ---------- */
.res-widget {
    background: #fff;
    border: 1px solid var(--svc-line);
    border-radius: 14px;
    padding: 22px;
    margin-bottom: 24px;
}

.res-widget__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--svc-dark);
    margin: 0 0 16px;
}

.res-cats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.res-cats a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 9px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--svc-dark);
    transition: all 0.2s;
}

.res-cats a i {
    width: 18px;
    text-align: center;
    color: var(--svc-primary);
    font-size: 13px;
}

.res-cats a:hover { background: var(--svc-soft); color: var(--svc-primary); }

.res-cats a.is-active {
    background: var(--svc-primary);
    color: #fff;
}

.res-cats a.is-active i { color: #fff; }

.res-cats__count {
    margin-left: auto;
    font-size: 11.5px;
    font-weight: 700;
    background: rgba(25, 88, 127, 0.08);
    color: var(--svc-primary);
    border-radius: 20px;
    padding: 2px 9px;
}

.res-cats a.is-active .res-cats__count {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.res-pop {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.res-pop li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--svc-line);
}

.res-pop li:first-child { padding-top: 0; }
.res-pop li:last-child { border-bottom: 0; padding-bottom: 0; }

.res-pop__thumb {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(120deg, #14132e 0%, #2a1240 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 18px;
}

.res-pop__thumb img { width: 100%; height: 100%; object-fit: cover; }

.res-pop__title {
    display: block;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 600;
    color: var(--svc-dark);
    transition: color 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.res-pop__title:hover { color: var(--svc-primary); }

.res-pop__date {
    display: block;
    margin-top: 4px;
    font-size: 11.5px;
    color: var(--svc-body);
}

/* Stay updated (newsletter) */
.res-news {
    background:
        radial-gradient(280px 160px at 90% 0%, rgba(25, 88, 127, 0.30) 0%, rgba(25, 88, 127, 0) 70%),
        linear-gradient(135deg, #14132e 0%, #0c0a26 100%);
    border: 0;
}

.res-news .res-widget__title { color: #fff; }
.res-news .res-widget__title span { color: var(--svc-primary); }

.res-news__text {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.66);
    margin: 0 0 16px;
}

.res-news__form input {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 9px;
    padding: 11px 14px;
    font-size: 13.5px;
    color: #fff;
    margin-bottom: 12px;
}

.res-news__form input::placeholder { color: rgba(255, 255, 255, 0.4); }

.res-news__form input:focus {
    outline: none;
    border-color: var(--svc-primary);
}

.res-news__form button {
    width: 100%;
    border: 0;
    background: var(--svc-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 9px;
    padding: 12px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.res-news__form button:hover { background: #124A66; transform: translateY(-1px); }

.res-news__note {
    margin: 10px 0 0;
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
}

.res-news__success {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 600;
    color: #4ade80;
}

/* ---------- Pagination ---------- */
.res-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.res-pagination nav { display: flex; }

/* ---------- Empty state ---------- */
.res-empty {
    background: #fff;
    border: 1px dashed var(--svc-line);
    border-radius: 14px;
    padding: 50px 30px;
    text-align: center;
    color: var(--svc-body);
}

.res-empty i { font-size: 30px; color: var(--svc-primary); margin-bottom: 12px; display: block; }

/* ---------- Article (blog/insight single) ---------- */
.res-hero--article { padding: 48px 0 54px; }

.res-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.72);
}

.res-hero__meta i { color: var(--svc-primary); margin-right: 6px; }

.res-hero__meta .res-hero__topic {
    color: var(--svc-primary);
    font-weight: 700;
}

.res-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}

.res-share span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 4px;
}

.res-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 13px;
    transition: all 0.2s;
}

.res-share a:hover {
    background: var(--svc-primary);
    border-color: var(--svc-primary);
    color: #fff;
}

.res-hero__media {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}

.res-hero__media img { width: 100%; display: block; }

.res-article {
    background: #fff;
    border: 1px solid var(--svc-line);
    border-radius: 14px;
    padding: 34px 36px;
}

.res-article p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--svc-body);
    margin-bottom: 18px;
}

.res-article h2, .res-article h3, .res-article h4, .res-article h5, .res-article h6 {
    color: var(--svc-dark);
    font-weight: 700;
    margin: 26px 0 12px;
}

.res-article h2 { font-size: 24px; }
.res-article h3 { font-size: 21px; }
.res-article h4 { font-size: 18px; }
.res-article h5, .res-article h6 { font-size: 16px; }

.res-article ul, .res-article ol {
    margin: 0 0 18px;
    padding-left: 4px;
    list-style: none;
}

.res-article ul li, .res-article ol li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--svc-body);
}

.res-article ul li::before, .res-article ol li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--svc-primary);
    font-size: 14px;
}

.res-article img { max-width: 100%; border-radius: 12px; margin: 8px 0 18px; }

.res-article-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 26px;
    background: linear-gradient(110deg, rgba(25, 88, 127, 0.07) 0%, rgba(25, 88, 127, 0.12) 100%);
    border: 1px solid rgba(25, 88, 127, 0.18);
    border-radius: 14px;
    padding: 22px 26px;
}

.res-article-cta h5 {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 700;
    color: var(--svc-dark);
}

.res-article-cta p { margin: 0; font-size: 13.5px; color: var(--svc-body); }

/* ---------- Dark CTA band ---------- */
.res-cta-band {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    padding: 36px 40px;
    background:
        radial-gradient(420px 220px at 12% 50%, rgba(25, 88, 127, 0.35) 0%, rgba(25, 88, 127, 0) 70%),
        linear-gradient(110deg, #14132e 0%, #0c0a26 100%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    margin-top: 50px;
}

.res-cta-band__icon {
    flex-shrink: 0;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--svc-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 12px 26px rgba(25, 88, 127, 0.4);
}

.res-cta-band__content { flex: 1 1 300px; }

.res-cta-band__content h4 {
    color: #fff;
    font-size: 21px;
    font-weight: 700;
    margin: 0 0 6px;
}

.res-cta-band__content p {
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    margin: 0;
}

.res-cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.svc-btn--outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.svc-btn--outline-light:hover {
    border-color: #fff;
    background: #fff;
    color: var(--svc-dark);
    transform: translateY(-2px);
}

/* ---------- Downloads ---------- */
.dl-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid var(--svc-line);
    border-radius: 14px;
    padding: 24px;
    transition: transform 0.25s, box-shadow 0.25s;
}

.dl-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 38px rgba(20, 19, 46, 0.12);
}

.dl-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.dl-card__icon--pdf { background: rgba(25, 88, 127, 0.10); color: var(--svc-primary); }
.dl-card__icon--doc { background: rgba(37, 99, 235, 0.10); color: #2563EB; }
.dl-card__icon--ppt { background: rgba(234, 88, 12, 0.10); color: #D97706; }
.dl-card__icon--xls { background: rgba(5, 150, 105, 0.10); color: #059669; }
.dl-card__icon--zip { background: rgba(15, 118, 110, 0.10); color: #0F766E; }

.dl-card__category {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--svc-primary);
    margin-bottom: 6px;
}

.dl-card__title {
    font-size: 16.5px;
    font-weight: 700;
    color: var(--svc-dark);
    margin: 0 0 8px;
}

.dl-card__desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--svc-body);
    margin: 0 0 16px;
}

.dl-card__action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    border: 0;
    background: none;
    padding: 0;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--svc-primary);
    cursor: pointer;
    transition: color 0.2s;
}

.dl-card__action i { font-size: 12px; transition: transform 0.2s; }
.dl-card__action:hover { color: #124A66; }
.dl-card__action:hover i { transform: translateX(4px); }

/* ---------- FAQs ---------- */
.faq-side {
    background: #fff;
    border: 1px solid var(--svc-line);
    border-radius: 14px;
    padding: 18px;
}

.faq-acc__item {
    background: #fff;
    border: 1px solid var(--svc-line);
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-acc__item[open] { box-shadow: 0 12px 28px rgba(20, 19, 46, 0.08); }

.faq-acc__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    font-size: 15px;
    font-weight: 700;
    color: var(--svc-dark);
    cursor: pointer;
    list-style: none;
    transition: color 0.2s;
}

.faq-acc__q::-webkit-details-marker { display: none; }
.faq-acc__q:hover { color: var(--svc-primary); }

.faq-acc__toggle {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(25, 88, 127, 0.08);
    color: var(--svc-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: transform 0.25s, background 0.25s, color 0.25s;
}

.faq-acc__item[open] .faq-acc__toggle {
    background: var(--svc-primary);
    color: #fff;
    transform: rotate(45deg);
}

.faq-acc__item[open] .faq-acc__q { color: var(--svc-primary); }

.faq-acc__a {
    padding: 0 22px 20px;
    font-size: 14px;
    line-height: 1.75;
    color: var(--svc-body);
}

.faq-contact {
    background:
        radial-gradient(240px 140px at 90% 0%, rgba(25, 88, 127, 0.10) 0%, rgba(25, 88, 127, 0) 70%),
        #fff;
    border: 1px solid var(--svc-line);
    border-radius: 14px;
    padding: 26px 24px;
    text-align: left;
}

.faq-contact__icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(25, 88, 127, 0.10);
    color: var(--svc-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.faq-contact h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--svc-dark);
    margin: 0 0 8px;
}

.faq-contact > p {
    font-size: 13.5px;
    color: var(--svc-body);
    margin: 0 0 16px;
}

.faq-contact__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.faq-contact__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--svc-dark);
}

.faq-contact__list li i { color: var(--svc-primary); width: 16px; text-align: center; }
.faq-contact__list a { color: var(--svc-dark); transition: color 0.2s; }
.faq-contact__list a:hover { color: var(--svc-primary); }

.faq-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: 44px;
    text-align: center;
}

.faq-footer__hint {
    font-size: 14.5px;
    color: var(--svc-body);
}

.faq-footer__hint a { color: var(--svc-primary); font-weight: 700; }

/* ---------- Responsive (res-) ---------- */
@media (max-width: 991px) {
    .res-hero__title { font-size: 36px; }
    .res-hero--article .res-hero__media { margin-top: 28px; }
}

@media (max-width: 575px) {
    .res-hero { padding: 48px 0 44px; }
    .res-hero__title { font-size: 29px; }
    .res-body { padding: 44px 0 60px; }
    .res-article { padding: 24px 20px; }
    .res-cta-band { padding: 28px 24px; }
}

/* =========================================================
   Careers page â€“ scoped `.car-`
   Light hero with team photo, stats strip, benefit cards,
   open-position rows and the application modal extras.
   ========================================================= */
.car-hero {
    position: relative;
    overflow: hidden;
    padding: 70px 0 56px;
    background: linear-gradient(120deg, #fdf3f6 0%, #f7f3fb 100%);
}

.car-hero__blob {
    position: absolute;
    top: -140px;
    right: -120px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(25, 88, 127, 0.10) 0%, rgba(25, 88, 127, 0) 70%);
}

.car-hero .container { position: relative; z-index: 1; }

.car-hero__eyebrow {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--svc-primary);
    margin-bottom: 14px;
}

.car-hero__title {
    font-size: 44px;
    line-height: 1.16;
    font-weight: 700;
    color: var(--svc-dark);
    margin: 0 0 18px;
}

.car-hero__title span { color: var(--svc-primary); }

.car-hero__intro {
    font-size: 16px;
    line-height: 1.7;
    color: var(--svc-body);
    margin: 0 0 26px;
    max-width: 480px;
}

.car-hero__buttons { display: flex; flex-wrap: wrap; gap: 14px; }

.car-hero__media { position: relative; }

.car-hero__photo {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 26px 54px rgba(20, 19, 46, 0.18);
}

.car-hero__photo img { width: 100%; display: block; }

.car-hero__photo--placeholder {
    aspect-ratio: 4 / 3;
    background:
        radial-gradient(360px 220px at 80% 20%, rgba(25, 88, 127, 0.30) 0%, rgba(25, 88, 127, 0) 70%),
        linear-gradient(120deg, #14132e 0%, #2a1240 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 54px;
}

/* Stats strip */
.car-stats {
    background: #fff;
    border-top: 1px solid var(--svc-line);
    border-bottom: 1px solid var(--svc-line);
    padding: 30px 0;
}

.car-stats__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.car-stat {
    text-align: center;
    padding: 6px 10px;
}

.car-stat:not(:last-child) { border-right: 1px solid var(--svc-line); }

.car-stat__icon {
    color: var(--svc-primary);
    font-size: 20px;
    margin-bottom: 8px;
}

.car-stat__value {
    font-size: 21px;
    font-weight: 800;
    color: var(--svc-dark);
    line-height: 1.2;
}

.car-stat__label {
    font-size: 12.5px;
    color: var(--svc-body);
    margin-top: 2px;
}

/* Why join */
.car-benefits { padding: 64px 0 30px; background: #f8f8fb; }

.car-benefit {
    text-align: center;
    background: #fff;
    border: 1px solid var(--svc-line);
    border-radius: 14px;
    padding: 26px 18px;
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s;
}

.car-benefit:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(20, 19, 46, 0.10);
}

.car-benefit__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    border-radius: 12px;
    background: rgba(25, 88, 127, 0.08);
    color: var(--svc-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.car-benefit h6 {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--svc-dark);
    margin: 0 0 8px;
}

.car-benefit p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--svc-body);
    margin: 0;
}

/* Open positions */
.car-jobs { padding: 40px 0 70px; background: #f8f8fb; }

.car-job {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    background: #fff;
    border: 1px solid var(--svc-line);
    border-radius: 14px;
    padding: 18px 24px;
    margin-bottom: 14px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.car-job:hover {
    border-color: rgba(25, 88, 127, 0.35);
    box-shadow: 0 12px 28px rgba(20, 19, 46, 0.08);
    transform: translateY(-2px);
}

.car-job__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(25, 88, 127, 0.08);
    color: var(--svc-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.car-job__info { flex: 1 1 200px; min-width: 0; }

.car-job__title {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--svc-dark);
    margin: 0 0 2px;
}

.car-job__dept {
    font-size: 12.5px;
    color: var(--svc-body);
}

.car-job__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
    font-size: 13px;
    color: var(--svc-body);
}

.car-job__meta i { color: var(--svc-primary); margin-right: 6px; }

.car-job__apply {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 0;
    background: none;
    padding: 0;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--svc-primary);
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s;
}

.car-job__apply i { font-size: 12px; transition: transform 0.2s; }
.car-job__apply:hover { color: #124A66; }
.car-job__apply:hover i { transform: translateX(4px); }

/* CTA band (light) */
.car-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    background: #fff;
    border: 1px solid var(--svc-line);
    border-radius: 18px;
    padding: 34px 38px;
    margin-top: 36px;
}

.car-cta__icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--svc-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    box-shadow: 0 12px 26px rgba(25, 88, 127, 0.35);
}

.car-cta__content { flex: 1 1 280px; }

.car-cta__content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--svc-dark);
    margin: 0 0 5px;
}

.car-cta__content p { font-size: 14px; color: var(--svc-body); margin: 0; }

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

/* Application modal extras (inside .consult-modal) */
.car-modal__dialog { max-width: 620px; }

.car-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
}

.car-form-grid .car-form-grid__full { grid-column: 1 / -1; }

.car-drop {
    position: relative;
    border: 2px dashed rgba(25, 88, 127, 0.30);
    border-radius: 12px;
    background: rgba(25, 88, 127, 0.03);
    padding: 22px 16px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.car-drop:hover, .car-drop.is-dragover {
    border-color: var(--svc-primary);
    background: rgba(25, 88, 127, 0.06);
}

.car-drop input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.car-drop__icon { color: var(--svc-primary); font-size: 20px; margin-bottom: 8px; }

.car-drop__text { font-size: 13.5px; font-weight: 600; color: var(--svc-dark); margin: 0; }
.car-drop__text span { color: var(--svc-primary); }

.car-drop__hint { font-size: 11.5px; color: var(--svc-body); margin: 4px 0 0; }

.car-drop__file {
    margin: 8px 0 0;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--svc-primary);
    word-break: break-all;
}

.car-consent {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 12.5px;
    color: var(--svc-body);
    line-height: 1.55;
}

.car-consent input { margin-top: 3px; accent-color: var(--svc-primary); }
.car-consent a { color: var(--svc-primary); font-weight: 600; }

/* Responsive (car-) */
@media (max-width: 991px) {
    .car-hero__title { font-size: 36px; }
    .car-hero__media { margin-top: 30px; }
    .car-stats__grid { grid-template-columns: repeat(3, 1fr); row-gap: 22px; }
    .car-stat:nth-child(3n) { border-right: 0; }
}

@media (max-width: 575px) {
    .car-hero { padding: 48px 0 40px; }
    .car-hero__title { font-size: 29px; }
    .car-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .car-stat:nth-child(3n) { border-right: 1px solid var(--svc-line); }
    .car-stat:nth-child(2n) { border-right: 0; }
    .car-form-grid { grid-template-columns: 1fr; }
    .car-job { padding: 16px 18px; }
    .car-cta { padding: 26px 22px; }
}

/* Pagination (bootstrap-4 view rendered inside .res-pagination) */
.res-pagination .pagination { margin: 0; gap: 8px; }

.res-pagination .page-link {
    border: 1px solid var(--svc-line);
    border-radius: 9px !important;
    min-width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--svc-dark);
    background: #fff;
    transition: all 0.2s;
}

.res-pagination .page-link:hover {
    border-color: var(--svc-primary);
    color: var(--svc-primary);
    background: #fff;
    box-shadow: none;
}

.res-pagination .page-item.active .page-link {
    background: var(--svc-primary);
    border-color: var(--svc-primary);
    color: #fff;
    box-shadow: 0 8px 18px rgba(25, 88, 127, 0.28);
}

.res-pagination .page-item.disabled .page-link {
    color: #b6b6c3;
    background: #fff;
    border-color: var(--svc-line);
}

/* =========================================================
   Home hero - "Ready to Transform" reference design
   ========================================================= */
.home-hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0 72px;
    background: linear-gradient(120deg, #faf7fd 0%, #EAF2F7 55%, #f6f4ff 100%);
}

.home-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(148, 163, 184, 0.16) 1px, transparent 1.4px),
        radial-gradient(ellipse 55% 60% at 80% 40%, rgba(15, 118, 110, 0.07), transparent 70%),
        radial-gradient(ellipse 40% 50% at 15% 80%, rgba(25, 88, 127, 0.05), transparent 70%);
    background-size: 26px 26px, 100% 100%, 100% 100%;
}

.home-hero .container { position: relative; z-index: 1; }

.home-hero__overline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #19587F;
    margin-bottom: 18px;
}

.home-hero__overline-line {
    width: 34px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #0F766E, #19587F);
}

.home-hero__title {
    font-size: 46px;
    line-height: 1.18;
    font-weight: 800;
    color: #14132e;
    margin: 0 0 18px;
}

.home-hero__title-grad {
    display: block;
    background: linear-gradient(90deg, #0F766E 0%, #19587F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: #0F766E;
    -webkit-text-fill-color: transparent;
}

.home-hero__desc {
    font-size: 16.5px;
    line-height: 1.7;
    color: #5b5b72;
    max-width: 540px;
    margin: 0 0 26px;
}

.home-hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    margin-bottom: 30px;
}

.home-hero__feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-hero__feature-icon {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #E2EEF2;
    box-shadow: 0 6px 14px rgba(20, 19, 46, 0.06);
    color: #19587F;
    font-size: 15px;
}

.home-hero__feature-text { display: flex; flex-direction: column; line-height: 1.3; }
.home-hero__feature-title { font-size: 13.5px; font-weight: 700; color: #14132e; }
.home-hero__feature-sub { font-size: 12px; color: #8a8aa0; }

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.home-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-radius: 10px;
    padding: 13px 26px;
    font-size: 14.5px;
    font-weight: 700;
    border: 0;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.home-hero__btn--primary {
    background: linear-gradient(90deg, #19587F 0%, #0F766E 110%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(25, 88, 127, 0.28);
}

.home-hero__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(25, 88, 127, 0.36);
    color: #fff;
}

.home-hero__btn--ghost {
    background: #fff;
    color: #14132e;
    border: 1.5px solid #e7e0ef;
}

.home-hero__btn--ghost:hover {
    border-color: #19587F;
    color: #19587F;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(20, 19, 46, 0.08);
}

/* Right column media */
.home-hero__media {
    position: relative;
    margin-top: 10px;
    padding: 26px;
}

.home-hero__glow {
    position: absolute;
    inset: 8% 6%;
    border-radius: 32px;
    background: radial-gradient(ellipse at center, rgba(15, 118, 110, 0.14), rgba(25, 88, 127, 0.08) 60%, transparent 75%);
    filter: blur(6px);
}

.home-hero__img {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 22px;
    box-shadow: 0 26px 60px rgba(20, 19, 46, 0.16);
    animation: heroFloat 6s ease-in-out infinite;
}

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

.home-hero__chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #E2EEF2;
    border-radius: 999px;
    padding: 8px 15px;
    font-size: 12.5px;
    font-weight: 700;
    color: #14132e;
    box-shadow: 0 10px 24px rgba(20, 19, 46, 0.12);
    white-space: nowrap;
    z-index: 2;
    animation: heroChipFloat 5s ease-in-out infinite;
}

.home-hero__chip i { color: #19587F; font-size: 13px; }

.home-hero__chip--1 { top: 4%; left: -2%; animation-delay: 0s; }
.home-hero__chip--2 { top: -2%; right: 6%; animation-delay: 0.7s; }
.home-hero__chip--3 { top: 42%; right: -3%; animation-delay: 1.4s; }
.home-hero__chip--4 { bottom: 8%; right: 4%; animation-delay: 2.1s; }
.home-hero__chip--5 { bottom: -1%; left: 6%; animation-delay: 2.8s; }

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

@media only screen and (max-width: 1199px) {
    .home-hero__title { font-size: 40px; }
}

@media only screen and (max-width: 991px) {
    .home-hero { padding: 48px 0 56px; }
    .home-hero__title { font-size: 34px; }
    .home-hero__media { margin-top: 38px; }
}

@media only screen and (max-width: 767px) {
    .home-hero__title { font-size: 28px; }
    .home-hero__features { gap: 12px 18px; }
    .home-hero__chip { display: none; }
    .home-hero__media { padding: 10px; }
}

/* =========================================================
   Global presence map - real world map + overlay pins
   ========================================================= */
.gp-map__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    opacity: 0.55;
    mix-blend-mode: luminosity;
    filter: grayscale(0.4) contrast(1.05) brightness(1.1);
}

.gp-map__svg--overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* =========================================================
   Navbar + dropdown enhancements
   ========================================================= */

/* Rotate the theme's existing chevron when a dropdown is open */
.navigation-menu > ul > li.has-children:hover > a:after {
    transform: rotate(180deg);
}
/* Dropdown panels: card look + soft reveal */
.navigation-menu > ul > li .megamenu {
    border: 1px solid #efe9f4;
    border-radius: 14px;
    box-shadow:
        0 24px 54px rgba(20, 19, 46, 0.13),
        0 4px 14px rgba(20, 19, 46, 0.06);
    margin-top: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.navigation-menu > ul > li.has-children:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Keep the centered wide panel centered while it slides */
.navigation-menu > ul > li .megamenu.megamenu--services {
    transform: translateX(-50%) translateY(8px);
}

.navigation-menu > ul > li.has-children:hover .megamenu.megamenu--services {
    transform: translateX(-50%) translateY(0);
}

/* Dropdown items: pill hover with slide */
.navigation-menu > ul > li .megamenu > li > ul > li > a,
.navigation-menu > ul > li .megamenu--mega:not(.megamenu--services) > li > ul > li > a {
    border-radius: 8px;
    padding-left: 10px;
    padding-right: 10px;
    transition: background 0.16s ease, color 0.16s ease, padding-left 0.16s ease;
}

.navigation-menu > ul > li .megamenu > li > ul > li > a:hover {
    background: #faf4f8;
    color: #19587F;
    padding-left: 16px;
}

/* Section titles inside compact dropdowns */
.megamenu--mega:not(.megamenu--services) .page-list-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 700;
    color: #8a8aa0;
    border-bottom: 1px solid #f1ecf4;
    padding-bottom: 8px;
    margin-bottom: 6px;
}

/* Sticky header: stronger separation when stuck */
.header-bottom-wrap.header-sticky.is-sticky {
    box-shadow: 0 10px 30px rgba(20, 19, 46, 0.10);
}

/* Invisible bridge over the 6px panel offset so hover is not lost
   while the pointer travels from the menu link into the dropdown. */
.navigation-menu > ul > li .megamenu::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px;
}

/* Contact form success confirmation */
.contact-form-card .alert-success {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #e7f7ee;
    border: 1px solid #b6e6c9;
    color: #15803d;
    border-radius: 10px;
    padding: 14px 16px;
    font-weight: 600;
    margin-bottom: 22px;
}

.contact-form-card .alert-success svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.contact-form-card .alert-success:focus {
    outline: none;
}

/* ============================================================
   Reusable service / capability / industry / solution cards
   (white card · circular light-blue icon chip · accent underline)
   ============================================================ */
.svc-card-grid {
    padding-top: 45px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}
@media (max-width: 575px) {
    .svc-card-grid { grid-template-columns: 1fr; }
}
.svc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 28px 32px;
    background: #fff;
    border: 1px solid var(--about-border, #ededed);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(17, 20, 38, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    height: 100%;
}
.svc-card:hover {
    transform: translateY(-6px);
    border-color: rgba(25, 88, 127, 0.35);
    box-shadow: 0 22px 44px rgba(25, 88, 127, 0.14);
}
.svc-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--about-soft, #EAF2F7);
    color: var(--about-primary, #19587F);
    margin-bottom: 22px;
    transition: background 0.25s ease, color 0.25s ease;
}
.svc-card:hover .svc-card__icon {
    /*background: var(--about-primary, #19587F);*/
    color: #fff;
}
.svc-card__icon i { font-size: 28px; line-height: 1; }
.svc-card__icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.svc-card__title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--about-heading, #111426);
    margin: 0 0 14px;
}
.svc-card__accent {
    width: 42px;
    height: 3px;
    border-radius: 3px;
    background: var(--about-primary, #19587F);
    margin-bottom: 16px;
    transition: width 0.25s ease;
}
.svc-card:hover .svc-card__accent { width: 64px; }
.svc-card__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--about-body, #5a6072);
    margin: 0;
}
.svc-card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-top: 22px;
    border-radius: 50%;
    border: 1px solid var(--about-border, #ededed);
    color: var(--about-primary, #19587F);
    font-size: 14px;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.svc-card:hover .svc-card__arrow {
    background: var(--about-primary, #19587F);
    border-color: var(--about-primary, #19587F);
    color: #fff;
    transform: translateX(4px);
}
