@charset "UTF-8";
:root {
  /* ── Brand Colors ───────────────── */
  --orange: #f59e0b;
  --orange-hover: #dc8f09;
  --orange-light: #fff3eb;
  --orange-glow: rgba(251, 102, 0, 0.18);
  /* 🔵 NEW BLUE BRAND COLORS */
  --blue-dark: #0b3077;
  --blue-light: #7faae6;
  --blue-soft: rgba(11, 48, 119, 0.08);
  --blue-gradient: linear-gradient(135deg, #0b3077, #7faae6);
  /* ── Core Neutrals ───────────────── */
  --black: #4c4c4c;
  --charcoal: #0f1f4a;
  --mid: #6e6e6e;
  --silver: #9a9a9a;
  --border: #e4e4e4;
  --border-soft: #f0f0f0;
  --white: #ffffff;
  --white-soft: #f9f7f5;
  /* 🔁 Accent System (keep orange primary CTA) */
  --accent: var(--orange);
  --accent-hover: var(--orange-hover);
  --accent-subtle: var(--orange-light);
  /* 🔵 Optional Secondary Accent */
  --accent-secondary: var(--blue-dark);
  /* ── Text */
  --text-primary: var(--black);
  --text-secondary: var(--mid);
  --text-muted: var(--silver);
  --text-on-accent: var(--white);
  --heading-color: #3a3a3a;
  /* ── Backgrounds */
  --bg-primary: var(--white);
  --bg-soft: var(--white-soft);
  --bg-accent-section: var(--orange-light);
  --bg-dark-section: var(--blue-dark);
  /* ── Typography */
  --ff-ui: "Inter", system-ui, sans-serif;
  --ff-serif: "Poppins", Georgia, serif;
  /* ── Radius */
  --radius-sm: 5px;
  --radius-md: 8px;
  --radius-lg: 16px;
  /* ── Motion */
  --t: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slide: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  /* ── Shadows */
  --shadow-card: 0 6px 24px rgba(0, 0, 0, 0.07);
  --shadow-deep: 0 18px 50px rgba(0, 0, 0, 0.14);
  --shadow-accent: 0 6px 20px var(--orange-glow);
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/Inter_18pt-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/Inter_18pt-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/Inter_18pt-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/poppins-regular-webfont.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/poppins-bold-webfont.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto !important;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: var(--ff-ui);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

p {
  line-height: 1.75;
}

ul {
  list-style: none;
  padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.15;
}

em {
  color: var(--accent);
}

*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .cursor {
    display: none;
  }
  body {
    cursor: auto;
  }
}
@media (hover: hover) and (pointer: fine) {
  body {
    cursor: none;
  }
}
.whatsapp-container {
  background-color: #42db87;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  box-shadow: 2px 2px 3px #000;
  position: fixed;
  right: 26px;
  bottom: 20px;
  z-index: 7;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  mix-blend-mode: difference;
}
.cursor__dot {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}
.cursor__ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border: 1px solid var(--orange-hover);
  border-radius: 50%;
  transition: width 0.3s ease, height 0.3s ease, top 0.3s ease, left 0.3s ease, border-color 0.3s ease;
}
.cursor.hovered .cursor__ring {
  width: 56px;
  height: 56px;
  top: -28px;
  left: -28px;
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}
.cursor.hovered .cursor__dot {
  transform: scale(0);
  opacity: 0;
}

@media (hover: none) {
  .cursor {
    display: none;
  }
  body {
    cursor: auto;
  }
}
.scroll-top {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  border: none;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--t), visibility var(--t), transform var(--t);
  z-index: 998;
  cursor: pointer;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--accent-hover);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--accent);
  border: 1.5px solid rgba(251, 102, 0, 0.22);
  border-radius: 999px;
  padding: 5px 14px 5px 10px;
  margin-bottom: 18px;
  line-height: 1;
  background: var(--accent-subtle);
}
.section-label::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.section-label--light {
  color: rgba(255, 255, 255, 0.68);
  border-color: rgba(255, 255, 255, 0.18);
  background: transparent;
}
.section-label--light::before {
  background: rgba(255, 255, 255, 0.68);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-title em {
  color: var(--accent);
  font-family: var(--ff-serif);
  font-style: italic;
}
.section-title--light {
  color: var(--white);
}
.section-title--center {
  text-align: center;
}
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
    line-height: 1.2;
  }
}
@media (max-width: 576px) {
  .section-title {
    font-size: 1.6rem;
    line-height: 1.25;
  }
}

.section-subtitle {
  font-family: var(--ff-ui);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 560px;
}
.section-subtitle a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.section-subtitle--light {
  color: rgba(255, 255, 255, 0.58);
}
.section-subtitle--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-subtitle--dropcap::first-letter {
  font-family: var(--ff-serif);
  font-size: 3.2em;
  font-weight: 700;
  line-height: 0.75;
  float: left;
  margin-right: 5px;
  margin-top: 6px;
  color: var(--accent);
}
@media (max-width: 992px) {
  .section-subtitle {
    font-size: 14px;
    max-width: 480px;
  }
}
@media (max-width: 576px) {
  .section-subtitle {
    font-size: 13px;
    line-height: 1.6;
    max-width: 100%;
  }
}

