/* ======================================================================
           CSS VARIABLES (consolidated from all sections)
           ====================================================================== */
:root {
    /* Shared */
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --color-white: #ffffff;
    --color-dark: #1a1a1a;
    --color-gray-text: #5a5a5a;
    --color-accent: #AD342B;
    --transition-standard: all 0.3s ease;
    --dark: #2a2a2a;
    /* Hero */
    --color-overlay: rgba(0, 0, 0, 0.45);
    --color-overlay-dark: rgba(0, 0, 0, 0.7);

    /* Story */
    --color-gray-dark: #333333;

    /* Education */
    --color-accent-light: #f7d5da;

    /* Social Impact */
    --color-accent-alt: #AD342B;

    /* Capabilities */
    --color-bg-light: #f9f9fa;

    /* Footer */
    --color-bg-dark: #2a2a2a;
    --color-text-main: #e0e0e0;
    --color-text-muted: #888888;
    --color-btn-dark: #3a3a3a;
    --border-color: rgba(255, 255, 255, 0.1);

    /* Book */
    --color-black: #1a1a1a;
    --color-red-gradient: linear-gradient(135deg, #f03e5c 0%, #e82c4d 100%);

    /* Gallery */
    --grid-gap: 15px;

    /* Focus Areas */
    --grid-gap-focus: 1.25rem;

    /* What We Believe */
    --color-border: #eaeaea;
}

/* ---------- RESET / BASE ---------- */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 500;
/*   line-height: var(--bs-body-line-height); */
  color: var(--color-gray-text);
  background-color: var(--color-white);
}
a {
  color: var(--color-dark);
  text-decoration: none;
}
a:hover {
  color: var(--color-accent);
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	line-height: 1.3;
}

