/* ========================================
       style.css — Bootstrap 5 Core Utilities
       (Lightweight standalone version)
       Values: 1rem = 16px
       ======================================== */

/* ---------- ROOT VARIABLES ---------- */
:root {
   --primary-color: #0F172A;
    --secondary-color: #f96831;
    --text-dark: #0F172A;
    --text-light: #FFFFFF;
    --text-muted: #9da4ad;
    --border-color: rgba(255, 255, 255, 0.08);
    --bg-light-gray: #F8FAFC;
    --primary-font: 'Inter', sans-serif;
    --secondary-font: 'Inter', sans-serif;

  /* Spacers */
  --spacer: 1rem;
  --spacer-0: 0;
  --spacer-1: 0.25rem;   /* 4px */
  --spacer-2: 0.5rem;    /* 8px */
  --spacer-3: 1rem;      /* 16px */
  --spacer-4: 1.5rem;    /* 24px */
  --spacer-5: 3rem;      /* 48px */

  /* Colors */
    --accent: #c9a84c;
      --primary-blue: #123B72;
      --text-dark: #143F73;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-danger: #dc3545;
  --bs-warning: #ffc107;
  --bs-info: #0dcaf0;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-white: #ffffff;
  --bs-body-color: #212529;
  --bs-body-bg: #ffffff;
  --bs-border-color: #dee2e6;
  --bs-link-color: #0d6efd;
  --bs-link-hover-color: #0a58ca;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --bs-body-font-size: 18px;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-gradient: linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0));

  /* Border Radius */
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 1.25rem;
  --bs-border-radius-pill: 50rem;

  /* Shadows */
  --bs-shadow-sm: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
  --bs-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
  --bs-shadow-lg: 0 1rem 3rem rgba(0,0,0,0.175);

  /* Breakpoints (used in media queries) */
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
}

/* ---------- RESET / BASE ---------- */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: var(--primary-font);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
}
a {
  color: var(--bs-link-color);
  text-decoration: underline;
}
a:hover {
  color: #fff;
}

/* ---------- 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);
    color: #fff;
}

.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;
}



/* ============================================================
       NAVBAR CUSTOM DESIGN SPEC STYLES
    ============================================================ */
    h1, h2, h3, h4, h5, h6 {
        margin: 0;
    }

.navbar-custom {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--text-light);
  padding: 20px 10px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-dark);
}
.navbar-brand img {
  width: 200px;
}
a {
  text-decoration: none;
}
.nav-menu {
  display: none;
  list-style: none;
}
.nav-link {
  font-weight: 600;
  color: var(--text-body);
  font-size: 1rem;
  padding: 0.5rem 0;
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}
/* Top-tier underline effect based on your Inter spec */
@media (min-width: 992px) {
  .nav-menu {
    display: flex !important;
    align-items: center;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -4px;
    left: 50%;
    background-color: var(--secondary-color);
    border-radius: 2px;
    transition: all 0.25s ease;
    transform: translateX(-50%);
  }
  .nav-link:hover::after,
  .nav-link.active::after {
    width: 70%;
  }
}
.btn-nav-cta {
  display: none;
  background-color: var(--secondary-color);
  color: var(--text-light);
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(244, 162, 97, 0.3);
}
.btn-nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
@media (min-width: 992px) {
  .btn-nav-cta {
    display: inline-flex !important;
  }
}
/* CUSTOM ANIMATED HAMBURGER */
.custom-toggler {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
}
@media (min-width: 992px) {
  .custom-toggler {
    display: none !important;
  }
}
.toggler-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: all 0.25s ease-in-out;
}
/* Hamburger transformation logic states */
.custom-toggler.open .line-top {}
.custom-toggler.open .line-mid {}
.custom-toggler.open .line-bot {}
/* Mobile Overlay Menu Dropdown Layout */
@media (max-width: 991.98px) {
  .nav-menu.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--text-light);
    padding: 1.5rem;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    gap: 1.25rem;
    text-align: center;
  }
  .nav-menu.mobile-open .btn-nav-cta {
    display: inline-flex !important;
    justify-content: center;
    margin-top: 0.5rem;
  }
}
/* ============================================================
         HERO / SHOWCASE COMPONENT STYLES
      ============================================================ */
.hero-section {
  padding: 80px 0px;
  align-items: center;
}
.badge-alert {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #FEF3C7;
  color: #92400E;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-section .title {
  font-size: 3.5rem;
  line-height: 1.15;
  letter-spacing: -1px;
}
.hero-section .highlight {
  color: var(--secondary-color);
}
.hero-section .desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 580px;
}
.btn-solid {
    background: var(--secondary-color);
    color: #fff;
    font-weight: 700;
    padding: 0.9rem 2.4rem;
    border-radius: 60px;
    box-shadow: 0 8px 20px rgba(244, 162, 97, 0.25);
        /* margin-top: 20px; */
}
.btn-solid:hover {
     background: #e08c4a;
    /* transform: translateY(-3px); */
    box-shadow: 0 14px 30px rgba(244, 162, 97, 0.35);
    color: #fff;
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
    font-weight: 700;
    padding: 0.9rem 2.4rem;
    border-radius: 60px;
    text-align: center;
}
.btn-outline:hover {
  background: var(--text-light);
    color: var(--primary-color);
}

@media (max-width: 480px){
  .btn-solid, .btn-outline  {
    display: flex;
    width: fit-content;
        margin: 0 auto;
  }
}
.rating-stars {
  color: #F59E0B;
}
.rating-number {
  font-weight: 800;
}
.review-count {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.avatar-group {
  display: flex;
}
.avatar-group img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid var(--text-light);
  margin-left: -14px;
}
.avatar-group img:first-child {
  margin-left: 0;
}
.trusted-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.4;
}
.hero-img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}
@media (max-width: 991.98px) {
  .hero-section {
    padding: 50px 0;
  }
  .hero-section .title {
    font-size: 2.5rem;
  }
}
/* footer */
.footer-1 {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 80px 20px;
  font-family: var(--secondary-font);
}
/* --- Brand Styles --- */
.footer-1 .logo-icon {
  color: var(--secondary-color);
  font-size: 1.8rem;
}
.footer-1 .logo-text {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 24px;
  color: var(--text-light);
}
.footer-1 .footer-desc {
  color: #a0aec0;
  font-size: 18px;
  line-height: 1.5;
  max-width: 290px;
}
/* Social Media Circles */
.footer-1 .footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: #a0aec0;
  font-size: 14px;
}
.footer-1 .footer-socials a:hover {
  background-color: var(--secondary-color);
  color: var(--text-light);
}
.footer-contact-wrapper .contact-item  a
{
    color: #a0aec0;
}
/* --- Menu Links & Titles --- */
.footer-1 .footer-title {
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--text-light);
  position: relative;
  letter-spacing: 0.5px;
}
.footer-1 .footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-1 .footer-links-list li {
  margin-bottom: 0.6rem;
}
.footer-1 .footer-links-list a {
  color: #a0aec0;
  font-size: 18px;
  display: flex;
  align-items: center;
}
.footer-1 .footer-links-list a:hover {
  color: var(--secondary-color);
}
.footer-1 .arrow-icon {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.2);
}
/* --- Contact Info Column --- */
.footer-1 .contact-item {
  color: #a0aec0;
  font-size: 18px;
}
.footer-1 .contact-icon {
  color: var(--secondary-color);
  font-size: 16px;
  width: 20px;
  text-align: center;
}
.footer-1 .contact-item a:hover {
  color: var(--secondary-color);
}
/* --- Operating Hours Column --- */
.footer-1 .hours-row {
  font-size: 18px;
  color: #a0aec0;
}
.footer-1 .hours-row .time {
  color: #a0aec0;
}
.footer-1 .emergency-row {
  font-size: 18px;
  font-weight: 600;
}
.footer-1 .emergency-label {
  color: var(--secondary-color);
}
.footer-1 .emergency-value {
  color: var(--secondary-color);
}
/* --- Footer Divider & Bottom Area --- */
.footer-1 .footer-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}
.footer-1 .copyright-text {
  font-size: 18px;
  color: #718096;
  margin: 0;
}
.footer-1 .footer-bottom-links a {
  font-size: 18px;
  color: #718096;
}
.footer-1 .footer-bottom-links a:hover {
  color: var(--text-light);
}
/* ---- dropdown styles (inline for completeness) ---- */
.nav-dropdown {
  position: relative;
}
.nav-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  list-style: none;
  z-index: 999;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.nav-dropdown .dropdown-menu li {
  padding: 0;
}
.nav-dropdown .dropdown-menu a {
  display: block;
  padding: 0.5rem 1.25rem;
  color: #1e293b;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown .dropdown-menu a:hover {
  background: #f1f5f9;
  color: var(--secondary-color);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-toggle .fa-chevron-down {
  font-size: 0.7rem;
  transition: transform 0.2s;
}
.nav-dropdown:hover .dropdown-toggle .fa-chevron-down,
.nav-dropdown.open .dropdown-toggle .fa-chevron-down {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .nav-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    padding-left: 1.5rem;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    border: none;
  }
  .nav-dropdown.open .dropdown-menu {
    display: block;
  }
  .nav-dropdown .dropdown-menu a {
    color: #e2e8f0;
    padding: 0.4rem 0;
    font-size: 0.95rem;
  }
  .nav-dropdown .dropdown-menu a:hover {
    background: transparent;
    color: #fff;
  }
  .dropdown-toggle .fa-chevron-down {
    font-size: 0.75rem;
  }
}
/* step number style */
.step-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f766e;
  margin-bottom: 0.5rem;
}
/* industry badge */
.industry-badge {
  background: #f1f5f9;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  display: inline-block;
  font-weight: 600;
  color: #1e293b;
  transition: 0.2s;
}
.industry-badge:hover {
  background: #0f766e;
  color: #fff;
  cursor: default;
}
.border-top {
  border-top: 1px solid #e2e8f0 !important;
}
.pt-4 {
  padding-top: 1.5rem !important;
}
.mt-5 {
  margin-top: 3rem !important;
}
.font-weight-bold {
  font-weight: 700;
}
/*=========================================
INDUSTRIES-1
=========================================*/
.industries-1 {
  padding: 80px 0;
  background: var(--bg-light-gray);
}
.industries-1 .section-label {
  display: inline-block;
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.industries-1 .section-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 0;
}
.industries-1 .section-title span {
  color: var(--secondary-color);
}
.industries-1 .section-desc {
  max-width: 650px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}
.industry-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .06);
  border-radius: 20px;
  padding: 36px 20px;
  text-align: center;
  margin-bottom: 25px;
  transition: .3s;
  box-shadow: 0 8px 25px rgba(15, 23, 42, .04);
}
.industry-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 162, 97, .35);
  box-shadow: 0 20px 40px rgba(15, 23, 42, .08);
}
.industry-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(244, 162, 97, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.industry-card h5 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}
.industry-more {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .industries-1 {
    padding: 60px 0;
  }
  .industries-1 .section-title {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .industry-card {
    padding: 28px 15px;
  }
  .industry-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  .industry-card h5 {
    font-size: 18px;
  }
}
/*=========================================
PARTNERS-1
=========================================*/
.partners-1 {
  padding: 80px 0;
  background: var(--primary-color);
}
.partner-card {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, .06),
      rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 32px;
  padding: 70px;
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(12px);
}
.partner-card::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -140px;
  top: -140px;
  border-radius: 50%;
  background: rgba(244, 162, 97, .08);
}
.partner-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -80px;
  bottom: -80px;
  border-radius: 50%;
  background: rgba(244, 162, 97, .04);
}
.partners-1 .section-label {
  display: inline-block;
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.partners-1 .section-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -2px;
  color: var(--text-light);
  position: relative;
  z-index: 2;
}
.partners-1 .section-title span {
  color: var(--secondary-color);
}
.partners-1 .section-desc {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 640px;
  position: relative;
  z-index: 2;
}
.btn-partner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 36px;
  border-radius: 60px;
  background: var(--secondary-color);
  color: var(--primary-color);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(244, 162, 97, .25);
  transition: .3s;
  position: relative;
  z-index: 2;
}
.btn-partner:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(244, 162, 97, .35);
}
@media (max-width: 991px) {
  .partner-card {
    padding: 50px 35px;
    text-align: center;
  }
  .partners-1 .section-title {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .partners-1 {
    padding: 60px 0;
  }
  .partner-card {
    padding: 40px 25px;
    border-radius: 24px;
  }
  .partners-1 .section-title {
    font-size: 30px;
  }
  .partners-1 .section-desc {
    font-size: 16px;
  }
  .btn-partner {
    width: 100%;
  }
}
/*=========================================
TESTIMONIAL-2
=========================================*/
.testimonial-2 {
  padding: 80px 0;
  background: var(--bg-light-gray);
}
.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .06);
  border-radius: 30px;
  padding: 70px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, .05);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  top: -160px;
  right: -120px;
  border-radius: 50%;
  background: rgba(244, 162, 97, .08);
}
.quote-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(244, 162, 97, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  color: var(--secondary-color);
  font-weight: 700;
}
.testimonial-2 .section-label {
  display: inline-block;
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.testimonial-2 .section-title {
   font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1.5px; 
  margin-bottom: 30px;
}
.testimonial-2 .section-title span {
  color: var(--secondary-color);
}
.testimonial-text {
  font-size: 26px;
  line-height: 1.7;
  color: var(--text-dark);
  font-style: italic;
  font-weight: 500;
  margin: 0 0 40px;
  position: relative;
}
.testimonial-author {
  border-top: 1px solid rgba(15, 23, 42, .08);
  padding-top: 24px;
}
.testimonial-author h5 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
}
.testimonial-author span {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  color: var(--text-muted);
}
@media (max-width: 991px) {
  .testimonial-card {
    padding: 50px 35px;
    text-align: center;
  }
  .testimonial-2 .section-title {
    font-size: 36px;
  }
  .testimonial-text {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .testimonial-2 {
    padding: 60px 0;
  }
  .testimonial-card {
    padding: 35px 24px;
    border-radius: 24px;
  }
  .quote-icon {
    width: 70px;
    height: 70px;
    font-size: 40px;
  }
  .testimonial-2 .section-title {
    font-size: 30px;
  }
  .testimonial-text {
    font-size: 18px;
    line-height: 1.8;
  }
}
/*=========================================
FINAL CTA 2
=========================================*/
.final-cta-2 {
  padding: 100px 0;
  background: var(--primary-color);
}
.final-cta-2 .cta-wrapper {
  overflow: hidden;
  border-radius: 32px;
  background: #0E1A2B;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .30);
}
.final-cta-2 .cta-content {
  padding: 70px;
}
.final-cta-2 .cta-sidebar {
  background: rgba(255, 255, 255, .04);
  height: 100%;
  padding: 60px 40px;
  border-left: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.final-cta-2 .section-label {
  color: var(--secondary-color);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.final-cta-2 .section-title {
   line-height: 1.1;
  font-weight: 800;
  color: #fff;
  letter-spacing: -2px;
}
.final-cta-2 .section-title span {
  color: var(--secondary-color);
}
.final-cta-2 .section-desc {
  max-width: 650px;
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.8;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature {
  display: flex;
  align-items: center;
  gap: 18px;
      color: #fff;
    margin-top: 15px;
}
.feature i {
      color: var(--secondary-color);
}
.feature .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(244, 162, 97, .15);
  color: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}
.feature span:last-child {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
}
.growth-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(244, 162, 97, .12);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  margin-bottom: 25px;
}
.cta-sidebar h4 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 18px;
  font-weight: 700;
}
.cta-sidebar p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 35px;
}
.btn-primary {
  display: block;
  width: 100%;
  padding: 18px;
  border-radius: 60px;
  background: var(--secondary-color);
  color: var(--primary-color);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  margin-bottom: 16px;
  transition: .3s;
}
.btn-primary:hover {
  transform: translateY(-3px);
}
.btn-secondary {
  display: block;
  width: 100%;
  padding: 18px;
  border-radius: 60px;
  border: 2px solid rgba(255, 255, 255, .15);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: .3s;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, .08);
}
@media (max-width: 991px) {
  .final-cta-2 .cta-content {
    padding: 45px 30px;
  }
  .final-cta-2 .cta-sidebar {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 45px 30px;
  }
  .final-cta-2 .section-title {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .final-cta-2 {
    padding: 60px 0;
  }
  .final-cta-2 .cta-wrapper {
    border-radius: 24px;
  }
  .final-cta-2 .cta-content,
  .final-cta-2 .cta-sidebar {
    padding: 35px 24px;
  }
  .final-cta-2 .section-title {
    font-size: 30px;
  }
}
.why-choose-1 {
  padding: 80px 0;
  background: var(--bg-light-gray);
}
.featured-card {
  background: var(--primary-color);
  border-radius: 28px;
  padding: 50px;
  height: 100%;
  color: #fff;
}
.featured-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: var(--secondary-color);
  margin-bottom: 30px;
}
.featured-card h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}
.featured-card p {
  color: var(--text-light);
  line-height: 1.8;
}
.stats {
  display: flex;
  gap: 50px;
  margin-top: 50px;
}
.stats h4 {
  color: var(--secondary-color);
  font-size: 28px;
  margin-bottom: 5px;
}
.stats span {
  color: var(--text-light);
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.feature-item {
  display: flex;
  gap: 25px;
  padding: 28px;
  background: #fff;
  border-radius: 22px;
  transition: .3s;
}
.feature-item:hover {
  transform: translateX(10px);
}
.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: rgba(244, 162, 97, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 28px;
  flex-shrink: 0;
}
.feature-item h5 {
  font-size: 22px;
  margin-bottom: 10px;
  margin-top: 0;
}
.feature-item p {
  color: var(--text-muted);
  margin: 0;
}
@media (max-width: 991px) {
  .featured-card {
    text-align: center;
  }
  .stats {
    justify-content: center;
  }
  .feature-item {
    align-items: flex-start;
  }
}
@media (max-width: 576px) {
  .featured-card {
    padding: 35px 25px;
        margin-bottom: 20px;
        height: auto;
  }
  .feature-item {
    padding: 22px;
    gap: 18px;
  }
  .feature-icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
  .feature-item h5 {
    font-size: 18px;
  }
}
/*=================================================
HOW IT WORKS
=================================================*/
.how-it-works-1 {
  padding: 80px 0;
  background: var(--bg-light-gray);
  position: relative;
}
.workflow-wrapper {
  position: relative;
  margin-top: 40px;
}
.workflow-line {
  position: absolute;
  top: 70px;
  left: 8%;
  right: 8%;
  height: 4px;
  background: rgba(244, 162, 97, .18);
  border-radius: 20px;
  z-index: 0;
}
.workflow-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 35px 28px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(15, 23, 42, .06);
  transition: .35s;
  z-index: 2;
}
.workflow-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, .08);
}
.step-number {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}
.step-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: rgba(244, 162, 97, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: var(--secondary-color);
  position: relative;
}
/* .step-icon::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--secondary-color);
  bottom: -32px;
} */
.workflow-card h5 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-dark);
}
.workflow-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}
/* Tablet */
@media (max-width: 991px) {
  .workflow-line {
    display: none;
  }
  .workflow-card {
    margin-bottom: 20px;
  }
  .step-icon::after {
    display: none;
  }
}
/* Mobile */
@media (max-width: 576px) {
  .how-it-works-1 {
    padding: 60px 0;
  }
  .workflow-card {
    padding: 28px 22px;
  }
  .step-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
  .workflow-card h5 {
    font-size: 20px;
  }
  .workflow-card p {
    font-size: 15px;
  }
}
/*=================================================
PRODUCTS-1
=================================================*/
.products-1 {
  padding: 80px 0;
  background: var(--bg-light-gray);
}
.products-1 .section-title .highlight {
  color: var(--secondary-color);
}
.products-1 .section-desc {
  max-width: 720px;
  margin: auto;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.8;
}
/*=================================
Featured Product
=================================*/
.product-featured {
  height: 100%;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .06);
  box-shadow: 0 15px 45px rgba(15, 23, 42, .05);
  transition: .35s;
}
.product-featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, .08);
}
.product-content {
  padding: 40px;
}
.product-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 40px;
  background: rgba(244, 162, 97, .12);
  color: var(--secondary-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.product-content h3 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--text-dark);
}
.product-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 25px;
}
.product-image {
  padding: 0 40px 40px;
}
.product-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
/*=================================
Side Cards
=================================*/
.product-mini {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  border: 1px solid rgba(15, 23, 42, .06);
  box-shadow: 0 10px 35px rgba(15, 23, 42, .04);
  transition: .3s;
}
.product-mini:hover {
  transform: translateX(8px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
}
.product-mini .icon-box {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(244, 162, 97, .12);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 30px;
}
.product-mini h5 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.product-mini p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}
/*=================================
Links
=================================*/
.products-1 .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary-color);
  font-weight: 700;
  text-decoration: none;
  transition: .3s;
}
.products-1 .card-link:hover {
  gap: 14px;
}
/*=================================
Tablet
=================================*/
@media (max-width: 991px) {
  .products-1 {
    padding: 70px 0;
  }
  .product-featured {
    margin-bottom: 10px;
  }
  .product-content {
    padding: 35px;
  }
  .product-content h3 {
    font-size: 30px;
  }
  .product-image {
    padding: 0 35px 35px;
  }
  .product-image img {
    height: 280px;
  }
  .product-mini {
    margin-top: 20px;
  }
}
/*=================================
Mobile
=================================*/
@media (max-width: 576px) {
  .products-1 {
    padding: 60px 0;
  }
  .products-1 .section-title {
    font-size: 30px;
  }
  .products-1 .section-desc {
    font-size: 16px;
  }
  .product-content {
    padding: 25px;
  }
  .product-content h3 {
    font-size: 26px;
  }
  .product-image {
    padding: 0 25px 25px;
  }
  .product-image img {
    height: 220px;
  }
  .product-mini {
    padding: 22px;
    gap: 18px;
    flex-direction: column;
    text-align: center;
  }
  .product-mini .icon-box {
    margin: auto;
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  .product-mini h5 {
    font-size: 20px;
  }
}
/* ============================================================
     ABOUT-1 MODULE
  ============================================================ */
.about-1 {
  padding: 80px 0px;
  background: var(--primary-color);
  position: relative;
  overflow: hidden;
}
.about-1 .bg-depth {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.about-1 .bg-depth::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle at 80% 30%, rgba(15, 61, 94, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.about-1 .label {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.about-1 .section-title {
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -2px;
}
.about-1 .section-title .highlight {
  color: var(--secondary-color);
}
.about-1 .section-desc {
  font-size: 18px;
  color: var(--text-light);
  max-width: 580px;
}
.about-1 .card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  padding: 40px 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}
.about-1 .card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(244, 162, 97, 0.2);
}
.about-1 .icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(244, 162, 97, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: var(--secondary-color);
  font-size: 2.4rem;
}
.about-1 .badge-status {
  display: inline-block;
  background: rgba(244, 162, 97, 0.15);
  color: var(--secondary-color);
  padding: 0.3rem 1.2rem;
  border-radius: 60px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.about-1 .card h5 {
  font-weight: 700;
  color: var(--text-light);
  font-size: 20px;
  margin-bottom: 0.6rem;
}
.about-1 .card p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}
.about-1 .card-link {
  color: var(--secondary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 16px;
}
.about-1 h2 {
  font-size: 40px;
}
@media (max-width: 576px) {
  .about-1 .section-title {
    font-size: 2.4rem;
  }
}
/* ============================================================
   HERO-1 MODULE
============================================================ */
.hero-1 {
  min-height: 820px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-1 .badge-alert {
  background: rgba(244, 162, 97, 0.18);
  backdrop-filter: blur(4px);
  border-radius: 60px;
  padding: 0.4rem 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--secondary-color);
  border: 1px solid rgba(244, 162, 97, 0.15);
}
.hero-1 .title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text-light);
}
.hero-1 .title .highlight {
  color: var(--secondary-color);
}
.hero-1 .desc {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
  color: #E2E8F0;
  max-width: 540px;
}
.hero-1 .btn-solid {
  background: var(--secondary-color);
  color: var(--primary-color);
  font-weight: 700;
  padding: 0.9rem 2.4rem;
  border-radius: 60px;
  box-shadow: 0 8px 20px rgba(244, 162, 97, 0.25);
}
.hero-1 .btn-solid:hover {
  background: #e08c4a;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(244, 162, 97, 0.35);
}
.hero-1 .btn-outline {
  background: transparent;
  border: 2px solid var(--text-light);
  color: var(--text-light);
  font-weight: 700;
  padding: 0.9rem 2.4rem;
  border-radius: 60px;
}
.hero-1 .btn-outline:hover {
  background: var(--text-light);
  color: var(--primary-color);
  transform: translateY(-3px);
}
.hero-1 .rating-stars {
  color: var(--secondary-color);
  letter-spacing: 3px;
  font-size: 9px;
}
.hero-1 .rating-number {
  font-weight: 700;
  color: var(--text-light);
  font-size: 16px;
}
.hero-1 .review-count {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 16px;
}
.hero-1 .avatar-group {
  display: flex;
  align-items: center;
}
.hero-1 .avatar-group img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  object-fit: cover;
  margin-right: -10px;
}
.hero-1 .trusted-text {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
}
.hero-1 .stats-container {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.4);
  margin-top: 80px;
}
.hero-1 .stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-1 .stat-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(244, 162, 97, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 1.6rem;
  flex-shrink: 0;
}
.hero-1 .stat-info h6 {
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.1rem;
  font-size: 18px;
}
.hero-1 .stat-info p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 0;
}
.hero-1 img.img-fluid.rounded-3 {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
}
@media (max-width: 991px) {
  .hero-1 {
    min-height: 800px;
    height: auto;
    padding: 50px 0px;
  }
  .hero-1 .stat-card {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}
@media (max-width: 576px) {
  .hero-1 .title {
    font-size: 34px;
  }
  .hero-1 .btn-solid,
  .hero-1 .btn-outline {
    width: 100%;
    text-align: center;
  }
  .hero-1 .stat-card {
    flex-direction: row;
    text-align: left;
    gap: 0.8rem;
  }
}
/*=================================================
Hero Badge
=================================================*/
.hero-1 .hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(244,162,97,.12);
    border:1px solid rgba(244,162,97,.18);
    color:var(--secondary-color);
    font-size:15px;
    font-weight:700;
    letter-spacing:.5px;
}
.hero-1 .hero-badge i{
    font-size:16px;
}
/*=================================================
Buttons
=================================================*/
.hero-1 .hero-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}
.hero-1 .btn-solid,
.hero-1 .btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:190px;
    text-decoration:none;
    transition:.35s;
}
/*=================================================
Feature List
=================================================*/
.hero-1 .hero-features{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
}
.hero-1 .feature{
    display:flex;
    align-items:center;
    gap:10px;
    color:#CBD5E1;
    font-size:15px;
    font-weight:500;
}
.hero-1 .feature i{
    color:var(--secondary-color);
    font-size:14px;
}
/*=================================================
Dashboard
=================================================*/
.hero-dashboard{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    padding-left:40px;
}
.dashboard-img{
    width:100%;
    max-width:620px;
    border-radius:22px;
    box-shadow:0 30px 70px rgba(0,0,0,.35);
    position:relative;
    z-index:2;
}
/*=================================================
Floating Cards
=================================================*/
.floating-card{
    position:absolute;
    display:flex;
    align-items:center;
    gap:15px;
    background:#fff;
    padding:16px 20px;
    border-radius:18px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
    z-index:5;
    min-width:210px;
}
.floating-card i{
    width:48px;
    height:48px;
    border-radius:50%;
    background:rgba(244,162,97,.12);
    color:var(--secondary-color);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    flex-shrink:0;
}
.floating-card strong{
    display:block;
    color:#111827;
    font-size:22px;
    font-weight:800;
}
.floating-card span{
    display:block;
    color:#64748B;
    font-size:14px;
}
/*=================================================
Position
=================================================*/
.top-card{
    top:40px;
    left:-10px;
}
.bottom-card{
    bottom:40px;
    right:-20px;
}
/*=================================================
Background Decoration
=================================================*/
.hero-1::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    border-radius:50%;
    background:radial-gradient(circle,
    rgba(244,162,97,.12),
    transparent 70%);
    right:-250px;
    top:-150px;
}
.hero-1::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:radial-gradient(circle,
    rgba(255,255,255,.04),
    transparent 70%);
    left:-180px;
    bottom:-180px;
}
/*=================================================
Responsive
=================================================*/
@media(max-width:991px){
.hero-dashboard{
padding-left:0;
margin-top:60px;
}
.dashboard-img{
max-width:100%;
}
.top-card{
top:-20px;
left:20px;
}
.bottom-card{
right:20px;
bottom:-20px;
}
}
@media(max-width:767px){
.hero-dashboard{
display: block;
margin-top:50px;
}
.stats h4
{
  font-size: 28px;
}
    .stats {
         display: block;
    }
.floating-card{
position:relative;
top:auto;
left:auto;
right:auto;
bottom:auto;
margin-top:20px;
width:100%;
}
.hero-1 .hero-features{
flex-direction:column;
align-items:flex-start;
gap:12px;
}
.hero-1 .hero-buttons{
flex-direction:column;
}
.hero-1 .btn-solid,
.hero-1 .btn-outline{
width:100%;
}
}
/*=================================
PROCESS
=================================*/
.process-1 {
  padding: 80px 0;
  background: var(--bg-light-gray);
}
.process-card {
  position: relative;
  margin-bottom: 25px;
  padding: 35px 25px;
  text-align: center;
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, .06);
  transition: .35s;
  overflow: hidden;
}
.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, .08);
}
.process-card.active {
  background: var(--primary-color);
}
.process-card.active h5,
.process-card.active p {
  color: #fff;
}
.process-card.active .step-number {
  color: var(--secondary-color);
}
.step-number {
  display: block;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--secondary-color);
}
.step-icon {
  width: 75px;
  height: 75px;
  margin: auto;
  border-radius: 50%;
  background: rgba(244, 162, 97, .12);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--secondary-color);
  font-size: 30px;
  margin-bottom: 20px;
}
.process-card h5 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 50px;
}
.process-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
/* Connector Line */
@media (min-width: 992px) {
  .process-card::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background: rgba(244, 162, 97, .30);
    right: -20px;
    top: 72px;
    z-index: 1;
  }
  .col-lg:last-child .process-card::after {
    display: none;
  }
}
/* Tablet */
@media (max-width: 991px) {
  .process-1 {
    padding: 70px 0;
  }
  .process-card {
    margin-bottom: 10px;
  }
  .process-card::after {
    display: none;
  }
}
/* Mobile */
@media (max-width: 576px) {
  .process-1 {
    padding: 60px 0;
  }
  .process-card {
    padding: 25px 18px;
  }
  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  .process-card h5 {
    font-size: 18px;
  }
  .process-card p {
    font-size: 15px;
  }
  .nav-link {
    border-top: 1px solid #ccc;
    width: 100%;
    display: block;
   padding: 15px 0; 
}
.nav-menu.mobile-open
{
  gap:0;
}
}
 /* ---- dropdown styles (inline for completeness) ---- */
  .nav-dropdown {
      position: relative;
  }
  .nav-dropdown .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 200px;
      background: #fff;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
      border-radius: 12px;
      padding: 0.5rem 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
      list-style: none;
      z-index: 999;
      border: 1px solid rgba(0, 0, 0, 0.04);
  }
  .nav-dropdown .dropdown-menu li {
      padding: 0;
  }
  .nav-dropdown .dropdown-menu a {
      display: block;
      padding: 0.5rem 1.25rem;
      color: #1e293b;
      font-weight: 500;
      font-size: 0.9rem;
      text-decoration: none;
      transition: background 0.15s, color 0.15s;
  }
  .nav-dropdown .dropdown-menu a:hover {
      background: #f1f5f9;
      color: var(--secondary-color);
  }
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown.open .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
  }
  .dropdown-toggle .fa-chevron-down {
      font-size: 0.7rem;
      transition: transform 0.2s;
  }
  .nav-dropdown:hover .dropdown-toggle .fa-chevron-down,
  .nav-dropdown.open .dropdown-toggle .fa-chevron-down {
      transform: rotate(180deg);
  }
  @media (max-width: 991px) {
      .nav-dropdown .dropdown-menu {
          position: static;
          box-shadow: none;
          border-radius: 0;
          padding-left: 1.5rem;
          background: transparent;
          opacity: 1;
          visibility: visible;
          transform: none;
          display: none;
          border: none;
      }
      .nav-dropdown.open .dropdown-menu {
          display: block;
      }
      .nav-dropdown .dropdown-menu a {
           padding: 0.4rem 0;
          font-size: 0.95rem;
      }
      .nav-dropdown .dropdown-menu a:hover {
          background: transparent;
          color: #fff;
      }
      .dropdown-toggle .fa-chevron-down {
          font-size: 0.75rem;
      }
  }
  .hero-badge
  {
    color: var(--text-light)
  }
  .hero-features
  {
     color: var(--text-light)
  }
   .section-title {
    font-size: 36px;
    font-weight: 800;
     margin: 0 0 25px 0;
    line-height: 48px;
    }
    .sub-label 
    {
      font-size: 18px;
      text-transform: uppercase;
    }
    .section-title .highlight {
      color: var(--secondary-color);
    }

     /*=================================================
CONTACT US PAGE
=================================================*/

    /*=================================================
INNER HERO
=================================================*/
.inner-hero{
    position:relative;
    overflow:hidden;
    padding:130px 0 90px;
    background:var(--primary-color);
}
/* Decorative Shapes */
.inner-hero::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    border-radius:50%;
    background:rgba(249,104,49,.08);
    top:-220px;
    right:-180px;
}
.inner-hero::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    border-radius:50%;
    background:rgba(255,255,255,.03);
    bottom:-180px;
    left:-140px;
}
/*==========================
Content
==========================*/
.inner-hero-content{
    position:relative;
    z-index:2;
}
.inner-hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(249,104,49,.12);
    color:var(--secondary-color);
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}
.inner-hero-title{
    margin:28px 0 20px;
    font-size:58px;
    font-weight:800;
    line-height:1.1;
    letter-spacing:-2px;
    color:#fff;
}
.inner-hero-title span{
    color:var(--secondary-color);
}
.inner-hero-desc{
    max-width:560px;
    font-size:18px;
    line-height:1.9;
    color:#CBD5E1;
}
.inner-hero-btns{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-top:40px;
}
.inner-hero-btns .btn-solid,
.inner-hero-btns .btn-outline{
    min-width:220px;
    justify-content:center;
}
.inner-hero-features{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin-top:40px;
}
.inner-hero-features .feature{
    display:flex;
    align-items:center;
    gap:10px;
    color:#CBD5E1;
    font-size:15px;
}
.inner-hero-features i{
    color:var(--secondary-color);
}
/*==========================
Image
==========================*/
.inner-hero-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}
.inner-hero-image img{
    width:100%;
    max-width:620px;
    border-radius:24px;
    /* box-shadow:0 30px 70px rgba(0,0,0,.35); */
    position:relative;
    z-index:2;
}
/*==========================
Floating Cards
==========================*/
.inner-hero-card{
    position:absolute;
    display:flex;
    align-items:center;
    gap:15px;
    background:#fff;
    border-radius:18px;
    padding:16px 22px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
    min-width:220px;
    z-index:5;
    transition:.35s;
}
.inner-hero-card:hover{
    transform:translateY(-5px);
}
.inner-hero-card i{
    width:50px;
    height:50px;
    border-radius:50%;
    background:rgba(249,104,49,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--secondary-color);
    font-size:20px;
}
.inner-hero-card strong{
    display:block;
    color:#111827;
    font-size:22px;
    font-weight:800;
}
.inner-hero-card span{
    display:block;
    color:#64748B;
    font-size:14px;
}
.top-card{
    top:40px;
    left:-20px;
}
.bottom-card{
    bottom:40px;
    right:-20px;
}
/*==========================
Responsive
==========================*/
@media(max-width:1199px){
.inner-hero-title{
font-size:50px;
}
.top-card{
left:0;
}
.bottom-card{
right:0;
}
}
@media(max-width:991px){
.inner-hero{
padding:100px 0 70px;
}
.inner-hero-content{
text-align:center;
}
.inner-hero-desc{
margin:auto;
}
.inner-hero-btns{
justify-content:center;
}
.inner-hero-features{
justify-content:center;
margin-bottom:50px;
}
.inner-hero-image{
margin-top:20px;
}
.inner-hero-image img{
max-width:520px;
display: block;
}
.top-card{
top:-15px;
left:20px;
}
.bottom-card{
bottom:-15px;
right:20px;
}
}
@media(max-width:767px){
.inner-hero{
padding:80px 0 60px;
}
.inner-hero-title{
font-size:38px;
letter-spacing:-1px;
}
.inner-hero-desc{
font-size:16px;
}
.inner-hero-btns{
flex-direction:column;
}
.inner-hero-btns .btn-solid,
.inner-hero-btns .btn-outline{
width:100%;
min-width:100%;
}
.inner-hero-features{
flex-direction:column;
align-items:flex-start;
gap:15px;
}
.inner-hero-card{
position:relative;
left:auto;
right:auto;
top:auto;
bottom:auto;
width:100%;
margin-top:20px;
}
.inner-hero-image img{
border-radius:18px;
}
}
/*=================================================
HELP SECTION
=================================================*/
.help-section{
    padding:60px 0;
    background:var(--bg-light-gray);
}
.help-card{
    display:flex;
    gap:28px;
    align-items:flex-start;
    background:#fff;
    border-radius:24px;
    padding:35px;
     border:1px solid rgba(15,23,42,.06);
    box-shadow:0 12px 35px rgba(15,23,42,.05);
    transition:.35s;
    margin-bottom: 25px; 
}
.help-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 55px rgba(15,23,42,.10);
    border-color:rgba(249,104,49,.20);
}
.help-icon{
    width:82px;
    height:82px;
    flex-shrink:0;
    border-radius:22px;
    background:rgba(249,104,49,.10);
    display:flex;
    align-items:center;
    justify-content:center;
}
.help-icon i{
    font-size:34px;
    color:var(--secondary-color);
}
.help-content{
    flex:1;
}
.help-content h4{
    font-size:26px;
    font-weight:700;
    color:var(--text-dark);
    margin-bottom:14px;
    margin-top: 0;
}
.help-content p{
    color:var(--text-muted);
    line-height:1.8;
    margin-bottom:20px;
}
.help-content .card-link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--secondary-color);
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}
.help-content .card-link:hover{
    gap:16px;
}
.help-content .card-link i{
    font-size:14px;
}
/*==================================
Responsive
==================================*/
@media(max-width:991px){
.help-section{
padding:80px 0;
}
.help-card{
padding:30px;
}
}
@media(max-width:767px){
.help-section{
padding:60px 0;
}
.help-card{
flex-direction:column;
text-align:center;
}
.help-icon{
margin:auto;
width:70px;
height:70px;
}
.help-icon i{
font-size:28px;
}
.help-content h4{
font-size:22px;
}
}
/*=================================================
CONTACT SECTION
=================================================*/
.contact-section{
    padding:100px 0;
    background:var(--bg-light-gray);
}
/*=================================================
LEFT PANEL
=================================================*/
.contact-info{
    background:var(--primary-color);
    border-radius:30px;
    padding:50px;
    color:#fff;
    height:100%;
    position:relative;
    overflow:hidden;
}
.contact-info::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(249,104,49,.08);
    right:-120px;
    top:-120px;
}
.contact-info::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(255,255,255,.03);
    left:-80px;
    bottom:-80px;
}
.contact-info>*{
    position:relative;
    z-index:2;
}
.contact-info .section-title{
    color:#fff;
}
.contact-info .highlight{
    color:var(--secondary-color);
}
.contact-info .section-desc{
    color:#CBD5E1;
    line-height:1.8;
}
/*=================================================
FEATURES
=================================================*/
.contact-features{
    display:flex;
    flex-direction:column;
    gap:22px;
}
.contact-features .feature{
    display:flex;
    align-items:flex-start;
    gap:18px;
}
.contact-features .icon{
    width:56px;
    height:56px;
    flex-shrink:0;
    border-radius:18px;
    background:rgba(249,104,49,.12);
    display:flex;
    justify-content:center;
    align-items:center;
}
.contact-features .icon i{
    color:var(--secondary-color);
    font-size:22px;
}
.contact-features h6{
    color:#fff;
    font-size:18px;
    margin-bottom:5px;
    font-weight:700;
}
.contact-features p{
    color:#CBD5E1;
    margin:0;
    line-height:1.7;
}
.contact-image img{
    width:100%;
    border-radius:22px;
}
/*=================================================
FORM CARD
=================================================*/
.contact-form-card{
    background:#fff;
    border-radius:30px;
    padding:45px;
    height:100%;
    border:1px solid rgba(15,23,42,.06);
    box-shadow:0 18px 45px rgba(15,23,42,.06);
    transition: box-shadow 0.3s ease;
}

/*=================================================
FORM - FIXED FOR 2 FIELDS PER ROW
=================================================*/

/* Fix the row to use flexbox properly */
.contact-form-card .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.contact-form-card .row.g-4 {
    --bs-gutter-y: 1.5rem;
    --bs-gutter-x: 1.5rem;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.contact-form-card .row.g-4 > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

/* CRITICAL: Make col-md-6 take 50% width (2 fields per row) */
.contact-form-card .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    width: 50%;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
}

.contact-form-card .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
}

.contact-form-card .form-label{
    font-weight:600;
    color:var(--text-dark);
    margin-bottom:10px;
    display:block;
    font-size:0.95rem;
    letter-spacing:0.01em;
}

.contact-form-card .form-control,
.contact-form-card .form-select{
    height:58px;
    border-radius:16px;
    border:1px solid rgba(15,23,42,.10);
    background:#fff;
    padding:0 18px;
    font-size:16px;
    box-shadow:none;
    transition:border-color 0.3s ease, box-shadow 0.3s ease;
    width:100%;
    color:#0f172a;
    font-weight:450;
    box-sizing: border-box;
}

/* Fix select appearance */
.contact-form-card .form-select{
    appearance:none;
    -webkit-appearance:none;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 18px center;
    background-size:16px;
    padding-right:48px;
    cursor:pointer;
}

.contact-form-card textarea.form-control{
    height:auto;
    padding:18px;
    resize:vertical;
    min-height:150px;
    line-height:1.6;
}

/* Fix placeholder styling */
.contact-form-card .form-control::placeholder,
.contact-form-card textarea.form-control::placeholder{
    color:#94A3B8;
    opacity:0.9;
}

/* Fix focus states */
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus{
    border-color:var(--secondary-color);
    box-shadow:0 0 0 4px rgba(249,104,49,.10);
    outline:none;
}

/* Fix the button styling */
.contact-form-card .btn-solid{
    margin-top:10px;
    min-width:220px;
    height:56px;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    background:var(--secondary-color);
    border:none;
    border-radius:60px;
    font-weight:600;
    font-size:1rem;
    color:#fff;
    padding:0 30px;
    transition:background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    cursor:pointer;
    letter-spacing:0.3px;
    box-shadow:0 6px 18px rgba(249,104,49,.20);
}

.contact-form-card .btn-solid:hover{
    background:#e0552a;
    box-shadow:0 10px 24px rgba(249,104,49,.30);
    transform:translateY(-2px);
}

.contact-form-card .btn-solid:active{
    transform:scale(0.97);
}

/* Fix label and input alignment */
.contact-form-card .form-label{
    margin-bottom:8px;
}

/* Fix disabled/readonly states */
.contact-form-card .form-control:disabled,
.contact-form-card .form-select:disabled{
    background:#f8fafc;
    cursor:not-allowed;
}

/* Fix invalid state styling */
.contact-form-card .form-control.is-invalid,
.contact-form-card .form-select.is-invalid{
    border-color:#dc3545;
    box-shadow:0 0 0 4px rgba(220,53,69,.10);
}

/* Fix success state styling */
.contact-form-card .form-control.is-valid,
.contact-form-card .form-select.is-valid{
    border-color:#198754;
    box-shadow:0 0 0 4px rgba(25,135,84,.10);
}

/*=================================================
RESPONSIVE
=================================================*/
@media(max-width:991px){
.contact-section{
    padding:80px 0;
}
.contact-info{
    padding:40px;
}
.contact-form-card{
    padding:35px;
    margin-top: 30px;
}
.contact-image{
    margin-top:35px;
}
}

@media(max-width:767px){
.contact-section{
    padding:60px 0;
}
.contact-info{
    padding:30px;
    text-align:center;
}
.contact-features .feature{
    flex-direction:column;
    align-items:center;
    text-align:center;
}
.contact-form-card{
    padding:25px;
    border-radius:24px;
}
.contact-form-card .btn-solid{
    width:100%;
    min-width:unset;
    justify-content:center;
}

/* MOBILE: 1 field per row */
.contact-form-card .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.contact-form-card .form-control,
.contact-form-card .form-select{
    height:52px;
    font-size:15px;
}
.contact-form-card textarea.form-control{
    min-height:120px;
}
.contact-form-card .row.g-4{
    --bs-gutter-y:1.2rem;
}
.contact-form-card .form-label{
    font-size:0.9rem;
}
.contact-form-card .row{
    margin-right:-12px;
    margin-left:-12px;
}
.contact-form-card .col-md-6,
.contact-form-card .col-12{
    padding-right:12px;
    padding-left:12px;
}
}

/* Extra fix for button alignment */
.contact-form-card .col-12:last-child{
    display:flex;
    align-items:center;
    justify-content:flex-start;
}

@media(max-width:767px){
    .contact-form-card .col-12:last-child{
        justify-content:stretch;
    }
}

/* Fix placeholder text color for better visibility */
.contact-form-card .form-control::placeholder{
    color:#94A3B8;
}

/* Fix select dropdown arrow in Firefox */
.contact-form-card .form-select:-moz-focusring{
    color:transparent;
    text-shadow:0 0 0 #0f172a;
}

/* Fix select option styling */
.contact-form-card .form-select option{
    padding:8px 12px;
}

/* Improve hover state for selects and inputs */
.contact-form-card .form-control:hover,
.contact-form-card .form-select:hover{
    border-color:rgba(15,23,42,.20);
}

/* Fix the textarea resize handle */
.contact-form-card textarea.form-control::-webkit-resizer{
    border-width:8px;
    border-style:solid;
    border-color:transparent #94A3B8 #94A3B8 transparent;
}

/* Fix the button icon spacing */
.contact-form-card .btn-solid i{
    margin-right:8px;
}

/* Ensure proper box-sizing */
.contact-form-card *{
    box-sizing:border-box;
}

/* Fix for the form to ensure 2 columns work */
.contact-form-card form .row{
    display:flex;
    flex-wrap:wrap;
}

/* Ensure select and input take full width of their container */
.contact-form-card .col-md-6 .form-control,
.contact-form-card .col-md-6 .form-select{
    width:100%;
}

/* Fix for any missing column classes */
.contact-form-card .col-md-6,
.contact-form-card .col-12{
    position:relative;
    min-height:1px;
}
/*=================================================
CONTACT DIRECT
=================================================*/
.contact-direct{
    padding:80px 0;
    background:var(--primary-color);
}
.contact-direct-card{
    padding:60px;
    border-radius:30px;
    background:linear-gradient(
        135deg,
        rgba(255,255,255,.03),
        rgba(255,255,255,.01)
    );
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
}
.contact-direct .highlight{
    color:var(--secondary-color);
}
.contact-direct .section-title{
    color:#fff;
}
.contact-direct .section-desc{
    color:#CBD5E1;
}
.contact-box{
    height:100%;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:30px;
    transition:.3s;
    position:relative;
    overflow:hidden;
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    margin-bottom: 20px;
}

/* Add subtle gradient overlay */
.contact-box::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:linear-gradient(135deg, rgba(249,104,49,.05) 0%, transparent 50%);
    border-radius:24px;
    opacity:0;
    transition:.3s;
    pointer-events:none;
}

.contact-box:hover::before{
    opacity:1;
}

.contact-box:hover{
    transform:translateY(-8px);
    border-color:rgba(249,104,49,.35);
    box-shadow:0 12px 40px rgba(0,0,0,.15);
}

/* Icon Box */
.contact-box .icon-box{
    margin-bottom:20px;
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(249,104,49,.12);
    border-radius:16px;
    transition:.3s;
    font-size:24px;
    color:var(--secondary-color);
}

.contact-box:hover .icon-box{
    background:rgba(249,104,49,.20);
    transform:scale(1.05) rotate(-5deg);
}

/* Heading */
.contact-box h5{
    color:#fff;
    margin-bottom:12px;
    font-size:1.1rem;
    font-weight:600;
    letter-spacing:0.3px;
}

/* Links */
.contact-box a{
    color:#CBD5E1;
    text-decoration:none;
    transition:.3s;
    word-break:break-word;
    font-size:1.05rem;
    font-weight:500;
    display:inline-block;
    position:relative;
}

.contact-box a::after{
    content:'';
    position:absolute;
    bottom:-2px;
    left:0;
    width:0;
    height:2px;
    background:var(--secondary-color);
    transition:.3s;
}

.contact-box a:hover{
    color:var(--secondary-color);
}

.contact-box a:hover::after{
    width:100%;
}

/* Paragraph */
.contact-box p{
    color:#CBD5E1;
    margin:0;
    line-height:1.7;
    font-size:0.95rem;
}

/* Small text */
.contact-box small{
    display:block;
    margin-top:8px;
    color:#94A3B8;
    font-size:0.85rem;
    line-height:1.6;
}

/* Fix for location box - ensure proper spacing */
.contact-box .icon-box + h5 + p {
    margin-top:0;
}

.contact-box .icon-box + h5 + p small {
    margin-top:10px;
}

/* Add icon animation */
.contact-box .icon-box i {
    transition:.3s;
}

.contact-box:hover .icon-box i {
    transform:scale(1.1);
}

/* Make boxes more interactive */
.contact-box .icon-box + h5 {
    transition:.3s;
}

.contact-box:hover h5 {
    color:var(--secondary-color);
}

/* Fix for dark background text visibility */
.contact-box {
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
}

/* Hover state with glow effect */
.contact-box:hover {
    border-color:rgba(249,104,49,.5);
    box-shadow:0 12px 40px rgba(0,0,0,.2), 0 0 30px rgba(249,104,49,.05);
}

/* Responsive fixes */
@media(max-width:991px){
.contact-direct-card{
padding:40px;
}
.contact-box{
margin-top:15px;
padding:25px;
}
.contact-box .icon-box{
    width:55px;
    height:55px;
    font-size:22px;
}
}

@media(max-width:767px){
.contact-direct{
padding:60px 0;
}
.contact-direct-card{
padding:30px;
text-align:center;
}
.contact-box{
padding:25px;
text-align:center;
height: auto;
}
.contact-box .icon-box{
margin-left:auto;
margin-right:auto;
}
.contact-direct .btn-solid{
width:100%;
margin-bottom:35px;
}
.contact-box .icon-box{
    width:60px;
    height:60px;
    font-size:24px;
}
.contact-box h5{
    font-size:1rem;
}
.contact-box a{
    font-size:0.95rem;
}
.contact-box p{
    font-size:0.9rem;
}
.contact-box small{
    font-size:0.8rem;
}
}

/* Extra small devices */
@media(max-width:575px){
.contact-box{
    padding:20px;
    border-radius:20px;
}
.contact-box .icon-box{
    width:50px;
    height:50px;
    font-size:20px;
    border-radius:14px;
    margin-bottom:15px;
}
.contact-box h5{
    margin-bottom:8px;
}
}

/* Add subtle border glow on hover */
.contact-box::after{
    content:'';
    position:absolute;
    top:-1px;
    left:-1px;
    right:-1px;
    bottom:-1px;
    border-radius:24px;
    background:linear-gradient(135deg, rgba(249,104,49,.2), transparent, rgba(249,104,49,.2));
    opacity:0;
    transition:.3s;
    pointer-events:none;
    z-index:-1;
}

.contact-box:hover::after{
    opacity:1;
}
/*=================================================
WHY US
=================================================*/
.why-us{
    padding:80px 0;
    background:#fff;
}
.why-us-card{
    background:#fff;
    border:1px solid rgba(15,23,42,.06);
    border-radius:24px;
    padding:45px;
    box-shadow:0 15px 40px rgba(15,23,42,.06);
}
.why-us img{
    width:100%;
    border-radius:20px;
}
.why-list{
    display:flex;
    flex-direction:column;
    gap:25px;
}
.why-item{
    display:flex;
    gap:20px;
    align-items:flex-start;
    padding-bottom:25px;
    border-bottom:1px solid rgba(15,23,42,.08);
}
.why-item:last-child{
    border-bottom:none;
    padding-bottom:0;
}
.why-item h5{
    margin-bottom:10px;
    font-size:22px;
    font-weight:700;
        margin-top: 0;
}
.why-item p{
    margin:0;
    color:var(--text-muted);
    line-height:1.8;
}
.why-item .icon-box{
    flex-shrink:0;
}
@media(max-width:991px){
.why-us-card{
padding:35px;
}
.why-list{
margin-top:40px;
}
}
@media(max-width:767px){
.why-us{
padding:60px 0;
}
.why-us-card{
padding:25px;
}
.why-item{
flex-direction:column;
}
}
/*=================================================
FAQ
=================================================*/
.faq-section{
    padding:80px 0;
    background:var(--bg-light-gray);
}
.faq-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}
.faq-item{
    background:#fff;
    border-radius:20px;
    border:1px solid rgba(15,23,42,.06);
    box-shadow:0 12px 30px rgba(15,23,42,.05);
    overflow:hidden;
    transition:.3s;
}
.faq-item:hover{
    transform:translateY(-3px);
}
.faq-question{
    width:100%;
    padding:24px 28px;
    border:none;
    background:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:20px;
    font-weight:700;
    color:var(--text-dark);
    cursor:pointer;
    text-align:left;
}
.faq-question i{
   width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(249, 104, 49, .10);
    color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
    display: flex;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.faq-answer{
    display:none;
    padding:0 28px 24px;
}
.faq-answer p{
    margin:0;
    color:var(--text-muted);
    line-height:1.8;
}
.faq-item.active .faq-answer{
    display:block;
}
.faq-item.active .faq-question i{
    transform:rotate(45deg);
}
@media(max-width:991px){
.faq-section{
padding:70px 0;
}
.faq-list{
margin-top:20px;
}
}
@media(max-width:767px){
.faq-section{
padding:60px 0;
}
.faq-question{
padding:20px;
font-size:18px;
}
.faq-answer{
padding:0 20px 20px;
}
}
/*=================================================
FINAL CTA
=================================================*/
.final-cta{
    padding:80px 0;
    background:#fff;
}
.final-cta-card{
    position:relative;
    overflow:hidden;
    padding:60px;
    border-radius:30px;
    background:var(--primary-color);
    box-shadow:0 20px 50px rgba(15,23,42,.12);
}
.final-cta-card  .sub-label
{
  color: var(--text-light);
}
/* Decorative Circles */
.final-cta-card::before{
    content:"";
    position:absolute;
    width:340px;
    height:340px;
    border-radius:50%;
    top:-170px;
    right:-120px;
    background:rgba(249,104,49,.08);
}
.final-cta-card::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    bottom:-110px;
    left:-80px;
    background:rgba(255,255,255,.03);
}
.final-cta-card>*{
    position:relative;
    z-index:2;
}
.final-cta .highlight{
    color:var(--secondary-color);
}
.final-cta .section-title{
    color:#fff;
}
.final-cta .section-desc{
    color:#CBD5E1;
    max-width:650px;
}
.final-cta .btn-solid{
    min-width:240px;
    justify-content:center;
    display:inline-flex;
    align-items:center;
    height:58px;
    font-size:17px;
}
/*=========================
Responsive
=========================*/
@media(max-width:991px){
.final-cta{
padding:70px 0;
}
.final-cta-card{
padding:45px;
text-align:center;
}
}
@media(max-width:767px){
.final-cta{
padding:60px 0;
}
.final-cta-card{
padding:30px;
border-radius:24px;
}
.final-cta .btn-solid{
width:100%;
margin-top:25px;
}
}
/*=================================================
partner program
=================================================*/
/*=================================================
PROBLEM SECTION
=================================================*/
.problem-section{
    padding:80px 0;
    background:#fff;
}
.problem-card{
    background:#fff;
    border:1px solid rgba(15,23,42,.06);
    border-radius:24px;
    padding:40px;
    box-shadow:0 15px 40px rgba(15,23,42,.08);
}
.problem-item{
    display:flex;
    align-items:flex-start;
    gap:20px;
    padding-bottom:24px;
    margin-bottom:24px;
    border-bottom:1px solid rgba(15,23,42,.08);
}
.problem-item:last-child{
    margin-bottom:0;
}
.problem-item .icon-box{
    flex-shrink:0;
}
.problem-item h5{
    margin-bottom:8px;
    font-size:22px;
    font-weight:700;
    margin-top: 0;
}
.problem-item p{
    margin:0;
    color:var(--text-muted);
    line-height:1.8;
}
/* Hover */
.problem-card{
    transition:.35s;
}
.problem-card:hover{
    transform:translateY(-6px);
    box-shadow:0 25px 60px rgba(15,23,42,.10);
}
/*=========================
Responsive
=========================*/
@media(max-width:991px){
.problem-section{
padding:70px 0;
}
.problem-card{
margin-top:15px;
padding:35px;
}
}
@media(max-width:767px){
.problem-section{
padding:60px 0;
}
.problem-card{
padding:25px;
}
.problem-item{
flex-direction:column;
gap:15px;
}
.problem-item h5{
font-size:20px;
}
}
/*=================================================
PARTNER PROCESS
=================================================*/
.partner-process{
    padding: 0;
    background:var(--bg-light-gray);
}
.partner-process-wrapper{
    position:relative;
}
.process-line{
    position:absolute;
    top:42px;
    left:12%;
    right:12%;
    height:2px;
    background:rgba(15,23,42,.08);
    z-index:0;
}
.partner-step{
    position:relative;
    z-index:2;
    background:#fff;
    border-radius:24px;
    padding:35px 30px;
    text-align:center;
     margin-bottom: 25px;
     min-height: 420px;
    border:1px solid rgba(15,23,42,.06);
    box-shadow:0 15px 40px rgba(15,23,42,.06);
    transition:.3s;
}
.partner-step:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(15,23,42,.10);
}
.partner-step .step-count{
    width:42px;
    height:42px;
    margin:0 auto 20px;
    border-radius:50%;
    background:var(--secondary-color);
    color:#fff;
    font-size:14px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}
 
.partner-step .icon-box{
    margin:0 auto 20px;
}
.partner-step h5{
    margin-bottom:15px;
    font-size:22px;
    font-weight:700;
}
.partner-step p{
    margin:0;
    color:var(--text-muted);
    line-height:1.8;
}
/*=========================
Responsive
=========================*/
@media(max-width:991px){
.process-line{
display:none;
}
.partner-process{
padding:70px 0;
}

}
@media(max-width:767px){
.partner-process{
padding:60px 0;
}
.partner-step{
padding:30px 25px;
}
.partner-step h5{
font-size:20px; 
}

}
 
@media (min-width: 992px) {
    .partner-process-wrapper .col-lg-3
  {
      max-width: 20%;
  }
}
/*=========================================
about us
=========================================*/
/*=========================================
OUR STORY - 1
=========================================*/

.our-story-1{
    padding:80px 0;
    background:#fff;
}

.our-story-1 .section-label{
    display:inline-block;
    color:var(--secondary-color);
    font-size:16px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.our-story-1 .section-title{
    font-size:42px;
    font-weight:800;
    line-height:1.15;
    letter-spacing:-1.5px;
    margin-bottom:24px;
    color:var(--text-dark);
}

.our-story-1 .section-title span{
    color:var(--secondary-color);
}

.story-question{
    margin:0 0 30px;
    padding:28px 32px;
    background:rgba(249,104,49,.08);
    border-left:5px solid var(--secondary-color);
    border-radius:18px;
    font-size:28px;
    line-height:1.5;
    font-weight:700;
    color:var(--text-dark);
}

.our-story-1 .section-desc{
    font-size:18px;
    line-height:1.8;
    color:var(--text-muted);
    max-width:560px;
}

.story-card{
    background:#fff;
    border:1px solid rgba(15,23,42,.06);
    border-radius:28px;
    padding:40px;
    box-shadow:0 15px 40px rgba(15,23,42,.05);
}

.story-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:18px 0;
}

.story-item:not(:last-child){
    border-bottom:1px solid rgba(15,23,42,.06);
}

.story-item i{
    width:52px;
    height:52px;
    border-radius:14px;
    background:rgba(249,104,49,.12);
    color:var(--secondary-color);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    flex-shrink:0;
}

.story-item span{
    font-size:18px;
    line-height:1.7;
    color:var(--text-dark);
    font-weight:500;
}

.story-divider{
    height:1px;
    background:rgba(15,23,42,.08);
    margin:28px 0;
}

.story-highlight{
    background:var(--primary-color);
    border-radius:22px;
    padding:32px;
    text-align:center;
}

.story-highlight h4{
    color:#fff;
    font-size:28px;
    font-weight:800;
    margin-bottom:12px;
}

.story-highlight p{
    color:var(--secondary-color);
    font-size:20px;
    font-weight:700;
    margin:0;
}

@media(max-width:991px){

    .our-story-1{
        padding:60px 0;
    }

    .our-story-1 .section-title{
        font-size:34px;
    }

    .story-question{
        font-size:24px;
    }

}

@media(max-width:576px){

    .story-card{
        padding:25px;
    }

    .story-question{
        padding:22px;
        font-size:20px;
    }

    .story-item{
        gap:15px;
    }

    .story-item i{
        width:46px;
        height:46px;
        font-size:18px;
    }

    .story-highlight{
        padding:24px;
    }

    .story-highlight h4{
        font-size:22px;
    }

    .story-highlight p{
        font-size:18px;
    }

}

/*=========================================
WHY BUILT BIZFIRE - 1
=========================================*/

.why-built-1{
    padding:80px 0;
    background:var(--bg-light-gray);
}

.why-built-1 .section-header{
    max-width:820px;
    margin:0 auto 60px;
}

.why-built-1 .section-label{
    display:inline-block;
    color:var(--secondary-color);
    font-size:16px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:16px;
}

.why-built-1 .section-title{
    font-size:42px;
    font-weight:800;
    letter-spacing:-1.5px;
    line-height:1.15;
    margin-bottom:20px;
    color:var(--text-dark);
}

.why-built-1 .section-title span{
    color:var(--secondary-color);
}

.why-built-1 .section-desc{
    font-size:18px;
    line-height:1.8;
    color:var(--text-muted);
}

.journey-wrapper{
display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
}

.journey-step{
    width:170px;
    background:#fff;
    border-radius:24px;
    padding:32px 20px;
    text-align:center;
    border:1px solid rgba(15,23,42,.06);
    box-shadow:0 10px 30px rgba(15,23,42,.05);
    transition:.3s;
}

.journey-step:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(15,23,42,.08);
}

.journey-icon{
    width:72px;
    height:72px;
    margin:0 auto 20px;
    border-radius:50%;
    background:rgba(249,104,49,.12);
    color:var(--secondary-color);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
}

.journey-step h5{
    font-size:22px;
    font-weight:700;
    color:var(--text-dark);
    margin-bottom:10px;
}

.journey-step p{
    font-size:15px;
    line-height:1.7;
    color:var(--text-muted);
    margin:10px 0 0 0;
}

.journey-arrow{
    color:var(--secondary-color);
    font-size:26px;
}

.final-step{
    background:var(--primary-color);
}

.final-step h5,
.final-step p{
    color:#fff;
}

.final-step .journey-icon{
    background:rgba(255,255,255,.08);
    color:var(--secondary-color);
}

.journey-footer{
    margin-top:60px;
    text-align:center;
    background:var(--primary-color);
    border-radius:28px;
    padding:36px;
}

.journey-footer h4{
    color:#fff;
    font-size:30px;
    font-weight:800;
    margin:0;
}

@media(max-width:991px){

    .why-built-1{
        padding:60px 0;
    }

    .why-built-1 .section-title{
        font-size:34px;
    }

    .journey-arrow{
        display:none;
    }

    .journey-step{
        width:calc(50% - 12px);
    }

}

@media(max-width:576px){

    .journey-step{
        width:100%;
    }

    .journey-footer{
        padding:28px 22px;
    }

    .journey-footer h4{
        font-size:24px;
    }

    .why-built-1 .section-title{
        font-size:30px;
    }

}

/*=========================================
PRODUCTS SHOWCASE - 1
=========================================*/

.products-showcase-1{
    padding:80px 0;
    background:var(--bg-light-gray);
}

.products-showcase-1 .section-label{
    display:inline-block;
    color:var(--secondary-color);
    font-size:16px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:16px;
}

.products-showcase-1 .section-title{
    font-size:42px;
    font-weight:800;
    line-height:1.15;
    letter-spacing:-1.5px;
    margin-bottom:20px;
    color:var(--text-dark);
}

.products-showcase-1 .section-title span{
    color:var(--secondary-color);
}

.products-showcase-1 .section-desc{
    max-width:700px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
    color:var(--text-muted);
}

.product-card{
    background:#fff;
    height:100%;
    padding:40px 35px;
    border-radius:28px;
    border:1px solid rgba(15,23,42,.06);
    box-shadow:0 15px 40px rgba(15,23,42,.05);
    transition:.35s;
    position:relative;
    overflow:hidden;
    margin-bottom: 30px;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(15,23,42,.08);
}

.product-card.featured{
    background:var(--primary-color);
    color:#fff;
    transform:scale(1.03);
}

.product-card.featured h3,
.product-card.featured p,
.product-card.featured .product-link{
    color:#fff;
}

.product-card.featured .product-tag{
    background:rgba(255,255,255,.08);
    color:var(--secondary-color);
}

.product-card.featured .product-icon{
    background:rgba(255,255,255,.08);
}

.product-icon{
    width:80px;
    height:80px;
    border-radius:22px;
    background:rgba(249,104,49,.12);
    color:var(--secondary-color);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:25px;
}

.product-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:40px;
    background:rgba(249,104,49,.10);
    color:var(--secondary-color);
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.product-card h3{
    font-size:30px;
    font-weight:800;
    color:var(--text-dark);
    margin-bottom:18px;
}

.product-card p{
    font-size:17px;
    line-height:1.8;
    color:var(--text-muted);
    margin-bottom:28px;
}

.product-link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--secondary-color);
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.product-link:hover{
    gap:16px;
}

@media(max-width:991px){

    .products-showcase-1{
        padding:60px 0;
    }

    .products-showcase-1 .section-title{
        font-size:34px;
    }

    .product-card.featured{
        transform:none;
    }

}

@media(max-width:576px){

    .products-showcase-1{
        padding:60px 0;
    }

    .products-showcase-1 .section-title{
        font-size:30px;
    }

    .product-card{
        padding:30px 25px;
        height: auto;
    }

    .product-card h3{
        font-size:24px;
    }

    .product-icon{
        width:65px;
        height:65px;
        font-size:28px;
    }

}

/*=========================================
WHO WE SERVE
=========================================*/

.who-we-serve-1{
   padding: 0 0 80px 0;
    background:var(--bg-light-gray);
}

.industry-photo-card{
    position:relative;
    overflow:hidden;
    border-radius:28px;
    height:320px;
    box-shadow:0 15px 40px rgba(15,23,42,.08);
    margin-bottom: 20px;
}

.industry-photo-card.small{
    height:240px;
}

.industry-photo-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.industry-photo-card:hover img{
    transform:scale(1.08);
}

.industry-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
        rgba(15,23,42,.85),
        rgba(15,23,42,.15));
    display:flex;
    align-items:flex-end;
    padding:30px;
}

.industry-overlay h5{
    color:#fff;
    font-size:28px;
    font-weight:700;
    margin:0;
}

/*=========================================
FUTURE VISION
=========================================*/

.future-vision-1{
    padding:80px 0;
    background:#fff;
}

.vision-wrapper{
    background:var(--primary-color);
    border-radius:36px;
    padding:70px;
    overflow:hidden;
    position:relative;
}

.future-vision-1 .section-label{
    color:var(--secondary-color);
    display:inline-block;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.future-vision-1 .section-title{
    color:#fff;
    font-size:44px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:25px;
}

.future-vision-1 .section-title span{
    color:var(--secondary-color);
}

.future-vision-1 .section-desc{
    color:#d8dee8;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

.vision-products{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.vision-item{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:22px 24px;
}

.vision-item strong{
    display:block;
    color:#fff;
    font-size:20px;
    margin-bottom:6px;
}

.vision-item span{
    color:#d8dee8;
}

.future-card{
    background:#fff;
    border-radius:28px;
    padding:45px;
    text-align:center;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.future-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:rgba(249,104,49,.12);
    color:var(--secondary-color);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:40px;
}

.future-card h3{
    font-size:30px;
    font-weight:800;
    color:var(--text-dark);
    margin-bottom:18px;
}

.future-card p{
    color:var(--text-muted);
    line-height:1.8;
    margin:0;
}

@media(max-width:991px){

    .vision-wrapper{
        padding:45px 30px;
    }

    .future-card{
        margin-top:40px;
    }

    .future-vision-1 .section-title{
        font-size:36px;
    }

}

@media(max-width:576px){

    .industry-photo-card{
        height:240px;
    }

    .industry-photo-card.small{
        height:220px;
    }

    .vision-wrapper{
        padding:35px 25px;
        border-radius:24px;
    }

    .future-vision-1 .section-title{
        font-size:30px;
    }

    .future-card{
        padding:30px 24px;
    }

}
/*=========================================
OUR APPROACH - 1
=========================================*/

.approach-1{
    padding:80px 0;
    background:var(--bg-light-gray);
}

.approach-wrapper{
    background:#fff;
    border-radius:32px;
    padding:70px;
    border:1px solid rgba(15,23,42,.06);
    box-shadow:0 20px 50px rgba(15,23,42,.05);
}

.approach-1 .section-label{
    display:inline-block;
    color:var(--secondary-color);
    font-size:16px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.approach-1 .section-title{
    font-size:42px;
    font-weight:800;
    line-height:1.15;
    letter-spacing:-1.5px;
    color:var(--text-dark);
    margin-bottom:24px;
}

.approach-1 .section-title span{
    color:var(--secondary-color);
}

.approach-1 .section-desc{
    font-size:18px;
    line-height:1.8;
    color:var(--text-muted);
    margin-bottom:35px;
}

.approach-quote{
    margin:0;
    padding:30px;
    border-left:5px solid var(--secondary-color);
    background:rgba(249,104,49,.08);
    border-radius:18px;
    font-size:24px;
    line-height:1.6;
    font-weight:700;
    color:var(--text-dark);
}

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

.approach-card{
    background:#fff;
    border:1px solid rgba(15,23,42,.06);
    border-radius:24px;
    padding:32px 28px;
    transition:.35s;
    box-shadow:0 10px 30px rgba(15,23,42,.04);
}

.approach-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(15,23,42,.08);
}

.approach-icon{
    width:72px;
    height:72px;
    border-radius:18px;
    background:rgba(249,104,49,.12);
    color:var(--secondary-color);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:22px;
}

.approach-card h5{
    font-size:22px;
    font-weight:700;
    color:var(--text-dark);
    margin-bottom:14px;
}

.approach-card p{
    margin:0;
    color:var(--text-muted);
    line-height:1.8;
    font-size:16px;
}

@media(max-width:991px){

    .approach-1{
        padding:60px 0;
    }

    .approach-wrapper{
        padding:45px 35px;
    }

    .approach-grid{
        margin-top:20px;
    }

    .approach-1 .section-title{
        font-size:36px;
    }

}

@media(max-width:767px){

    .approach-wrapper{
        padding:30px 24px;
        border-radius:24px;
    }

    .approach-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .approach-1 .section-title{
        font-size:30px;
    }

    .approach-quote{
        font-size:20px;
        padding:24px;
    }

    .approach-card{
        padding:26px 22px;
    }

    .approach-icon{
        width:60px;
        height:60px;
        font-size:24px;
    }

    .approach-card h5{
        font-size:20px;
    }

}

/*=========================================
FOUNDER - 1
=========================================*/

.founder-1{
    padding:80px 0;
    background:#fff;
}

.founder-wrapper{
    background:var(--bg-light-gray);
    border-radius:32px;
    padding:70px;
    overflow:hidden;
    border:1px solid rgba(15,23,42,.06);
}

.founder-image{
    position:relative;
}

.founder-image img{
    width:100%;
    border-radius:28px;
    display:block;
    box-shadow:0 25px 60px rgba(15,23,42,.12);
}

.founder-badge{
    position:absolute;
    left:30px;
    bottom:30px;
    display:flex;
    align-items:center;
    gap:12px;
    background:#fff;
    padding:14px 22px;
    border-radius:60px;
    box-shadow:0 15px 35px rgba(15,23,42,.12);
    font-weight:700;
}

.founder-badge i{
    color:var(--secondary-color);
}

.founder-1 .section-label{
    display:inline-block;
    color:var(--secondary-color);
    font-size:16px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:16px;
}

.founder-1 .section-title{
    font-size:48px;
    font-weight:800;
    line-height:1.1;
    color:var(--text-dark);
    margin-bottom:20px;
}

.founder-role{
    margin-bottom:30px;
}

.founder-role h5{
    margin:0 0 8px;
    font-size:24px;
    font-weight:700;
    color:var(--secondary-color);
}

.founder-role span{
    display:block;
    font-size:18px;
    color:var(--text-muted);
    font-weight:600;
}

.founder-1 .section-desc{
    font-size:18px;
    line-height:1.9;
    color:var(--text-muted);
    margin-bottom:20px;
}

.founder-quote{
    margin:35px 0;
    padding:28px 32px;
    background:rgba(249,104,49,.08);
    border-left:5px solid var(--secondary-color);
    border-radius:18px;
    font-size:24px;
    line-height:1.6;
    font-weight:700;
    color:var(--text-dark);
}

.founder-actions{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.founder-actions .btn-solid{
    display:inline-flex;
    align-items:center;
    gap:10px;
}

@media(max-width:991px){

    .founder-1{
        padding:60px 0;
    }

    .founder-wrapper{
        padding:45px 35px;
    }

    .founder-1 .section-title{
        font-size:38px;
    }

}

@media(max-width:576px){

    .founder-wrapper{
        padding:30px 24px;
        border-radius:24px;
    }

    .founder-1 .section-title{
        font-size:32px;
    }

    .founder-role h5{
        font-size:22px;
    }

    .founder-quote{
        padding:22px;
        font-size:20px;
    }

    .founder-badge{
        left:18px;
        right:18px;
        bottom:18px;
        justify-content:center;
        padding:12px 18px;
        font-size:14px;
    }

}
/*=========================================
FUTURE GROWTH - 1
=========================================*/

.future-growth-1{
    padding:80px 0;
    background:var(--bg-light-gray);
}

.future-growth-card{
    background:var(--primary-color);
    border-radius:32px;
    padding:70px;
    overflow:hidden;
    position:relative;
    box-shadow:0 30px 70px rgba(15,23,42,.18);
}

.future-growth-card::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    top:-180px;
    right:-120px;
    border-radius:50%;
    background:rgba(249,104,49,.08);
}

.future-growth-card::after{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    left:-100px;
    bottom:-120px;
    border-radius:50%;
    background:rgba(249,104,49,.05);
}

.future-growth-1 .section-label{
    display:inline-block;
    color:var(--secondary-color);
    font-size:16px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
    position:relative;
    z-index:2;
}

.future-growth-1 .section-title{
    color:#fff;
    font-size:44px;
    font-weight:800;
    line-height:1.15;
    letter-spacing:-2px;
    margin-bottom:24px;
    position:relative;
    z-index:2;
}

.future-growth-1 .section-title span{
    color:var(--secondary-color);
}

.future-growth-1 .section-desc{
    color:rgba(255,255,255,.82);
    font-size:18px;
    line-height:1.9;
    margin-bottom:40px;
    position:relative;
    z-index:2;
}

.roadmap-list{
    display:flex;
    flex-direction:column;
    gap:22px;
    position:relative;
    z-index:2;
}

.roadmap-item{
    display:flex;
    gap:20px;
    align-items:flex-start;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:24px;
    backdrop-filter:blur(8px);
}

.roadmap-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:rgba(249,104,49,.15);
    color:var(--secondary-color);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    flex-shrink:0;
}

.roadmap-item h5{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:8px;
}

.roadmap-item p{
    color:rgba(255,255,255,.75);
    margin:0;
    line-height:1.8;
}

.future-box{
    background:#fff;
    border-radius:28px;
    padding:45px;
    text-align:center;
    height:100%;
    box-shadow:0 20px 50px rgba(0,0,0,.18);
    position:relative;
    z-index:2;
}

.future-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:rgba(249,104,49,.12);
    color:var(--secondary-color);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
}

.future-box h3{
    font-size:30px;
    font-weight:800;
    color:var(--text-dark);
    margin-bottom:20px;
}

.future-box p{
    color:var(--text-muted);
    line-height:1.9;
}

.future-stats{
    display:flex;
    justify-content:center;
    gap:40px;
    margin-top:35px;
}

.future-stats .stat{
    text-align:center;
}

.future-stats strong{
    display:block;
    font-size:42px;
    color:var(--secondary-color);
    font-weight:800;
    line-height:1;
}

.future-stats span{
    display:block;
    margin-top:8px;
    color:var(--text-muted);
    font-weight:600;
}

@media(max-width:991px){

    .future-growth-1{
        padding:60px 0;
    }

    .future-growth-card{
        padding:45px 35px;
    }

    .future-growth-1 .section-title{
        font-size:36px;
    }

    .future-box{
        margin-top:35px;
    }

}

@media(max-width:576px){

    .future-growth-card{
        padding:30px 24px;
        border-radius:24px;
    }

    .future-growth-1 .section-title{
        font-size:30px;
    }

    .roadmap-item{
        flex-direction:column;
        text-align:center;
    }

    .roadmap-icon{
        margin:auto;
    }

    .future-box{
        padding:30px 24px;
    }

    .future-stats{
        gap:25px;
    }

}

 /*================================================= OUR PHILOSOPHY ==================================================*/
.philosophy-section{padding:100px 0;background:#fff}
.philosophy-card{background:var(--bg-light-gray);border:1px solid rgba(15,23,42,.06);border-radius:28px;padding:60px;text-align:center}
.philosophy-card .lead-text{font-size:26px;font-weight:600;color:var(--primary-color);line-height:1.6;margin-bottom:15px}
.philosophy-card .divider{width:80px;height:4px;background:var(--secondary-color);border-radius:20px;margin:35px auto}
.philosophy-card .section-desc{max-width:760px;margin:0 auto 20px;line-height:1.9}
.philosophy-card .highlight-text{font-size:32px;font-weight:700;color:var(--primary-color);line-height:1.4}
.philosophy-card .highlight-text::before{content:"";display:block;width:60px;height:3px;background:var(--secondary-color);margin:0 auto 25px;border-radius:20px}
@media(max-width:991px){.philosophy-section{padding:80px 0}.philosophy-card{padding:45px}}
@media(max-width:767px){.philosophy-section{padding:60px 0}.philosophy-card{padding:30px 25px;text-align:left}.philosophy-card .lead-text{font-size:22px}.philosophy-card .divider,.philosophy-card .highlight-text::before{margin-left:0;margin-right:0}.philosophy-card .highlight-text{font-size:26px}.philosophy-card .section-desc{max-width:100%}}

/*================================================= PROCESS STEPS ==================================================*/
.process-steps{padding:100px 0;background:var(--bg-light-gray)}
.process-step-card{background:#fff;border-radius:24px;padding:40px;border:1px solid rgba(15,23,42,.06);box-shadow:0 18px 40px rgba(15,23,42,.06);transition:.35s; margin-bottom: 20px;}
.process-step-card:hover{transform:translateY(-8px);box-shadow:0 30px 60px rgba(15,23,42,.10)}
.step-label{display:inline-flex;align-items:center;justify-content:center;padding:8px 18px;border-radius:50px;background:rgba(249,104,49,.10);color:var(--secondary-color);font-size:14px;font-weight:700;text-transform:uppercase;margin-bottom:20px}
.step-title{font-size:34px;font-weight:700;color:var(--primary-color);margin-bottom:15px}
.step-desc{font-size:18px;color:var(--text-dark);font-weight:600;margin-bottom:10px}
.step-text{color:var(--text-muted);margin-bottom:10px}
.step-point{display:flex;align-items:center;gap:12px;padding:14px 16px;background:var(--bg-light-gray);border-radius:14px;height:100%;font-weight:500;transition:.3s}
.step-point:hover{background:#fff;border:1px solid rgba(249,104,49,.20)}
.step-point i{color:var(--secondary-color)}
.step-note{margin-top:30px;padding:20px;border-radius:16px;background:rgba(15,23,42,.03); margin-bottom: 20px;;}
.step-note p{color:var(--text-muted);line-height:1.8}
.step-result{margin-top:25px;padding:24px;border-left:4px solid var(--secondary-color);background:rgba(249,104,49,.08);border-radius:0 16px 16px 0}
.step-result h6{font-size:18px;font-weight:700;margin-bottom:10px;color:var(--primary-color)}
.step-result p{margin:0;color:var(--text-muted);line-height:1.8}
@media(max-width:991px){.process-steps{padding:80px 0}.process-step-card{padding:30px}}
@media(max-width:767px){.process-steps{padding:60px 0}.process-step-card{padding:24px}.step-title{font-size:28px}.step-desc{font-size:17px}.step-point{font-size:15px;padding:12px 14px}.step-result{padding:20px}}
@media (max-width: 767px) {
    .partner-step {
        padding: 30px 25px;
        margin-bottom: 20px;
        height: auto;
    }
}
/*================================================= PROCESS STEP ==================================================*/
.process-step-section{padding:100px 0;background:#fff}
.process-step-card{position:relative;background:#fff;border-radius:28px;padding:60px;border:1px solid rgba(15,23,42,.06);box-shadow:0 18px 50px rgba(15,23,42,.06);overflow:hidden;transition:.35s}
.process-step-card:hover{transform:translateY(-8px);box-shadow:0 30px 70px rgba(15,23,42,.10)}
.process-step-card::before{content:"";position:absolute;top:0;left:0;width:6px;height:100%;background:var(--secondary-color)}
.process-step-image{position:relative}
.process-step-image img{width:100%;border-radius:22px;display:block}
.process-step-image::after{content:"Business Discovery";position:absolute;left:25px;bottom:25px;background:#fff;color:var(--primary-color);font-size:15px;font-weight:600;padding:12px 20px;border-radius:50px;box-shadow:0 15px 40px rgba(15,23,42,.12)}
.step-badge{display:inline-flex;align-items:center;justify-content:center;padding:10px 18px;background:rgba(249,104,49,.10);color:var(--secondary-color);border-radius:50px;font-size:14px;font-weight:700;text-transform:uppercase;letter-spacing:.5px}
.step-title{font-size:42px;line-height:1.15;font-weight:700;color:var(--primary-color);margin-bottom:20px}
.step-desc{font-size:22px;font-weight:600;color:var(--primary-color);margin-bottom:18px}
.process-step-content .section-desc{line-height:1.9;max-width:650px}
.process-check{display:flex;align-items:center;gap:14px;padding:16px 18px;border-radius:16px;background:var(--bg-light-gray);border:1px solid rgba(15,23,42,.05);transition:.3s;margin-bottom: 10px;}
.process-check:hover{background:#fff;border-color:rgba(249,104,49,.20);transform:translateY(-3px)}
.process-check i{color:var(--secondary-color);font-size:18px}
.process-check span{font-weight:600;color:var(--primary-color)}
.process-result{display:flex;align-items:flex-start;gap:20px;padding:28px;background:rgba(249,104,49,.08);border-left:5px solid var(--secondary-color);border-radius:0 18px 18px 0}
.result-icon{width:60px;height:60px;flex-shrink:0;border-radius:50%;background:#fff;color:var(--secondary-color);display:flex;justify-content:center;align-items:center;font-size:24px;box-shadow:0 10px 30px rgba(15,23,42,.08)}
.process-result h5{margin-bottom:10px;font-size:22px;font-weight:700;color:var(--primary-color)}
.process-result p{margin:0;color:var(--text-muted);line-height:1.8}
@media(max-width:991px){.process-step-section{padding:80px 0}.process-step-card{padding:40px}.process-step-image{margin-bottom:30px}.step-title{font-size:34px}.step-desc{font-size:20px}}
@media(max-width:767px){.process-step-section{padding:60px 0}.process-step-card{padding:25px;border-radius:22px}.step-title{font-size:28px}.step-desc{font-size:18px}.process-step-image::after{left:15px;bottom:15px;font-size:13px;padding:10px 16px}.process-check{padding:14px}.process-result{flex-direction:column;padding:22px;gap:15px}.result-icon{width:52px;height:52px;font-size:20px}}

/*================================================= PROJECT TIMELINE ==================================================*/
.project-timeline{padding:100px 0;background:var(--bg-light-gray)}
.timeline-wrapper{background:#fff;border-radius:28px;overflow:hidden;border:1px solid rgba(15,23,42,.06);box-shadow:0 20px 50px rgba(15,23,42,.06)}
.timeline-item{display:flex;align-items:center;gap:30px;padding:30px 40px;transition:.3s}
.timeline-item:not(:last-child){border-bottom:1px solid rgba(15,23,42,.06)}
.timeline-item:hover{background:#fafafa}
.timeline-phase{width:280px;display:flex;align-items:center;gap:18px}
.timeline-phase span{width:55px;height:55px;border-radius:50%;background:var(--secondary-color);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:18px;flex-shrink:0}
.timeline-phase h5{margin:0;font-size:22px;color:var(--primary-color)}
.timeline-line{flex:1;height:2px;background:repeating-linear-gradient(to right,rgba(15,23,42,.15),rgba(15,23,42,.15) 8px,transparent 8px,transparent 16px)}
.timeline-duration{width:220px;text-align:right}
.timeline-duration strong{display:block;font-size:22px;color:var(--primary-color)}
.timeline-duration small{color:var(--text-muted);font-size:15px}
.timeline-summary{margin-top:40px;background:#fff;border-radius:24px;padding:30px;display:flex;gap:20px;align-items:flex-start;border-left:5px solid var(--secondary-color);box-shadow:0 15px 40px rgba(15,23,42,.05)}
.summary-icon{width:60px;height:60px;border-radius:50%;background:rgba(249,104,49,.10);display:flex;align-items:center;justify-content:center;color:var(--secondary-color);font-size:24px;flex-shrink:0}
.timeline-summary h5{margin-bottom:10px;font-size:24px;color:var(--primary-color)}
.timeline-summary p{line-height:1.8;color:var(--text-muted)}
@media(max-width:991px){.project-timeline{padding:80px 0}.timeline-item{flex-direction:column;align-items:flex-start;gap:20px}.timeline-phase,.timeline-duration{width:100%}.timeline-line{width:100%}.timeline-duration{text-align:left}}
@media(max-width:767px){.project-timeline{padding:60px 0}.timeline-wrapper{border-radius:20px}.timeline-item{padding:25px}.timeline-phase{gap:15px}.timeline-phase h5{font-size:20px}.timeline-phase span{width:48px;height:48px;font-size:16px}.timeline-summary{padding:22px;flex-direction:column}.timeline-summary h5{font-size:20px}}
.order-1 { order: 1; }
.order-2 { order: 2; }
@media (min-width: 992px) { /* lg breakpoint */
    .order-lg-1 { order: 1; }
    .order-lg-2 { order: 2; }
}
 /*================================================= PROCESS OVERVIEW ==================================================*/
.process-overview{padding:100px 0 0 0;background:#fff}
/*================================================= INTRO CARD ==================================================*/
.process-intro{background:var(--bg-light-gray);border-radius:24px;padding:40px;text-align:center;border:1px solid rgba(15,23,42,.06)}
.process-intro p{margin-bottom:20px;color:var(--text-muted);line-height:1.9;font-size:18px}
.process-intro p:last-child{margin-bottom:0}
/*================================================= RESPONSIVE ==================================================*/
@media(max-width:991px){.process-overview{padding:80px 0}.process-intro{padding:30px}}
.process-intro{padding:25px;text-align:left}
.process-intro p{font-size:16px}

/*=========================================
products - websites - Pricing
=========================================*/
/*=========================================
WEBSITE INCLUDES - 1
=========================================*/

.website-includes-1{
    padding:80px 0;
    background:var(--bg-light-gray);
}

.include-card{
    background:#fff;
    border-radius:24px;
    padding:35px 28px;
    text-align:center; 
    border:1px solid rgba(15,23,42,.06);
    box-shadow:0 12px 35px rgba(15,23,42,.05);
    transition:.35s;
    margin-bottom: 25px;
    min-height: 350px;
}

.include-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(15,23,42,.08);
}

.include-icon{
    width:78px;
    height:78px;
    margin:0 auto 24px;
    border-radius:20px;
    background:rgba(249,104,49,.12);
    color:var(--secondary-color);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    transition:.3s;
}

.include-card:hover .include-icon{
    background:var(--secondary-color);
    color:#fff;
    transform:rotate(-5deg) scale(1.05);
}

.include-card h5{
    font-size:22px;
    font-weight:700;
    color:var(--text-dark);
    margin-bottom:15px;
    line-height:1.35;
}

.include-card p{
    font-size:16px;
    line-height:1.8;
    color:var(--text-muted);
    margin:0;
}

@media(max-width:991px){

    .website-includes-1{
        padding:60px 0;
    }

}

@media(max-width:767px){

    .website-includes-1{
        padding:50px 0;
    }

    .include-card{
        padding:28px 22px;
    }

    .include-icon{
        width:68px;
        height:68px;
        font-size:28px;
    }

    .include-card h5{
        font-size:20px;
    }

}

/*=========================================
PLATFORM GROWTH - 1
=========================================*/

.platform-growth-1{
    padding:90px 0;
    background:var(--bg-light-gray);
}

.platform-flow{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:30px;
    margin-top:20px;
    flex-wrap:wrap;
}

.platform-card{
    position:relative;
    flex:1;
    min-width:280px;
    max-width:360px;
    background:#fff;
    padding:40px 32px;
    border-radius:28px;
    text-align:center;
    border:1px solid rgba(15,23,42,.06);
    box-shadow:0 18px 45px rgba(15,23,42,.05);
    transition:.35s;
}

.platform-card:hover{
    transform:translateY(-10px);
    box-shadow:0 28px 60px rgba(15,23,42,.08);
}

.platform-card.featured{
    background:var(--primary-color);
}

.platform-card.featured h4,
.platform-card.featured p,
.platform-card.featured .platform-number{
    color:#fff;
}

.platform-card.featured .platform-icon{
    background:rgba(255,255,255,.08);
    color:var(--secondary-color);
}

.platform-number{
    display:block;
    margin:18px 0 15px;
    color:var(--secondary-color);
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.platform-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:24px;
    background:rgba(249,104,49,.12);
    color:var(--secondary-color);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
}

.platform-card h4{
    font-size:28px;
    font-weight:800;
    color:var(--text-dark);
    margin-bottom:18px;
}

.platform-card p{
    color:var(--text-muted);
    line-height:1.8;
    margin:0;
}

.platform-arrow{
    font-size:32px;
    color:var(--secondary-color);
    flex-shrink:0;
}

.platform-bottom{
    margin-top:70px;
    text-align:center;
    background:#fff;
    border-radius:28px;
    padding:45px;
    box-shadow:0 15px 45px rgba(15,23,42,.05);
}

.platform-bottom h3{
    max-width:820px;
    margin:0 auto;
    font-size:34px;
    font-weight:800;
    line-height:1.4;
    color:var(--text-dark);
}

.platform-bottom .btn-solid{
    margin-top:30px;
}

@media(max-width:991px){

    .platform-growth-1{
        padding:70px 0;
    }

    .platform-arrow{
        display:none;
    }

    .platform-flow{
        gap:24px;
    }

    .platform-card{
        max-width:100%;
    }

    .platform-bottom h3{
        font-size:28px;
    }

}

@media(max-width:576px){

    .platform-growth-1{
        padding:60px 0;
    }

    .platform-card{
        padding:30px 24px;
        border-radius:22px;
    }

    .platform-icon{
        width:72px;
        height:72px;
        font-size:30px;
        border-radius:18px;
    }

    .platform-card h4{
        font-size:22px;
    }

    .platform-bottom{
        padding:30px 22px;
    }

    .platform-bottom h3{
        font-size:24px;
    }

}

/*=========================================
PLATFORM GROWTH - DARK
=========================================*/

.platform-growth-dark{
    padding:100px 0;
    background:#0f172a;
    position:relative;
    overflow:hidden;
}

.platform-growth-dark::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    border-radius:50%;
    background:rgba(249,104,49,.06);
    top:-250px;
    right:-200px;
}

.platform-growth-dark::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(249,104,49,.04);
    left:-180px;
    bottom:-200px;
}

.platform-growth-dark .section-label{
    color:var(--secondary-color);
    text-transform:uppercase;
    font-weight:700;
    letter-spacing:2px;
    display:inline-block;
    margin-bottom:15px;
    position:relative;
    z-index:2;
}

.platform-growth-dark .section-title{
    color:#fff;
    font-size:48px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:20px;
    position:relative;
    z-index:2;
}

.platform-growth-dark .section-title span{
    color:var(--secondary-color);
}

.platform-growth-dark .section-desc{
    color:rgba(255,255,255,.70);
    font-size:18px;
    line-height:1.9;
    max-width:720px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* Cards */

.platform-card{
    position:relative;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    border-radius:28px;
    padding:40px 35px;
    text-align:center;
    height:100%;
    transition:.35s;
    overflow:hidden;
}

.platform-card:hover{
    transform:translateY(-10px);
    border-color:rgba(249,104,49,.35);
    box-shadow:0 25px 60px rgba(0,0,0,.35);
}

.platform-card.featured{
    background:linear-gradient(180deg,#f96831,#d65320);
    border:none;
    transform:scale(1.05);
}

.platform-step{
    display:inline-block;
    color:var(--secondary-color);
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:20px;
}

.platform-card.featured .platform-step{
    color:#fff;
}

.platform-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:22px;
    background:rgba(249,104,49,.12);
    color:var(--secondary-color);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    margin-bottom:28px;
}

.platform-card.featured .platform-icon{
    background:rgba(255,255,255,.15);
    color:#fff;
}

.platform-card h4{
    color:#fff;
    font-size:28px;
    font-weight:700;
    margin-bottom:18px;
}

.platform-card p{
    color:rgba(255,255,255,.72);
    line-height:1.8;
    margin:0;
}

.platform-card.featured p{
    color:rgba(255,255,255,.92);
}

.platform-arrow{
    width:60px;
    height:60px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    color:var(--secondary-color);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

/* Bottom CTA */

.platform-summary{
    margin-top:70px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    padding:50px;
    backdrop-filter:blur(15px);
}

.platform-summary h3{
    color:#fff;
    font-size:34px;
    font-weight:800;
    line-height:1.35;
    margin-bottom:18px;
}

.platform-summary p{
    color:rgba(255,255,255,.72);
    margin:0;
    font-size:17px;
    line-height:1.8;
}

.platform-summary .btn-solid{
    white-space:nowrap;
}

/* Responsive */

@media(max-width:991px){

    .platform-growth-dark{
        padding:70px 0;
    }

    .platform-growth-dark .section-title{
        font-size:38px;
    }

    .platform-card.featured{
        transform:none;
    }

    .platform-summary{
        padding:40px 30px;
    }

    .platform-summary h3{
        font-size:28px;
    }

}

@media(max-width:767px){

    .platform-growth-dark{
        padding:60px 0;
    }

    .platform-growth-dark .section-title{
        font-size:32px;
    }

    .platform-card{
        padding:30px 25px;
    }

    .platform-icon{
        width:72px;
        height:72px;
        font-size:30px;
    }

    .platform-card h4{
        font-size:24px;
    }

    .platform-summary{
        padding:30px 25px;
    }

    .platform-summary h3{
        font-size:24px;
    }

}

.inner-hero-actions  {
  display: flex;
}

@media (max-width: 480px){
  .inner-hero-actions {
    display: flex;
    flex-direction: column;
}
}

@media (min-width: 992px) {
  .partner-process-wrapper .col-md-3 {
      max-width: fit-content;
  }
}


/*=========================================
WEBSITE GROWTH 1
=========================================*/
.website-growth-1 {
    padding: 80px 0;
    background: var(--bg-light-gray);
}

.website-growth-1 .section-label {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.website-growth-1 .section-title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.2;
    color: var(--text-dark);
}

.website-growth-1 .section-title span {
    color: var(--secondary-color);
}

.website-growth-1 .section-desc {
    max-width: 720px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-muted);
}

/*=========================
Growth List
=========================*/

.growth-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.growth-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 22px;
    padding: 30px;
    transition: all .3s ease;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .04);
}

.growth-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, .08);
}

.growth-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 18px;
    background: rgba(249, 104, 49, .10);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.growth-item h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.growth-item p {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-muted);
}

/*=========================
Summary Card
=========================*/

.growth-summary-card {
    background: var(--primary-color);
    color: #fff;
    border-radius: 30px;
    padding: 50px;
    height: 100%;
    box-shadow: 0 25px 60px rgba(15, 23, 42, .15);
}

.summary-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 30px;
    border-radius: 50%;
    background: rgba(249, 104, 49, .12);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.growth-summary-card .badge-status {
    display: inline-block;
    background: rgba(249, 104, 49, .15);
    color: var(--secondary-color);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.growth-summary-card h3 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #fff;
}

.growth-summary-card p {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255,255,255,.85);
    margin-bottom: 35px;
}

/*=========================
Stats
=========================*/

.growth-stats {
    display: flex;
    gap: 25px;
}

.growth-stats .stat {
    flex: 1;
    text-align: center;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 22px 15px;
}

.growth-stats .stat h4 {
    font-size: 34px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.growth-stats .stat span {
    font-size: 15px;
    color: rgba(255,255,255,.75);
}

/*=========================
Bottom CTA
=========================*/

.website-growth-1 .lead {
    background: #fff;
    border: 1px solid rgba(15,23,42,.06);
    border-radius: 24px;
    padding: 30px 35px;
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-dark);
    box-shadow: 0 10px 30px rgba(15,23,42,.05);
}

.website-growth-1 .lead strong {
    color: var(--secondary-color);
}

/*=========================
Responsive
=========================*/

@media (max-width:991px){

    .website-growth-1{
        padding:70px 0;
    }

    .website-growth-1 .section-title{
        font-size:36px;
    }

    .growth-summary-card{
        padding:40px 35px;
    }

    .growth-item{
        padding:25px;
    }

}

@media (max-width:767px){

    .website-growth-1{
        padding:60px 0;
    }

    .website-growth-1 .section-title{
        font-size:30px;
    }

    .website-growth-1 .section-desc{
        font-size:16px;
    }

    .growth-item{
        flex-direction:column;
        text-align:center;
    }

    .growth-icon{
        margin:0 auto;
        width:60px;
        height:60px;
        font-size:24px;
    }

    .growth-item h5{
        font-size:20px;
    }

    .growth-summary-card{
        padding:35px 25px;
        text-align:center;
    }

    .summary-icon{
        width:75px;
        height:75px;
        margin:0 auto 25px;
        font-size:30px;
    }

    .growth-summary-card h3{
        font-size:28px;
    }

    .growth-stats{
        flex-direction:column;
    }

    .website-growth-1 .lead{
        padding:24px;
        font-size:18px;
    }

}
.featured-image img {
    border-radius: 20px;
}
/*=========================================
WHY BIZFIRE WEBSITES
=========================================*/

.bizfire-difference-1{
    padding:80px 0;
    background:var(--bg-light-gray);
    position:relative;
    overflow:hidden;
}

/*----------------------------------
Section Heading
----------------------------------*/

.bizfire-difference-1 .section-label{
    display:inline-block;
    color:var(--secondary-color);
    font-size:16px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.bizfire-difference-1 .section-title{
    font-size:42px;
    font-weight:800;
    letter-spacing:-1.5px;
    line-height:1.15;
    color:var(--text-dark);
}

.bizfire-difference-1 .section-title span{
    color:var(--secondary-color);
}

.bizfire-difference-1 .section-desc{
    max-width:700px;
    margin:auto;
    font-size:18px;
    color:var(--text-muted);
    line-height:1.8;
}

/*----------------------------------
Website Showcase
----------------------------------*/

.website-showcase{
    position:relative;
    background:#fff;
    border-radius:28px;
    padding:35px;
    box-shadow:0 25px 70px rgba(15,23,42,.08);
    border:1px solid rgba(15,23,42,.06);
}

.desktop-preview{
    width:100%;
    border-radius:18px;
    display:block;
}

.mobile-preview{
    position:absolute;
    right:60px;
    bottom:-40px;
    width:180px;
    border-radius:18px;
    border:8px solid #fff;
    box-shadow:0 20px 45px rgba(15,23,42,.18);
}

/*----------------------------------
Feature Cards
----------------------------------*/

.feature-card{
    background:#fff;
    border:1px solid rgba(15,23,42,.06);
    border-radius:22px;
    padding:30px;
    height:100%;
    text-align:center;
    transition:.35s;
    box-shadow:0 10px 30px rgba(15,23,42,.04);
}

.feature-card:hover{
    transform:translateY(-8px);
    border-color:rgba(249,104,49,.25);
    box-shadow:0 25px 50px rgba(15,23,42,.08);
}

.feature-card .icon{
    width:72px;
    height:72px;
    margin:0 auto 22px;
    border-radius:20px;
    background:rgba(249,104,49,.10);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--secondary-color);
    font-size:30px;
    transition:.35s;
}

.feature-card:hover .icon{
    background:var(--secondary-color);
    color:#fff;
    transform:rotate(-8deg);
}

.feature-card h5{
    font-size:22px;
    font-weight:700;
    color:var(--text-dark);
    margin-bottom:14px;
}

.feature-card p{
    margin:0;
    color:var(--text-muted);
    line-height:1.7;
    font-size:17px;
}

/*----------------------------------
Background Decoration
----------------------------------*/

.bizfire-difference-1::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(249,104,49,.05);
    border-radius:50%;
    top:-180px;
    right:-120px;
}

.bizfire-difference-1::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(249,104,49,.04);
    border-radius:50%;
    left:-120px;
    bottom:-120px;
}

/*----------------------------------
Tablet
----------------------------------*/

@media (max-width:991px){

    .bizfire-difference-1{
        padding:70px 0;
    }

    .bizfire-difference-1 .section-title{
        font-size:36px;
    }

    .website-showcase{
        padding:25px;
    }

    .mobile-preview{
        width:140px;
        right:30px;
        bottom:-20px;
    }

    .feature-card{
        padding:24px;
    }

}

/*----------------------------------
Mobile
----------------------------------*/

@media (max-width:767px){

    .bizfire-difference-1{
        padding:60px 0;
    }

    .bizfire-difference-1 .section-title{
        font-size:30px;
    }

    .bizfire-difference-1 .section-desc{
        font-size:16px;
    }

    .website-showcase{
        padding:18px;
    }

    .mobile-preview{
        position:relative;
        right:auto;
        bottom:auto;
        display:block;
        margin:20px auto 0;
        width:120px;
    }

    .feature-card{
        text-align:left;
        display:flex;
        gap:18px;
        align-items:flex-start;
    }

    .feature-card .icon{
        width:58px;
        height:58px;
        min-width:58px;
        margin:0;
        border-radius:16px;
        font-size:24px;
    }

    .feature-card h5{
        font-size:18px;
        margin-bottom:8px;
    }

    .feature-card p{
        font-size:15px;
    }

}
/*=========================================
WEBSITE PACKAGES
=========================================*/

.website-packages{
    padding:100px 0;
    background:var(--primary-color);
    position:relative;
    overflow:hidden;
}

.website-packages::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    top:-220px;
    right:-180px;
    border-radius:50%;
    background:rgba(249,104,49,.08);
}

.website-packages::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    left:-120px;
    bottom:-150px;
    border-radius:50%;
    background:rgba(249,104,49,.05);
}

/*=========================
Wrapper
=========================*/

.package-wrapper{
    background:linear-gradient(
        135deg,
        rgba(255,255,255,.06),
        rgba(255,255,255,.03)
    );
    border:1px solid rgba(255,255,255,.08);
    border-radius:32px;
    padding:60px;
    backdrop-filter:blur(14px);
    position:relative;
    z-index:2;
}

/*=========================
Left Content
=========================*/

.package-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(249,104,49,.15);
    color:var(--secondary-color);
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:22px;
}

.package-content h3{
    color:#fff;
    font-size:42px;
    font-weight:800;
    line-height:1.15;
    letter-spacing:-1.5px;
    margin-bottom:22px;
}

.package-content p{
    color:rgba(255,255,255,.75);
    font-size:18px;
    line-height:1.8;
    margin-bottom:0;
}

/*=========================
Feature Cards
=========================*/

.package-item{
    display:flex;
    align-items:center;
    gap:18px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:22px 24px;
    transition:.35s;
    height:100%;
}

.package-item:hover{
    transform:translateY(-6px);
    background:rgba(255,255,255,.08);
    border-color:rgba(249,104,49,.35);
}

.package-item i{
    width:46px;
    height:46px;
    border-radius:50%;
    background:rgba(249,104,49,.15);
    color:var(--secondary-color);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    flex-shrink:0;
    transition:.35s;
}

.package-item:hover i{
    background:var(--secondary-color);
    color:#fff;
}

.package-item span{
    color:#fff;
    font-size:18px;
    font-weight:600;
    line-height:1.4;
}

/*=========================
Button
=========================*/

.website-packages .btn-solid{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:35px;
}

/*=========================
Tablet
=========================*/

@media (max-width:991px){

    .website-packages{
        padding:80px 0;
    }

    .package-wrapper{
        padding:45px 35px;
    }

    .package-content{
        margin-bottom:40px;
    }

    .package-content h3{
        font-size:36px;
    }

}

/*=========================
Mobile
=========================*/

@media (max-width:767px){

    .website-packages{
        padding:60px 0;
    }

    .package-wrapper{
        padding:30px 22px;
        border-radius:24px;
    }

    .package-content{
        text-align:center;
        margin-bottom:35px;
    }

    .package-content h3{
        font-size:30px;
    }

    .package-content p{
        font-size:16px;
    }

    .package-item{
        padding:18px;
        gap:14px;
    }

    .package-item i{
        width:40px;
        height:40px;
        font-size:16px;
    }

    .package-item span{
        font-size:16px;
    }

    .website-packages .btn-solid{
        width:100%;
    }

}
/*=========================================
WHY IT MATTERS
=========================================*/

.why-matters-1{
    padding:100px 0;
    background:#fff;
}

/*==========================
Section Heading
==========================*/

.why-matters-1 .section-title{
    font-size:42px;
    font-weight:800;
    line-height:1.15;
    letter-spacing:-1.5px;
    color:var(--text-dark);
}

.why-matters-1 .section-title .highlight{
    color:var(--secondary-color);
}

.why-matters-1 .section-desc{
    max-width:700px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
    color:var(--text-muted);
}

/*==========================
Cards
==========================*/

.matter-card{
    background:#fff;
    border:1px solid rgba(15,23,42,.06);
    border-radius:30px;
    padding:50px;
    margin-bottom:30px;
    box-shadow:0 15px 45px rgba(15,23,42,.05);
    transition:.35s;
}

.matter-card:last-child{
    margin-bottom:0;
}

.matter-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(15,23,42,.08);
    border-color:rgba(249,104,49,.25);
}

.matter-card img{
    width:100%;
    border-radius:22px;
    display:block;
}

/*==========================
Number
==========================*/

.card-number{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:64px;
    height:64px;
    border-radius:50%;
    background:rgba(249,104,49,.12);
    color:var(--secondary-color);
    font-size:22px;
    font-weight:800;
    margin-bottom:24px;
}

/*==========================
Content
==========================*/

.matter-card h3{
    font-size:34px;
    font-weight:800;
    color:var(--text-dark);
    margin-bottom:18px;
    letter-spacing:-1px;
}

.matter-card p{
    font-size:18px;
    line-height:1.8;
    color:var(--text-muted);
    margin:0;
}

/*==========================
Hover Effect
==========================*/

.matter-card:hover .card-number{
    background:var(--secondary-color);
    color:#fff;
}

.matter-card:hover img{
    transform:scale(1.02);
    transition:.4s;
}

/*==========================
Tablet
==========================*/

@media (max-width:991px){

    .why-matters-1{
        padding:80px 0;
    }

    .why-matters-1 .section-title{
        font-size:36px;
    }

    .matter-card{
        padding:35px;
    }

    .matter-card img{
        margin-bottom:30px;
    }

    .matter-card h3{
        font-size:30px;
    }

}

/*==========================
Mobile
==========================*/

@media (max-width:767px){

    .why-matters-1{
        padding:60px 0;
    }

    .why-matters-1 .section-title{
        font-size:30px;
    }

    .why-matters-1 .section-desc{
        font-size:16px;
    }

    .matter-card{
        padding:24px;
        border-radius:22px;
    }

    .card-number{
        width:52px;
        height:52px;
        font-size:18px;
        margin-bottom:18px;
    }

    .matter-card h3{
        font-size:24px;
    }

    .matter-card p{
        font-size:16px;
    }

    .matter-card img{
        border-radius:16px;
        margin-bottom:24px;
    }

}
/*=========================================
WHO IT'S FOR
=========================================*/

.industries-showcase{
    padding:100px 0;
    background:#fff;
    position:relative;
    overflow:hidden;
}

/*=========================
Featured Card
=========================*/

.industry-feature{
    height:100%;
    background:var(--primary-color);
    border-radius:30px;
    padding:50px;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.industry-feature::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    right:-80px;
    top:-80px;
    border-radius:50%;
    background:rgba(249,104,49,.10);
}

.industry-feature::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    left:-60px;
    bottom:-60px;
    border-radius:50%;
    background:rgba(249,104,49,.06);
}

.industry-icon{
    width:90px;
    height:90px;
    border-radius:24px;
    background:rgba(249,104,49,.12);
    color:var(--secondary-color);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    margin-bottom:30px;
    position:relative;
    z-index:2;
}

.industry-feature h3{
    font-size:34px;
    font-weight:800;
    color:#fff;
    margin-bottom:20px;
    line-height:1.2;
    position:relative;
    z-index:2;
}

.industry-feature p{
    font-size:18px;
    line-height:1.8;
    color:rgba(255,255,255,.75);
    margin:0;
    position:relative;
    z-index:2;
}

/*=========================
Industry Grid
=========================*/

.industry-item{
    display:flex;
    align-items:center;
    gap:18px;
    background:#fff;
    border:1px solid rgba(15,23,42,.08);
    border-radius:20px;
    padding:24px 26px;
    transition:.35s;
    height:100%;
    box-shadow:0 8px 30px rgba(15,23,42,.04);
}

.industry-item:hover{
    transform:translateY(-6px);
    border-color:rgba(249,104,49,.35);
    box-shadow:0 18px 40px rgba(15,23,42,.08);
}

.industry-item i{
    width:58px;
    height:58px;
    border-radius:18px;
    background:rgba(249,104,49,.12);
    color:var(--secondary-color);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    flex-shrink:0;
    transition:.3s;
}

.industry-item:hover i{
    background:var(--secondary-color);
    color:#fff;
    transform:rotate(-8deg);
}

.industry-item span{
    font-size:20px;
    font-weight:700;
    color:var(--text-dark);
}

/*=========================
Tablet
=========================*/

@media (max-width:991px){

    .industries-showcase{
        padding:80px 0;
    }

    .industry-feature{
        margin-bottom:25px;
        padding:40px;
    }

    .industry-feature h3{
        font-size:30px;
    }

}

/*=========================
Mobile
=========================*/

@media (max-width:767px){

    .industries-showcase{
        padding:60px 0;
    }

    .industry-feature{
        padding:30px 24px;
        border-radius:24px;
        text-align:center;
    }

    .industry-icon{
        margin:0 auto 24px;
        width:72px;
        height:72px;
        font-size:30px;
    }

    .industry-feature h3{
        font-size:26px;
    }

    .industry-feature p{
        font-size:16px;
    }

    .industry-item{
        padding:18px;
        gap:14px;
    }

    .industry-item i{
        width:46px;
        height:46px;
        border-radius:14px;
        font-size:18px;
    }

    .industry-item span{
        font-size:17px;
    }

}
/*=========================================
PLATFORM OVERVIEW 1
=========================================*/

.platform-overview-1{
    padding:100px 0;
    background:var(--primary-color);
    position:relative;
    overflow:hidden;
}

.platform-overview-1::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    top:-180px;
    right:-150px;
    border-radius:50%;
    background:rgba(249,104,49,.08);
}

.platform-overview-1::after{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    left:-100px;
    bottom:-120px;
    border-radius:50%;
    background:rgba(249,104,49,.05);
}

/*=========================
Wrapper
=========================*/

.platform-overview-card{
    background:linear-gradient(
        135deg,
        rgba(255,255,255,.06),
        rgba(255,255,255,.03)
    );
    border:1px solid rgba(255,255,255,.08);
    border-radius:32px;
    padding:65px;
    backdrop-filter:blur(16px);
    position:relative;
    z-index:2;
}

/*=========================
Left
=========================*/

.platform-overview-1 .section-title{
    font-size:42px;
    font-weight:800;
    line-height:1.15;
    letter-spacing:-1.5px;
}

.platform-overview-1 .section-desc{
    color:rgba(255,255,255,.75);
    font-size:18px;
    line-height:1.8;
}

/*=========================
Timeline
=========================*/

.platform-overview-steps{
    position:relative;
    padding-left:45px;
}

.platform-overview-steps::before{
    content:"";
    position:absolute;
    left:32px;
    top:40px;
    bottom:40px;
    width:2px;
    background:rgba(255,255,255,.08);
}

/*=========================
Items
=========================*/

.platform-overview-item{
    display:flex;
    gap:24px;
    margin-bottom:30px;
    position:relative;
}

.platform-overview-item:last-child{
    margin-bottom:0;
}

.platform-overview-icon{
    width:64px;
    height:64px;
    border-radius:20px;
    background:rgba(249,104,49,.12);
    color:var(--secondary-color);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    font-size:26px;
    transition:.35s;
    position:relative;
    z-index:2;
}

.platform-overview-content{
    flex:1;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:26px 28px;
    transition:.35s;
}

.platform-overview-label{
    display:inline-block;
    margin-bottom:10px;
    color:var(--secondary-color);
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.platform-overview-content h4{
    color:#fff;
    font-size:24px;
    font-weight:700;
    margin-bottom:12px;
}

.platform-overview-content p{
    margin:0;
    color:rgba(255,255,255,.75);
    font-size:17px;
    line-height:1.8;
}

/*=========================
Hover
=========================*/

.platform-overview-item:hover .platform-overview-content{
    background:rgba(255,255,255,.08);
    border-color:rgba(249,104,49,.30);
    transform:translateX(10px);
}

.platform-overview-item:hover .platform-overview-icon{
    background:var(--secondary-color);
    color:#fff;
    transform:rotate(-8deg);
}

/*=========================
Tablet
=========================*/

@media (max-width:991px){

    .platform-overview-1{
        padding:80px 0;
    }

    .platform-overview-card{
        padding:45px 35px;
    }

    .platform-overview-1 .section-title{
        font-size:36px;
    }

    .platform-overview-1 .section-desc{
        margin-bottom:40px;
    }

}

/*=========================
Mobile
=========================*/

@media (max-width:767px){

    .platform-overview-1{
        padding:60px 0;
    }

    .platform-overview-card{
        padding:30px 22px;
        border-radius:24px;
    }

    .platform-overview-1 .section-title{
        font-size:30px;
    }

    .platform-overview-1 .section-desc{
        font-size:16px;
    }

    .platform-overview-steps{
        padding-left:0;
    }

    .platform-overview-steps::before{
        display:none;
    }

    .platform-overview-item{
        flex-direction:column;
        gap:18px;
    }

    .platform-overview-icon{
        width:58px;
        height:58px;
        border-radius:16px;
        font-size:22px;
    }

    .platform-overview-content{
        padding:22px;
    }

    .platform-overview-content h4{
        font-size:20px;
    }

    .platform-overview-content p{
        font-size:15px;
    }

    .platform-overview-1 .btn-solid{
        width:100%;
    }

}