.section-head {
  margin-bottom: 35px;
}
.section-head--center {
  text-align: center;
}
.section-head--center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 992px) {
  .section-head {
    margin-bottom: 36px;
  }
}
@media (max-width: 576px) {
  .section-head {
    margin-bottom: 28px;
  }
}

.section-divider {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 20px;
}
.section-divider--center {
  margin-left: auto;
  margin-right: auto;
}
.section-divider--light {
  background: rgba(255, 255, 255, 0.22);
}

.commonbtn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: none;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  backdrop-filter: blur(6px);
  -webkit-tap-highlight-color: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.25s ease, filter 0.25s ease;
}
.commonbtn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.25), transparent 70%);
  z-index: 0;
}
.commonbtn:hover::before {
  opacity: 1;
}
.commonbtn:active {
  transform: scale(0.96);
  filter: brightness(0.95);
}
.commonbtn span {
  padding: 13px 22px;
  position: relative;
  z-index: 2;
}
.commonbtn i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-height: 44px;
  border-radius: calc(var(--radius-md) - 2px);
  margin: 3px;
  font-size: 14px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease, box-shadow 0.3s ease;
}
.commonbtn:hover i {
  transform: translateX(-4px) scale(1.05);
}
.commonbtn .ripple-wave {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  pointer-events: none;
  z-index: 1;
  animation: ripple-anim 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.commonbtn.dark {
  background: linear-gradient(135deg, var(--orange), #ff8c42);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(251, 102, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.commonbtn.dark i {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}
.commonbtn.dark:hover {
  background: linear-gradient(135deg, #ff7a1a, #ffa25c);
  box-shadow: 0 10px 28px rgba(251, 102, 0, 0.5), 0 0 12px rgba(255, 140, 66, 0.6);
}
.commonbtn.dark .ripple-wave {
  background: rgba(255, 255, 255, 0.3);
}
.commonbtn.light {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.commonbtn.light i {
  background: rgba(251, 102, 0, 0.12);
}
.commonbtn.light:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12);
}
.commonbtn.light .ripple-wave {
  background: rgba(251, 102, 0, 0.15);
}
.commonbtn.outline-dark {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  position: relative;
}
.commonbtn.outline-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent, rgba(251, 102, 0, 0.25), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.commonbtn.outline-dark:hover::after {
  opacity: 1;
}
.commonbtn.outline-dark:hover {
  color: white;
  background: var(--accent);
  box-shadow: 0 8px 22px rgba(251, 102, 0, 0.4);
}
.commonbtn.outline-dark i {
  background: rgba(251, 102, 0, 0.12);
}
.commonbtn.ghost {
  background: rgba(251, 102, 0, 0.08);
  color: var(--accent);
}
.commonbtn.ghost i {
  background: rgba(251, 102, 0, 0.15);
}
.commonbtn.ghost:hover {
  background: rgba(251, 102, 0, 0.18);
  box-shadow: inset 0 0 0 1px rgba(251, 102, 0, 0.25);
}
.commonbtn.sm span {
  padding: 9px 16px;
}
.commonbtn.sm i {
  width: 36px;
  min-height: 36px;
  font-size: 12px;
  margin: 2px;
}
.commonbtn.pill {
  border-radius: 999px;
}
.commonbtn.pill i {
  border-radius: 999px;
}
.commonbtn.icon-only {
  width: 44px;
  height: 44px;
  padding: 0;
}
.commonbtn.icon-only span {
  display: none;
}
.commonbtn.icon-only i {
  width: 38px;
  min-height: 38px;
  margin: 3px;
}

@keyframes ripple-anim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
.logo img {
  width: 150px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--charcoal);
  transition: box-shadow var(--t);
  padding: 20px 0px;
}
.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.09);
  border-radius: 0px 0px 30px 30px;
}
.header .navbar {
  padding: 0;
}
.header .navbar > .container-xl {
  min-height: 72px;
  display: flex;
  align-items: center;
}
.header .nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.header .nav-phone__icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--black);
  flex-shrink: 0;
  transition: background var(--t), color var(--t);
}
.header .nav-phone:hover .header .nav-phone__icon {
  background: var(--accent);
  color: var(--white);
}
.header .nav-phone__label {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: #aaa;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 3px;
}
.header .nav-phone__number {
  font-family: var(--ff-ui);
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
}
.header .nav-divider {
  width: 1px;
  height: 34px;
  background: rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
.header .nav__links .nav__link {
  padding: 6px 12px !important;
  border-radius: var(--radius-sm);
  transition: color var(--t), background var(--t);
  color: var(--border);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
}
.header .nav__links .nav__link:hover, .header .nav__links .nav__link.active {
  color: var(--white) !important;
  border-bottom: 2px solid var(--accent);
}
.header .nav__item--dropdown {
  position: relative;
}
.header .nav__item--dropdown:hover .nav__dropdown, .header .nav__item--dropdown:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.header .nav__item--dropdown:hover .nav__chevron, .header .nav__item--dropdown:focus-within .nav__chevron {
  transform: rotate(180deg);
}
.header .nav__dropdown-toggle {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.header .nav__chevron {
  font-size: 9px;
  transition: transform var(--t);
  opacity: 0.6;
}
.header .nav__dropdown {
  position: absolute;
  left: -80%;
  top: 100%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: var(--shadow-deep);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
}
.header .nav__dropdown::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  rotate: 45deg;
}
.header .nav__dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 10px;
}
.header .nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--t);
}
.header .nav__dropdown-item:hover {
  background: var(--white-soft);
}
.header .nav__dropdown-item strong {
  display: block;
  font-weight: 500;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 2px;
}

.toggler {
  background: none;
  border: none;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: none;
}
.toggler span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--accent);
  transition: var(--t);
}

.close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.13);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: none;
  flex-shrink: 0;
  transition: background var(--t), color var(--t);
}
.close-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.offcanvas {
  background: var(--charcoal);
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}
.offcanvas iframe {
  width: 100%;
  filter: grayscale(100%);
  border-radius: 8px;
}
.offcanvas .offcanvas-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
}
.offcanvas .offcanvas-header button {
  border-color: var(--border);
}
.offcanvas .offcanvas-body {
  padding: 16px 24px 32px;
}
.offcanvas .mobile-link {
  font-size: 15px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.62) !important;
  padding: 8px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  transition: color var(--t) !important;
}
.offcanvas .mobile-link:hover, .offcanvas .mobile-link.active {
  color: var(--white) !important;
}
.offcanvas .mobile-contact a, .offcanvas .mobile-contact p, .offcanvas .mobile-contact i, .offcanvas .mobile-contact strong, .offcanvas .mobile-contact div {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}
.offcanvas .mobile-accordion__chevron {
  font-size: 10px;
  transition: transform var(--t);
  opacity: 0.5;
}
.offcanvas .mobile-accordion.open .mobile-accordion__chevron {
  transform: rotate(180deg);
}
.offcanvas .mobile-accordion__list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
  overflow: hidden;
}
.offcanvas .mobile-accordion__list > * {
  overflow: hidden;
}
.offcanvas .mobile-accordion__list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--t), background var(--t);
  border-radius: var(--radius-sm);
}
.offcanvas .mobile-accordion__list a i {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  width: 16px;
}
.offcanvas .mobile-accordion__list a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}
.offcanvas .mobile-accordion__inner {
  overflow: hidden;
}
.offcanvas .mobile-accordion.open .mobile-accordion__list {
  grid-template-rows: 1fr;
}

.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 40px;
  background: radial-gradient(circle at 20% 30%, rgba(251, 102, 0, 0.18), transparent 40%), radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08), transparent 45%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 40px 20px;
}
.hero__left {
  color: var(--white);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 28px;
  padding: 10px 20px;
  border-radius: 25px;
  background: #1a3366;
}
.hero__heading {
  letter-spacing: -0.02em;
  font-size: 46px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.02;
  margin-bottom: 1.25rem;
}
.hero__heading span {
  color: var(--accent);
  text-shadow: 0 0 20px rgba(251, 102, 0, 0.4);
}
.hero__badge-tag {
  font-family: var(--ff-ui);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
}
.hero__sub {
  opacity: 0.85;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.hero__right {
  display: flex;
  justify-content: flex-end;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.45), transparent);
  animation: scrollPulse 2s ease infinite;
}
.hero .list {
  margin-bottom: 40px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.hero .list li i {
  color: var(--accent);
  margin-right: 5px;
}
.hero .whatsapp-container a {
  width: 40px;
  display: block;
}

.hero.common_banner {
  min-height: calc(65vh - 140px);
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
.stats {
  background: var(--white);
  padding: 20px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1.5px solid var(--border-soft);
  /* 🔵 Top accent bar */
}
.stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--blue-dark);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stats__item {
  padding: 24px 32px;
  text-align: left;
  position: relative;
  /* Divider */
}
.stats__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}
.stats {
  /* 🔵 NUMBER */
}
.stats__number {
  font-family: var(--ff-ui);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
}
.stats__number .suffix {
  font-size: 0.75em;
  font-weight: 700;
  color: var(--blue-dark);
}
.stats__label {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* 🔵 DARK VERSION */
.stats.dark {
  background: var(--blue-dark);
  padding: 50px 0;
}
.stats.dark .stats__number,
.stats.dark .suffix {
  color: var(--blue-light); /* 🔥 lighter blue highlight */
}
.stats.dark .stats__label {
  color: rgba(255, 255, 255, 0.7);
}
.stats.dark .stats__item:not(:last-child)::after {
  background: rgba(255, 255, 255, 0.15);
}

.services {
  padding: 50px 0;
}
.services .container-xl {
  background: #f9fafb;
  padding: 40px 30px;
}
.services .commonbtn {
  background: var(--blue-dark);
  box-shadow: none;
}
.services .commonbtn:hover {
  background: #09265f;
}
.services .service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
}
.services .service-card.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.services .service-card:nth-child(1) {
  transition-delay: 0s;
}
.services .service-card:nth-child(2) {
  transition-delay: 0.1s;
}
.services .service-card:nth-child(3) {
  transition-delay: 0.2s;
}
.services .service-card:nth-child(4) {
  transition-delay: 0s;
}
.services .service-card:nth-child(5) {
  transition-delay: 0.1s;
}
.services .service-card:nth-child(6) {
  transition-delay: 0.2s;
}
.services .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 48, 119, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
  border-radius: var(--radius-lg);
}
.services .service-card:hover {
  box-shadow: var(--shadow-deep);
  transform: translateY(-6px);
  border-color: rgba(11, 48, 119, 0.2);
}
.services .service-card:hover::before {
  opacity: 1;
}
.services .service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: var(--white);
  flex-shrink: 0;
  transition: transform var(--t), box-shadow var(--t);
}
.services .service-card__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}
.services .service-card:hover .services .service-card__icon {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(11, 48, 119, 0.25);
}
.services .service-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.services .service-card__desc {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.services .service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-dark);
  transition: gap var(--t), color var(--t);
}
.services .service-card__link svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--blue-dark);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--t);
}
.services .service-card:hover .services .service-card__link {
  gap: 10px;
}
.services .service-card:hover .services .service-card__link svg {
  transform: translateX(3px);
}

.steps {
  text-align: center;
}
.steps__row {
  margin-top: 40px;
}
.steps__item {
  padding: 10px 20px;
  transition: transform var(--t);
}
.steps__item:hover {
  transform: translateY(-6px);
}
.steps__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-accent);
  transition: transform var(--t), box-shadow var(--t);
}
.steps__icon i {
  transition: transform var(--t);
}
.steps__item:hover .steps__icon {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(251, 102, 0, 0.3);
}
.steps__item:hover .steps__icon i {
  transform: scale(1.1);
}
.steps__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}
.steps__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 auto;
}
@media (max-width: 992px) {
  .steps__col {
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .steps__icon {
    width: 56px;
    height: 56px;
    font-size: 18px;
  }
  .steps__title {
    font-size: 15px;
  }
  .steps__text {
    font-size: 13px;
  }
}

.testimonials {
  margin: 40px 0px;
}
.testimonials .container {
  background: #f9fafb;
  padding: 40px 30px;
}
.testimonials__row {
  margin-top: 40px;
}
.testimonials__col {
  margin-bottom: 24px;
}
.testimonials__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  height: 100%;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.testimonials__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
  border-color: rgba(11, 48, 119, 0.2);
}
.testimonials__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.testimonials__top img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 0 0 2px rgba(11, 48, 119, 0.08);
}
.testimonials__top h5 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  color: var(--blue-dark);
}
.testimonials__top span {
  font-size: 12px;
  color: var(--text-muted);
}
.testimonials__stars {
  color: var(--accent);
  font-size: 13px;
  margin-bottom: 10px;
}
.testimonials__stars i {
  margin-right: 2px;
}
.testimonials__text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-secondary);
}
@media (max-width: 576px) {
  .testimonials__card {
    padding: 18px;
  }
}

.cta-split {
  position: relative;
  overflow-x: hidden;
  /* 🔵 LEFT CONTENT */
}
.cta-split__content {
  background: var(--blue-gradient); /* 🔥 use system */
  color: var(--white);
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
  /* 💎 subtle overlay for depth */
}
.cta-split__content::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08), transparent 50%);
  pointer-events: none;
}
.cta-split__inner {
  max-width: 520px;
  position: relative;
  z-index: 1;
}
.cta-split {
  /* 🔥 BUTTON AREA */
}
.cta-split__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-split__actions .commonbtn.dark {
  background: var(--accent); /* 🟠 CTA stays orange */
}
.cta-split__actions .commonbtn.light {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  color: var(--white);
}
.cta-split__actions .commonbtn.light:hover {
  background: rgba(255, 255, 255, 0.2);
}
.cta-split {
  /* 🔵 RIGHT IMAGE */
}
.cta-split__media {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.cta-split__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform var(--t);
}
.cta-split__media {
  /* 💎 gradient overlay for blend */
}
.cta-split__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(11, 48, 119, 0.15), transparent 60%);
}
.cta-split__media:hover img {
  transform: scale(1.04);
}

.why-choose {
  position: relative;
  background: linear-gradient(180deg, #f9fafc 0%, #f4f6fb 100%);
  padding: 50px 0px;
}
.why-choose__row {
  margin-top: 50px;
}
.why-choose__col {
  margin-bottom: 24px;
}
.why-choose__card {
  position: relative;
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  text-align: center;
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  transition: all var(--t);
  overflow: hidden;
  height: 100%;
}
.why-choose__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, transparent, rgba(251, 102, 0, 0.2), transparent);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--t);
}
.why-choose__card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-deep);
}
.why-choose__card:hover::before {
  opacity: 1;
}
.why-choose__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #0f2557;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  position: relative;
  z-index: 1;
  transition: all var(--t);
}
.why-choose__icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.15;
  filter: blur(12px);
  z-index: -1;
  transition: all var(--t);
}
.why-choose__card:hover .why-choose__icon {
  transform: scale(1.1);
}
.why-choose__card:hover .why-choose__icon::after {
  opacity: 0.35;
  transform: scale(1.3);
}
.why-choose h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
}
.why-choose p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .why-choose__card {
    padding: 28px 20px;
  }
}

.faq-ultra {
  position: relative;
  overflow: hidden;
  padding: 50px 0px;
}
.faq-ultra__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(11, 48, 119, 0.18), transparent 40%), radial-gradient(circle at 80% 70%, rgba(127, 170, 230, 0.25), transparent 40%);
  background-size: 200% 200%;
  animation: gradientMove 6s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes gradientMove {
  from {
    background-position: 0% 0%, 100% 100%;
  }
  to {
    background-position: 100% 100%, 0% 0%;
  }
}
.faq-ultra__row {
  margin-top: 10px;
}
.faq-ultra__card {
  position: relative;
  padding: 26px;
  border-radius: 18px;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.05), -8px -8px 20px rgba(255, 255, 255, 0.6);
  transition: all var(--t);
  overflow: hidden;
}
.faq-ultra__card:hover {
  transform: translateY(-8px) scale(1.02);
  /* 🔵 blue glow instead of orange */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(11, 48, 119, 0.2);
}
.faq-ultra__card::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(127, 170, 230, 0.35), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.faq-ultra__card:hover::after {
  opacity: 1;
}
.faq-ultra__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 18px;
  transition: all var(--t);
}
.faq-ultra__icon i {
  transition: transform 0.4s ease;
}
.faq-ultra__card:hover .faq-ultra__icon {
  background: var(--blue-dark);
  color: var(--white);
}
.faq-ultra__card:hover .faq-ultra__icon i {
  transform: rotate(12deg) scale(1.2);
}
.faq-ultra {
  /* 🔵 TEXT */
}
.faq-ultra h5 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--blue-dark);
}
.faq-ultra p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-ultra {
  position: relative;
  overflow: hidden;
  padding: 50px 0px;
}
.contact-ultra__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(251, 102, 0, 0.15), transparent 40%), radial-gradient(circle at 80% 70%, rgba(15, 37, 87, 0.2), transparent 40%);
}
.contact-ultra__card {
  padding: 26px;
  border-radius: 18px;
  text-align: center;
  min-height: 228px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 6px 6px 16px rgba(0, 0, 0, 0.05), -6px -6px 16px rgba(255, 255, 255, 0.6);
  transition: all var(--t);
}
.contact-ultra__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.contact-ultra__card h6 {
  font-size: 18px;
  margin-top: 10px;
  font-weight: 600;
}
.contact-ultra__card p,
.contact-ultra__card a {
  font-size: 13px;
  color: var(--text-secondary);
}
.contact-ultra__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-subtle);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  transition: all var(--t);
}
.contact-ultra__icon i {
  transition: transform 0.4s ease;
}
.contact-ultra__card:hover .contact-ultra__icon {
  background: var(--accent);
  color: var(--white);
}
.contact-ultra__card:hover .contact-ultra__icon i {
  transform: rotate(10deg) scale(1.2);
}
.contact-ultra {
  /* 💎 FORM WRAP */
}
.contact-ultra__form-wrap {
  margin-top: 40px;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.06), -10px -10px 30px rgba(255, 255, 255, 0.7);
}
.contact-ultra .field {
  position: relative;
}
.contact-ultra .field input, .contact-ultra .field select,
.contact-ultra .field textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  outline: none;
  transition: all var(--t);
}
.contact-ultra .field input:focus, .contact-ultra .field select:focus,
.contact-ultra .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(251, 102, 0, 0.15);
}
.contact-ultra .field label:not(.select-label) {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: var(--text-muted);
  pointer-events: none;
  transition: all var(--t);
  background: transparent;
}
.contact-ultra .field textarea + label {
  top: 18px;
  transform: none;
}
.contact-ultra .field input:focus + label,
.contact-ultra .field input:valid + label,
.contact-ultra .field textarea:focus + label,
.contact-ultra .field textarea:valid + label {
  top: -8px;
  font-size: 11px;
  color: var(--accent);
  background: var(--white);
  padding: 0 6px;
}

.story-ultra {
  position: relative;
  overflow: hidden;
  padding: 50px 0px;
  /* 🔵 BACKGROUND */
}
.story-ultra__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(11, 48, 119, 0.14), transparent 40%), radial-gradient(circle at 80% 70%, rgba(127, 170, 230, 0.22), transparent 40%);
  z-index: 0;
}
.story-ultra .container {
  position: relative;
  z-index: 1;
}
.story-ultra {
  /* TEXT */
}
.story-ultra__content {
  max-width: 520px;
}
.story-ultra__content p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.story-ultra {
  /* 🔵 DIVIDER */
}
.story-ultra__divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-dark), transparent);
  margin: 18px 0 22px;
  border-radius: 2px;
}
.story-ultra {
  /* 💎 IMAGE */
}
.story-ultra__image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 500px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform var(--t);
}
.story-ultra__image-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.story-ultra__image-wrap {
  /* 🔵 subtle blue overlay */
}
.story-ultra__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 48, 119, 0.15), transparent 60%);
}
.story-ultra__image-wrap {
  /* 🔵 glow border */
}
.story-ultra__image-wrap::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(120deg, transparent, rgba(127, 170, 230, 0.5), transparent);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--t);
}
.story-ultra__image-wrap:hover {
  transform: translateY(-8px) scale(1.02);
}
.story-ultra__image-wrap:hover::before {
  opacity: 1;
}

.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 70px 0 30px;
}
.footer a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  transition: var(--t);
  font-weight: 400;
}
.footer a:hover {
  color: var(--accent);
}
.footer p {
  color: var(--silver);
  margin: 15px 0;
}
.footer__logo img {
  width: 80%;
}
.footer__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.footer__links li {
  margin-bottom: 6px;
}
.footer__links li a i {
  color: var(--accent);
  margin-right: 8px;
}
.footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}
.footer__social {
  display: flex;
  gap: 5px;
}
.footer__social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.footer__copy {
  margin-top: 20px;
  font-size: 12px;
  opacity: 0.6;
}

.team-section {
  background: var(--bg-soft);
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--t), box-shadow var(--t);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-deep);
}
.team-card__img {
  position: relative;
  overflow: hidden;
}
.team-card__img img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card__img .team-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  padding-bottom: 15px;
  opacity: 0;
  transition: opacity var(--t);
}
.team-card__img .team-card__overlay a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 14px;
  transition: all 0.3s ease;
}
.team-card__img .team-card__overlay a:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-3px);
}
.team-card:hover img {
  transform: scale(1.08);
}
.team-card:hover .team-card__overlay {
  opacity: 1;
}
.team-card__body {
  padding: 18px;
  text-align: center;
}
.team-card__body h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.team-card__body span {
  font-size: 13px;
  color: var(--text-secondary);
}

.why-section {
  background: linear-gradient(to bottom, var(--white), var(--bg-soft));
  overflow-x: hidden;
  /* 🔵 IMAGE */
}
.why-section .why-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  height: 100%;
}
.why-section .why-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.why-section .why-img {
  /* 🔵 blue overlay */
}
.why-section .why-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 48, 119, 0.18), transparent);
}
.why-section .why-img:hover img {
  transform: scale(1.06);
}
.why-section {
  /* WHY ITEMS */
}
.why-section .why-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.why-section .why-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-md);
  transition: all var(--t);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-soft);
}
.why-section .why-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-card);
  /* 🔵 blue border */
  border-color: rgba(11, 48, 119, 0.25);
}
.why-section .why-item {
  /* 🔵 ICON */
}
.why-section .why-item__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-dark);
  color: var(--white);
  font-size: 16px;
  flex-shrink: 0;
  /* 🔵 soft glow */
  box-shadow: 0 6px 16px rgba(11, 48, 119, 0.25);
  transition: transform 0.3s ease;
}
.why-section .why-item:hover .why-section .why-item__icon {
  transform: scale(1.1) rotate(6deg);
}
.why-section .why-item__content h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 4px;
}
.why-section .why-item__content p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

.logistics-section {
  position: relative;
  overflow: hidden;
  /* 🔵 BACKGROUND BLOBS */
}
.logistics-section::before, .logistics-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
}
.logistics-section::before {
  width: 400px;
  height: 400px;
  background: rgba(11, 48, 119, 0.14); /* 🔵 blue */
  top: -120px;
  left: -120px;
}
.logistics-section::after {
  width: 500px;
  height: 500px;
  background: rgba(127, 170, 230, 0.18); /* 🔵 light blue */
  bottom: -140px;
  right: -140px;
}
.logistics-section .service-hero {
  margin-top: 50px;
  row-gap: 20px;
}
.logistics-section .service-hero.reverse {
  flex-wrap: wrap-reverse;
}
.logistics-section .service-hero {
  /* 🔵 IMAGE */
}
.logistics-section .service-hero .service-hero__media {
  -o-object-fit: cover;
     object-fit: cover;
}
.logistics-section .service-hero .service-hero__media img {
  border-radius: 10px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* subtle blue overlay */
  box-shadow: 0 10px 30px rgba(11, 48, 119, 0.12);
}
.logistics-section .service-hero {
  /* 🔵 ICON */
}
.logistics-section .service-hero .section-icon {
  display: block;
  width: 60px;
  height: 60px;
  background: var(--blue-dark);
  border-radius: 10px;
  color: var(--white);
  text-align: center;
  line-height: 60px;
  font-size: 25px;
  margin-bottom: 20px;
  /* soft glow */
  box-shadow: 0 8px 20px rgba(11, 48, 119, 0.25);
}
.logistics-section .service-hero {
  /* 🔵 LIST */
}
.logistics-section .service-hero ul {
  margin-bottom: 30px;
}
.logistics-section .service-hero ul li {
  margin-bottom: 6px;
  color: var(--blue-dark);
}
.logistics-section .service-hero ul li i {
  color: var(--blue-dark); /* 🔵 icon bullet */
  margin-right: 10px;
}
.logistics-section .service-hero {
  /* 🔵 TITLE */
}
.logistics-section .service-hero .section-title {
  font-size: 2rem;
  color: var(--blue-dark);
}

.coverage-section {
  background: linear-gradient(to bottom, var(--white), var(--bg-soft));
}
.coverage-section .coverage-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  transition: all var(--t);
  height: 100%;
}
.coverage-section .coverage-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-dark);
  color: var(--white);
  font-size: 16px;
  flex-shrink: 0;
  /* soft blue glow */
  box-shadow: 0 6px 16px rgba(11, 48, 119, 0.25);
  transition: transform 0.3s ease;
}
.coverage-section .coverage-card:hover .coverage-section .coverage-card__icon {
  transform: scale(1.1) rotate(6deg);
}
.coverage-section .coverage-card__body h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 6px;
}
.coverage-section .coverage-card__body p {
  color: var(--text-secondary);
  margin-bottom: 10px;
}
.coverage-section {
  /* META */
}
.coverage-section .coverage-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.coverage-section .coverage-meta span {
  color: var(--text-muted);
}
.coverage-section .coverage-meta span strong {
  color: var(--blue-dark);
  font-weight: 500;
}
.coverage-section {
  /* 🔵 HOVER STATE */
}
.coverage-section .coverage-card:hover {
  background: linear-gradient(135deg, rgba(127, 170, 230, 0.12), rgba(255, 255, 255, 0.95));
  transform: translateY(-6px);
  border-color: rgba(11, 48, 119, 0.25);
  /* refined blue shadow */
  box-shadow: 0 12px 30px rgba(11, 48, 119, 0.18), 0 0 0 1px rgba(11, 48, 119, 0.08);
}

.shipping {
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
  /* 🔵 subtle blue glow */
}
.shipping::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(11, 48, 119, 0.18);
  filter: blur(120px);
  top: -100px;
  right: -100px;
  z-index: 0;
}
.shipping .container {
  position: relative;
  z-index: 2;
}

/* ── Card ───────────────────────── */
.shipping-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px 16px;
  text-align: center;
  border: 1px solid var(--border-soft);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
}
.shipping-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-deep);
  /* 🔵 blue border */
  border-color: rgba(11, 48, 119, 0.25);
}
.shipping-card {
  /* 🔵 Glow hover layer */
}
.shipping-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(127, 170, 230, 0.22), transparent 70%);
  opacity: 0;
  transition: opacity var(--t);
}
.shipping-card:hover::after {
  opacity: 1;
}
.shipping-card {
  /* 🔵 Icon */
}
.shipping-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 24px;
  transition: transform var(--t), background var(--t), color var(--t);
}
.shipping-card__icon i {
  transition: transform var(--t);
}
.shipping-card:hover .shipping-card__icon {
  background: var(--blue-dark);
  color: var(--white);
}
.shipping-card:hover .shipping-card__icon i {
  transform: scale(1.15) rotate(5deg);
}
.shipping-card {
  /* 🔵 Title */
}
.shipping-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 10px;
}
.shipping-card {
  /* Text */
}
.shipping-card__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
}
.shipping-card {
  /* 🔵 Meta */
}
.shipping-card__meta {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-dark);
  letter-spacing: 0.04em;
}

.blog {
  background: var(--bg-soft);
  /* ── Filter Buttons ───────────────── */
}
.blog .blog-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.blog .blog-filter .filter-btn {
  border: none;
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 999px;
  background: #eef2f8;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--t);
}
.blog .blog-filter .filter-btn.active, .blog .blog-filter .filter-btn:hover {
  background: var(--blue-dark);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(11, 48, 119, 0.25);
}
.blog {
  /* ── Blog Card ───────────────── */
}
.blog .blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  transition: var(--t);
}
.blog .blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-deep);
}
.blog .blog-card__media {
  overflow: hidden;
}
.blog .blog-card__media img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.blog .blog-card:hover img {
  transform: scale(1.08);
}
.blog .blog-card__body {
  padding: 22px;
}
.blog .blog-card {
  /* 🔵 TAG */
}
.blog .blog-card__tag {
  display: inline-block;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  margin-bottom: 10px;
  font-weight: 500;
}
.blog .blog-card {
  /* 🔵 TITLE */
}
.blog .blog-card__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--blue-dark);
}
.blog .blog-card__text {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.blog .blog-card__meta {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
}
.blog .blog-card__meta i {
  margin-right: 5px;
}
.blog .blog-card {
  /* 🔵 LINK */
}
.blog .blog-card__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--blue-dark);
}
.blog .blog-card__link i {
  margin-left: 5px;
  transition: transform var(--t);
}
.blog .blog-card__link:hover i {
  transform: translateX(4px);
}
.blog {
  /* ── Hidden Animation State ───────────────── */
}
.blog .blog-item {
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.blog .blog-item.hide {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
}

.faq {
  background: var(--bg-soft);
  /* ── Group ───────────────── */
}
.faq .faq-group {
  margin-bottom: 40px;
}
.faq .faq-group__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 16px;
}
.faq {
  /* ── Item ───────────────── */
}
.faq .faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--t), border-color var(--t);
}
.faq .faq-item:hover {
  border-color: rgba(11, 48, 119, 0.25);
  box-shadow: var(--shadow-card);
}
.faq .faq-item.active {
  border-color: var(--blue-dark);
  /* 🔵 soft active glow */
  box-shadow: 0 8px 24px rgba(11, 48, 119, 0.18);
}
.faq {
  /* ── Question ───────────────── */
}
.faq .faq-question {
  width: 100%;
  padding: 16px 20px;
  font-weight: 500;
  color: var(--blue-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
}
.faq .faq-question i {
  font-size: 12px;
  color: var(--blue-dark);
  transition: transform var(--t);
}
.faq {
  /* Rotate icon */
}
.faq .faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq {
  /* ── Answer ───────────────── */
}
.faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq {
  /* Open state */
}
.faq .faq-item.active .faq-answer {
  max-height: 200px;
  padding: 10px 20px 18px;
}

.contact-pro {
  padding: 50px 0px;
}
.contact-pro__form-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.contact-pro__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--blue-dark);
}
.contact-pro label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
  color: var(--blue-dark);
}
.contact-pro .error {
  color: red;
}
.contact-pro .iti.iti--allow-dropdown {
  width: 100%;
}
.contact-pro .checkbox {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.contact-pro .checkbox input {
  accent-color: var(--blue-dark);
}
.contact-pro .form-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-secondary);
}
.contact-pro .form-trust span {
  background: var(--blue-soft);
  padding: 6px 10px;
  border-radius: 6px;
  color: var(--blue-dark);
  font-weight: 500;
}
.contact-pro input:not([type=checkbox], [type=radio]),
.contact-pro textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #f4f7fb;
  font-size: 13px;
  transition: var(--t);
}
.contact-pro input:not([type=checkbox], [type=radio]):focus,
.contact-pro textarea:focus {
  border-color: var(--blue-dark);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(11, 48, 119, 0.15);
}
.contact-pro textarea {
  resize: none;
}
.contact-pro .checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
}
.contact-pro select {
  width: 100%;
  padding: 12px 40px 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #f4f7fb;
  font-size: 13px;
  font-family: var(--ff-ui);
  color: var(--text-primary);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: var(--t);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7L10 12L15 7' stroke='%230b3077' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}
.contact-pro select:focus {
  border-color: var(--blue-dark);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(11, 48, 119, 0.15);
  outline: none;
}
.contact-pro select:hover {
  border-color: rgba(11, 48, 119, 0.25);
}
.contact-pro__info {
  background: var(--white);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.contact-pro__info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}
.contact-pro__info-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(11, 48, 119, 0.18);
}
.contact-pro__info-item h6 {
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--blue-dark);
}
.contact-pro__info-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.contact-pro__cta {
  margin-top: 20px;
  padding: 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-dark), #1f3f8f);
  color: var(--white);
  box-shadow: var(--shadow-deep);
}
.contact-pro__cta h5 {
  font-size: 15px;
  margin-bottom: 6px;
}
.contact-pro__cta p {
  font-size: 12.5px;
  opacity: 0.85;
  margin-bottom: 10px;
}
.contact-pro__cta strong {
  display: block;
  font-size: 18px;
  color: var(--blue-light);
  margin-bottom: 4px;
}
.contact-pro__cta span {
  font-size: 11px;
  opacity: 0.7;
}
@media (max-width: 992px) {
  .contact-pro__cta {
    text-align: center;
  }
}