/* ---------- CONTAINER & GRID ---------- */
.container {
  width: 100%;
  padding-right: var(--spacer-3);
  padding-left: var(--spacer-3);
  margin-right: auto;
  margin-left: auto;
}
.container-fluid {
  width: 100%;
  padding-right: var(--spacer-3);
  padding-left: var(--spacer-3);
  margin-right: auto;
  margin-left: auto;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
.col {
  flex: 1 0 0%;
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
}
.col-1  { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3  { flex: 0 0 25%; max-width: 25%; }
.col-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6  { flex: 0 0 50%; max-width: 50%; }
.col-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9  { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* Offsets */
.offset-1  { margin-left: 8.333333%; }
.offset-2  { margin-left: 16.666667%; }
.offset-3  { margin-left: 25%; }
.offset-4  { margin-left: 33.333333%; }
.offset-5  { margin-left: 41.666667%; }
.offset-6  { margin-left: 50%; }
.offset-7  { margin-left: 58.333333%; }
.offset-8  { margin-left: 66.666667%; }
.offset-9  { margin-left: 75%; }
.offset-10 { margin-left: 83.333333%; }
.offset-11 { margin-left: 91.666667%; }
.offset-12 { margin-left: 100%; }

/* Order */
.order-1  { order: 1; } .order-2  { order: 2; } .order-3  { order: 3; }
.order-4  { order: 4; } .order-5  { order: 5; } .order-6  { order: 6; }
.order-7  { order: 7; } .order-8  { order: 8; } .order-9  { order: 9; }
.order-10 { order: 10; } .order-11 { order: 11; } .order-12 { order: 12; }

/* ---------- SPACING (MARGIN & PADDING) ---------- */
.m-0   { margin: 0; }          .p-0   { padding: 0; }
.m-1   { margin: 0.25rem; }    .p-1   { padding: 0.25rem; }
.m-2   { margin: 0.5rem; }     .p-2   { padding: 0.5rem; }
.m-3   { margin: 1rem; }       .p-3   { padding: 1rem; }
.m-4   { margin: 1.5rem; }     .p-4   { padding: 1.5rem; }
.m-5   { margin: 3rem; }       .p-5   { padding: 3rem; }
.m-auto{ margin: auto; }

/* Sides */
.mt-0 { margin-top: 0; }  .mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 0.25rem; } .mb-1 { margin-bottom: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }  .mb-2 { margin-bottom: 0.5rem; }
.mt-3 { margin-top: 1rem; }    .mb-3 { margin-bottom: 1rem; }
.mt-4 { margin-top: 1.5rem; }  .mb-4 { margin-bottom: 1.5rem; }
.mt-5 { margin-top: 3rem; }    .mb-5 { margin-bottom: 3rem; }
.mt-auto { margin-top: auto; } .mb-auto { margin-bottom: auto; }

.ms-0 { margin-left: 0; }  .me-0 { margin-right: 0; }
.ms-1 { margin-left: 0.25rem; } .me-1 { margin-right: 0.25rem; }
.ms-2 { margin-left: 0.5rem; }  .me-2 { margin-right: 0.5rem; }
.ms-3 { margin-left: 1rem; }    .me-3 { margin-right: 1rem; }
.ms-4 { margin-left: 1.5rem; }  .me-4 { margin-right: 1.5rem; }
.ms-5 { margin-left: 3rem; }    .me-5 { margin-right: 3rem; }
.ms-auto { margin-left: auto; } .me-auto { margin-right: auto; }

.mx-0 { margin-left: 0; margin-right: 0; }
.mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.mx-3 { margin-left: 1rem; margin-right: 1rem; }
.mx-4 { margin-left: 1.5rem; margin-right: 1.5rem; }
.mx-5 { margin-left: 3rem; margin-right: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.my-0 { margin-top: 0; margin-bottom: 0; }
.my-1 { margin-top: 0.25rem; margin-bottom: 0.25rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-3 { margin-top: 1rem; margin-bottom: 1rem; }
.my-4 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-5 { margin-top: 3rem; margin-bottom: 3rem; }
.my-auto { margin-top: auto; margin-bottom: auto; }

/* Padding sides – same pattern (pt, pb, ps, pe, px, py) */
.pt-0 { padding-top: 0; } .pb-0 { padding-bottom: 0; }
.pt-1 { padding-top: 0.25rem; } .pb-1 { padding-bottom: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }  .pb-2 { padding-bottom: 0.5rem; }
.pt-3 { padding-top: 1rem; }    .pb-3 { padding-bottom: 1rem; }
.pt-4 { padding-top: 1.5rem; }  .pb-4 { padding-bottom: 1.5rem; }
.pt-5 { padding-top: 3rem; }    .pb-5 { padding-bottom: 3rem; }

.ps-0 { padding-left: 0; }  .pe-0 { padding-right: 0; }
.ps-1 { padding-left: 0.25rem; } .pe-1 { padding-right: 0.25rem; }
.ps-2 { padding-left: 0.5rem; }  .pe-2 { padding-right: 0.5rem; }
.ps-3 { padding-left: 1rem; }    .pe-3 { padding-right: 1rem; }
.ps-4 { padding-left: 1.5rem; }  .pe-4 { padding-right: 1.5rem; }
.ps-5 { padding-left: 3rem; }    .pe-5 { padding-right: 3rem; }

.px-0 { padding-left: 0; padding-right: 0; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 1rem; padding-right: 1rem; }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-5 { padding-left: 3rem; padding-right: 3rem; }

.py-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

/* Gap (for flex/grid) */
.gap-0 { gap: 0; } .gap-1 { gap: 0.25rem; } .gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; } .gap-4 { gap: 1.5rem; } .gap-5 { gap: 3rem; }

/* Row gutters */
.g-0, .gx-0 { --bs-gutter-x: 0; } .g-0, .gy-0 { --bs-gutter-y: 0; }
.g-1, .gx-1 { --bs-gutter-x: 0.25rem; } .g-1, .gy-1 { --bs-gutter-y: 0.25rem; }
.g-2, .gx-2 { --bs-gutter-x: 0.5rem; }  .g-2, .gy-2 { --bs-gutter-y: 0.5rem; }
.g-3, .gx-3 { --bs-gutter-x: 1rem; }    .g-3, .gy-3 { --bs-gutter-y: 1rem; }
.g-4, .gx-4 { --bs-gutter-x: 1.5rem; }  .g-4, .gy-4 { --bs-gutter-y: 1.5rem; }
.g-5, .gx-5 { --bs-gutter-x: 3rem; }    .g-5, .gy-5 { --bs-gutter-y: 3rem; }
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
  margin-top: calc(-1 * var(--bs-gutter-y));
}
.row > * {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

/* ---------- SIZING ---------- */
.w-25   { width: 25%; }     .h-25   { height: 25%; }
.w-50   { width: 50%; }     .h-50   { height: 50%; }
.w-75   { width: 75%; }     .h-75   { height: 75%; }
.w-100  { width: 100%; }    .h-100  { height: 100%; }
.w-auto { width: auto; }    .h-auto { height: auto; }
.mw-100 { max-width: 100%; }
.mh-100 { max-height: 100%; }
.vw-100 { width: 100vw; }
.vh-100 { height: 100vh; }
.min-vw-100 { min-width: 100vw; }
.min-vh-100 { min-height: 100vh; }

/* ---------- DISPLAY ---------- */
.d-none         { display: none; }
.d-inline       { display: inline; }
.d-inline-block { display: inline-block; }
.d-block        { display: block; }
.d-grid         { display: grid; }
.d-table        { display: table; }
.d-table-cell   { display: table-cell; }
.d-flex         { display: flex; }
.d-inline-flex  { display: inline-flex; }

/* ---------- FLEX ---------- */
.flex-row            { flex-direction: row; }
.flex-column         { flex-direction: column; }
.flex-row-reverse    { flex-direction: row-reverse; }
.flex-column-reverse { flex-direction: column-reverse; }
.flex-wrap           { flex-wrap: wrap; }
.flex-nowrap         { flex-wrap: nowrap; }
.flex-wrap-reverse   { flex-wrap: wrap-reverse; }
.flex-fill           { flex: 1 1 auto; }
.flex-grow-0         { flex-grow: 0; }
.flex-grow-1         { flex-grow: 1; }
.flex-shrink-0       { flex-shrink: 0; }
.flex-shrink-1       { flex-shrink: 1; }

.justify-content-start    { justify-content: flex-start; }
.justify-content-end      { justify-content: flex-end; }
.justify-content-center   { justify-content: center; }
.justify-content-between  { justify-content: space-between; }
.justify-content-around   { justify-content: space-around; }
.justify-content-evenly   { justify-content: space-evenly; }

.align-items-start    { align-items: flex-start; }
.align-items-end      { align-items: flex-end; }
.align-items-center   { align-items: center; }
.align-items-baseline { align-items: baseline; }
.align-items-stretch  { align-items: stretch; }

.align-self-start    { align-self: flex-start; }
.align-self-end      { align-self: flex-end; }
.align-self-center   { align-self: center; }
.align-self-baseline { align-self: baseline; }
.align-self-stretch  { align-self: stretch; }

/* ---------- TEXT ---------- */
.text-start   { text-align: left; }
.text-center  { text-align: center; }
.text-end     { text-align: right; }
.text-lowercase   { text-transform: lowercase; }
.text-uppercase   { text-transform: uppercase; }
.text-capitalize  { text-transform: capitalize; }
.text-decoration-none        { text-decoration: none; }
.text-decoration-underline   { text-decoration: underline; }
.text-decoration-line-through { text-decoration: line-through; }
.text-wrap     { white-space: normal; }
.text-nowrap   { white-space: nowrap; }
.text-truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.text-break    { word-wrap: break-word; word-break: break-word; }

/* Font weight / style */
.fw-lighter { font-weight: lighter; }
.fw-light   { font-weight: 300; }
.fw-normal  { font-weight: 400; }
.fw-medium  { font-weight: 500; }
.fw-semibold{ font-weight: 600; }
.fw-bold    { font-weight: 700; }
.fw-bolder  { font-weight: bolder; }
.fst-italic { font-style: italic; }
.fst-normal { font-style: normal; }
.font-monospace { font-family: SFMono-Regular, Menlo, Monaco, Consolas, monospace; }

/* Font size */
.fs-1 { font-size: 2.5rem; }
.fs-2 { font-size: 2rem; }
.fs-3 { font-size: 1.75rem; }
.fs-4 { font-size: 1.5rem; }
.fs-5 { font-size: 1.25rem; }
.fs-6 { font-size: 1rem; }

/* Line height */
.lh-1    { line-height: 1; }
.lh-sm   { line-height: 1.25; }
.lh-base { line-height: 1.5; }
.lh-lg   { line-height: 2; }

/* Text Colors */
.text-primary   { --bs-text-opacity: 1; color: rgba(var(--bs-primary-rgb, 13,110,253), var(--bs-text-opacity)); }
.text-secondary { --bs-text-opacity: 1; color: rgba(var(--bs-secondary-rgb, 108,117,125), var(--bs-text-opacity)); }
.text-success   { --bs-text-opacity: 1; color: rgba(var(--bs-success-rgb, 25,135,84), var(--bs-text-opacity)); }
.text-danger    { --bs-text-opacity: 1; color: rgba(var(--bs-danger-rgb, 220,53,69), var(--bs-text-opacity)); }
.text-warning   { --bs-text-opacity: 1; color: rgba(var(--bs-warning-rgb, 255,193,7), var(--bs-text-opacity)); }
.text-info      { --bs-text-opacity: 1; color: rgba(var(--bs-info-rgb, 13,202,240), var(--bs-text-opacity)); }
.text-light     { --bs-text-opacity: 1; color: rgba(var(--bs-light-rgb, 248,249,250), var(--bs-text-opacity)); }
.text-dark      { --bs-text-opacity: 1; color: rgba(var(--bs-dark-rgb, 33,37,41), var(--bs-text-opacity)); }
.text-white     { --bs-text-opacity: 1; color: rgba(255,255,255, var(--bs-text-opacity)); }
.text-body      { color: var(--bs-body-color); }
.text-muted     { color: var(--bs-secondary); }

/* Text Background combos */
.text-bg-primary   { color: #fff; background-color: var(--bs-primary); }
.text-bg-secondary { color: #fff; background-color: var(--bs-secondary); }
.text-bg-success   { color: #fff; background-color: var(--bs-success); }
.text-bg-danger    { color: #fff; background-color: var(--bs-danger); }
.text-bg-warning   { color: #000; background-color: var(--bs-warning); }
.text-bg-info      { color: #000; background-color: var(--bs-info); }
.text-bg-light     { color: #000; background-color: var(--bs-light); }
.text-bg-dark      { color: #fff; background-color: var(--bs-dark); }

/* ---------- BACKGROUND ---------- */
.bg-primary   { --bs-bg-opacity: 1; background-color: rgba(var(--bs-primary-rgb, 13,110,253), var(--bs-bg-opacity)); }
.bg-secondary { --bs-bg-opacity: 1; background-color: rgba(var(--bs-secondary-rgb, 108,117,125), var(--bs-bg-opacity)); }
.bg-success   { --bs-bg-opacity: 1; background-color: rgba(var(--bs-success-rgb, 25,135,84), var(--bs-bg-opacity)); }
.bg-danger    { --bs-bg-opacity: 1; background-color: rgba(var(--bs-danger-rgb, 220,53,69), var(--bs-bg-opacity)); }
.bg-warning   { --bs-bg-opacity: 1; background-color: rgba(var(--bs-warning-rgb, 255,193,7), var(--bs-bg-opacity)); }
.bg-info      { --bs-bg-opacity: 1; background-color: rgba(var(--bs-info-rgb, 13,202,240), var(--bs-bg-opacity)); }
.bg-light     { --bs-bg-opacity: 1; background-color: rgba(var(--bs-light-rgb, 248,249,250), var(--bs-bg-opacity)); }
.bg-dark      { --bs-bg-opacity: 1; background-color: rgba(var(--bs-dark-rgb, 33,37,41), var(--bs-bg-opacity)); }
.bg-white     { --bs-bg-opacity: 1; background-color: rgba(255,255,255, var(--bs-bg-opacity)); }
.bg-transparent { background-color: transparent; }
.bg-gradient  { background-image: var(--bs-gradient); }

/* ---------- BORDERS ---------- */
.border         { border: 1px solid var(--bs-border-color); }
.border-0       { border: 0; }
.border-top     { border-top: 1px solid var(--bs-border-color); }
.border-end     { border-right: 1px solid var(--bs-border-color); }
.border-bottom  { border-bottom: 1px solid var(--bs-border-color); }
.border-start   { border-left: 1px solid var(--bs-border-color); }

.border-primary   { border-color: var(--bs-primary); }
.border-secondary { border-color: var(--bs-secondary); }
.border-success   { border-color: var(--bs-success); }
.border-danger    { border-color: var(--bs-danger); }
.border-warning   { border-color: var(--bs-warning); }
.border-info      { border-color: var(--bs-info); }
.border-light     { border-color: var(--bs-light); }
.border-dark      { border-color: var(--bs-dark); }
.border-white     { border-color: var(--bs-white); }

.rounded    { border-radius: var(--bs-border-radius); }
.rounded-0  { border-radius: 0; }
.rounded-1  { border-radius: var(--bs-border-radius-sm); }
.rounded-2  { border-radius: var(--bs-border-radius); }
.rounded-3  { border-radius: var(--bs-border-radius-lg); }
.rounded-4  { border-radius: var(--bs-border-radius-xl); }
.rounded-5  { border-radius: var(--bs-border-radius-xxl); }
.rounded-circle { border-radius: 50%; }
.rounded-pill   { border-radius: var(--bs-border-radius-pill); }
.rounded-top    { border-radius: var(--bs-border-radius) var(--bs-border-radius) 0 0; }
.rounded-end    { border-radius: 0 var(--bs-border-radius) var(--bs-border-radius) 0; }
.rounded-bottom { border-radius: 0 0 var(--bs-border-radius) var(--bs-border-radius); }
.rounded-start  { border-radius: var(--bs-border-radius) 0 0 var(--bs-border-radius); }

/* ---------- SHADOWS ---------- */
.shadow-none { box-shadow: none; }
.shadow-sm   { box-shadow: var(--bs-shadow-sm); }
.shadow      { box-shadow: var(--bs-shadow); }
.shadow-lg   { box-shadow: var(--bs-shadow-lg); }

/* ---------- POSITION ---------- */
.position-static  { position: static; }
.position-relative{ position: relative; }
.position-absolute{ position: absolute; }
.position-fixed   { position: fixed; }
.position-sticky  { position: sticky; }
.top-0    { top: 0; }    .bottom-0 { bottom: 0; }
.top-50   { top: 50%; }  .bottom-50 { bottom: 50%; }
.start-0  { left: 0; }   .end-0 { right: 0; }
.start-50 { left: 50%; } .end-50 { right: 50%; }
.translate-middle   { transform: translate(-50%, -50%); }
.translate-middle-x { transform: translateX(-50%); }
.translate-middle-y { transform: translateY(-50%); }

/* ---------- VISIBILITY & OPACITY ---------- */
.visible   { visibility: visible; }
.invisible { visibility: hidden; }
.opacity-0  { opacity: 0; }
.opacity-25 { opacity: 0.25; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100{ opacity: 1; }

/* ---------- OVERFLOW ---------- */
.overflow-auto     { overflow: auto; }
.overflow-hidden   { overflow: hidden; }
.overflow-visible  { overflow: visible; }
.overflow-scroll   { overflow: scroll; }
.overflow-x-auto   { overflow-x: auto; }
.overflow-y-hidden { overflow-y: hidden; }

/* ---------- FLOAT & CLEAR ---------- */
.float-start { float: left; }
.float-end   { float: right; }
.float-none  { float: none; }
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/* ---------- TABLE ---------- */
.table { width: 100%; margin-bottom: 1rem; color: var(--bs-body-color); }
.table-striped > tbody > tr:nth-of-type(odd) > * {
  background-color: rgba(0,0,0,0.05);
}
.table-hover > tbody > tr:hover > * {
  background-color: rgba(0,0,0,0.075);
}
.table-bordered { border: 1px solid var(--bs-border-color); }
.table-bordered > :not(caption) > * > * { border-width: 1px; }
.table-borderless > :not(caption) > * > * { border-bottom-width: 0; }
.table-sm > :not(caption) > * > * { padding: 0.25rem; }
.table-dark   { background-color: var(--bs-dark); color: #fff; }
.table-light  { background-color: var(--bs-light); }
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---------- IMG ---------- */
.img-fluid    { max-width: 100%; height: auto; }
.img-thumbnail {
  padding: 0.25rem;
  background-color: var(--bs-white);
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
}

/* ---------- OPACITY (TEXT & BACKGROUND) ---------- */
.text-opacity-25 { --bs-text-opacity: 0.25; }
.text-opacity-50 { --bs-text-opacity: 0.5; }
.text-opacity-75 { --bs-text-opacity: 0.75; }
.text-opacity-100{ --bs-text-opacity: 1; }
.bg-opacity-10 { --bs-bg-opacity: 0.1; }
.bg-opacity-25 { --bs-bg-opacity: 0.25; }
.bg-opacity-50 { --bs-bg-opacity: 0.5; }
.bg-opacity-75 { --bs-bg-opacity: 0.75; }
.bg-opacity-100{ --bs-bg-opacity: 1; }

/* ---------- Z-INDEX ---------- */
.z-n1 { z-index: -1; }
.z-0  { z-index: 0; }
.z-1  { z-index: 1; }
.z-2  { z-index: 2; }
.z-3  { z-index: 3; }

/* ---------- LISTS ---------- */
.list-unstyled { padding-left: 0; list-style: none; }
.list-inline { padding-left: 0; list-style: none; }
.list-inline-item { display: inline-block; }
.list-inline-item:not(:last-child) { margin-right: 0.5rem; }

/* ---------- ACCESSIBILITY ---------- */
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ---------- STACKS ---------- */
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}
.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}
.vr {
  display: inline-block;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentcolor;
  opacity: 0.25;
}

/* ---------- INTERACTIONS ---------- */
.user-select-all   { user-select: all; }
.user-select-auto  { user-select: auto; }
.user-select-none  { user-select: none; }
.pe-none { pointer-events: none; }
.pe-auto { pointer-events: auto; }

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* ---------- SM (≥576px) ---------- */
@media (min-width: 576px) {
  .container { max-width: 540px; }

  .col-sm-1  { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-sm-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-sm-3  { flex: 0 0 25%; max-width: 25%; }
  .col-sm-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-sm-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-sm-6  { flex: 0 0 50%; max-width: 50%; }
  .col-sm-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-sm-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-sm-9  { flex: 0 0 75%; max-width: 75%; }
  .col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
  .col-sm-auto { flex: 0 0 auto; width: auto; }

  .d-sm-none  { display: none; }
  .d-sm-block { display: block; }
  .d-sm-flex  { display: flex; }
  .d-sm-grid  { display: grid; }
  .d-sm-inline-flex { display: inline-flex; }

  .text-sm-start  { text-align: left; }
  .text-sm-center { text-align: center; }
  .text-sm-end    { text-align: right; }

  .float-sm-start { float: left; }
  .float-sm-end   { float: right; }
  .float-sm-none  { float: none; }

  /* Spacing sm */
  .m-sm-0 { margin: 0; } .p-sm-0 { padding: 0; }
  .m-sm-1 { margin: 0.25rem; } .p-sm-1 { padding: 0.25rem; }
  .m-sm-2 { margin: 0.5rem; }  .p-sm-2 { padding: 0.5rem; }
  .m-sm-3 { margin: 1rem; }    .p-sm-3 { padding: 1rem; }
  .m-sm-4 { margin: 1.5rem; }  .p-sm-4 { padding: 1.5rem; }
  .m-sm-5 { margin: 3rem; }    .p-sm-5 { padding: 3rem; }
  .m-sm-auto { margin: auto; }
}

/* ---------- MD (≥768px) ---------- */
@media (min-width: 768px) {
  .container { max-width: 720px; }

  .col-md-1  { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-md-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-md-3  { flex: 0 0 25%; max-width: 25%; }
  .col-md-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-md-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-md-6  { flex: 0 0 50%; max-width: 50%; }
  .col-md-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-md-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-md-9  { flex: 0 0 75%; max-width: 75%; }
  .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-md-12 { flex: 0 0 100%; max-width: 100%; }
  .col-md-auto { flex: 0 0 auto; width: auto; }

  .d-md-none  { display: none; }
  .d-md-block { display: block; }
  .d-md-flex  { display: flex; }
  .d-md-grid  { display: grid; }
  .d-md-inline-flex { display: inline-flex; }

  .text-md-start  { text-align: left; }
  .text-md-center { text-align: center; }
  .text-md-end    { text-align: right; }

  .float-md-start { float: left; }
  .float-md-end   { float: right; }
  .float-md-none  { float: none; }

  .m-md-0 { margin: 0; } .p-md-0 { padding: 0; }
  .m-md-1 { margin: 0.25rem; } .p-md-1 { padding: 0.25rem; }
  .m-md-2 { margin: 0.5rem; }  .p-md-2 { padding: 0.5rem; }
  .m-md-3 { margin: 1rem; }    .p-md-3 { padding: 1rem; }
  .m-md-4 { margin: 1.5rem; }  .p-md-4 { padding: 1.5rem; }
  .m-md-5 { margin: 3rem; }    .p-md-5 { padding: 3rem; }
  .m-md-auto { margin: auto; }
}

/* ---------- LG (≥992px) ---------- */
@media (min-width: 992px) {
  .container { max-width: 960px; }

  .col-lg-1  { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-lg-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-lg-3  { flex: 0 0 25%; max-width: 25%; }
  .col-lg-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-lg-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-lg-6  { flex: 0 0 50%; max-width: 50%; }
  .col-lg-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-lg-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-lg-9  { flex: 0 0 75%; max-width: 75%; }
  .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
  .col-lg-auto { flex: 0 0 auto; width: auto; }

  .d-lg-none  { display: none; }
  .d-lg-block { display: block; }
  .d-lg-flex  { display: flex; }
  .d-lg-grid  { display: grid; }
  .d-lg-inline-flex { display: inline-flex; }

  .text-lg-start  { text-align: left; }
  .text-lg-center { text-align: center; }
  .text-lg-end    { text-align: right; }

  .float-lg-start { float: left; }
  .float-lg-end   { float: right; }
  .float-lg-none  { float: none; }

  .m-lg-0 { margin: 0; } .p-lg-0 { padding: 0; }
  .m-lg-1 { margin: 0.25rem; } .p-lg-1 { padding: 0.25rem; }
  .m-lg-2 { margin: 0.5rem; }  .p-lg-2 { padding: 0.5rem; }
  .m-lg-3 { margin: 1rem; }    .p-lg-3 { padding: 1rem; }
  .m-lg-4 { margin: 1.5rem; }  .p-lg-4 { padding: 1.5rem; }
  .m-lg-5 { margin: 3rem; }    .p-lg-5 { padding: 3rem; }
  .m-lg-auto { margin: auto; }
}

/* ---------- XL (≥1200px) ---------- */
@media (min-width: 1200px) {
  .container { max-width: 1140px; }

  .col-xl-1  { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-xl-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-xl-3  { flex: 0 0 25%; max-width: 25%; }
  .col-xl-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-xl-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-xl-6  { flex: 0 0 50%; max-width: 50%; }
  .col-xl-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-xl-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-xl-9  { flex: 0 0 75%; max-width: 75%; }
  .col-xl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-xl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-xl-12 { flex: 0 0 100%; max-width: 100%; }
  .col-xl-auto { flex: 0 0 auto; width: auto; }

  .d-xl-none  { display: none; }
  .d-xl-block { display: block; }
  .d-xl-flex  { display: flex; }
  .d-xl-grid  { display: grid; }
  .d-xl-inline-flex { display: inline-flex; }

  .text-xl-start  { text-align: left; }
  .text-xl-center { text-align: center; }
  .text-xl-end    { text-align: right; }

  .m-xl-0 { margin: 0; } .p-xl-0 { padding: 0; }
  .m-xl-1 { margin: 0.25rem; } .p-xl-1 { padding: 0.25rem; }
  .m-xl-2 { margin: 0.5rem; }  .p-xl-2 { padding: 0.5rem; }
  .m-xl-3 { margin: 1rem; }    .p-xl-3 { padding: 1rem; }
  .m-xl-4 { margin: 1.5rem; }  .p-xl-4 { padding: 1.5rem; }
  .m-xl-5 { margin: 3rem; }    .p-xl-5 { padding: 3rem; }
  .m-xl-auto { margin: auto; }
}

/* ---------- XXL (≥1400px) ---------- */
@media (min-width: 1400px) {
  .container { max-width: 1320px; }

  .col-xxl-1  { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-xxl-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-xxl-3  { flex: 0 0 25%; max-width: 25%; }
  .col-xxl-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-xxl-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-xxl-6  { flex: 0 0 50%; max-width: 50%; }
  .col-xxl-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-xxl-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-xxl-9  { flex: 0 0 75%; max-width: 75%; }
  .col-xxl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-xxl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-xxl-12 { flex: 0 0 100%; max-width: 100%; }
  .col-xxl-auto { flex: 0 0 auto; width: auto; }

  .d-xxl-none  { display: none; }
  .d-xxl-block { display: block; }
  .d-xxl-flex  { display: flex; }
  .d-xxl-grid  { display: grid; }
  .d-xxl-inline-flex { display: inline-flex; }

  .text-xxl-start  { text-align: left; }
  .text-xxl-center { text-align: center; }
  .text-xxl-end    { text-align: right; }

  .m-xxl-0 { margin: 0; } .p-xxl-0 { padding: 0; }
  .m-xxl-1 { margin: 0.25rem; } .p-xxl-1 { padding: 0.25rem; }
  .m-xxl-2 { margin: 0.5rem; }  .p-xxl-2 { padding: 0.5rem; }
  .m-xxl-3 { margin: 1rem; }    .p-xxl-3 { padding: 1rem; }
  .m-xxl-4 { margin: 1.5rem; }  .p-xxl-4 { padding: 1.5rem; }
  .m-xxl-5 { margin: 3rem; }    .p-xxl-5 { padding: 3rem; }
  .m-xxl-auto { margin: auto; }
}

/* ======================================================================
           SHARED COMPONENTS (kicker, buttons, headings)
           ====================================================================== */
.kicker {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
    color: var(--color-accent);
}

.main-heading {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}

.lead-text {

    line-height: 1.6;
    color: var(--color-gray-text);
    /* margin-bottom: 2.5rem; */
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-standard);
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #d12046;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 44, 77, 0.2);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-accent);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    transition: var(--transition-standard);
    border: none;
    cursor: pointer;
}

.btn-white:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
    border: 1px solid var(--color-white);
    background: transparent;
    color: var(--color-white);
    padding: 8px 26px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-standard);
}

.btn-outline-white:hover {
    background: var(--color-white);
    color: #000;
}

.display-heading {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: -1.5px;
    margin-bottom: 1.25rem;
}



/* ======================================================================
           SECTION: OUR STORY (002)
           ====================================================================== */
.our-story-section {
	padding: 80px 0;
	background-color: var(--color-bg-light);
}
.our-story-section .kicker {
    color: #e16b74;
}

.our-story-section .main-heading {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.our-story-section .lead-text {

    font-weight: 500;
    color: var(--color-gray-dark);
    max-width: 95%;
}

.story-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 35px;
}

.step-number {
    display: block;
    color: #e16b74;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    opacity: 0.9;
}

.step-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
    color: var(--color-dark);
}

.step-text {

    line-height: 1.7;
    margin-bottom: 1.25rem;
    padding-right: 65px;
}

@media (max-width: 992px) {
    .our-story-section .main-heading {
        font-size: 2.25rem;
    }

    .story-image {
        margin-top: 2rem;
        height: 350px;
    }

    .pr-lg-5 {
        padding-right: 15px !important;
    }
}

@media (max-width: 768px) {
    .step-block {
        /* margin-bottom: 2.5rem; */
    }

    .mt-6 {
        margin-top: 3rem;
    }

    .story-image {
        height: 300px;
        border-top-left-radius: 40px;
    }
}

@media (max-width: 480px) {
    .step-text {
        padding-right: 0;
    }
}

/* ======================================================================
           SECTION: FOCUS AREAS (003)
           ====================================================================== */
.focus-areas-section {
    padding: 80px 0;
	background-color: var(--color-white);
}

.image-card {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--color-dark);
    display: block;
    text-decoration: none;
    border-radius: 35px;
}

.card-tall {
    height: 620px;
}

.card-short {
    height: calc(310px - 10px);
}

.gap-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-card:hover .card-bg {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    z-index: 2;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    letter-spacing: -0.5px;
    line-height: 1.1;
    color: var(--color-white);
}

.card-link {

    font-weight: 400;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.3s ease;
    color: var(--color-white);
}

.card-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.image-card:hover .card-link {
    opacity: 1;
}

.image-card:hover .card-link svg {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .card-tall {
        height: 500px;
    }

    .card-short {
        height: calc(250px - 10px);
    }

    .card-content {
        padding: 2rem;
    }

    .card-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {

    .card-tall,
    .card-short {
        height: 350px;
    }

    .gap-column {
        gap: 20px;
        margin-top: 20px;
    }

    .row {
        margin-right: -15px;
        margin-left: -15px;
    }

    .col {
        padding-right: 15px;
        padding-left: 15px;
    }
}

/* ======================================================================
           SECTION: EDUCATION (004)
           ====================================================================== */
.education-section {
	padding: 80px 0;
	background-color: var(--color-bg-light);
}
.education-section .display-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: -1.5px;
    line-height: 1.15;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.education-section .kicker {
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.divider-line {
    flex-grow: 1;
    height: 1px;
    background-color: var(--color-accent-light);
    max-width: 40%;
}

.divider-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
    flex-shrink: 0;
}

.divider-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.side-heading {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.side-text {

    line-height: 1.7;
}

.timeline {
    position: relative;
    padding-top: 5px;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    position: relative;
    padding-bottom: 3rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 48px;
    left: 24px;
    width: 1px;
    height: calc(100% - 40px);
    background-color: var(--color-accent-light);
    z-index: 0;
}

.timeline-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--color-accent-light);
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    flex-shrink: 0;
}

.timeline-icon-wrapper svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
}

.timeline-content {
    padding-top: 8px;
}

.timeline-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
    color: var(--color-dark);
}

.timeline-text {

    line-height: 1.6;
    margin-bottom: 0;
    color: var(--color-gray-text);
}

@media (max-width: 992px) {
    .education-section .display-heading {
        font-size: 2.4rem;
    }

    .side-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .education-section .display-heading {
        font-size: 2rem;
    }

    .side-heading {
        font-size: 1.8rem;
    }

    .divider-line {
        max-width: 35%;
    }

    .timeline-item {
        padding-bottom: 2.5rem;
    }
}

/* ======================================================================
           SECTION: GALLERY (005)
           ====================================================================== */
.gallery-section {
    padding: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--grid-gap);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 35px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.item-1 {
    grid-column: span 5;
    height: 380px;
}

.item-2 {
    grid-column: span 3;
    height: 380px;
}

.item-3 {
    grid-column: span 4;
    height: 380px;
}

.item-4 {
    grid-column: span 3;
    height: 380px;
}

.item-5 {
    grid-column: span 6;
    height: 380px;
}

.item-6 {
    grid-column: span 3;
    height: 380px;
}

@media (max-width: 1200px) {

    .item-1,
    .item-2,
    .item-3,
    .item-4,
    .item-5,
    .item-6 {
        height: 320px;
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .item-1,
    .item-2,
    .item-3,
    .item-4,
    .item-5,
    .item-6 {
        grid-column: span 1;
        height: 300px;
    }

    .item-5 {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .item-1,
    .item-2,
    .item-3,
    .item-4,
    .item-5,
    .item-6 {
        grid-column: span 1;
        height: 250px;
    }
}

/* ======================================================================
           SECTION: ABOUT (006)
           ====================================================================== */
.about-intro-section .kicker {
    display: block;
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 1.25rem;
}

.about-intro-section {
    padding: 50px 0;
}

.about-intro-section .main-heading {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.about-intro-section .lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-gray-text);
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .about-intro-section .main-heading {
        font-size: 3.5rem;
    }

    .about-intro-section .lead-text {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .about-intro-section .main-heading {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .about-intro-section .lead-text {}
}

/* ======================================================================
           SECTION: QUOTE + CTA (007)
           ====================================================================== */
.quote-section {
    background-color: var(--color-white);
}

.blockquote-text {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: -1.2px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.quote-author {
    font-size: 1rem;
    color: var(--color-gray-text);
}

.cta-banner {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 4rem 0;
}

.cta-kicker {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
    display: block;
    opacity: 0.9;
}

.cta-heading {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin: 0;
    color: var(--color-white);
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
}

.btn-icon-white {
    width: 52px;
    height: 52px;
    background-color: var(--color-white);
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-standard);
    border: none;
}

.btn-icon-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-icon-white svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 992px) {
    .blockquote-text {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .blockquote-text {
        font-size: 2rem;
    }

    .cta-banner {
        padding: 3rem 0;
    }

    .cta-banner .row {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .cta-actions {
        justify-content: center;
    }

    .cta-heading {
        font-size: 1.8rem;
    }
}

/* ======================================================================
           SECTION: WHAT WE BELIEVE (008)
           ====================================================================== */
.what-we-believe-section {
	padding: 50px 0;
}
.what-we-believe-section .kicker {
    color: var(--color-accent);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
}

.what-we-believe-section .display-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: -1.5px;
    line-height: 1.15;
    max-width: 850px;
    margin-bottom: 4rem;
}

.logo-banner-wrapper {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 2.5rem 0;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.banner-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: -0.5px;
}

.banner-logos {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.brand-logo svg {
    height: 32px;
    width: auto;
    display: block;
}

.logo-nbc svg {
    height: 36px;
}

.logo-cs svg {
    height: 20px;
}

.logo-ml svg {
    height: 28px;
}

@media (max-width: 992px) {
    .what-we-believe-section .display-heading {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .what-we-believe-section .display-heading {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .banner-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .banner-logos {
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .what-we-believe-section .display-heading {
        font-size: 1.8rem;
        letter-spacing: -1px;
    }

    .banner-text {
        font-size: 1.1rem;
    }
}

/* ======================================================================
           SECTION: CAPABILITIES (009)
           ====================================================================== */
.capabilities-section {
    background-color: var(--color-white);
	padding: 50px 0;
}

.capabilities-section .lead-text {
    max-width: 90%;
}

.capabilities-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.capability-item {
    display: flex;
    align-items: flex-start;
    padding: 2rem 2.5rem;
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    border-radius: 4px;
    transition: var(--transition-standard);
}

.capability-item:not(.active-card):hover {
    background-color: rgba(0, 0, 0, 0.02);
}

/* .active-card {
    background-color: var(--color-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}
 */
.cap-icon {
    width: 24px;
    height: 24px;
    margin-right: 1.5rem;
    margin-top: 4px;
    flex-shrink: 0;
    color: #4a4a4a;
}

.active-card .cap-icon {
    color: var(--color-accent);
}

.cap-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cap-content {
    flex-grow: 1;
}

.cap-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    display: inline-flex;
    align-items: center;
	margin: 0;
}

.cap-desc {
    line-height: 1.5;
    color: var(--color-gray-text);
    margin-bottom: 0;
}

.active-card .cap-title {
    color: var(--color-accent);
}

.title-underline-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.title-underline-wrapper::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
}

.cap-arrow {
    margin-left: 10px;
    width: 16px;
    height: 16px;
    color: var(--color-accent);
}

@media (max-width: 992px) {
    .capabilities-section .display-heading {
        font-size: 3.5rem;
    }

    .capabilities-section .lead-text {
        max-width: 100%;
    }

    .capability-item {
        padding: 1.5rem;
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .capabilities-section .display-heading {
        font-size: 2.4rem;
    }

    .capabilities-list {
        gap: 1rem;
    }

    .capability-item {
        padding: 1.5rem 1rem;
    }

    .cap-icon {
        margin-right: 1rem;
    }
}

/* ======================================================================
           SECTION: SOCIAL IMPACT (010)
           ====================================================================== */
.social-impact-section {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1592424090289-53e778ceca20?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 700px;
    display: flex;
    align-items: center;
	padding: 50px 0;
}

.impact-card {
    background-color: var(--color-white);
    border-radius: 36px;
    padding: 4.5rem 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(240, 62, 92, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.impact-card .brand-logo {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
}

.impact-card .brand-logo svg {
    height: 32px;
    width: auto;
}

.impact-card .kicker {
    display: inline-block;
    color: var(--color-accent-alt);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
}

.impact-card .main-heading {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--color-dark);
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}

.impact-card .lead-text {

    line-height: 1.6;
    color: var(--color-gray-text);
    margin-bottom: 2.5rem;
}

.impact-card .btn-primary {
    background-color: var(--color-accent-alt);
}

.impact-card .btn-primary:hover {
    background-color: #d82a46;
    box-shadow: 0 6px 15px rgba(240, 62, 92, 0.25);
}

@media (max-width: 992px) {
    .impact-card {
        padding: 3.5rem 3rem;
    }

    .impact-card .main-heading {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .social-impact-section {
        padding: 4rem 0;
        min-height: auto;
    }

    .impact-card {
        padding: 2.5rem 2rem;
        border-radius: 24px;
    }

    .impact-card .main-heading {
        font-size: 2rem;
        letter-spacing: -1px;
    }

    .impact-card .brand-logo {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .impact-card .main-heading {
        font-size: 1.8rem;
    }

    .impact-card .lead-text {}
}

/* ======================================================================
           SECTION: BOOK (011)
           ====================================================================== */
.book-section {
    display: flex;
    flex-wrap: wrap;
    border-radius: 8px;
    overflow: hidden;
    margin: 4rem auto;
    max-width: 1200px;
}

.book-section .col-left {
    flex: 0 0 50%;
    background: var(--color-red-gradient);
    padding: 4rem;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.book-section .col-right {
    flex: 0 0 50%;
    background-color: var(--color-black);
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.book-section .kicker {
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.book-section .title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: var(--color-white);
}

.book-section .description {

    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: var(--color-white);
}

.book-section .btn-white {
    background: var(--color-white);
    color: #e82c4d;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    transition: var(--transition-standard);
}

.book-section .btn-white:hover {
    transform: scale(1.05);
}

.tag-release {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: #e82c4d;
    color: white;
    padding: 6px 14px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {

    .book-section .col-left,
    .book-section .col-right {
        flex: 0 0 100%;
        padding: 3rem;
    }

    .book-section .title {
        font-size: 2rem;
    }
}

/* ======================================================================
           SECTION: FOOTER (012)
           ====================================================================== */
.site-footer {
    padding: 4rem 0;
    background-color: var(--color-bg-dark);
}

.footer-divider {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin: 2rem 0;
}

.brand-logo-wrapper {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.brand-logo-wrapper svg {
    height: 28px;
    margin-right: 8px;
}

.footer-tagline {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-white);
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-muted);
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}
.footer-links {
	margin: 0;
	    list-style-type: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-links a {

    color: var(--color-text-main);
}

.footer-links a:hover {
    color: var(--color-white);
    opacity: 0.8;
}

.nav-horizon-text {

    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 2rem;
}

.social-icons a {
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    color: var(--color-white);
}

.social-icons svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.contact-info-list {
    margin-bottom: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    max-width: 280px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--color-text-muted);

}

.contact-info-item a {
    color: var(--color-text-muted);
}

.contact-info-item svg {
    width: 16px;
    height: 16px;
    margin-right: 12px;
    fill: currentColor;
}

.contact-info-item strong {
    color: var(--color-white);
    font-weight: 600;
    /* margin-left: 5px; */
}

.btn-secondary {
    background-color: var(--color-btn-dark);
    color: var(--color-text-main);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-standard);
    display: inline-flex;
    align-items: center;
    gap: 8px;
	text-decoration: none !important;
}

.btn-secondary:hover {
    background-color: #444;
    color: var(--color-white);
}

.btn-secondary svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.newsroom-text {

    color: var(--color-white);
    margin-bottom: 0;
}

.site-footer .btn-primary {
    background-color: var(--color-accent);
}

.site-footer .btn-primary:hover {
    background-color: #d12046;
}

.site-footer .hours-section {
    flex-direction: row;
}

@media (max-width: 768px) {
    .footer-links {
        margin-bottom: 2rem;
    }

    .btn-secondary {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 480px){
	.site-footer .hours-section {
    flex-direction: column;
}
}

</style></head><body><style>a,
button {
    cursor: pointer;
    text-decoration: none;
    border: none;
    outline: none;
}

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

/* ================================================================
               UTILITY
               ================================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

.col {
    flex: 1 0 0%;
    padding: 0 12px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 12px;
}

.text-uppercase {
    text-transform: uppercase;
}

.mt-200 {
    margin-top: 200px;
}

/* ================================================================
               HEADER / NAVIGATION
               ================================================================ */
.site-header {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    background: transparent;
    transition: var(--transition);
}

.site-header.scrolled {
    background: var(--dark);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    padding: 12px 0;
    position: sticky;
}

.site-header .row {
    align-items: center;
    justify-content: space-between;
}

/* ---- Logo ---- */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.brand-logo img {
    width: 200px;
    fill: var(--color-white);
    transition: var(--transition);
}

.brand-logo:hover svg {
    fill: var(--primary-red);
}

/* ---- Navigation ---- */
.primary-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.primary-nav .nav-link {
    color: var(--color-white);
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.primary-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
}

.primary-nav .nav-link:hover::after,
.primary-nav .nav-link.active::after {
    width: 100%;
}

.primary-nav .nav-link svg {
    width: 14px;
    height: 14px;
    fill: var(--color-white);
    opacity: 0.7;
    transition: var(--transition);
}

.primary-nav .nav-link:hover svg {
    opacity: 1;
    fill: var(--primary-red);
}

/* ---- Header CTA ---- */
.header-cta {
    flex-shrink: 0;
}

.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--dark);
    border-color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

/* ---- Hamburger ---- */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

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

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

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

/* ===== Section ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
    overflow: hidden;
    background-image: url("assets/img/home-hero-banner.webp");
    background-size: cover;
    /* background-position: center; */
    background-repeat: no-repeat;

}

@media (max-width: 767px) {
    .hero-section {
        background-image: url("../img/ECSION-mobile-banner.webp") !important;
    }
}

/* ---- Background Image + Overlay ---- */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        /* overlay */
        linear-gradient(135deg, var(--overlay-color) 0%, rgba(10, 20, 50, 0.80) 100%),
        
}

/* subtle animated grain / noise texture (optional) */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.3;
}

/* ===== Content Layer ===== */
.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* ===== Left Text ===== */
.hero-title {
    font-size: clamp(2.6rem, 5.5vw, 6.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: var(--color-accent);
}

.hero-lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.20);
}

/* ===== Buttons ===== */
.btn-premium {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 60px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-premium-primary {
    background: #ffffff;
    color: #0a142e;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-premium-primary:hover {
    background: #f0f2f5;
    color: #0a142e;
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
}

.btn-premium-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-premium-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.45);
}

/* ===== Glass Form Card ===== */
.glass-form-card {
    background: #fff;

    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 2.2rem 2rem 2rem;
    box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 480px;
    margin-left: auto;
}

.glass-form-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 40px 70px -16px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.glass-form-card h3 {
    font-weight: 700;
    color: #0a142e;
    letter-spacing: -0.02em;
}

.glass-form-card .form-text-muted {
    color: rgba(10, 20, 46, 0.65);
    font-size: 0.92rem;
}

.form-control-premium {
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid #ccc;
    border-radius: 16px;
    padding: 0.75rem 1.2rem;
    font-size: 0.98rem;
    color: #0a142e;
    transition: all 0.25s ease;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.02);
    width: 100%;
}

.form-control-premium:focus {
    background: rgba(255, 255, 255, 0.85);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15), inset 0 2px 6px rgba(0, 0, 0, 0.02);
    outline: none;
}

.form-control-premium::placeholder {
    color: rgba(10, 20, 46, 0.40);
}

.glass-form-card .btn-premium-primary {
    background: #0a142e;
    color: #ffffff;
    justify-content: center;
    padding: 0.85rem;
    border-radius: 60px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.glass-form-card .btn-premium-primary:hover {
    background: #1a2a4a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(10, 20, 46, 0.30);
}



/* ===== Responsive tweaks ===== */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        padding: 60px 0 40px;
    }

    .glass-form-card {
        max-width: 100%;
        margin-left: 0;
        margin-top: 2rem;
    }

    .hero-lead {
        max-width: 100%;
    }

    .client-logos img {
        max-height: 30px;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding: 40px 0 30px;
    }

    .glass-form-card {
        padding: 1.6rem 1.2rem;
        border-radius: 20px;
    }

    .btn-premium {
        padding: 0.6rem 1.4rem;
        font-size: 0.92rem;
    }

}

/* ================================================================
               SCROLL INDICATOR
               ================================================================ */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    right: 40px;
    width: 48px;
    height: 48px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(4px);
}

.scroll-indicator:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    transform: translateY(-4px);
}

.scroll-indicator svg {
    width: 20px;
    height: 20px;
    fill: var(--color-white);
    animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {

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

    50% {
        transform: translateY(6px);
    }
}

/* ================================================================
               RESPONSIVE – TABLETS & BELOW
               ================================================================ */
@media (max-width: 1024px) {
    .display-title {
        font-size: 3.8rem;
    }

    .contact-form {
        max-width: 100%;
    }

    .contact-form-wrapper {
        justify-content: center;
    }
}

@media (max-width: 992px) {

    /* ---- Mobile Nav ---- */
    .primary-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 40px 24px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .primary-nav.open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background: #000;
    }

    .primary-nav .nav-link {
        font-size: 1.3rem;
        padding: 12px 0;
        border-bottom: none;
    }

    .primary-nav .nav-link::after {
        display: none;
    }

    .primary-nav .nav-link svg {
        width: 18px;
        height: 18px;
    }

    .menu-toggle {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    /* ---- Hero ---- */
    .hero-section {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .hero-section .row {
        flex-direction: column;
        gap: 48px;
    }

    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hero-text .mt-200 {
        margin-top: 0;
    }

    .display-title {
        font-size: 3.2rem;
    }

    .hero-text p {
        max-width: 100%;
        font-size: 1rem;
    }

    .contact-form-wrapper {
        justify-content: center;
    }

    .contact-form {
        max-width: 100%;
        padding: 30px 24px;
    }

    .scroll-indicator {
        bottom: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    .scroll-indicator svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 576px) {
    .site-header {
        padding: 12px 0;
    }

    .brand-logo {
        font-size: 1.2rem;
    }

    .brand-logo svg {
        width: 22px;
        height: 22px;
    }

    .display-title {
        font-size: 2.4rem;
        letter-spacing: -1px;
    }

    .hero-section {
        padding: 60px 0 60px;
    }

    .contact-form {
        padding: 24px 18px;
        border-radius: 10px;
    }

    .contact-form .form-title {
        font-size: 1.1rem;
    }

    .contact-form .form-group input,
    .contact-form .form-group textarea {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .contact-form .btn-submit {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .hero-badges {
        gap: 12px 24px;
    }

    .hero-badges .badge-item {
        font-size: 1rem;
    }

    .hero-text .kicker {
        font-size: 0.65rem;
        padding: 4px 14px;
    }

    .scroll-indicator {
        width: 34px;
        height: 34px;
        bottom: 12px;
        right: 12px;
    }

    .scroll-indicator svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 400px) {
    .display-title {
        font-size: 1.9rem;
    }

    .contact-form {
        padding: 18px 14px;
    }

    .brand-logo img {
        width: 140px;
    }
}

/* ---- page-specific utilities ---- */
.why-section {
    padding: 80px 0px;
}

.why-section .kicker {
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 1rem;
    display: inline-block;
}

.why-section .main-heading {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.why-section .lead-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--color-gray-text);
    max-width: 700px;
}

/* ---- hero (why) — reduced height with form ---- */
.why-hero {
    padding: 100px 0 60px;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.why-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(232, 44, 77, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-hero .container {
    position: relative;
    z-index: 2;
}

.why-hero .row {
    align-items: center;
    gap: 2rem 0;
}

.why-hero .display-title {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--color-white);
    margin-bottom: 1.2rem;
}

.why-hero .display-title .highlight {
    color: var(--color-accent);
    position: relative;
}

.why-hero .display-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(232, 44, 77, 0.3);
    border-radius: 4px;
    z-index: -1;
}

.why-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* ---- compact contact form card ---- */
.why-form-wrapper {
    display: flex;
    justify-content: flex-end;
}

.why-form-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 35px;
    padding: 30px 28px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    transition: var(--transition-standard);
}

.why-form-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.why-form-card .form-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.2rem;
}

.why-form-card .form-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.2rem;
}

.why-form-card .form-group {
    margin-bottom: 0.8rem;
}

.why-form-card .form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 3px;
}

.why-form-card .form-group input,
.why-form-card .form-group textarea {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: var(--color-white);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition-standard);
    outline: none;
    resize: vertical;
}

.why-form-card .form-group input::placeholder,
.why-form-card .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.why-form-card .form-group input:focus,
.why-form-card .form-group textarea:focus {
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(232, 44, 77, 0.1);
}

.why-form-card .form-group textarea {
    min-height: 60px;
    max-height: 100px;
}

.why-form-card .btn-submit {
    width: 100%;
    padding: 12px 24px;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition-standard);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.why-form-card .btn-submit:hover {
    background: #d12046;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(232, 44, 77, 0.3);
}

.why-form-card .btn-submit svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: var(--transition-standard);
}

.why-form-card .btn-submit:hover svg {
    transform: translateX(4px);
}

.why-form-card .form-footer {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 0.8rem;
}

.why-form-card .form-footer a {
    color: var(--color-accent);
    transition: var(--transition-standard);
}

.why-form-card .form-footer a:hover {
    color: var(--color-white);
}

/* ---- expertise section ---- */
.expertise-section {
    background: var(--color-bg-light);
}

.expertise-section .main-heading {
    max-width: 800px;
}

.expertise-section .lead-text {
    max-width: 800px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

.expertise-card {
    background: var(--color-bg-light);
    padding: 2rem 2.5rem;
    border-radius: 35px;
    transition: var(--transition-standard);
    border: 1px solid transparent;
}

.expertise-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 44, 77, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.expertise-card .icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(232, 44, 77, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.expertise-card .icon-wrap svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
}

.expertise-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.expertise-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-gray-text);
    margin-bottom: 0;
}

/* ---- stats banner ---- */
.stats-banner {
    background: var(--color-dark);
    padding: 4rem 0;
    border-radius: 35px;
    margin: 80px 0;
}

.stats-banner .row {
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2rem 0;
}

.stat-item .stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -2px;
    line-height: 1;
}

.stat-item .stat-number .accent {
    color: var(--color-accent);
}

.stat-item .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

/* ---- partner section ---- */
.partner-section {
    background: var(--color-bg-light);
}

.partner-section .main-heading {
    max-width: 800px;
}

.partner-section .lead-text {
    max-width: 800px;
}

/* ---- customers / competencies ---- */
.customers-section {
    background: var(--color-white);
}

.competency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.competency-tag {
    background: var(--color-bg-light);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-dark);
    transition: var(--transition-standard);
    border: 1px solid #ddd;
	    display: flex;
    justify-content: center;
}

.competency-tag img {
/* 	    width: 130px; */
}

.competency-tag:hover {
/*     border-color: var(--color-accent); */
    background: rgba(232, 44, 77, 0.04);
/*     transform: translateY(-2px); */
}

/* ---- results section ---- */
.results-section {
    background: var(--color-dark);
    color: var(--color-white);
}

.results-section .kicker {
    color: var(--color-accent);
}

.results-section .main-heading {
    color: var(--color-white);
}

.results-section .lead-text {
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.result-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition-standard);
}

.result-item:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-4px);
}

.result-item .result-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(232, 44, 77, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.result-item .result-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
}

.result-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.result-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ---- cta banner (why version) ---- */
.why-cta-banner {
    background: var(--color-accent);
    padding: 4rem 0;
    color: var(--color-white);
}

.why-cta-banner .cta-heading {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--color-white);
    margin-bottom: 0;
}

