:root {
  --brand-blue: #2e39dc;
  --brand-blue-deep: #1d259e;
  --brand-orange: #ff7a00;
  --brand-orange-soft: #ffb35b;
  --brand-white: #ffffff;
  --ink-950: #0f1227;
  --ink-800: #2b3052;
  --ink-700: #464e78;
  --ink-500: #7480ab;
  --surface-100: #f5f7ff;
  --surface-200: #e8edff;
  --shadow-lg: 0 30px 80px rgba(19, 28, 74, 0.18);
  --shadow-md: 0 18px 45px rgba(35, 46, 118, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --nav-height: 92px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink-800);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 122, 0, 0.16), transparent 28%),
    radial-gradient(circle at 100% 8%, rgba(46, 57, 220, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
  overflow-x: hidden;
}

html.preloader-active,
html.preloader-active body {
  overflow: hidden;
}

.site-preloader {
  display: none;
}

.has-js .site-preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 122, 0, 0.2), transparent 24%),
    radial-gradient(circle at 84% 10%, rgba(46, 57, 220, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 247, 255, 0.98) 100%);
  backdrop-filter: blur(14px);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

html.preloader-ready .site-preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-preloader__inner {
  width: min(100%, 470px);
  display: grid;
  justify-items: center;
  gap: 1.25rem;
  text-align: center;
  padding: clamp(1.75rem, 3vw, 2.35rem);
  border-radius: 30px;
  /* background: rgba(255, 255, 255, 0.78); */
  /* border: 1px solid rgba(46, 57, 220, 0.12);
  box-shadow:
    0 24px 60px rgba(28, 38, 110, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.72); */
}

.site-preloader__visual {
  position: relative;
  width: clamp(132px, 24vw, 160px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.site-preloader__pulse {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 179, 91, 0.34) 0%, rgba(46, 57, 220, 0.12) 58%, transparent 76%);
  filter: blur(5px);
  animation: loaderPulse 2.2s ease-in-out infinite;
}

.site-preloader__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(46, 57, 220, 0.16);
}

.site-preloader__ring::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.88);
}

.site-preloader__ring--outer {
  animation: spinLoader 10s linear infinite;
}

.site-preloader__ring--outer::before {
  background: linear-gradient(135deg, var(--brand-orange), #ffbe74);
  box-shadow:
    0 0 0 5px rgba(255, 255, 255, 0.88),
    0 10px 22px rgba(255, 122, 0, 0.24);
}

.site-preloader__ring--inner {
  inset: 18px;
  border-style: dashed;
  border-color: rgba(255, 122, 0, 0.26);
  animation: spinLoaderReverse 7s linear infinite;
}

.site-preloader__ring--inner::before {
  background: linear-gradient(135deg, var(--brand-blue), #7f8bff);
  box-shadow:
    0 0 0 5px rgba(255, 255, 255, 0.88),
    0 10px 22px rgba(46, 57, 220, 0.22);
}

.site-preloader__badge {
  position: relative;
  z-index: 1;
  width: clamp(82px, 18vw, 96px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #eef3ff 100%);
  box-shadow:
    0 18px 34px rgba(28, 39, 110, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  animation: floatSoft 3.2s ease-in-out infinite;
}

.site-preloader__badge::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(46, 57, 220, 0.08), rgba(255, 122, 0, 0.14));
  z-index: -1;
}

.site-preloader__badge img {
  width: clamp(42px, 10vw, 52px);
  height: auto;
  filter: drop-shadow(0 10px 16px rgba(46, 57, 220, 0.2));
}

.site-preloader__copy {
  display: grid;
  gap: 0.35rem;
}

.site-preloader__eyebrow {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-blue);
}

.site-preloader__copy strong {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  line-height: 1.3;
  color: var(--ink-950);
}

.site-preloader__copy p {
  margin: 0;
  max-width: 28ch;
  color: var(--ink-700);
  line-height: 1.65;
}

.site-preloader__track {
  width: min(220px, 100%);
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(46, 57, 220, 0.08);
}

.site-preloader__track span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-blue));
  animation: loaderTrack 1.35s ease-in-out infinite;
}

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

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

section[id] {
  scroll-margin-top: calc(var(--nav-height) + 18px);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 1000;
  background: var(--ink-950);
  color: #fff;
  padding: 12px 18px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

.navbar {
  min-height: var(--nav-height);
  transition: background-color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(57, 72, 159, 0.08);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 35px rgba(28, 39, 110, 0.08);
}

.navbar-brand img,
.footer-brand img {
  width: 300px;
}

.navbar-toggler {
  border: 0;
  box-shadow: none !important;
  padding: 0.35rem 0.5rem;
}

.navbar-toggler .navbar-toggler-icon {
  background-image: none;
  width: 1.6rem;
  height: 1.6rem;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after,
.navbar-toggler .navbar-toggler-icon {
  border-top: 2px solid var(--brand-blue);
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
}

.navbar-toggler .navbar-toggler-icon::before {
  top: 0.45rem;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 0.9rem;
}

.navbar-nav {
  position: relative;
  gap: 0.4rem;
}

.nav-item,
.nav-link {
  position: relative;
  z-index: 1;
}

.nav-indicator {
  position: absolute;
  list-style: none;
  top: 8px;
  left: 0;
  height: calc(100% - 16px);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-blue), #5764ff);
  box-shadow: 0 18px 36px rgba(46, 57, 220, 0.22);
  transition:
    transform 0.55s cubic-bezier(0.2, 0.92, 0.22, 1),
    width 0.55s cubic-bezier(0.2, 0.92, 0.22, 1),
    opacity 0.25s ease;
  opacity: 0;
  pointer-events: none;
}

.nav-link {
  padding: 0.75rem 1rem !important;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink-800);
  border-radius: 999px;
  transition: color 0.35s ease, background-color 0.35s ease, transform 0.35s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--brand-blue);
  background: rgba(46, 57, 220, 0.07);
}

.nav-link.is-active {
  color: #fff;
  background: transparent;
  box-shadow: none;
}

.btn {
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0.6rem 1.4rem;
  border-width: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-brand {
      font-size: 17px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-orange), #ff9533 52%, #ffb65d);
  /* box-shadow: 0 18px 35px rgba(255, 122, 0, 0.28); */
}

.btn-brand:hover,
.btn-brand:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue-deep), #2e39dc 52%, #2e39dc);
  background-color: var(--brand-blue);
  /* box-shadow: 0 24px 42px rgba(255, 122, 0, 0.34); */
}

.btn-outline-brand {
      font-size: 17px;
  color: var(--brand-blue);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(46, 57, 220, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus-visible {
  color: var(--brand-blue);
  background: #fff;
}

.section-shell,
.section {
  position: relative;
}

.section {
  padding: 110px 0;
}

.section-light {
  background: transparent;
}

.section-accent {
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 122, 0, 0.18), transparent 24%),
    radial-gradient(circle at 100% 82%, rgba(46, 57, 220, 0.16), transparent 22%),
    linear-gradient(180deg, #f9fbff 0%, #f1f5ff 100%);
}

.section-dark {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 122, 0, 0.16), transparent 22%),
    radial-gradient(circle at 92% 26%, rgba(86, 100, 255, 0.22), transparent 24%),
    linear-gradient(145deg, #121735 0%, #1a1f49 60%, #20265a 100%);
  color: rgba(255, 255, 255, 0.92);
}

.section-blog {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(46, 57, 220, 0.05) 100%);
  padding-top: 0px;
}

.section-contact {
  background:
    radial-gradient(circle at 0% 100%, rgba(46, 57, 220, 0.18), transparent 30%),
    radial-gradient(circle at 100% 0%, rgba(255, 122, 0, 0.2), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.section-kicker,
.panel-label,
.blog-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
#about .panel-label{
  font-size: 21px;
      letter-spacing: 1px;
}

.section-kicker::before,
.panel-label::before,
.blog-tag::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-blue));
  box-shadow: 0 0 18px rgba(255, 122, 0, 0.26);
}

.section-kicker {
  color: var(--brand-blue);
}

.section-header,
.section-intro {
  max-width: 1260px;
}

#about {
  padding-top: 150px;
}

.section-header {
  text-align: center;
  margin: 0 auto 3rem;
}

.section-header--left {
  text-align: left;
  margin: 0 0 2.5rem;
}

.section-header p,
.section-intro p,
.faq-side p,
.contact-card p {
  color: var(--ink-700);
  font-size: 1.02rem;
  line-height: 1.8;
}

.section-dark .section-kicker,
.section-dark .section-intro p,
.section-dark .delivery-card p,
.section-dark .coverage-strip p,
.section-dark .coverage-strip .panel-label {
  color: rgba(255, 255, 255, 0.85);
}

.section-dark .section-kicker::before,
.section-dark .panel-label::before {
  background: linear-gradient(135deg, #fff, var(--brand-orange));
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.12;
  color: var(--ink-950);
  padding-bottom: 10px;
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 35px;
  margin-top: 0.7rem;
}

h3 {
  font-size: 1.35rem;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.hero-section {
  min-height: 100vh;
  padding: calc(var(--nav-height) + 54px) 0 0px;
  display: flex;
  align-items: center;
}
.hero-section .col-lg-7{
  margin: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background-image: url('../img/Banner-1.jpg');
      background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  /* background:
    radial-gradient(circle at 18% 20%, rgba(255, 122, 0, 0.3), transparent 22%),
    radial-gradient(circle at 85% 20%, rgba(46, 57, 220, 0.32), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 20%, rgba(255, 245, 235, 0.92) 54%, rgba(235, 240, 255, 0.96) 100%); */
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(33, 45, 132, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 45, 132, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at center, black 55%, transparent 98%);
  pointer-events: none;
}

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

.hero-copy h1 {
  font-size: 40px;
      padding-top: 10px;
}

.hero-lead {
  /* margin-top: 1.35rem; */
  max-width: 660px;
      color: #000000cc;
    font-size: 18px;
    line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-pill-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(43, 59, 162, 0.08);
  box-shadow: 0 18px 40px rgba(26, 36, 102, 0.08);
  font-weight: 700;
  color: var(--ink-800);
}

.hero-pill-row i {
  color: var(--brand-orange);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-xl);
  /* box-shadow: var(--shadow-lg); */
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-main {
  right: 0;
  top: 28px;
  width: min(88%, 540px);
  aspect-ratio: 1.05;
}

.hero-card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 16, 39, 0.05) 0%, rgba(11, 16, 39, 0.18) 100%),
    linear-gradient(135deg, rgba(46, 57, 220, 0.08), rgba(255, 122, 0, 0.08));
}

.hero-card-floating {
  left: 0;
  top: 190px;
  width: min(54%, 290px);
  padding: 1.35rem;
  background: rgba(17, 24, 66, 0.88);
  color: #fff;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.mini-stat+.mini-stat {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mini-stat__label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.35rem;
}

.hero-card-brochure {
  right: 10%;
  bottom: 8px;
  width: min(38%, 220px);
  aspect-ratio: 0.82;
  border: 10px solid rgba(255, 255, 255, 0.9);
}

.hero-badge {
  position: absolute;
  right: 0;
  bottom: -6px;
  padding: 1rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.95), rgba(46, 57, 220, 0.95));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 22px 44px rgba(33, 44, 121, 0.28);
  animation: floatSoft 6s ease-in-out infinite;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
      position: absolute;
    bottom: -92%;
}

.hero-metrics article {
  padding: 30px 1.5rem;
  border-radius: var(--radius-lg);
  background: #fff;
  /* background: rgba(255, 255, 255, 0.82); */
  border: 1px solid rgba(45, 58, 159, 0.08);
  box-shadow: var(--shadow-md);
}

.hero-metrics strong {
  display: block;
  color: var(--brand-blue);
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.hero-metrics span {
  color: var(--ink-700);
  line-height: 1.7;
}

.about-visual-layout,
.about-copy-card,
.contact-form-card {
  height: 100%;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(46, 57, 220, 0.08);
  box-shadow: var(--shadow-md);
}

.about-visual-layout {
  padding: 18px;
  display: grid;
  gap: 18px;
}

.about-visual-main,
.about-visual-secondary {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  /* box-shadow: 0 18px 44px rgba(33, 44, 121, 0.12); */
}

.about-visual-main {
  min-height: 430px;
}

.about-visual-main img,
.about-visual-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-visual-bottom {
  display: grid;
  grid-template-columns: 2.1fr 0.9fr;
  gap: 18px;
}

.about-visual-secondary {
  min-height: 230px;
}

.about-quick-card {
  padding: 1.4rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(46, 57, 220, 0.07), rgba(255, 122, 0, 0.08));
  border: 1px solid rgba(46, 57, 220, 0.08);
}

.about-copy-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-copy-intro h3 {
  margin-top: 0.8rem;
  font-size: clamp(1.35rem, 1.05rem + 0.95vw, 1.95rem);
  line-height: 1.25;
  padding-bottom: 0;
}

.about-copy-intro p {
  margin: 1rem 0 0;
  color: var(--ink-700);
  line-height: 1.85;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0;
}

.mission-grid--about {
  margin-top: 0;
  grid-template-columns: 1fr;
  gap: 18px;
}

.support-panel--about {
  margin-top: 0;
  padding: 1.9rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 255, 0.98));
}

.glass-panel--about {
  padding: 1.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.98));
}

.glass-panel--about h3,
.support-panel--about h3 {
  margin-top: 0.8rem;
  margin-bottom: 0;
  font-size: 1.32rem;
  line-height: 1.35;
  padding-bottom: 0;
}

.glass-panel--about p {
  margin: 0.9rem 0 1rem;
}

.support-panel-copy {
  margin: 0.85rem 0 1rem;
  color: var(--ink-700);
  line-height: 1.8;
}

.support-list--about-panel {
  gap: 0.65rem;
}

.support-list--compact {
  gap: 0.7rem;
  margin-top: 1rem;
}

.glass-panel,
.support-panel,
.delivery-card,
.faq-side__card,
.contact-card,
.map-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(46, 57, 220, 0.08);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.glass-panel {
  padding: 1.5rem;
}

.glass-panel p {
  margin: 0.85rem 0 0;
  color: var(--ink-700);
  line-height: 1.8;
}

.support-panel {
  padding: 1.7rem; 
}

.support-panel h3 {
  margin-bottom: 1rem;
}

.support-list {
  padding-left: 1.1rem;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  color: var(--ink-700);
  line-height: 1.8;
}

.service-card {
  height: 100%;
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(46, 57, 220, 0.09);
  box-shadow: 0 20px 44px rgba(26, 36, 102, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 122, 0, 0.24);
  box-shadow: 0 28px 48px rgba(31, 42, 118, 0.12);
}

.service-icon {
  width: 62px;
  height: 62px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1.15rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.14), rgba(46, 57, 220, 0.12));
  color: var(--brand-blue);
  font-size: 1.4rem;
}

.service-card p {
  margin-top: 0.8rem;
  color: var(--ink-700);
  line-height: 1.8;
}

.delivery-card {
  padding: 1.7rem;
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.delivery-card h3 {
  margin-bottom: 0.8rem;
}

.delivery-card ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.8rem;
  line-height: 1.75;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.process-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.process-card span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.95), rgba(255, 172, 87, 0.95));
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 800;
}

.process-card p {
  margin: 0.9rem 0 0;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

.coverage-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.coverage-strip>div {
  padding: 1.35rem 1.45rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.coverage-strip p {
  margin: 0.75rem 0 0;
  line-height: 1.75;
}

.faq-side {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.faq-ph {}

.faq-side__card {
  display: grid;
  gap: 0.7rem;
  padding: 1.4rem;
  margin-top: 1.8rem;
}

.faq-side__card strong {
  color: var(--ink-950);
  font-family: "Sora", sans-serif;
}

.faq-side__card a {
  font-weight: 700;
  color: var(--brand-blue);
}

.custom-accordion .accordion-item {
  margin-bottom: 1rem;
  border: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 38px rgba(35, 46, 118, 0.08);
}

.custom-accordion .accordion-button {
  padding: 1.35rem 1.5rem;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  color: var(--ink-950);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--brand-blue);
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.08), rgba(46, 57, 220, 0.08));
}

.custom-accordion .accordion-body {
  padding: 0 1.5rem 1.4rem;
  color: var(--ink-700);
  line-height: 1.8;
}

.custom-accordion .accordion-body a {
  color: var(--brand-blue);
  font-weight: 800;
}

.blog-card {
  height: 100%;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 246, 255, 0.96) 100%);
  border: 1px solid rgba(46, 57, 220, 0.09);
  box-shadow: 0 18px 38px rgba(35, 46, 118, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 48px rgba(35, 46, 118, 0.12);
}

.blog-card .blog-tag {
  color: var(--brand-orange);
}

.blog-card h3 {
  margin-top: 1rem;
}

.blog-card p {
  margin: 1rem 0 1.35rem;
  color: var(--ink-700);
  line-height: 1.85;
}

.blog-card a {
  color: var(--brand-blue);
  font-weight: 800;
}

.contact-card,
.map-card {
  height: 100%;
}

.contact-card {
  padding: 2rem;
}

.contact-card--info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
}

.person-card {
  margin: 1.4rem 0 1.2rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(46, 57, 220, 0.08), rgba(255, 122, 0, 0.08));
  display: grid;
  gap: 0.25rem;
}

.person-card strong {
  font-family: "Sora", sans-serif;
  color: var(--ink-950);
}

.person-card span {
  color: var(--ink-700);
  font-weight: 700;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  color: var(--ink-800);
  line-height: 1.8;
}

.contact-list i {
  width: 22px;
  margin-top: 0.2rem;
  color: var(--brand-orange);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.contact-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.contact-trust span {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(46, 57, 220, 0.08);
  color: var(--brand-blue);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-quick-grid article {
  padding: 1rem 0.9rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(46, 57, 220, 0.08), rgba(255, 122, 0, 0.1));
  text-align: center;
}

.contact-quick-grid strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  color: var(--ink-950);
  margin-bottom: 6px;
}

.contact-quick-grid span {
  color: var(--ink-700);
  font-weight: 700;
  font-size: 14px;
}

.contact-form-card {
  padding: 2rem;
}

.contact-form .form-label {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink-800);
  margin-bottom: 0.55rem;
}

.contact-form .form-control,
.contact-form .form-select {
  min-height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(46, 57, 220, 0.14);
  background: #fff;
  color: var(--ink-800);
  padding: 0.9rem 1rem;
  box-shadow: none;
}

.contact-form textarea.form-control {
  min-height: 170px;
  resize: vertical;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: rgba(46, 57, 220, 0.36);
  box-shadow: 0 0 0 4px rgba(46, 57, 220, 0.08);
}

.contact-form-note {
  color: var(--ink-700);
  font-size: 14px;
  line-height: 1.7;
}

.map-card {
  overflow: hidden;
  min-height: 100%;
}

.map-card iframe {
  width: 100%;
  min-height: 100%;
  height: 100%;
  border: 0;
  min-height: 520px;
}

.site-footer {
  padding: 68px 0 28px;
  color: rgba(255, 255, 255, 0.8);
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 122, 0, 0.18), transparent 24%),
    radial-gradient(circle at 100% 0%, rgba(81, 93, 255, 0.2), transparent 28%),
    linear-gradient(180deg, #121735 0%, #0f132d 100%);
}

.site-footer p,
.site-footer span,
.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
  color: #fff;
  font-size: 1.02rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

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

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.footer-social a,
.footer-social button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 0;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.footer-social a:hover,
.footer-social button:hover {
  transform: translateY(-3px);
  background: rgba(255, 122, 0, 0.9);
}

.footer-bottom a {
  color: #fff;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1), transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatSoft {

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

  50% {
    transform: translateY(-8px);
  }
}

@keyframes loaderPulse {

  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.92);
  }

  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes spinLoader {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes spinLoaderReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes loaderTrack {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(260%);
  }
}

@media (max-width: 1199.98px) {
  :root {
    --nav-height: 86px;
  }

  .navbar-brand img,
  .footer-brand img {
    width: 205px;
  }

  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 38px rgba(25, 35, 105, 0.12);
  }

  .nav-indicator {
    display: none;
  }

  .nav-link.is-active {
    background: linear-gradient(135deg, var(--brand-blue), #5764ff);
    /* box-shadow: 0 18px 36px rgba(46, 57, 220, 0.2); */
  }

  .faq-side {
    position: static;
  }
}

@media (max-width: 991.98px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-section {
    min-height: auto;
    padding-bottom: 72px;
  }

  .hero-visual {
    min-height: 720px;
  }

  .hero-card-main {
    width: min(100%, 540px);
  }

  .hero-card-floating {
    top: auto;
    bottom: 180px;
    width: min(62%, 320px);
  }

  .hero-card-brochure {
    right: 0;
    bottom: 22px;
  }

  .hero-metrics,
  .mission-grid,
  .process-grid,
  .coverage-strip {
    grid-template-columns: 1fr;
  }

  .about-visual-bottom,
  .contact-quick-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 84px 0;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions,
  .contact-actions,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-card-main {
    width: 100%;
    right: auto;
    left: 0;
  }

  .hero-card-floating {
    width: 82%;
    bottom: 116px;
  }

  .hero-card-brochure {
    width: 40%;
    bottom: 10px;
  }

  .hero-badge {
    font-size: 0.92rem;
    padding: 0.85rem 1.1rem;
  }

  .service-card,
  .blog-card,
  .contact-card,
  .contact-form-card,
  .about-copy-card {
    padding: 1.5rem;
  }

  .map-card iframe {
    min-height: 360px;
  }
}

@media (max-width: 575.98px) {
  :root {
    --nav-height: 80px;
  }

  .navbar-brand img,
  .footer-brand img {
    width: 166px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .nav-link {
    width: 100%;
  }

  .hero-pill-row span,
  .contact-trust span {
    width: 100%;
    justify-content: center;
  }

  .hero-card-floating,
  .hero-card-brochure {
    position: relative;
    width: 100%;
    left: auto;
    right: auto;
    bottom: auto;
    top: auto;
    margin-top: 1rem;
  }

  .hero-visual {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .hero-card-main {
    position: relative;
  }

  .hero-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 1rem;
    width: fit-content;
  }

  .about-visual-layout {
    padding: 14px;
  }

  .hero-metrics article,
  .delivery-card,
  .coverage-strip>div,
  .faq-side__card {
    padding: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

}


@media (max-width: 767px) {
  .has-js .site-preloader {
    padding: 1rem;
  }

  .site-preloader__inner {
    gap: 1rem;
    border-radius: 24px;
    padding: 1.5rem 1.25rem;
  }

  .site-preloader__copy p {
    font-size: 0.92rem;
  }

  .hero-copy h1 {
    font-size: 18px;
  }

  .section-kicker,
  .panel-label,
  .blog-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
  }

  .panel-label {
    font-size: 12px;
  }

  .hero-lead {
    font-size: 14px;
    margin-top: 10px;
    line-height: 1.6;
  }

  .btn {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 22px;
  }

  .hero-actions,
  .contact-actions,
  .footer-bottom {
    flex-direction: row;
  }

  .hero-pill-row {
    margin-top: 15px;
  }

  .hero-pill-row span {
    padding: 0.6rem 0rem;
    font-weight: 600;
    font-size: 13px;
  }

  .g-5,
  .gy-5 {
    --bs-gutter-y: 0;
    --bs-gutter-x: 0;
  }

  .hero-section {
    padding: calc(var(--nav-height) + 30px) 0 0px;
  }

  .hero-metrics {
    padding-top: 11rem;
  }

  .hero-gradient {
    height: 95%;
  }


  #about {
    padding-top: 0px;
  }
  #about .panel-label {
    font-size: 16px; 
}

  h2 {
    font-size: 18px;
  }

  .section-header p,
  .section-intro p,
  .faq-side p,
  .contact-card p,
  .service-card p,
  .about-copy-intro p,
  .glass-panel p,
  .support-panel-copy,
  .delivery-card p {
    font-size: 14px;
    line-height: 1.6;
  }

  .delivery-card ul {
    gap: 5px;
    line-height: 1.6;
    font-size: 14px;
  }

  .delivery-card {
    margin-bottom: 20px;
  }

  .about-visual-main {
    min-height: 200px;
  }

  #services {
    padding-top: 0;
    padding-bottom: 50px;
  }

  .service-card>div:first-child {
    display: flex;
    align-items: center;
    gap: 10px;

  }

  .service-card>div:first-child h3 {
    font-size: 15px;
    padding-bottom: 0;
  }

  .service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0;
    font-size: 14px;
    border-radius: 10px;

  }

  .section-header {
    text-align: initial;
    margin: 0 auto 2rem;
  }

  .support-list {
    gap: 5px;
    color: var(--ink-700);
    line-height: 1.6;
    font-size: 14px;
  }

  .glass-panel p {
    margin: 0;
  }

  .support-panel h3 {
    margin-bottom: 0;
    font-size: 17px;
  }

  .about-copy-intro h3,
  .glass-panel--about h3,
  .support-panel--about h3 {
    font-size: 18px;
  }

  .glass-panel--about p {
    margin: 0.65rem 0 0.85rem;
  }

  .support-panel-copy {
    margin-bottom: 0.85rem;
  }

  .section {
    padding: 60px 0;
  }

  h1,
  h2,
  h3,
  h4 {
    line-height: 1.4;
  }

  .delivery-card h3 {
    margin-bottom: 0px;
    font-size: 18px;
  }

  .process-card span {
    width: 40px;
    height: 40px;
    margin-bottom: 7px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
  }

  .process-card h3 {
    font-size: 18px;
  }

  .process-card p {
    margin: 0rem 0 0;
    line-height: 1.6;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
  }

  .coverage-strip p {
    margin: 0.1rem 0 0;
    line-height: 1.6;
    font-size: 15px;
  }

  .custom-accordion .accordion-button {
    padding: 12px 19px;
    font-weight: 500;
    font-size: 14px;
  }

  .custom-accordion .accordion-body {
    padding: 0 12px 19px;
    line-height: 1.6;
    font-size: 14px;
  }

  .custom-accordion .accordion-item {
    border-radius: 10px;
  }

  #blog {
    padding-top: 0;
  }

  .blog-card h3 {
    margin-top: 10px;
    padding: 0;
    font-size: 17px;
  }

  .blog-card p {
    margin: 0.5rem 0 0.8rem;
    line-height: 1.6;
    font-size: 15px;
  }


  :root {
    --radius-xl: 12px;
    --radius-lg: 12px;
    --radius-md: 12px;
  }

  .person-card {
    margin: 0px 0 5px;
    padding: 1rem 1.15rem;
    font-size: 14px;
    gap: 0.1rem;
  }

  .contact-list li {
    gap: 0.3rem;
    line-height: 1.6;
    font-size: 14px;
  }

  .contact-quick-grid article {
    border-radius: 10px;
    display: flex;
    gap: 10px;
    /* justify-content: center; */
    padding: 12px 15px;
  }

  .contact-quick-grid strong {
    font-size: 14px;
  }

  .contact-trust {
    gap: 0.7rem;
    margin-top: 0;
  }

  .contact-form .form-control,
  .contact-form .form-select {
    min-height: 32px;
    border-radius: 8px;
    padding: 8px 12px;
    box-shadow: none;
    font-size: 13px;
  }

  .contact-form .form-label {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
  }
.footer-brand {
  display: flex;
  justify-content: center;
}
.site-footer {
    padding: 40px 0 28px; 
}
  .footer-brand img {
    width: 260px;
    margin-bottom: 10px;
  }

  .site-footer .col-sm-6.col-lg-3.fot1 {
    width: 35%;
  }

  .site-footer .col-sm-6.col-lg-3.fot2 {
    width: 60%;
  }

  .footer-links {
    gap: 0.2rem;
    font-size: 14px;
  }

  .site-footer h3 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 0;
  }

  .footer-bottom {
    display: block;

    margin-top: 20px;
    padding-top: 15px;
    font-size: 13px;
    text-align: center;
  }
  .site-footer p, .site-footer span, .footer-links a, .footer-links span { 
    font-size: 14px;
}
.faq-ph{
  display: none;
}
.hero-metrics { 
    position: relative;
    bottom: 147px;
}
}