/* Hide Google branding visually (autocomplete dropdown handled later) */
.pac-container {
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  font-family: inherit;
}

.pac-item {
  padding: 5px 14px;
  cursor: pointer;
}

.pac-item:hover {
  background-color: #f5f5f5;
}

.pac-logo::after {
  display: none;
}

.cta-lite {
  padding: 60px 0;
}
.cta-lite__box {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0b3077, #7faae6);
  color: #fff;
  box-shadow: var(--shadow-deep);
  gap: 25px;
}
.cta-lite__content {
  max-width: 650px;
}
.cta-lite__content h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}
.cta-lite__content p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
  margin: 0;
}
.cta-lite__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-lite__actions .commonbtn.outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.cta-lite__actions .commonbtn.outline:hover {
  background: #fff;
  color: #0b3077;
}

.legal-container {
  margin: 50px auto;
}
.legal-container .legal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.legal-container h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--charcoal);
}
.legal-container h3 {
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.legal-container p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 10px;
}
.legal-container ul {
  padding-left: 18px;
  margin-bottom: 10px;
}
.legal-container ul li {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 4px;
  list-style-type: disc;
}

@media (max-width: 1200px) {
  .cta-split__content {
    padding: 80px 60px;
  }
}
@media (max-width: 991px) {
  .hero__right {
    justify-content: center;
  }
  .cta-split__content {
    padding: 60px 40px;
  }
  .cta-split__media {
    height: 420px;
  }
  .story-ultra__content {
    max-width: 100%;
    text-align: center;
  }
  .story-ultra__divider {
    margin-left: auto;
    margin-right: auto;
  }
  .logistics-section .service-card {
    grid-template-columns: 1fr 1fr;
  }
  .logistics-section .service-card__img {
    height: auto;
  }
  .logistics-section .service-card:nth-child(even) {
    direction: rtl;
  }
  .logistics-section .service-card:nth-child(even) .service-card__content {
    direction: ltr;
  }
}
@media (max-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats__item:nth-child(2)::after, .stats__item:nth-child(4)::after {
    display: none;
  }
  .stats__item:nth-child(1), .stats__item:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }
  .hero .hero__heading {
    font-size: 33px;
  }
  .section, .section-pad {
    padding: 30px 0px;
  }
  .contact-ultra__card {
    min-height: auto;
  }
  .logistics-section .service-hero {
    margin-top: 20px;
  }
  .cta-lite__box {
    padding: 30px;
  }
}
@media (max-width: 480px) {
  .stats__item::after {
    display: none !important;
  }
  .stats__item {
    border-bottom: 1px solid var(--border);
  }
  .cta-split__content {
    padding: 50px 24px;
  }
  .cta-split__title {
    font-size: 24px;
  }
  .cta-split__text {
    font-size: 14px;
  }
  .cta-split__media {
    height: 300px;
  }
  .coverage-section .coverage-card__icon {
    display: none;
  }
  .testimonials {
    margin: 0;
    padding-top: 0px;
  }
  .steps {
    padding-bottom: 0px;
  }
}/*# sourceMappingURL=style.css.map */