.why-cta-banner .cta-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.why-cta-banner .btn-white {
    background: var(--color-white);
    color: var(--color-accent);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-standard);
    display: inline-block;
    text-decoration: none;
}

.why-cta-banner .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* ---- responsive overrides ---- */
@media (max-width: 992px) {
    .why-hero {
        padding: 90px 0 50px;
    }

    .why-hero .display-title {
        font-size: 3rem;
    }

    .why-hero .row {
        flex-direction: column;
        gap: 2rem;
    }

    .why-form-wrapper {
        justify-content: center;
    }

    .why-form-card {
        max-width: 100%;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-banner .stat-number {
        font-size: 3rem;
    }

    .stat-divider {
        display: none;
    }

    .why-section .main-heading {
        font-size: 2.6rem;
    }

    .why-cta-banner .cta-heading {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .why-hero {
        padding: 80px 0 40px;
    }

    .why-hero .display-title {
        font-size: 2.4rem;
    }

    .why-section .main-heading {
        font-size: 2rem;
    }

    .why-section .lead-text {
        font-size: 1rem;
    }

    .why-form-card {
        padding: 24px 18px;
    }

    .why-form-card .form-title {
        font-size: 1.4rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .stats-banner {
        padding: 3rem 1.5rem;
    }

    .stats-banner .stat-number {
        font-size: 2.6rem;
    }

    .why-cta-banner {
        padding: 3rem 0;
        text-align: center;
    }

    .why-cta-banner .cta-heading {
        font-size: 1.6rem;
    }

    .competency-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .why-hero .display-title {
        font-size: 1.9rem;
    }

    .why-section .main-heading {
        font-size: 1.6rem;
    }

    .competency-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .competency-tag {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .expertise-card {
        padding: 1.5rem;
    }

    .stats-banner .row {
        flex-direction: column;
        gap: 20px;
    }

    .why-cta-banner .row {
        flex-direction: column;
    }

    .why-cta-banner .free-consiultation-btn {
        display: flex;
        justify-content: center;
    }
}

/* ---- service features grid ---- */
.features-section {
    background: var(--color-bg-light);
}



.features-section .main-heading {
    max-width: 800px;
}

.features-section .lead-text {
    max-width: 800px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

.feature-card {
    background: var(--color-bg-light);
    padding: 2rem 2.5rem;
    border-radius: 35px;
    transition: var(--transition-standard);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 44, 77, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.feature-card .icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(232, 44, 77, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.feature-card .icon-wrap svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-gray-text);
    margin-bottom: 0;
}


@media (max-width: 480px) {


    .feature-card {
        padding: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
           CUSTOMERS PAGE – ADDITIONAL STYLES
           ============================================================ */

/* ---- hero (customers) ---- */
.customers-hero {
    padding: 100px 0 60px;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.customers-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(232, 44, 77, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.customers-hero .container {
    position: relative;
    z-index: 2;
}

.customers-hero .row {
    align-items: center;
    gap: 2rem 0;
}

.customers-hero .display-title {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--color-white);
    margin-bottom: 1.2rem;
}

.customers-hero .display-title .highlight {
    color: var(--color-accent);
    position: relative;
}

.customers-hero .display-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(232, 44, 77, 0.3);
    border-radius: 4px;
    z-index: -1;
}

.customers-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* ---- client logos grid ---- */
.logos-section {
    background: var(--color-bg-light);
    padding: 80px 0;
}

.leaders-section{
	background: var(--color-white);
    
}

.logos-section .section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.logos-section .section-sub {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-gray-text);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.logo-item {
    background: var(--color-bg-light);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: var(--transition-standard);
    border: 1px solid transparent;
    text-align: center;
}

.logo-item:hover {
    border-color: rgba(232, 44, 77, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.logo-item .logo-placeholder {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gray-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo-item .logo-placeholder .accent {
    color: var(--color-accent);
}

/* ---- client types ---- */
.client-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.client-type-card {
    background: var(--color-bg-light);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-standard);
    border: 1px solid transparent;
}

.client-type-card:hover {
    border-color: rgba(232, 44, 77, 0.15);
    transform: translateY(-4px);
}

.client-type-card .type-icon {
    font-size: 2.4rem;
    margin-bottom: 0.75rem;
    display: block;
}

.client-type-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

.client-type-card p {
    font-size: 0.9rem;
    color: var(--color-gray-text);
    margin-bottom: 0;
}

/* ---- trust section ---- */
.trust-section {
    background: var(--color-bg-light);
    padding: 5rem 0;
}

.trust-section .main-heading {
    max-width: 800px;
}

.trust-section .lead-text {
    max-width: 800px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.trust-item {
    padding: 2rem;
    background: var(--color-white);
    border-radius: 35px;
    transition: var(--transition-standard);
    border: 1px solid transparent;
    text-align: center;
}

.trust-item:hover {
    border-color: rgba(232, 44, 77, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.trust-item .trust-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(232, 44, 77, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--color-accent);
}

.trust-item .trust-icon svg {
    width: 30px;
    height: 30px;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
}

.trust-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 0.95rem;
    color: var(--color-gray-text);
    margin-bottom: 0;
    line-height: 1.6;
}

.why-staff-section{
	background: var(--color-bg-light);
}

/* ---- responsive ---- */
@media (max-width: 992px) {
    .customers-hero {
        padding: 90px 0 50px;
    }

    .customers-hero .display-title {
        font-size: 3rem;
    }

    .customers-hero .row {
        flex-direction: column;
        gap: 2rem;
    }

    .client-types {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .customers-hero {
        padding: 80px 0 40px;
    }

    .customers-hero .display-title {
        font-size: 2.4rem;
    }

    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .logo-item {
        min-height: 90px;
        padding: 1.5rem 1rem;
    }

    .client-types {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .logos-section .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .customers-hero .display-title {
        font-size: 1.9rem;
    }

    .logos-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .logo-item {
        min-height: 70px;
        padding: 1rem;
    }

    .client-types {
        grid-template-columns: 1fr;
    }

    .client-type-card {
        padding: 1.5rem 1rem;
    }
}

    /* ======================================================================
           HIGH-END UNIQUE UI DESIGN FOR CONTACT MODULE (Strictly px and 1100px Container)
           ====================================================================== */
 

        .ecs-contact-container {
            width: 100%;
            max-width: 1100px !important;
            margin-right: auto;
            margin-left: auto;
            padding-right: 15px;
            padding-left: 15px;
        }

        /* Spacing & Section Geometry */
        .ecs-py-contact-section {
            padding-top: 100px;
            padding-bottom: 100px;
        }

        .ecs-pb-contact-section {
            padding-bottom: 100px;
        }

        /* Section 1: Hero Block */
        .ecs-hero-section {
            position: relative;
            background: linear-gradient(135deg, #121212 0%, #222222 100%);
            padding-top: 120px;
            padding-bottom: 50px;
            color: var(--color-white, #ffffff);
            overflow: hidden;
        }

        .ecs-hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(232, 44, 77, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .ecs-hero-section .main-heading {
            color: var(--color-white, #ffffff);
            font-size: 52px !important;
            font-weight: 800;
            line-height: 1.15 !important;
            letter-spacing: -2px !important;
            margin-bottom: 24px !important;
        }

        .ecs-hero-section .lead-text {
            font-size: 20px !important;
            color: #b3b3b3;
            max-width: 650px;
            line-height: 1.6;
        }

        /* Section 2: Contact Info Card (Left Col-5 Box) */
        .ecs-contact-info-card {
            background: var(--color-bg-light, #f9f9fa);
            padding: 50px 40px;
            border-radius: 16px;
            height: 100%;
            border: 1px solid var(--color-border, #eaeaea);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
        }

        .ecs-contact-info-card h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
            color: var(--color-dark, #1a1a1a);
        }

        .ecs-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 35px;
        }

        .ecs-info-item:last-child {
            margin-bottom: 0;
        }

        .ecs-info-icon {
            width: 52px;
            height: 52px;
            background-color: var(--color-accent-light, #f7d5da);
            color: var(--color-accent, #e82c4d);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(232, 44, 77, 0.08);
        }

        .ecs-info-icon svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .ecs-info-details h4 {
            margin-bottom: 6px;
            font-size: 18px;
            font-weight: 700;
            color: var(--color-dark, #1a1a1a);
        }

        .ecs-info-details p, .ecs-info-details a {
            margin-bottom: 0;
            font-size: 16px;
            color: var(--color-gray-text, #5a5a5a);
            line-height: 1.5;
        }

        .ecs-info-details a:hover {
            color: var(--color-accent, #e82c4d);
        }

        /* Form Layout Box (Right Col-7 Box) */
        .ecs-form-block-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: -1px;
            color: var(--color-dark, #1a1a1a);
        }

        .ecs-form-block-subtitle {
            font-size: 16px;
            color: var(--color-gray-text, #5a5a5a);
            margin-bottom: 36px;
        }

        .ecs-form-group {
            margin-bottom: 24px;
        }

        .ecs-form-label {
            display: block;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--color-dark, #1a1a1a);
            margin-bottom: 10px;
        }

        .ecs-form-control {
            width: 100%;
            height: 54px;
            padding: 12px 20px;
            font-size: 16px;
            font-family: var(--font-primary, sans-serif);
            background-color: #fafafa;
            border: 1px solid #e5e5e5;
            border-radius: 10px;
            color: var(--color-dark, #1a1a1a);
            transition: var(--transition-standard, all 0.3s ease);
        }

        textarea.ecs-form-control {
            height: 160px;
            resize: vertical;
        }

        .ecs-form-control:focus {
            outline: none;
            background-color: #ffffff;
            border-color: var(--color-accent, #e82c4d);
            box-shadow: 0 10px 20px rgba(232, 44, 77, 0.05);
        }

        .ecs-btn-primary-enhanced {
            background: var(--color-red-gradient, linear-gradient(135deg, #f03e5c 0%, #e82c4d 100%));
            color: var(--color-white, #ffffff);
            border: none;
            padding: 16px 40px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(232, 44, 77, 0.25);
            transition: var(--transition-standard, all 0.3s ease);
            display: inline-block;
        }

        .ecs-btn-primary-enhanced:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(232, 44, 77, 0.4);
        }

        /* Section 3: Maps Frame Layering */
        .ecs-map-wrapper {
            width: 100%;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--color-border, #eaeaea);
            box-shadow: 0 20px 40px rgba(0,0,0,0.04);
        }

        .ecs-map-wrapper iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Responsive Breakpoints Rules */
        @media (max-width: 991px) {
            .ecs-hero-section {
                padding-top: 100px;
                padding-bottom: 50px;
            }
            .ecs-hero-section .main-heading {
                font-size: 40px !important;
            }
            .ecs-py-contact-section {
                padding-top: 80px;
                padding-bottom: 80px;
            }
            /* Collapse asymmetric columns cleanly into full width on tablets and mobiles */
            .col-lg-5, .col-lg-7 {
                width: 100% !important;
                flex: 0 0 auto !important;
                padding-left: 15px !important;
                padding-right: 15px !important;
            }
            .ecs-contact-info-card {
                margin-bottom: 60px;
            }
        }

        @media (max-width: 767px) {
            .ecs-contact-info-card {
                padding: 35px 25px;
            }
            .ecs-form-block-title {
                font-size: 30px;
                margin-top: 30px;
            }
            .ecs-map-wrapper {
                height: 350px;
            }
        }

/* ======================================================================
          PRIVACY POLICY
           ====================================================================== */

        .ecs-privacy-container {
            width: 100%;
            max-width: 1300px !important;
            margin-right: auto;
            margin-left: auto;
            padding-right: 15px;
            padding-left: 15px;
        }

        /* Spacing & Section Geometry */
        .ecs-py-privacy-section {
            padding-top: 100px;
            padding-bottom: 100px;
        }

        /* Section 1: Hero Privacy Block */
        .ecs-privacy-hero-section {
            position: relative;
            background: linear-gradient(135deg, #121212 0%, #222222 100%);
            padding-top: 120px;
            padding-bottom: 120px;
            color: var(--color-white, #ffffff);
            overflow: hidden;
        }

        .ecs-privacy-hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(232, 44, 77, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .ecs-privacy-hero-section .main-heading {
            color: var(--color-white, #ffffff);
            font-size: 52px !important;
            font-weight: 800;
            line-height: 1.15 !important;
            letter-spacing: -2px !important;
            margin-bottom: 24px !important;
        }

        .ecs-privacy-hero-section .lead-text {
            font-size: 20px !important;
            color: #b3b3b3;
            max-width: 650px;
            line-height: 1.6;
        }

        /* Section 2: Sidebar Box (Left Col-3 Sticky Menu Block) */
        .ecs-privacy-sidebar {
            background: var(--color-bg-light, #f9f9fa);
            padding: 30px 20px;
            border-radius: 16px;
            border: 1px solid var(--color-border, #eaeaea);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
            position: sticky;
            top: 100px;
        }

        .ecs-privacy-sidebar h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
            color: var(--color-dark, #1a1a1a);
        }

        .ecs-privacy-sidebar-nav {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .ecs-privacy-nav-item {
            margin-bottom: 14px;
        }

        .ecs-privacy-nav-item:last-child {
            margin-bottom: 0;
        }

        .ecs-privacy-nav-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--color-gray-text, #5a5a5a);
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            line-height: 1.4;
        }

        .ecs-privacy-nav-link::before {
            content: '';
            width: 6px;
            height: 6px;
            background-color: var(--color-accent, #e82c4d);
            border-radius: 50%;
            margin-right: 10px;
            opacity: 0;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .ecs-privacy-nav-link:hover {
            color: var(--color-accent, #e82c4d);
            padding-left: 4px;
        }

        .ecs-privacy-nav-link:hover::before {
            opacity: 1;
        }

        /* Privacy Policy Main Content Layer (Right Col-9 Box) */
        .ecs-privacy-content-wrapper {
            color: var(--color-gray-text, #5a5a5a);
        }

        .ecs-privacy-content-block {
            margin-bottom: 45px;
        }

        .ecs-privacy-content-block:last-child {
            margin-bottom: 0;
        }

        .ecs-privacy-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 18px;
            letter-spacing: -0.5px;
            color: var(--color-dark, #1a1a1a);
        }

        .ecs-privacy-text {
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .ecs-privacy-list {
            margin-bottom: 16px;
            padding-left: 20px;
        }

        .ecs-privacy-list li {
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 8px;
        }

        .ecs-privacy-meta-box {
            background-color: #fafafa;
            border-left: 4px solid var(--color-accent, #e82c4d);
            padding: 20px;
            border-radius: 0 10px 10px 0;
            font-size: 15px;
            margin-bottom: 40px;
        }

        .ecs-privacy-meta-box p {
            margin: 0;
            line-height: 1.5;
        }

        /* Responsive Breakpoints Rules */
        @media (max-width: 991px) {
            .ecs-privacy-hero-section {
                padding-top: 100px;
                padding-bottom: 100px;
            }
            .ecs-privacy-hero-section .main-heading {
                font-size: 40px !important;
            }
            .ecs-py-privacy-section {
                padding-top: 80px;
                padding-bottom: 80px;
            }
            /* Dynamic reset for fluid proportions on compressed media viewports */
            .col-lg-3, .col-lg-9 {
                width: 100% !important;
                flex: 0 0 auto !important;
                padding-left: 15px !important;
                padding-right: 15px !important;
            }
            .ecs-privacy-sidebar {
                position: relative;
                top: 0;
                margin-bottom: 50px;
                padding: 30px 25px;
            }
        }

        @media (max-width: 767px) {
            .ecs-privacy-title {
                font-size: 24px;
            }
        }

/* ================================================================
              About
================================================================ */
      
        .ecs-about-container {
            width: 100%;
            max-width: 1300px !important;
            margin-right: auto;
            margin-left: auto;
            padding-right: 15px;
            padding-left: 15px;
        }

        /* Spacing & Section Geometry */
        .ecs-py-about-section {
            padding-top: 120px;
            padding-bottom: 120px;
        }

        /* Section 1: Deep Tech Premium Hero Block */
        .ecs-about-hero-section {
            position: relative;
            background: radial-gradient(circle at 80% 20%, #1e1e26 0%, #0a0a0d 100%);
            padding-top: 160px;
            padding-bottom: 160px;
            color: var(--color-white, #ffffff);
            overflow: hidden;
        }

        .ecs-about-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-image: url('<?php echo get_stylesheet_directory_uri(); ?>/assets/img/about-banner.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            pointer-events: none;
        }

        .ecs-about-hero-section .kicker {
            display: inline-block;
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--color-accent, #e82c4d);
            margin-bottom: 18px;
            background: rgba(232, 44, 77, 0.12);
            padding: 6px 18px;
            border-radius: 50px;
            border: 1px solid rgba(232, 44, 77, 0.2);
        }

        .ecs-about-hero-section .main-heading {
            color: var(--color-white, #ffffff);
            font-size: 58px !important;
            font-weight: 900;
            line-height: 1.15 !important;
            letter-spacing: -2.5px !important;
            margin-bottom: 28px !important;
        }

        .ecs-about-hero-section .lead-text {
            font-size: 22px !important;
            color: #b3b4bc;
            max-width: 750px;
            line-height: 1.6;
            font-weight: 400;
        }

        /* Layout Structure: Modern Asymmetric Sticky Grid */
        .ecs-about-sticky-wrapper {
            position: sticky;
            top: 120px;
        }

        /* Rich Media Display Block (Left Column) */
        .ecs-about-image-collage {
            position: relative;
            margin-bottom: 40px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
            height: 380px;
        }

        .ecs-about-image-collage img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .ecs-about-image-collage:hover img {
            transform: scale(1.04);
        }

        /* Premium Consultation Glass-Card UI */
        .ecs-about-sidebar-card {
            background: #ffffff;
            padding: 45px 40px;
            border-radius: 24px;
            border: 1px solid #eef0f4;
            box-shadow: 0 25px 60px rgba(13, 13, 17, 0.04);
            position: relative;
            overflow: hidden;
        }

        .ecs-about-sidebar-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--color-accent, #e82c4d);
        }

        .ecs-about-sidebar-card h3 {
            font-size: 26px;
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
            color: var(--color-dark, #1a1a1a);
        }

        .ecs-about-sidebar-p {
            font-size: 16px;
            line-height: 1.6;
            color: #666670;
            margin-bottom: 30px;
        }

        /* Elegant Call-To-Action Button */
        .ecs-about-cta-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--color-dark, #1a1a1a);
            color: #ffffff !important;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            padding: 18px 32px;
            border-radius: 12px;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            width: 100%;
            letter-spacing: -0.2px;
            box-shadow: 0 10px 25px rgba(26, 26, 26, 0.1);
        }

        .ecs-about-cta-btn svg {
            margin-left: 12px;
            transition: transform 0.3s ease;
        }

        .ecs-about-cta-btn:hover {
            background-color: var(--color-accent, #e82c4d);
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(232, 44, 77, 0.2);
        }

        .ecs-about-cta-btn:hover svg {
            transform: translateX(4px);
        }

        /* Right Column Layout & Icon Typographic Framework */
        .ecs-about-content-wrapper {
            padding-left: 20px;
        }

        .ecs-about-block {
            background: #ffffff;
            border: 1px solid #eef0f4;
            padding: 45px;
            border-radius: 24px;
            margin-bottom: 40px;
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.01);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .ecs-about-block:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
        }

        .ecs-about-block:last-child {
            margin-bottom: 0;
        }

        /* SVG Core Headers Design Block */
        .ecs-about-header-group {
            display: flex;
            align-items: center;
            margin-bottom: 24px;
        }

        .ecs-about-icon-box {
            width: 52px;
            height: 52px;
            background: rgba(232, 44, 77, 0.08);
            color: var(--color-accent, #e82c4d);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .ecs-about-icon-box svg {
            width: 24px;
            height: 24px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
        }

        .ecs-about-title {
            font-size: 30px;
            font-weight: 850;
            letter-spacing: -1px;
            color: var(--color-dark, #1a1a1a);
            line-height: 1.25;
            margin: 0;
        }

        .ecs-about-text {
            font-size: 17px;
            line-height: 1.85;
            margin-bottom: 20px;
            color: #52525e;
            font-weight: 400;
        }
        
        .ecs-about-text:last-child {
            margin-bottom: 0;
        }

        /* Callout Micro Framework Layout */
        .ecs-about-meta-box {
            background-color: var(--color-dark, #1a1a1a);
            color: #ffffff;
            padding: 45px;
            border-radius: 24px;
            margin-top: 50px;
            box-shadow: 0 20px 50px rgba(26, 26, 26, 0.08);
            position: relative;
            overflow: hidden;
        }

        .ecs-about-meta-box::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 150px;
            height: 150px;
            background: rgba(232, 44, 77, 0.15);
            border-radius: 50%;
            filter: blur(30px);
        }

        .ecs-about-meta-box h4 {
            font-size: 24px;
            font-weight: 800;
            color: #ffffff;
            margin-top: 0;
            margin-bottom: 14px;
            letter-spacing: -0.5px;
        }

        .ecs-about-meta-box p {
            font-size: 16px;
            margin: 0;
            line-height: 1.8;
            color: #b3b4bc;
        }

        /* Responsive Component Breakpoints */
        @media (max-width: 991px) {
            .ecs-about-hero-section {
                padding-top: 120px;
                padding-bottom: 120px;
            }
            .ecs-about-hero-section .main-heading {
                font-size: 44px !important;
            }
            .ecs-py-about-section {
                padding-top: 80px;
                padding-bottom: 80px;
            }
            .col-lg-5, .col-lg-7 {
                width: 100% !important;
                flex: 0 0 auto !important;
                padding-left: 15px !important;
                padding-right: 15px !important;
            }
            .ecs-about-sticky-wrapper {
                position: relative;
                top: 0;
                margin-bottom: 60px;
            }
            .ecs-about-image-collage {
                height: 300px;
            }
            .ecs-about-block {
                padding: 35px;
            }
            .ecs-about-content-wrapper {
                padding-left: 0;
            }
        }

        @media (max-width: 767px) {
            .ecs-about-title {
                font-size: 24px;
            }
            .ecs-about-header-group {
                align-items: flex-start;
            }
            .ecs-about-icon-box {
                margin-right: 15px;
                width: 44px;
                height: 44px;
            }
            .ecs-about-icon-box svg {
                width: 20px;
                height: 20px;
            }
        }

/* ================================================================
              What to expect
================================================================ */

        /* Enterprise Structural Cards */
        .hero-banner {
            background: #111111;
            color: var(--color-white);
            padding: 100px 0;
            text-align: center;
            border-bottom: 4px solid var(--color-accent);
        }

        .hero-banner h1 { color: var(--color-white); }

        .phase-card {
            background-color: var(--color-white);
            border: 1px solid var(--color-border);
            padding: 32px;
            border-radius: 6px;
            height: 100%;
            transition: var(--transition-standard);
        }

        .phase-card:hover {
            border-color: var(--color-accent);
            box-shadow: 0 8px 24px rgba(0,0,0,0.04);
        }

        .phase-number {
            font-size: 13px;
            text-transform: uppercase;
            font-weight: 700;
            color: var(--color-accent);
            margin-bottom: 12px;
            display: block;
            letter-spacing: 1px;
        }

        .phase-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--color-dark);
        }

        .value-pill {
            background: var(--color-bg-light);
            border: 1px solid var(--color-border);
            padding: 32px;
            border-radius: 6px;
            height: 100%;
        }

        .value-pill h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .cta-box {
            background: var(--color-red-gradient);
            color: var(--color-white);
            border-radius: 6px;
            padding: 56px;
            text-align: center;
        }

        .cta-box h2, .cta-box p { color: var(--color-white); }

        .split-image {
            box-shadow: 0 12px 30px rgba(0,0,0,0.07);
            object-fit: cover;
            width: 100%;
            height: 100%;
            min-height: 350px;
        }

/* ======================================================================
          Portfolio
           ====================================================================== */

        .premium-hero {
            position: relative;
            background: radial-gradient(circle at top right, #251216 0%, #0c0c0e 60%);
            overflow: hidden;
			padding: 100px 0 70px 0; 
        }
        .premium-hero::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0; height: 150px;
/*             background: linear-gradient(transparent, #0c0c0e); */
            pointer-events: none;
        }
			.features-block {
				padding: 50px 0;
			}
			#portfolio-display-hub {
				padding: 50px 0;
			}
        .glass-badge {
            display: inline-block;
            padding: 6px 20px;
            background: rgba(232, 44, 77, 0.15);
            border: 1px solid rgba(232, 44, 77, 0.25);
            color: var(--color-white);
            font-size: 13px;
            font-weight: 600;
            border-radius: 50px;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            backdrop-filter: blur(5px);
        }
        .accent-glow-line {
            width: 60px;
            height: 4px;
            background: var(--color-red-gradient);
            margin: 20px auto 35px auto;
            border-radius: 10px;
            box-shadow: 0 0 12px var(--color-accent);
        }
        .filter-wrapper {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 60px;
        }
        .filter-btn {
            padding: 14px 30px;
            background-color: var(--color-white);
            border: 1px solid var(--color-border);
            color: var(--color-dark);
            border-radius: 50px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0,0,0,0.02);
            transition: var(--transition-standard);
        }
        .filter-btn.active, .filter-btn:hover {
            background-color: var(--color-dark);
            color: var(--color-white);
            border-color: var(--color-dark);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            transform: translateY(-2px);
        }
        .feature-card {
            background-color: var(--color-white);
            border-radius: 20px;
            border: 1px solid rgba(0,0,0,0.05);
            padding: 45px 40px;
            height: calc(100% - 30px);
            margin-bottom: 30px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.03);
            transition: var(--transition-standard);
        }
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px rgba(232, 44, 77, 0.08);
            border-color: rgba(232, 44, 77, 0.3);
        }
        .card-icon-dot {
            width: 12px;
            height: 12px;
            background-color: var(--color-accent);
            border-radius: 50px;
            margin-bottom: 20px;
            box-shadow: 0 0 8px var(--color-accent);
        }
        .btn-text-link {
            display: inline-flex;
            align-items: center;
            color: var(--color-dark);
            font-weight: 700;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            cursor: pointer;
            margin-top: 25px;
            transition: var(--transition-standard);
        }
        .btn-text-link:hover {
            color: var(--color-accent-alt);
        }
        .btn-text-link::after {
            content: ' →';
            margin-left: 6px;
            transition: var(--transition-standard);
        }
        .btn-text-link:hover::after {
            transform: translateX(6px);
        }
        .gallery-item {
            display: block;
            margin-bottom: 30px;
            transition: var(--transition-standard);
        }
        .gallery-item.hidden {
            display: none;
        }
        .portfolio-link-wrapper {
            text-decoration: none;
            display: block;
            color: inherit;
        }
        .portfolio-box {
            background-color: transparent;
            overflow: hidden;
            height: 100%;
        }
        .image-container {
            position: relative;
            height: 420px; 
            background-color: var(--color-bg-light);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.06);
            transition: var(--transition-standard);
        }
        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-standard);
        }
        .portfolio-link-wrapper:hover .image-container {
            transform: translateY(-10px) scale(1.02);
/*             box-shadow: 0 30px 60px rgba(0,0,0,0.16); */
        }
        .portfolio-link-wrapper:hover .image-container img {
            transform: scale(1.06);
        }
        .box-info {
            padding: 24px 8px 0 8px;
        }
        .box-info h3 {
            font-size: 24px;
            transition: var(--transition-standard);
            margin-top: 0;
        }
        .portfolio-link-wrapper:hover .box-info h3 {
            color: var(--color-accent);
        }
        .immersive-footer {
            background-color: #0c0c0e;
            position: relative;
            overflow: hidden;
			padding: 50px 0;
        }
        .immersive-footer::before {
            content: '';
            position: absolute;
            top: 0; left: 25%; width: 50%; height: 100%;
            background: radial-gradient(circle at center, rgba(232, 44, 77, 0.07) 0%, transparent 65%);
            pointer-events: none;
        }
        .footer-glow-card {
            background: linear-gradient(180deg, rgba(30, 30, 38, 0.6) 0%, rgba(20, 20, 25, 0.8) 100%);
            border: 1px solid var(--border-color);
            border-radius: 32px;
            padding: 30px;
            backdrop-filter: blur(10px);
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
            position: relative;
            z-index: 1;
        }
        .footer-badge {
            display: inline-block;
            padding: 6px 18px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--color-accent);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-radius: 50px;
            margin-bottom: 20px;
        }
        .btn-premium-red {
              background: #ffffff;
			color: #0a142e;
			box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
				padding: 0.75rem 2rem;
			font-weight: 600;
			border-radius: 60px;
			transition: all 0.3s ease;
			border: none;
			text-decoration: none;
			display: inline-flex;
			align-items: center;
			gap: 0.5rem;
        }
        .btn-premium-red:hover {
            transform: translateY(-4px);
            /* box-shadow: 0 20px 45px rgba(232, 44, 77, 0.6); */
			color: var(--color-accent);
        }
        .modal-overlay {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background-color: rgba(12, 12, 14, 0.85);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
            padding: 20px;
        }
        .modal-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }
        .modal-window {
            background-color: var(--color-white);
            max-width: 620px;
            width: 100%;
            border-radius: 24px;
            padding: 50px;
            position: relative;
            transform: scale(0.9) translateY(20px);
            box-shadow: 0 40px 80px rgba(0,0,0,0.3);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .modal-overlay.active .modal-window {
            transform: scale(1) translateY(0);
        }
        .close-modal {
            position: absolute;
            top: 24px; right: 28px;
            font-size: 36px;
            cursor: pointer;
            color: var(--color-dark);
            font-weight: 300;
            line-height: 20px;
            transition: var(--transition-standard);
        }
        .close-modal:hover {
            color: var(--color-accent);
        }

        /* ======================================================================
           Webiste Design
           ====================================================================== */

        body {
            font-family: var(--font-primary);
            background-color: var(--color-white);
            color: var(--color-dark);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin-inline: auto;
            padding-inline: 24px;
        }

        .section-padding {
            padding-block: clamp(60px, 8vw, 50px);
        }

        .section-light {
            background-color: var(--color-bg-light);
            border-block: 1px solid var(--color-border);
        }

        /* Typographic System */
/*         h1, h2, h3, h4 { 
            color: var(--color-dark);
            line-height: 1.2; 
            font-weight: 800; 
            letter-spacing: -0.02em; 
        } */
        
       
        /* Semantic UI Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 36px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border-radius: 6px;
            border: none;
            cursor: pointer;
            transition: var(--transition-standard);
            text-decoration: none;
        }

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

        .btn-accent:hover {
            transform: translateY(-2px);
            background: var(--color-accent-alt);
        }

        .btn-submit {
            background: var(--color-red-gradient);
            color: var(--color-white);
            width: 100%;
            margin-block-start: 10px;
        }

        .btn-submit:hover {
            background: var(--color-accent-alt);
        }

        .badge {
            display: inline-flex;
            padding: 6px 16px;
            background-color: var(--color-accent-light);
            border-radius: 20px;
            color: var(--color-accent);
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-block-end: 24px;
        }

       
        
        /* 1. HERO COMPONENT */
        .hero {
            background: linear-gradient(var(--color-overlay-dark), var(--color-overlay-dark)), 
                        url('https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1920&q=80') no-repeat center center / cover;
            min-height: 80vh;
            display: flex;
            align-items: center;
            padding-block-start: 40px;
        }

        .hero__grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero__title {
            color: var(--color-white);
            font-size: clamp(38px, 5vw, 60px);
            margin-block-end: 24px;
        }

        .hero__subtitle {
            color: var(--color-text-main);
            font-size: clamp(16px, 2.5vw, 18px);
            margin-block-end: 40px;
            font-weight: 300;
        }

        .ui-viewport {
            background: var(--dark);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 16px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
        }

        .ui-viewport__chrome {
            display: flex;
            gap: 6px;
            margin-block-end: 16px;
        }

        .ui-viewport__dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: var(--color-text-muted);
        }

        .ui-viewport__frame {
            width: 100%;
            border-radius: 6px;
            display: block;
            object-fit: cover;
        }

        /* 2. SPLIT STATS COMPONENT */
        .split-block {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 80px;
            align-items: center;
        }

        .split-block__title {
            font-size: clamp(26px, 3.5vw, 38px);
            margin-block-end: 24px;
        }

        .metric-card {
            background-color: var(--color-bg-light);
            border: 1px solid var(--color-border);
            border-radius: 12px;
            padding: 50px 40px;
            text-align: center;
            position: relative;
        }

        .metric-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; height: 4px;
            background: var(--color-red-gradient);
        }

        .metric-card__num {
            font-size: clamp(54px, 7vw, 84px);
            font-weight: 800;
            color: var(--color-accent);
            line-height: 1;
            margin-block-end: 12px;
        }

        /* 3. CAPABILITIES GALLERY GRID */
        .capabilities-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--grid-gap);
            margin-block-start: 40px;
        }

        .product-card {
            background: var(--color-white);
            border: 1px solid var(--color-border);
            border-radius: 12px;
            padding: 35px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: var(--transition-standard);
            text-decoration: none;
            color: inherit;
        }

        .product-card:hover {
            transform: translateY(-6px);
            border-color: var(--color-accent-light);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        .product-card__icon {
            width: 44px;
            height: 44px;
            border-radius: 6px;
            background-color: var(--color-bg-light);
            color: var(--color-accent);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-block-end: 24px;
        }

        .product-card__title {
            font-size: 20px;
            margin-block-end: 12px;
        }

        .product-card__image-box {
            width: 100%;
            height: 150px;
            border-radius: 6px;
            overflow: hidden;
            margin-block: 20px;
        }

        .product-card__image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-standard);
        }

        .product-card:hover .product-card__image-box img {
            transform: scale(1.05);
        }

        .product-card__action {
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--color-accent);
        }

        /* 4. ASYMMETRIC CONTROL FOCUS ARCHITECTURE */
        .focus-system {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: var(--grid-gap-focus);
            align-items: start;
        }

        .focus-nav {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .focus-trigger {
            padding: 22px;
            background: var(--color-white);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            text-align: left;
            cursor: pointer;
            font-size: 15px;
            font-weight: 700;
            color: var(--color-gray-dark);
            transition: var(--transition-standard);
        }

        .focus-trigger:hover {
            border-color: var(--color-accent-light);
			    background: var(--color-accent);
        }

        .focus-trigger.is-active {
            background-color: var(--color-black);
            color: var(--color-white);
            border-color: var(--color-black);
        }

        .focus-pane {
            background: var(--color-white);
            border: 1px solid var(--color-border);
            border-radius: 12px;
            padding: 40px;
            display: none;
        }

        .focus-pane.is-active {
            display: block;
        }

        .focus-pane__title {
            font-size: 22px;
            margin-block-end: 12px;
        }

        .bullet-list {
            list-style: none;
            margin-block-start: 24px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .bullet-list li {
            position: relative;
            padding-inline-start: 24px;
            font-size: 15px;
            color: var(--color-gray-text);
        }

        .bullet-list li::before {
            content: "■";
            position: absolute;
            left: 0;
            color: var(--color-accent);
            font-size: 10px;
            top: 2px;
        }

        /* 5. BUSINESS CONTEXT BLOCK */
        .context-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .context-grid__title {
            font-size: clamp(24px, 3.5vw, 34px);
            margin-block-end: 24px;
        }

        .context-grid__paragraph {
            margin-block-end: 30px;
        }

        .context-card {
            background: var(--color-bg-light);
            padding: 30px;
            border-radius: 8px;
            border: 1px solid var(--color-border);
        }

        .context-card__headline {
            margin-block-end: 8px;
            font-size: 18px;
        }

        .context-card__text {
            font-size: 14px;
        }

        /* 6. CONVERSION FOOTER ARCHITECTURE */
        .footer-audit {
            background-color: var(--color-bg-dark);
            color: var(--color-text-main);
        }

        .footer-audit__grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 80px;
            align-items: center;
        }

        .footer-audit__paragraph {
            color: var(--color-text-muted);
            margin-block-end: 40px;
        }

        .footer-audit__call {
            border-block-start: 1px solid var(--border-color);
            padding-block-start: 30px;
        }

        .footer-audit__label {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--color-text-muted);
        }

        .footer-audit__number {
            font-size: clamp(30px, 4vw, 42px);
            font-weight: 800;
            color: var(--color-white);
            margin-block: 15px 5px;
        }

        .footer-audit__schedule {
            font-size: 13px;
            color: var(--color-text-muted);
        }

        .audit-form {
            background-color: var(--color-btn-dark);
            border: 1px solid var(--border-color);
            padding: 40px;
            border-radius: 12px;
        }

        .form-field {
            margin-block-end: 20px;
        }

        .form-input-control {
            width: 100%;
            padding: 16px 20px;
            background-color: var(--color-bg-dark);
            border: 1px solid var(--border-color);
            border-radius: 4px;
            color: var(--color-white);
            font-family: var(--font-primary);
            font-size: 15px;
            transition: var(--transition-standard);
        }

        .form-input-control:focus {
            outline: none;
            border-color: var(--color-accent);
        }

        /* ======================================================================
           MEDIA QUERIES
           ====================================================================== */
        @media (max-width: 992px) {
            .hero__grid, .split-block, .capabilities-grid, .focus-system, .context-grid, .footer-audit__grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }
