/* Font & body handled by global.css */

:root {
  --process-bg: hsl(0, 0%, 100%);
  --process-bg-end: hsl(0, 0%, 98%);
  --brand-blue: hsl(233, 97%, 57%);
  --brand-yellow: hsl(48, 100%, 51%);
  --brand-orange: hsl(30, 100%, 51%);
  --process-circle: hsl(233, 97%, 57%);
  --process-icon: hsl(0, 0%, 100%);
  --process-connector: hsl(233, 97%, 57%, 0.3);
  --process-muted: hsl(0, 0%, 40%);
  --primary-foreground: hsl(0, 0%, 10%);
  --accent: hsl(48, 100%, 51%);

}

/* ===============================
   HERO SECTION
================================= */


.hero-section {
  min-height: auto;
  /* padding: var(--space-hero-top) 0 0; */
   padding: var(--space-hero-top) 0 var(--space-hero-bottom);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: visible;

  background:
    radial-gradient(
      circle at 15% 25%,
      rgba(255, 223, 6, 0.25) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 85% 75%,
      rgba(255, 136, 6, 0.25) 0%,
      transparent 45%
    ),
    linear-gradient(135deg, #1e36d8 0%, #2545fc 50%, #1b2fc4 100%);

  color: #ffffff;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.25));
}

.hero-section .container {
  width: min(var(--content-max-width), 100%);
  padding-left: var(--content-gutter);
  padding-right: var(--content-gutter);
  margin-top: 0;
}

.hero-content {
  margin: 0 auto;
}

/* ===============================
   TYPOGRAPHY
================================= */

.hero-title {
  font-size: 68px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.2px;
  margin-bottom: 28px;
}

.hero-highlight {
  background: linear-gradient(90deg, #ff8806, #ffdf06, #ff8806);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: highlightFlow 3s ease-in-out infinite;
}

@keyframes highlightFlow {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

.hero-subtitle {
  font-size: 28px;
  line-height: 1.75;
  max-width: 80%;
  margin: 0 auto 50px auto;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
}

.hero-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.hero-slide-track {
  display: flex;
  width: 100%;
  will-change: transform;
  transition: transform var(--hero-slide-duration, 900ms) cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide {
  flex: 0 0 100%;
  width: 100%;
}

.text-bold {
  font-weight: 700;
}
.text-accent {
  color: #ffdf06;
}

/* ===============================
   BUTTONS
================================= */

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-section .hero-indicators {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.hero-section .hero-progress {
    display: none;
  }

.hero-section .hero-progress-bar {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, #ffffff, #ffdf06);
  opacity: 0.9;
}

.hero-section .hero-progress-bar.is-animating {
  animation: heroProgress var(--hero-switch-delay, 12000ms) linear forwards;
}

.hero-section:hover .hero-progress-bar.is-animating {
  animation-play-state: paused;
}

.hero-section .hero-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-section .hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.4);
  opacity: 0.75;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.hero-section .hero-dot.is-active {
  width: 8px;
  height: 8px;
  background: #ffdf06;
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 0 0 4px rgba(255, 223, 6, 0.15);
}

.hero-section .hero-dot:focus-visible {
  outline: 2px solid #ffdf06;
  outline-offset: 3px;
}

@keyframes heroProgress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.btn {
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(90deg, #ff8806, #ffdf06);
  color: #111;
  box-shadow: 0 12px 30px rgba(255, 136, 6, 0.35);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(255, 223, 6, 0.55);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  background: #ffffff;
  color: #2545fc;
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(255, 223, 6, 0.35);
}

/* ===============================
   CLUTCH BADGE
================================= */

.h-clutch-wr {
  margin-bottom: 38px;
  display: flex;
  justify-content: center;
}

.h-clutch img {
  width: 320px;
  transition: all 0.4s ease;
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4));
}

.h-clutch:hover img {
  transform: translateY(-6px) scale(1.05);
  filter: drop-shadow(0 20px 50px rgba(255, 223, 6, 0.6));
}

/* ===============================
   TRUSTED BY
================================= */
/* ===============================
   TRUSTED BY
================================= */

/* .logos-sec {
  width: 100%;
  margin: 60px auto 8px;           
  display: flex;
  justify-content: center;
}

.logos-sec__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 12px;
  padding: 22px 24px;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(5, 15, 86, 0.68);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

.logos-sec__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
  margin-right: 8px;               
  flex: 0 0 auto;
}


.logo {
  width: clamp(78px, 7vw, 128px);
  height: 48px;                     
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}


.logo img {
  max-width: 100%;                 
  max-height: 100%;               
  width: auto;                     
  height: auto;
  object-fit: contain;             
  filter: brightness(0) invert(1); 
  opacity: 0.92;
  transition: all 0.35s ease;
}


.logo img:hover {
  transform: translateY(-4px) scale(1.07);
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(255, 223, 6, 0.5));
} */

/* SECTION */

.logos-sec {
    width: 100%;
    margin: 60px auto 0;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
    margin-top: -60px;
    /* margin-bottom: 48px; */
    padding: 12px 0;
  }


.logos-sec__wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  width: min(var(--content-max-width), 92vw);
  overflow: hidden;
  border-radius: 20px;

  background:rgb(12 26 117);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}


.logos-sec__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
  flex: 0 0 auto;
}


.logos-marquee {
  flex: 1;
  overflow: hidden;
  position: relative;
}


.logos-marquee::before,
.logos-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}



.logos-track {
  display: flex;
  gap: 60px;
  width: max-content; 
  animation: scroll 28s linear infinite;
}


@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo {
  width: clamp(78px, 7vw, 128px);
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;

  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: all 0.35s ease;
}

.logo img:hover {
  transform: translateY(-4px) scale(1.08);
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(255, 223, 6, 0.5));
}

/* OPTIONAL: PAUSE */
.logos-track:hover {
  animation-play-state: paused;
}

/* ── Responsive adjustments ── */
@media (max-width: 992px) {
  .logos-sec {
      margin: 40px auto 0;
    }

  .logos-sec__wrap {
    gap: 28px 36px;
    padding: 20px 32px;
  }

  .logos-sec__wrap img {
    height: 28px;
  }

  .logo {
    width: 110px;
    height: 44px;
  }
}

@media (max-width: 600px) {
  .logos-sec {
      margin: 32px auto 0;
    }

  .logos-sec__wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
    padding: 20px 16px;
    align-items: center;
    justify-items: center;
  }

  .logos-sec__title {
    margin: 0;
    text-align: center;
    grid-column: 1 / -1;
  }

  .logo {
    width: 136px;
    height: 52px;
  }

  .logos-sec__wrap img {
    height: 34px;
  }
}

/* ===============================
   AI SECTION
================================= */
.ai-section {
  padding: var(--space-section) 0;
  background: #0f1e78;
  position: relative;
  color: #fff;
}
.ai-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 223, 6, 0.15),
      transparent 40%
    ),
    radial-gradient(circle at 80% 70%, rgba(255, 136, 6, 0.15), transparent 40%);
  pointer-events: none;
}

.ai-header {
  text-align: center;
  margin-bottom: var(--space-6);
  font-family: "Red Hat Display", sans-serif;
}

.ai-header h3 {
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ff8806;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.ai-header h3::before,
.ai-header h3::after {
  content: "";
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #ff8806, #ffdf06);
  display: block;
}

.ai-header h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  max-width: 900px;
  margin: auto;
}

.ai-header span {
  background: linear-gradient(90deg, #ff8806, #ffdf06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ai-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
}

@media (min-width: 993px) {
  .ai-section {
    padding-bottom: 76px;
  }
}




/* LEFT SIDE */
.ai-modules {
  position: relative;
}
.ai-module {
  cursor: pointer;
}
.ai-module:hover {
  transform: translateX(6px);
  transition: 0.25s;
}

.ai-spine {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.15);
}
.ai-spine-active {
  position: absolute;
  left: 0;
  width: 2px;
  height: 80px;
  background: linear-gradient(#ffdf06, #ff8806);
  transition: top 0.4s ease;
}
.ai-module {
  padding-left: 60px;
  margin-bottom: 45px;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
}
.ai-module.active {
  opacity: 1;
}
.ai-module-head {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #ffffff;
  transition: color 0.3s ease;
}
.ai-module.active .ai-module-head {
  color: #ffdf06;
}
.ai-number {
  font-weight: 700;
  font-size: 14px;
  opacity: 0.4;
}
.ai-module-title {
  flex: 1;
  font-weight: 900;
  font-size: 30px;
}
.ai-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  position: relative;
}
.ai-toggle::before,
.ai-toggle::after {
  content: "";
  position: absolute;
  background: #ffdf06;
}
.ai-toggle::before {
  width: 14px;
  height: 2px;
  top: 15px;
  left: 9px;
}
.ai-toggle::after {
  width: 2px;
  height: 14px;
  top: 9px;
  left: 15px;
}
.ai-module.active .ai-toggle::after {
  opacity: 0;
}
.ai-module-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  font-weight: 700;
  font-size: 20px;
}
.ai-module.active .ai-module-body {
  max-height: 760px;
}
.ai-glass-card {
  margin-top: 18px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.ai-glass-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
  font-size: 14px;
  opacity: 0.85;
}
.ai-badge {
  margin-top: 12px;
  font-weight: 700;
  color: #ffdf06;
}

/* RIGHT SIDE */
.ai-dashboard {
  position: relative;
}
.ai-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 30% 40%,
      rgba(255, 223, 6, 0.25),
      transparent 50%
    ),
    radial-gradient(circle at 70% 60%, rgba(255, 136, 6, 0.25), transparent 50%);
  filter: blur(60px);
  animation: meshMove 8s ease-in-out infinite alternate;
}
@keyframes meshMove {
  from {
    transform: translateY(-20px);
  }
  to {
    transform: translateY(20px);
  }
}

.ai-card-stack {
  position: relative;
  padding: 40px;
  height: 500px;
}
.ai-card {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.6s ease;
  overflow: hidden;
}
.main-card {
  position: relative;
  z-index: 3;
}
.layer-1 {
  top: 15px;
  left: 15px;
  z-index: 2;
  opacity: 0.4;
  transform: scale(0.96);
}
.layer-2 {
  top: 30px;
  left: 30px;
  z-index: 1;
  opacity: 0.2;
  transform: scale(0.92);
}
.ai-feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.6s ease;
  opacity: 0;
}
.ai-feature-image.active {
  opacity: 1;
}
.blank-section {
  height: 600px;
  background: white;
}


/* Enhanced & highlighted client block - now top priority */
.ai-client {
  margin: 20px 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(255, 223, 6, 0.08), rgba(255, 136, 6, 0.05));
  border-radius: 12px;
  border: 1px solid rgba(255, 223, 6, 0.2);
  position: relative;
}

.ai-client::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ffdf06, #ff8806);
  border-radius: 12px 12px 0 0;
}

.ai-client-logo {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ai-client-logo img {
  width: 78%;
  height: 78%;
  border-radius: 8px;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
  filter: none;
}

.ai-client-info {
  flex: 1;
}

.ai-client-name {
  font-weight: 900;
  font-size: 20px;
  color: #ffdf06;
  margin-bottom: 4px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.ai-client-desc {
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.45;
  font-weight: 500;
  color: #fff;
}

.caseview{
  padding: 12px 26px;
  border-radius: 10px;
  background: var(--gradient-cta);
  color: #111;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(255, 136, 6, 0.4);
  font-size: 14px;
}
.caseview .case-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(255, 223, 6, 0.6);
}








/* View All Case Studies button */
.ai-view-all-wrapper {
  padding-left: 60px;          /* align with module content */
  margin-top: 60px;            /* breathing room after last module */
  margin-bottom: 40px;
}

.ai-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-family: "Red Hat Display", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  background: var(--gradient-cta);
  border-radius: 10px;         /* pill shape – modern & friendly */
  border: 1px solid rgba(255, 223, 6, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 
    0 8px 32px rgba(255, 136, 6, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ai-view-all-btn:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 14px 40px rgba(255, 136, 6, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #0f1e78;             /* dark blue on hover for contrast */
}

.ai-view-all-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ffdf06, #ff8806); /* reverse for shine */
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.ai-view-all-btn:hover::before {
  opacity: 0.18;
}

.ai-view-all-btn .arrow {
  font-size: 22px;
  font-weight: 800;
  transition: transform 0.3s ease;
}

.ai-view-all-btn:hover .arrow {
  transform: translateX(6px);
}

.ai-case-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

@media (max-width: 600px) {
  .ai-case-cta-wrap {
    margin-top: 24px;
    padding: 0 12px;
  }

  .ai-case-cta-wrap .btn {
    width: min(100%, 320px);
    justify-content: center;
  }
}

/* ===============================
   EVOLUTION TIMELINE
================================= */

.evolution {
  padding: 20px 0 140px;
  position: relative;
  overflow: hidden;
}

.evolution::before {
  content: "";
  position: absolute;
  width: 1200px;
  height: 1200px;
  background: linear-gradient(90deg, #ff8806, #ffb406);
  top: -420px;
  left: -250px;
  animation: bgFloat 14s ease-in-out infinite alternate;
}

@keyframes bgFloat {
  to {
    transform: translateY(60px) translateX(60px);
  }
}
.evo-header {
  text-align: center;
  margin-bottom: 100px;
  font-family: "Red Hat Display", sans-serif;
}

/* small label with lines */
.evo-header h3 {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ff8806;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.evo-header h3::before,
.evo-header h3::after {
  content: "";
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #ff8806, #ffdf06);
  display: block;
}

/* main heading */
.evo-header h2 {
  font-size: clamp(40px, 6vw, 70px);
  font-weight: 900;
  line-height: 1.15;
  max-width: 900px;
  margin: auto;
}

/* gradient highlight */
.evo-header h2 span {
  background: linear-gradient(90deg, #ff8806, #ffba06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* description */
.evo-header p {
  margin-top: 20px;
  font-size: 20px;
  color: #0a0a0a;
  line-height: 1.6;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

/* link styling */
.evo-header a {
  color: #2545fc;
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s ease;
}

.evo-header a:hover {
  opacity: 0.75;
}

/* TIMELINE */
.timeline {
  max-width: var(--content-max-width);
  margin: auto;
  position: relative;
}

.flow-line {
  position: absolute;
  top: 52px;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 10px;
  background: linear-gradient(90deg, #2545fc, #ff8806, #2545fc);
  background-size: 300% 100%;
  animation: flow 8s linear infinite;
  opacity: 0.35;
}

@keyframes flow {
  from {
    background-position: 0%;
  }
  to {
    background-position: 300%;
  }
}

.energy {
  position: absolute;
  top: 46px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ff8806;
  filter: blur(0.5px);
  animation: energyMove 10s linear infinite;
}

@keyframes energyMove {
  from {
    left: -2%;
  }
  to {
    left: 102%;
  }
}

.steps {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
}

.node {
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #2545fc, #6b7cff);
  box-shadow: 0 15px 35px rgba(37, 69, 252, 0.35);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  letter-spacing: 1px;
  transition: 0.45s;
  animation: breath 3s ease-in-out infinite;
}
@keyframes breath {
  50% {
    transform: scale(1.06);
  }
}

.step:hover .node {
  transform: scale(1.25);
  box-shadow: 0 0 45px rgba(37, 69, 252, 0.8);
}

.node::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 69, 252, 0.35);
  opacity: 0;
}

.step:hover .node::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  from {
    transform: scale(1);
    opacity: 0.7;
  }
  to {
    transform: scale(1.7);
    opacity: 0;
  }
}

.cs-card {
  margin-top: 28px;
  padding: 28px 26px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: 0.45s;
  min-height: 260px;
}

.step:hover .cs-card {
  transform: translateY(-16px) scale(1.03);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.18);
  border-color: rgba(37, 69, 252, 0.4);
}

.cs-card h3 {
  margin: 0 0 18px;
  color: #2545fc;
  font-size: 20px;
}
.cs-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cs-card li {
  margin-bottom: 10px;
  font-size: 14.5px;
  line-height: 1.55;
}
.cs-card a {
  text-decoration: none;
  color: #2545fc;
}
.cs-card a:hover {
  color: #ff8806;
}

.step:hover {
  z-index: 5;
}

@media (max-width: 1000px) {
  .steps {
    flex-direction: column;
    gap: 80px;
  }

  .step {
    max-width: 720px;
    margin: 0 auto;
  }

  .cs-card {
    min-height: auto;
  }

  .flow-line,
  .energy {
    display: none;
  }
}



/* ===================================
   Section
   =================================== */
   
/* ===================================
   Section
   =================================== */
   
.process-section {
  position: relative;
  width: 100%;
  overflow: visible;
  background: linear-gradient(135deg, var(--process-bg), var(--process-bg-end));
  /* padding: 5rem 1rem; */
  padding: 2rem 1rem 5rem 1rem;
}

.process-section__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, hsl(233 97% 57% / 0.05), transparent 70%);
  pointer-events: none;
}

.process-section__container {
  position: relative;
  z-index: 1;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--content-gutter);
}

/* ===================================
   Heading
   =================================== */
.process-heading {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.process-heading.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.process-heading__title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-foreground);
}

/* ===================================
   Steps Container
   =================================== */
.process-steps {
  position: relative;
}

.process-steps__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .process-steps__row {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
  }
}

/* ===================================
   SVG Connectors
   =================================== */
.process-connectors {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 120px;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .process-connectors {
    display: block;
  }
}

.process-connectors path {
  fill: none;
  stroke: var(--process-connector);
  stroke-width: 2;
  stroke-dasharray: 8 6;
}

/* ===================================
   Step Item
   =================================== */
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 220px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

@media (min-width: 1024px) {
  .process-step {
    flex: 1;
  }
}

.process-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger delays */
.process-step:nth-child(1) { transition-delay: 0s; }
.process-step:nth-child(2) { transition-delay: 0.15s; }
.process-step:nth-child(3) { transition-delay: 0.3s; }
.process-step:nth-child(4) { transition-delay: 0.45s; }
.process-step:nth-child(5) { transition-delay: 0.6s; }

/* ===================================
   Icon Circle
   =================================== */
.process-step__icon-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

/* Rotating dashed border ring */
.process-step__ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px dashed hsl(233 97% 57% / 0.35);
  transition: border-color 0.4s ease;
}

.process-step:hover .process-step__ring {
  border-color: hsl(233 97% 57% / 0.7);
  animation: spin-clockwise 3s linear infinite;
}

.process-step__circle {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -5px rgba(37, 69, 252, 0.25);
  transition: transform 0.5s ease;
}

.process-step:hover .process-step__circle {
  transform: scale(1.1);
}

.process-step__circle svg {
  width: 36px;
  height: 36px;
  /* color: var(--process-icon); */
  color:hsl(0deg 0% 0.96%);
  stroke-width: 1.5;
}

/* ===================================
   Step Content
   =================================== */
.process-step__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 0.5rem;
}

.process-step__description {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--process-muted);
}

/* ===================================
   Mobile Arrow Connector
   =================================== */
.process-step__mobile-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
}

@media (min-width: 1024px) {
  .process-step__mobile-arrow {
    display: none;
  }
}

.process-step__mobile-arrow-line {
  width: 1px;
  height: 2rem;
  border-left: 2px dashed hsl(233 97% 57% / 0.3);
}

.process-step__mobile-arrow-tip {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid hsl(233 97% 57% / 0.4);
}

/* ===================================
   Keyframes
   =================================== */
@keyframes spin-clockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

 

/* =========================================
   PREMIUM LOGO SLIDER SECTION
========================================= */

.logo-slider-section {
  background: #ffffff;
  padding: var(--space-section) 0;
  overflow: hidden;
}

.logo-header {
  text-align: center;
  margin: 0 auto var(--space-6);
  font-family: "Red Hat Display", sans-serif;
}

/* top label */
.logo-header h3 {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ff8806;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.logo-header h3::before,
.logo-header h3::after {
  content: "";
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #ff8806, #ffdf06);
  display: block;
}

/* main heading */
.logo-header h2 {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.2;
  max-width: 800px;
  margin: auto;
  
}

/* gradient highlight */
.logo-header h2 span {
  background: linear-gradient(90deg, #ff8806, #ff8806);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* description */
.logo-header p {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.7;
  color: #000106;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.brand-gradient-title {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ff8806, #ffc106);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



.logo-slider {
  position: relative;
  max-width: var(--content-max-width);
  margin: auto;
  overflow: hidden;
}

.logo-slider::before,
.logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 160px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-slider::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}
.logo-slider::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 90px;
  width: max-content;
  animation: scrollLogos 45s linear infinite;
}

.logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  max-height: 95px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.logo-item:hover img {
  transform: scale(1.08);
}

@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 992px) {
  .logo-track {
    gap: 70px;
  }
  .logo-item img {
    max-height: 75px;
    max-width: 140px;
  }
}

@media (max-width: 768px) {
  .logo-slider-section {
    padding: 70px 0;
  }
  .logo-track {
    gap: 50px;
  }
  .logo-item img {
    max-height: 60px;
    max-width: 120px;
  }
}

/* =========================================
   RECOGNITION / CERTIFICATIONS
========================================= */

.recognition-floating-section {
  background: #f7f9ff;
  padding: 20px 0 100px;
  overflow-x: clip;
}

.floating-marquee {
  position: relative;
  /* overflow: hidden; */
  
}

.floating-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  width: max-content;
  gap: clamp(6px, 1vw, 16px);
  position: relative;
  overflow: visible;
  animation: recognitionsMarquee 28s linear infinite;
}

.floating-item {
  position: relative;
  flex: 0 0 auto;
  padding: 12px clamp(10px, 1.8vw, 22px);
  animation: float 6s ease-in-out infinite;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  will-change: transform;
}
.floating-item:nth-child(1) {
  animation-delay: 0s;
}
.floating-item:nth-child(2) {
  animation-delay: 1s;
}
.floating-item:nth-child(3) {
  animation-delay: 2s;
}
.floating-item:nth-child(4) {
  animation-delay: 0.5s;
}
.floating-item:nth-child(5) {
  animation-delay: 1.5s;
}
.floating-item:nth-child(6) {
  animation-delay: 2.5s;
}
.floating-item:nth-child(7) {
  animation-delay: 1s;
}
.floating-item:nth-child(8) {
  animation-delay: 0.8s;
}

.floating-item img {
  max-height: clamp(58px, 9vw, 132px);
  max-width: clamp(110px, 16vw, 180px);
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  display: block;
}

.floating-item:hover img {
  transform: scale(1.08);
  z-index: 10;
}

@keyframes recognitionsMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes float {
  0%,100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1024px) {
  .floating-grid {
    gap: 0 40px;
    animation-duration: 24s;
  }
  .floating-item img {
    max-height: 112px;
  }
  
}

@media (max-width: 768px) {
  .floating-grid {
    gap: 0 30px;
    animation-duration: 20s;
  }
  .floating-item img {
    max-height: 94px;
  }
}

@media (max-width: 480px) {
  .floating-grid {
    gap: 0 24px;
    align-items: flex-start;
    animation-duration: 18s;
  }
  .floating-item img {
    max-height: 82px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-grid,
  .floating-item {
    animation: none;
  }
}

/* =========================================
   SERVICES SECTION
========================================= */

.services-section {
  padding: var(--space-section) 0;
  background: #0f1e78;
  position: relative;
  color: #ffffff;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 223, 6, 0.15),
      transparent 40%
    ),
    radial-gradient(circle at 80% 70%, rgba(255, 136, 6, 0.15), transparent 40%);
  pointer-events: none;
}

.services-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 100%,
    rgba(37, 69, 252, 0.25),
    transparent 60%
  );
  opacity: 0.35;
  pointer-events: none;
}

.services-header {
  max-width: 780px;
  text-align: center;
  margin: 0 auto var(--space-6);
}

.services-header h3 {
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ff8806;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.services-header h3::before,
.services-header h3::after {
  content: "";
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #ff8806, #ffdf06);
  display: block;
}

.services-header h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  max-width: 900px;
  margin: auto;
}

.services-header span {
  background: linear-gradient(90deg, #ff8806, #ffdf06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-title {
  font-size: 44px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #ffdf06 40%,
    #ff8806 75%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-align: center;
}

.gradient-title span {
  display: block;
  margin-top: 12px;
  font-size: 20px;
  font-weight: 500;
  color: #d7dbff;
  background: none;
  -webkit-text-fill-color: initial;
}

/* TABS */
.service-tabs {
  position: relative;
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 36px);
  margin-bottom: 70px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  min-height: 30px;
  padding: 0 8px 24px;
  scrollbar-width: none;
}

.service-tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  cursor: pointer;
  font-size: clamp(24px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.4px;
  opacity: 0.55;
  transition:
    opacity 0.35s ease,
    color 0.4s ease;
  padding-bottom: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.tab:hover,
.tab.active {
  opacity: 1;
}
.tab.active {
  color: #ffdf06;
}

.tab-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffdf06, #ff8806);
  border-radius: 4px;
  transition: all 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: left, width;
  pointer-events: none;
  z-index: 2;
}

@media (min-width: 1100px) {
  .service-tabs {
    overflow-x: visible;
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .service-tabs {
    gap: 40px;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .service-tabs {
    gap: 28px;
    justify-content: flex-start;
    padding: 0 20px;
  }
  .tab {
    font-size: 28px;
  }
  .tab-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .tab {
    font-size: 24px;
  }
  .service-tabs {
    gap: 20px;
  }
}

/* SPLIT LAYOUT */
.services-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.split-visual {
  position: relative;
}

.visual-stage {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  transition: transform 0.5s ease;
}

.visual-stage:hover {
  transform: translateY(-12px);
}

.gradient-glow {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(255, 223, 6, 0.38),
      transparent 60%
    ),
    radial-gradient(circle at 70% 70%, rgba(255, 136, 6, 0.38), transparent 60%);
  filter: blur(100px);
  opacity: 0.9;
  animation: glowPulse 12s infinite alternate ease-in-out;
}

@keyframes glowPulse {
  0% {
    transform: scale(1.05) translateY(-10px);
  }
  100% {
    transform: scale(1.12) translateY(15px);
  }
}

.stage-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  transition: transform 0.6s ease;
}

.split-visual:hover .stage-image {
  transform: scale(1.04);
}

.content-card {
  background: rgba(20, 35, 110, 0.45);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 48px 52px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
}

.content-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.card-title {
  font-size: 2.0rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #ffdf06;
  letter-spacing: -1px;
  line-height: 1.1;
}

.card-intro {
  font-size: 1.22rem;
  line-height: 1.6;
  color: #d0d8ff;
  margin-bottom: 32px;
}

.card-bullets {
  list-style: none;
  font-size: 1.08rem;
  line-height: 1.9;
  color: #c3ccff;
}

.card-bullets li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
}

.card-bullets li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #ffdf06;
  font-weight: bold;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .services-split {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .split-content {
    width: 100%;
  }

  .content-card {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .service-tabs {
    gap: 36px;
  }
  .tab {
    font-size: 26px;
  }
  .services-header h2 {
    font-size: 2.4rem;
  }

  .card-title {
    font-size: 2.6rem;
  }

  .content-card {
    padding: 30px 24px;
  }

  .card-intro {
    font-size: 1.05rem;
  }

  .card-bullets {
    font-size: 1rem;
    line-height: 1.7;
  }

  .tab-indicator {
    display: none;
  }
}

/* =========================================
   CONTACT SECTION
========================================= */

.contact-section {
  padding: var(--space-section) 0;
  background: #0f1e78;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* uniform ambient glow (same as AI & Services) */
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 223, 6, 0.15),
      transparent 40%
    ),
    radial-gradient(circle at 80% 70%, rgba(255, 136, 6, 0.15), transparent 40%);
  pointer-events: none;
}

/* subtle depth layer for dimensional feel */
.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 100%,
    rgba(37, 69, 252, 0.25),
    transparent 60%
  );
  opacity: 0.35;
  pointer-events: none;
}

/* =========================================
   LAYOUT
========================================= */

.contact-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.contact-left {
  flex: 1;
}

/* =========================================
   TEXT CONTENT
========================================= */

.contact-sub {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  color: #ffdf06;
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #ffffff;
}

.contact-title span {
  color: #ffdf06;
}

.contact-desc {
  font-size: 18px;
  opacity: 0.9; /* improved readability */
}

/* =========================================
   RIGHT SIDE
========================================= */

.contact-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* =========================================
   GLASS FORM CARD
========================================= */

.contact-card {
  width: 100%;
  max-width: 520px;
  padding: 45px;
  border-radius: 24px;

  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.2);

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(255, 223, 6, 0.08);
}

/* =========================================
   FORM
========================================= */

.form-group {
  margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;

  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);

  color: #ffffff;
  font-size: 14px;
  outline: none;

  transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ffdf06;
  box-shadow: 0 0 0 3px rgba(255, 223, 6, 0.2);
  background: rgba(255, 255, 255, 0.16);
}

/* =========================================
   BUTTON
========================================= */

.contact-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;

  font-weight: 700;
  font-size: 15px;
  cursor: pointer;

  background: var(--gradient-cta);
  color: #111;

  transition: all 0.3s ease;
  font-family: "Red Hat Display", sans-serif;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 136, 6, 0.45);
}


@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }
  .contact-title {
    font-size: 40px;
  }
  .contact-card {
    padding: 35px;
  }
}

/* =========================================
   FOOTER
========================================= */

/* ================================
   Footer
================================ */

.footer {
  background: linear-gradient(
    180deg,
    rgba(15, 30, 120, 0.95) 0%,
    rgba(10, 20, 90, 0.98) 100%
  );
  color: #ffffff;
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

/* ambient glow effects */

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 223, 6, 0.12), transparent 55%),
    radial-gradient(circle at 15% 90%, rgba(255, 136, 6, 0.1), transparent 60%);
  pointer-events: none;
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 120%,
    rgba(0, 0, 0, 0.35),
    transparent 60%
  );
  pointer-events: none;
}

/* container */

.footer .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* ================================
   Footer Grid
================================ */

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* ================================
   Brand Column
================================ */

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer-location {
  font-size: 13px;
  opacity: 0.7;
}

/* ================================
   Column Titles
================================ */

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: #ffdf06;
}

/* ================================
   Links
================================ */

.footer-col a {
  display: block;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.8;
  transition: all 0.25s ease;
}

.footer-col a:hover {
  opacity: 1;
  color: #ffdf06;
  transform: translateX(4px);
}

/* ================================
   Bottom Section
================================ */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* socials */

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  color: #ffffff;
  font-size: 16px;
  opacity: 0.7;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  opacity: 1;
  color: #ff8806;
  transform: translateY(-2px);
}

/* copyright */

.footer-copy {
  font-size: 13px;
  opacity: 0.7;
}

/* back to top */

.footer-top-btn {
  text-decoration: none;
  font-size: 13px;
  color: #ffdf06;
  font-weight: 600;
  transition: 0.25s ease;
}

.footer-top-btn:hover {
  color: #ff8806;
}

/* ================================
   Responsive
================================ */

@media (max-width: 1100px) {

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

}

@media (max-width: 768px) {

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

}
/* =========================================
   BLOG SECTION (INDEX PAGE)
========================================= */

.blog-section {
  padding: var(--space-section) 0;
  background: #ffffff;
}

.blog-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-6);
}

.blog-sub {
  color: #2545fc;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.blog-header h2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  background:linear-gradient(90deg, #ff8806, #ffb706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-header p {
  font-size: 20px;
  opacity: 0.7;
}

.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.blog-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.blog-card.featured {
  grid-row: span 2;
}

.blog-image {
  height: 240px;
  overflow: hidden;
}
.blog-card.featured .blog-image {
  height: 320px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 30px;
}

.blog-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: #0f1e78;
  margin-bottom: 14px;
}

.blog-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}
.blog-card.featured h3 {
  font-size: 24px;
}
.blog-content p {
  font-size: 15px;
  opacity: 0.7;
  margin-bottom: 20px;
}

.blog-link {
  text-decoration: none;
  font-weight: 600;
  color: #0f1e78;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: #0f1e78;
}

@media (max-width: 1100px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-card.featured {
    grid-column: span 2;
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-card.featured {
    grid-column: span 1;
  }
  .blog-header h2 {
    font-size: 34px;
  }
}

/* =========================================
   MAP
========================================= */

.map-wrapper {
  width: 100%;
  height: 560px;
  position: relative;
}

#map {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.our-presence {
  position: absolute;
  top: 11px;
  left: 80px;
  background: #ffffff;
  color: #2545fc;
  padding: 14px 22px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 14px;
  letter-spacing: 0.4px;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 977;
}

.our-presence::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  border-radius: 14px 0 0 14px;
  background: linear-gradient(#2545fc, #ff8806);
}

.leaflet-tooltip.office-label {
  border: 2px solid #ff8806;
  color: #2545fc;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  z-index: 977;
}

.leaflet-control-attribution {
  display: none ;
}
/* ===============================
   RESPONSIVENESS OVERRIDES
================================= */

@media (max-width: 992px) {
  .hero-section .container {
    margin-top: 0;
  }

  .evolution,
  .ai-section,
  .recognition-floating-section,
  .services-section,
  .blog-section,
  .contact-sections {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .evo-header,
  .ai-header,
  .services-header,
  .blog-header {
    margin-bottom: 44px;
  }

  .footer-top {
    margin-bottom: 44px;
  }

  .evo-header h2 {
    white-space: normal;
  }
  .evo-header p {
    white-space: normal;
  }
  .ai-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ai-module-title {
    font-size: 26px;
  }

  .ai-module-body {
    font-size: 18px;
  }

  .ai-card-stack {
    height: 350px;
    padding: 20px;
  }

  .map-wrapper {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .evolution,
  .ai-section,
  .recognition-floating-section,
  .services-section,
  .blog-section,
  .contact-sections {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .evo-header,
  .ai-header,
  .services-header,
  .blog-header {
    margin-bottom: 30px;
  }

  .evo-header p {
    font-size: 16px;
    line-height: 1.6;
  }

  .logos-sec__wrap img {
    height: 22px;
  }

  .logos-sec__wrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px 24px;
    max-width: 100%;
  }
  .map-wrapper {
    height: 300px;
  }

  .ai-card-stack {
    height: 280px;
    padding: 0;
  }

  .ai-dashboard {
    display: none;
  }

  .ai-module {
    padding-left: 34px;
    margin-bottom: 22px;
  }

  .ai-spine {
    left: 10px;
  }

  .ai-module-head {
    gap: 10px;
    align-items: flex-start;
  }

  .ai-module-title {
    font-size: 19px;
    line-height: 1.3;
  }

  .ai-toggle {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .ai-toggle::before {
    width: 12px;
    top: 12px;
    left: 7px;
  }

  .ai-toggle::after {
    height: 12px;
    top: 7px;
    left: 12px;
  }

  .ai-module-body {
    font-size: 15px;
  }

  .ai-module.active .ai-module-body {
    max-height: none;
    overflow: visible;
  }

  .ai-glass-card {
    margin-top: 12px;
    padding: 14px;
    border-radius: 12px;
  }

  .ai-glass-card p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 10px;
  }

  .ai-glass-card ul {
    padding-left: 16px;
    font-size: 13px;
    line-height: 1.55;
  }

  .ai-client-name {
    font-size: 16px;
  }

  .ai-client-desc {
    font-size: 13px;
    line-height: 1.5;
  }

  .ai-client {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .our-presence {
    left: 14px;
    top: 12px;
    padding: 8px 12px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-section {
      padding: 106px 0 0;
    }

  .evolution,
  .ai-section,
  .recognition-floating-section,
  .services-section,
  .blog-section,
  .contact-sections {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .ai-header h2 {
    font-size: 28px;
  }
  .ai-module-title {
    font-size: 17px;
  }
  .services-header h2 {
    font-size: 28px;
  }
  .blog-header h2 {
    font-size: 28px;
  }
  .contact-title {
    font-size: 32px;
  }

  .blog-content {
    padding: 20px;
  }

  .blog-image,
  .blog-card.featured .blog-image {
    height: 200px;
  }

  .gradient-title {
    font-size: 30px;
  }

  .gradient-title span {
    font-size: 17px;
  }

  .card-title {
    font-size: 2rem;
  }

  .card-bullets li {
    padding-left: 24px;
  }
}

.contact-sections {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: 120px 5% 140px;

  background: #0f1e78;
}

/* ===============================
   INDEX PAGE SPACING + RESPONSIVE TUNING
================================= */

/* Consistent section breathing space after hero */
.evolution,
.ai-section,
.recognition-floating-section,
.services-section,
.blog-section,
.contact-sections {
  padding-top: 84px;
}

.evolution,
.services-section,
.contact-sections {
  padding-bottom: 96px;
}

.ai-section,
.recognition-floating-section,
.blog-section {
  padding-bottom: 84px;
}

/* Keep content safely below fixed header in all internal section jumps */
.evolution,
.ai-section,
.recognition-floating-section,
.services-section,
.blog-section,
.contact-sections,
.map-wrapper,
.footer {
  scroll-margin-top: 104px;
}

/* Footer cleanup for index page */
.footer {
  padding: 56px 0 34px;
}

.footer-top {
  gap: 44px;
  margin-bottom: 50px;
}

.footer-col a {
  margin-bottom: 10px;
}

@media (max-width: 992px) {
  .hero-section {
      padding: 120px 0 0;
    }

  .hero-title {
    font-size: clamp(34px, 6vw, 44px);
  }

  .hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
  }

  .logos-sec__wrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 22px;
    padding: 18px 20px;
  }

  .evolution,
  .ai-section,
  .recognition-floating-section,
  .services-section,
  .blog-section,
  .contact-sections {
    padding-top: var(--space-section-tablet);
    padding-bottom: var(--space-section-tablet);
  }

  .evo-header,
  .ai-header,
  .services-header,
  .blog-header {
    margin-bottom: var(--space-5);
  }

  .footer {
    padding: 44px 0 28px;
  }

  .footer-top {
    margin-bottom: 38px;
  }
}

@media (max-width: 768px) {
  .hero-section {
      min-height: auto;
      padding: 104px 0 56px;
    }

  .hero-title {
    font-size: clamp(28px, 8.6vw, 36px);
    line-height: 1.08;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
  }

  .hero-subtitle {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 22px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: min(100%, 320px);
    margin: 0 auto 24px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .evolution,
  .ai-section,
  .recognition-floating-section,
  .services-section,
  .blog-section,
  .contact-sections {
    padding-top: var(--space-section-mobile);
    padding-bottom: var(--space-section-mobile);
  }

  .services-split {
    gap: 34px;
  }

  .blog-grid {
    gap: 20px;
  }

  .footer {
    padding: 36px 0 22px;
  }

  .footer-top {
    gap: 28px;
    margin-bottom: 30px;
  }

  .logos-sec {
    margin-top: -24px;
    margin-bottom: 28px;
  }

  .logos-sec__wrap {
    width: min(var(--content-max-width), calc(100vw - 24px));
    gap: 14px;
    padding: 18px 14px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 92px 0 48px;
  }

  .hero-title {
    font-size: clamp(24px, 9vw, 30px);
    line-height: 1.08;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .hero-buttons {
    width: 100%;
    max-width: 100%;
  }

  .hero-buttons .btn {
    padding: 13px 18px;
    font-size: 14px;
  }

  .logos-sec {
    margin-top: -18px;
    margin-bottom: 24px;
  }

  .evolution,
  .ai-section,
  .recognition-floating-section,
  .services-section,
  .blog-section,
  .contact-sections {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .footer {
    padding: 32px 0 20px;
  }
}

/* Footer mobile consistency for index page */
.footer .container {
  position: relative;
  z-index: 1;
}

.footer-top {
  align-items: start;
}

.footer-brand,
.footer-col {
  min-width: 0;
}

.footer-col a {
  word-break: break-word;
}

@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 992px) {
  .footer {
    padding: 42px 0 28px;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
    margin-bottom: 34px;
  }

  .footer-logo {
    width: 124px;
  }

  .footer-col h4 {
    margin-bottom: 14px;
  }

  .footer-col a {
    margin-bottom: 9px;
  }

  .footer-bottom {
    padding-top: 20px;
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 36px 0 22px;
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    margin-bottom: 24px;
    text-align: left;
  }

  .footer-brand,
  .footer-col {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-copy,
  .footer-top-btn {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0 18px;
  }

  .footer-top {
    gap: 18px;
    margin-bottom: 18px;
  }

  .footer-desc {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 14px;
  }

  .footer-col a {
    font-size: 13px;
  }

  .footer-bottom {
    gap: 10px;
  }
}

/* ===============================================
   LARGE SCREEN ENHANCEMENTS
   =============================================== */
@media (min-width: 1600px) {
  .hero-title {
    font-size: 72px;
  }

  .hero-subtitle {
    font-size: 30px;
    max-width: 70%;
  }

  .ai-grid {
    gap: 120px;
  }

  .ai-module-title {
    font-size: 32px;
  }

  .ai-module-body {
    font-size: 22px;
  }

  .blog-header h2 {
    font-size: 56px;
  }

  .blog-grid {
    gap: 48px;
  }

  .blog-content {
    padding: 36px;
  }

  .timeline {
    max-width: min(var(--content-max-width), 1500px);
  }

  .steps {
    gap: 56px;
  }
}

@media (min-width: 1920px) {
  .hero-title {
    font-size: 78px;
  }

  .hero-subtitle {
    font-size: 32px;
  }

  .blog-grid {
    gap: 56px;
  }
}

@media (min-width: 2560px) {
  .hero-title {
    font-size: 82px;
  }

  .hero-subtitle {
    font-size: 34px;
    max-width: 66%;
  }

  .blog-header h2 {
    font-size: 60px;
  }
}

/* ===============================
   RESPONSIVE SAFETY OVERRIDES
   =============================== */
@media (max-width: 1024px) {
  .logos-sec__wrap {
      flex-wrap: wrap;
      justify-content: center;
    }
  }

/*==============================
   Ro =uta Slider Section (Index)
   =============================== */
.rd-slider-section {
  background: #0f1e78;
  padding: clamp(32px, 4vw, 64px) 0 0px;
  overflow: hidden;
}

.rd-slider-wrap {
  width: min(var(--content-max-width), 100%);
  margin: 0 auto;
  padding: 0 var(--content-gutter);
  position: relative;
  overflow: hidden;
}

.rd-slider {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  height: clamp(420px, 56vw, 640px);
  /* --rd-card-shift: clamp(160px, 18vw, 240px); */
    --rd-card-shift: clamp(160px, 18vw, 340px);
}

.rd-slide {
  width: clamp(190px, 16vw, 240px);
  height: clamp(270px, 24vw, 360px);
  list-style-type: none;
  position: absolute;
  top: 39%;
  transform: translateY(-50%);
  z-index: 1;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  box-shadow: inset 0 18px 28px rgb(148, 185, 255);
  transition: transform 0.4s ease, left 0.75s ease, top 0.75s ease, width 0.75s ease, height 0.75s ease, opacity 0.6s ease;
  opacity: 0.99;
  overflow: hidden;
}

.rd-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.1) 60%, transparent);
  pointer-events: none;
}

.rd-slide:nth-child(1) {
  left: 0;
  top: 0;
  width: 100%;
  height: 78%;
  transform: none;
  border-radius: 24px;
  box-shadow: none;
  opacity: 1;
}

.rd-slide:nth-child(2) { left: 50%; }
.rd-slide:nth-child(3) { left: calc(50% + var(--rd-card-shift)); }
.rd-slide:nth-child(4) {
  left: calc(50% + (var(--rd-card-shift) * 2));
  opacity: 0;
  pointer-events: none;
}
.rd-slide:nth-child(5) { left: calc(50% + (var(--rd-card-shift) * 3)); opacity: 0; pointer-events: none; }

.rd-slide-content {
  width: min(36vw, 440px);
  position: absolute;
  top: 50%;
  left: clamp(24px, 4vw, 48px);
  transform: translateY(-50%);
  color: #ffffff;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
  opacity: 0;
  display: none;
}

.rd-slide-title {
  text-transform: uppercase;
  font-size: 50px;
  margin: 0 0 0.75rem;
  color: #0B1FD1; /* deeper, richer blue */
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4); /* improves readability on blur */
}

.rd-slide-desc {
  line-height: 1.7;
  margin: 0 0 1.3rem;
  font-size: 20px;
  color: #111111; /* slightly softer than pure black for better rendering */
  font-weight: 800;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35); /* improves contrast on blur */
}

.rd-slide-btn {
  width: fit-content;
  background: var(--gradient-cta);
  color: #000;
  border-radius: 6px;
  padding: 0.7rem 1rem;
  cursor: pointer;
  font-weight: 700;
  
}



.rd-slide:nth-child(1) .rd-slide-content {
  display: block;
  animation: rdSlideShow 0.75s ease-in-out 0.25s forwards;
}

.rd-slide-overlay {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  display: grid;
  gap: 4px;
  max-width: calc(100% - 32px);
}
.rd-slide-mini-title {
  font-size: 24px;
  font-weight: 900;
  margin: 0;
  color:#FFDF06; /* slightly deeper orange for better contrast */
  letter-spacing: 0.3px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.rd-slide-mini-desc {
  font-size: 0.97rem;
  margin: 0;
  color: #ffffff; /* replace opacity with solid dark color */
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.rd-slide:nth-child(1) .rd-slide-overlay {
  opacity: 0;
}

@keyframes rdSlideShow {
  0% {
    filter: blur(5px);
    transform: translateY(calc(-50% + 70px));
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

.rd-slider-nav {
  position: absolute;
  /* bottom: clamp(18px, 3vw, 32px); */
  bottom:60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  user-select: none;
  display: flex;
  gap: 16px;
}

.rd-slider-btn {
  width: 56px;          /* medium size */
  height: 56px;
  border-radius: 50%;

  display: flex;        /* better centering than grid */
  align-items: center;
  justify-content: center;

  background-color: rgba(255, 255, 255, 0.85);
  color: #000;
  border: 2px solid rgba(0, 0, 0, 0.4);

  font-size: 26px;      /* bigger arrow */
  font-weight: 500;
  line-height: 1;

  cursor: pointer;
  transition: all 0.25s ease;
}

.rd-slider-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 900px) {
  .rd-slider {
    height: clamp(360px, 70vw, 520px);
    --rd-card-shift: clamp(140px, 22vw, 200px);
  }

  .rd-slide {
    width: clamp(160px, 20vw, 210px);
    height: clamp(230px, 32vw, 300px);
  }

  .rd-slide-content {
    width: min(70vw, 420px);
  }
}

@media (max-width: 650px) {
  .rd-slider {
    height: clamp(320px, 88vw, 460px);
    --rd-card-shift: clamp(120px, 26vw, 170px);
  }

  .rd-slide {
    width: clamp(130px, 28vw, 170px);
    height: clamp(200px, 40vw, 250px);
  }

  .rd-slide-content {
    left: 18px;
    width: min(84vw, 360px);
  }

  .rd-slide-title {
    font-size: 1.05rem;
  }

  .rd-slide-desc {
    font-size: 0.8rem;
  }

  .rd-slider-btn {
    width: 40px;
    height: 40px;
  }
  
}

@media (max-width: 768px) {
  .rd-slider-section {
    padding: 28px 0 0;
    overflow: visible;
  }

  .rd-slider-wrap {
    padding: 0 12px;
    overflow: visible;
  }

  .rd-slider {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    height: auto;
    --rd-card-shift: 0;
  }

  .rd-slide {
    position: relative;
    top: auto;
    left: auto !important;
    width: 100%;
    height: 220px;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto;
    border-radius: 18px;
  }

  .rd-slide:nth-child(1),
  .rd-slide:nth-child(2),
  .rd-slide:nth-child(3),
  .rd-slide:nth-child(4),
  .rd-slide:nth-child(5) {
    left: auto !important;
    top: auto;
    width: 100%;
    height: 220px;
    transform: none !important;
    opacity: 1 !important;
  }

  .rd-slide-content {
    display: block;
    opacity: 1;
    top: auto;
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    transform: none;
  }

  .rd-slide:nth-child(1) .rd-slide-content {
    animation: none;
  }

  .rd-slide-title {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
  }

  .rd-slide-desc {
    font-size: 0.82rem;
    line-height: 1.45;
    margin-bottom: 0.9rem;
  }

  .rd-slide-overlay {
    display: none;
  }

  .rd-slider-nav {
  position: static;
  transform: none;
  margin: 16px auto 0;
  bottom: auto;

  display: flex;
  justify-content: center;   /* perfect center */
  align-items: center;
  gap: 12px;

  width: fit-content;        /* prevents full-width stretch */
  padding: 6px 10px;         /* slight breathing space */
}

  .rd-slider-btn {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .evolution::before {
    width: min(90vw, 720px);
    height: min(90vw, 720px);
    left: 50%;
    transform: translateX(-50%);
  }
}
/*new services css vx*/
/* SECTION */
.vx-product-showcase {
  background: #0f1e78;
  padding: 60px 16px;
}

/* CONTAINER */
.vx-container {
  max-width: 1200px;
  margin: auto;
}

/* MAIN WRAPPER */
.vx-main {
  position: relative;
  height: 420px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 28px;
}

/* SLIDE */
.vx-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;

  opacity: 0;
  transform: scale(1.06);

  transition: 
    opacity 0.8s cubic-bezier(.4,0,.2,1),
    transform 1.2s cubic-bezier(.4,0,.2,1);

  display: flex;
  align-items: center;
  padding: 40px;
}

/* ACTIVE */
.vx-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* EXIT (smooth fade out) */
.vx-slide.exit {
  opacity: 0;
  transform: scale(1.04);
  z-index: 1;
}

/* CONTENT ANIMATION */
.vx-content {
  position: relative;
  max-width: 520px;
  color: #fff;

  opacity: 0;
  transform: translateY(30px);
  transition: 
    opacity 0.8s ease,
    transform 0.8s ease;
}

/* CONTENT SHOW */
.vx-slide.active .vx-content {
  opacity: 1;
  transform: translateY(0);
}

/* DARK OVERLAY */
.vx-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0.25));
}

/* TITLE */
.vx-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
  color:#ffdc06;
}

/* DESC */
.vx-desc {
  font-size: 25px;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* BUTTON */
.vx-btn {
  background: var(--gradient-cta);
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  color: #000;
  transition: 0.25s;
}

.vx-btn:hover {
  transform: translateY(-2px);
}


/* REAL THUMBNAIL GRID */

.vx-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;

  max-width: 1200px;
  margin: 0 auto;
}

/* CARD */
.vx-item {
  position: relative;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;

  transition: 0.3s ease;
}

/* IMAGE */
.vx-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition: transform 0.4s ease;
}

/* OVERLAY */
.vx-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.1)
  );
}

/* TEXT */
.vx-item span {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  z-index: 2;
  padding: 0 10px;
  width: 100%;
}

/* HOVER */
.vx-item:hover img {
  transform: scale(1.08);
}

.vx-item:hover {
  transform: translateY(-4px);
}

/* ACTIVE */
.vx-item.active {
  outline: 3px solid #ffdc06;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .vx-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .vx-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .vx-item {
    height: 120px;
  }
}
/*demo service section*/

/* SECTION */ 
.xp4-showcase {
  background: #0f1e78;
  padding: 70px 20px;
  overflow: hidden;
}

/* CONTAINER */
.xp4-container {
  max-width: 1400px;
  margin: auto;
}

/* ROW */
.xp4-row {
  display: flex;
  gap: clamp(10px, 1.2vw, 16px);
  height: clamp(360px, 32vw, 420px);
}

/* CARD */
.xp4-card {
  flex: 1;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: flex 0.6s ease;
}

/* OVERLAY */
.xp4-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 24, 24, 0.55);
  transition: 0.4s ease;
}

/* CONTENT */
.xp4-content {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 20px;

  opacity: 0;
  transform: scale(0.95);
  transition: all 0.4s ease;

  color: #fff;
}

/* TEXT */
.xp4-content h3 {
  font-size: clamp(26px, 3vw, 40px);
  margin-bottom: 10px;
  color: #ffee00;
}

.xp4-content p {
  font-size: clamp(14px, 1.2vw, 16px);
  max-width: 320px;
  margin-bottom: 15px;
  color: #ffffff;
}

/* BUTTON */
.xp4-btn {
  background: var(--gradient-cta);
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  color: #000;
}

/* ========================= */
/* DESKTOP HOVER FIX */
/* ========================= */
@media (hover: hover) {

  /* reset all when hovering container */
  .xp4-row:hover .xp4-card {
    flex: 1;
  }

  /* default active card should close when another card is hovered */
  .xp4-row:hover .xp4-card.active:not(:hover) {
    flex: 1;
  }

  /* expand only hovered */
  .xp4-row:hover .xp4-card:hover {
    flex: 3;
  }

  .xp4-row:hover .xp4-card:hover .xp4-content {
    opacity: 1;
    transform: scale(1);
  }

  .xp4-row:hover .xp4-card.active:not(:hover) .xp4-content {
    opacity: 0;
    transform: scale(0.95);
  }

  .xp4-row:hover .xp4-card:hover .xp4-overlay {
    background: rgba(0,0,0,0.75);
  }
}

/* ========================= */
/* MOBILE CLICK */
/* ========================= */
.xp4-card.active {
  flex: 3;
}

.xp4-card.active .xp4-content {
  opacity: 1;
  transform: scale(1);
}

.xp4-card:not(.active) .xp4-content {
  opacity: 0;
  transform: scale(0.95);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .xp4-row {
    flex-direction: column;
    height: auto;
  }

  .xp4-card {
    height: clamp(200px, 42vw, 240px);
  }

  .xp4-content {
    padding: 18px;
  }

  .xp4-content h3 {
    font-size: clamp(22px, 5vw, 32px);
  }

  .xp4-content p {
    max-width: 420px;
  }

  .xp4-overlay {
    background: rgba(10, 14, 48, 0.62);
  }
}

@media (max-width: 768px) {
  .floating-marquee {
    padding-inline: 8px;
  }

  .floating-grid {
    animation-duration: 34s;
  }

  .floating-item {
    padding: 10px 12px;
  }

  .floating-item img {
    max-height: 72px;
    max-width: 132px;
  }

  .xp4-showcase {
    padding: 40px 14px 28px;
  }

  .xp4-showcase .services-header {
    margin-bottom: 22px;
    max-width: 100%;
  }

  .xp4-showcase .services-header h3 {
    font-size: 16px;
    gap: 10px;
    margin-bottom: 12px;
    letter-spacing: 1.5px;
  }

  .xp4-showcase .services-header h3::before,
  .xp4-showcase .services-header h3::after {
    width: 34px;
  }

  .xp4-showcase .gradient-title {
    font-size: clamp(24px, 6vw, 32px);
    line-height: 1.12;
  }

  .xp4-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    height: auto;
  }

  .xp4-card {
    height: 180px;
  }

  .xp4-content {
    padding: 14px;
    opacity: 1;
    transform: none;
  }

  .xp4-content h3 {
    font-size: 18px;
  }

  .xp4-content p {
    font-size: 12px;
    max-width: 100%;
  }

  .xp4-overlay {
    background: rgba(10, 14, 48, 0.68);
  }
}

@media (max-width: 480px) {
  .recognition-floating-section {
    padding-bottom: 72px;
  }

  .floating-marquee {
    padding-inline: 4px;
  }

  .floating-grid {
    gap: 4px;
    animation-duration: 38s;
  }

  .floating-item {
    padding: 8px 10px;
  }

  .floating-item img {
    max-height: 56px;
    max-width: 104px;
  }

  .xp4-showcase {
    padding: 34px 12px 24px;
  }

  .xp4-showcase .services-header {
    margin-bottom: 18px;
  }

  .xp4-showcase .services-header h3 {
    font-size: 13px;
    gap: 8px;
    margin-bottom: 10px;
  }

  .xp4-showcase .services-header h3::before,
  .xp4-showcase .services-header h3::after {
    width: 28px;
  }

  .xp4-showcase .gradient-title {
    font-size: clamp(20px, 6.6vw, 26px);
    line-height: 1.1;
  }

  .xp4-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .xp4-card {
    height: 160px;
  }

  .xp4-content {
    padding: 14px;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
  }

  .xp4-content h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .xp4-content p {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .xp4-btn {
    padding: 8px 14px;
  }

  .xp4-overlay {
    background: linear-gradient(
      to top,
      rgba(10, 14, 48, 0.82),
      rgba(10, 14, 48, 0.22)
    );
  }
}

/* =============================================
   OFFICE MAP SECTION – Unique classes, no conflicts
============================================= */

/* Main container */
.office-map-section {
  /* padding: var(--space-section) 0; */
  background: #f8fafc;
}

/* Flex wrapper */
.office-map-wrapper {
  display: flex;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  align-items: stretch;
  min-height: 700px; 
}

/* Map area – sticky on desktop */
.office-map-map-area {
  width: 60%;
  min-height: 700px;
  height: auto;
  position: relative;
  display: flex;
  background: #f0f4ff;
}

/* Map canvas */
#office-map-canvas {
  width: 100%;
  height: 100%;
  min-height: 100%;
  flex: 1;
}

.office-map-icon {
  background: transparent;
  border: none;
}

.office-map-marker {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(37, 69, 252, 0.55);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(37, 69, 252, 0.2);
  position: relative;
}

.office-map-marker img {
  width: 18px;
  height: 23px;
  display: block;
}

.office-map-marker::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgb(15 30 120);
  opacity: 0.0;
  transform: scale(0.7);
  animation: officeMarkerPulse 2.4s ease-in-out infinite;
}

.office-map-marker.is-active {
  border-color: rgba(255, 136, 6, 0.8);
  box-shadow: 0 14px 30px rgba(255, 136, 6, 0.35);
}

.office-map-marker.is-hover {
  transform: scale(1.06);
}

@keyframes officeMarkerPulse {
  0% { opacity: 0.0; transform: scale(0.7); }
  45% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0.0; transform: scale(1.5); }
}

/* Side panel */
.office-map-panel {
  width: 40%;
  height: auto;
  padding: 24px 20px;
  background: #ffffff;
  border-left: 1px solid #e2e8f0;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

/* Title */
.office-map-panel-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  position: relative;
}

.office-map-panel-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #2545FC, #FF8806, #FFDF06);
  border-radius: 2px;
}

/* Office list container */
#office-map-list {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: visible;
  padding-right: 0;
}

/* Individual office card */
.office-map-office {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: none;
}

.office-map-office:hover {
  transform: translateY(-3px);
  background: #0f1e78;
  border-color: #0f1e78;
  box-shadow: 0 12px 30px rgba(15,30,120,0.32);
}

.office-map-office.active:hover {
  background: #0f1e78;
  border-color: #0f1e78;
  box-shadow: 0 12px 30px rgba(15,30,120,0.32);
}

.office-map-office.active {
  background: #f8fafc;
  border-color: #e2e8f0;
  box-shadow: none;
}

.office-map-flag {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #edf2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.office-map-office strong {
  font-size: 1.05rem;
  color: #1e3a8a;
  display: block;
  margin-bottom: 4px;
}

.office-map-office:hover strong,
.office-map-office.active:hover strong {
  color: #ffffff;
}

.office-map-meta {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.4;
}

.office-map-office:hover .office-map-meta,
.office-map-office.active:hover .office-map-meta {
  color: rgba(255, 255, 255, 0.9);
}

.office-map-address {
  font-size: 0.9rem;
  color: #64748b;
  margin-top: 4px;
}

.office-map-office:hover .office-map-address,
.office-map-office.active:hover .office-map-address {
  color: rgba(255, 255, 255, 0.86);
}

.office-map-phone {
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  margin-top: 4px;
}

.office-map-office:hover .office-map-phone,
.office-map-office.active:hover .office-map-phone {
  color: #ffffff;
}



.office-map-tooltip .leaflet-popup-content-wrapper {
  background: #f1f5f9; /* soft neutral base */
  border-radius: 12px;
  padding: 0;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

/* CONTENT */
.office-map-tooltip .leaflet-popup-content {
  margin: 10px 14px 12px 14px;
  font-size: 14px;
  line-height: 1.45;
  color: #334155;
}

/* TITLE */
.office-map-tooltip .leaflet-popup-content strong {
  display: block;
  font-size: 15.5px;
  font-weight: 600;
  color: #2545FC; /* primary brand */
  margin-bottom: 6px;
}

/* ADDRESS TEXT */
.office-map-tooltip .leaflet-popup-content .addr {
  display: block;
  color: #475569;
  font-size: 13.5px;
  margin-bottom: 6px;
}

/* PHONE / NUMBERS → standout */
.office-map-tooltip .leaflet-popup-content .phone {
  display: inline-block;
  color: #FF8806; /* strong highlight */
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
}

/* SECONDARY LABELS */
.office-map-tooltip .leaflet-popup-content .label {
  color: #64748b;
  font-size: 12.5px;
  margin-right: 4px;
}

/* subtle divider */
.office-map-tooltip .leaflet-popup-content .divider {
  height: 1px;
  background: #e2e8f0;
  margin: 6px 0;
}

/* TIP */
.office-map-tooltip .leaflet-popup-tip {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}

/* CLOSE BUTTON */
.office-map-tooltip .leaflet-popup-close-button {
  color: #94a3b8;
  font-size: 15px;
  top: 4px;
  right: 6px;
  padding: 4px;
}

.office-map-tooltip .leaflet-popup-close-button:hover {
  color: #2545FC;
}

/* Responsive – stack on mobile/tablet */
@media (max-width: 1024px) {
  .office-map-wrapper {
    flex-direction: column;
  }

  .office-map-map-area,
  .office-map-panel {
    width: 100%;
    height: auto;
    position: static;
  }

  .office-map-map-area {
    height: 60vh;
    min-height: 500px;
  }

  .office-map-panel {
    height: auto;
    max-height: none;
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .office-map-section {
    padding: 60px 0;
  }

  .office-map-panel-title {
    font-size: 1.4rem;
  }
}

/* Hover-only state overrides */
.office-map-office {
  transition: none;
}

.office-map-office.active {
  background: #f8fafc;
  border-color: #e2e8f0;
  box-shadow: none;
}

.office-map-office.active strong {
  color: #1e3a8a;
}

.office-map-office.active .office-map-meta {
  color: #475569;
}

.office-map-office.active .office-map-address {
  color: #64748b;
}

.office-map-office.active .office-map-phone {
  color: #334155;
}

/* ===============================================
   RESPONSIVE SAFETY LAYER
   =============================================== */
@media (max-width: 992px) {
  .sticky-sidebar {
    display: none;
  }

  [class*="container"] {
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  html,
  body {
    /* overflow-x: hidden; */
  }

  [class*="container"] {
    width: 100%;
    padding-left: clamp(12px, 4vw, 18px) !important;
    padding-right: clamp(12px, 4vw, 18px) !important;
  }

  [class*="grid"],
  [class*="col"],
  [class*="card"] {
    min-width: 0;
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}
/* ===============================================
   UNIFIED FOOTER RESPONSIVE (FOOTER ONLY)
   =============================================== */
.footer {
  background: linear-gradient(180deg, rgba(15, 30, 120, 0.95) 0%, rgba(10, 20, 90, 0.98) 100%) !important;
  color: #ffffff !important;
  position: relative;
  overflow: hidden;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px 36px;
  margin-bottom: 60px;
  align-items: start;
}

.footer-brand,
.footer-col {
  min-width: 0;
}

.footer-logo {
  width: 150px;
  margin-bottom: 18px;
}

.blog-header h3 {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ff8806;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.blog-header h3::before,
.blog-header h3::after {
  content: "";
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #ff8806, #ffdf06);
  display: block;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: var(--yellow, #FFDF06);
}

.footer-col a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  word-break: break-word;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy,
.footer-top-btn {
  font-size: 13px;
}

@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 992px) {
  .footer {
    padding: 42px 0 28px;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
    margin-bottom: 34px;
  }

  .footer-logo {
    width: 124px;
  }

  .footer-col h4 {
    margin-bottom: 14px;
  }

  .footer-col a {
    margin-bottom: 9px;
  }

  .footer-bottom {
    padding-top: 20px;
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 36px 0 22px;
  }

  .footer .container {
    padding-left: clamp(12px, 4vw, 18px);
    padding-right: clamp(12px, 4vw, 18px);
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 22px;
    margin-bottom: 24px;
    text-align: left;
  }

  .footer-brand,
  .footer-col {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-copy,
  .footer-top-btn {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0 18px;
  }

  .footer-top {
    gap: 18px;
    margin-bottom: 18px;
  }

  .footer-desc {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 14px;
  }

  .footer-col a {
    font-size: 13px;
  }

  .footer-bottom {
    gap: 10px;
  }
}


.contact-modal{
  position:fixed;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
  z-index:9999;
}

.contact-modal.active{
  pointer-events:auto;
}

/* overlay */
.modal-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
  backdrop-filter:blur(4px);
  opacity:0;
  transition:.3s;
}

.contact-modal.active .modal-overlay{
  opacity:1;
}

/* compact modal */
.modal-box{
  position:relative;
  width:420px;
  max-width:92%;
  background:#fff;
  border-radius:14px;
  padding:28px;
  box-shadow:0 25px 70px rgba(0,0,0,.25);
  transform:translateY(30px) scale(.96);
  opacity:0;
  transition:.3s ease;
}

.contact-modal.active .modal-box{
  transform:translateY(0) scale(1);
  opacity:1;
}

/* close button */
.modal-close{
  position:absolute;
  top:10px;
  right:14px;
  font-size:24px;
  background:none;
  border:none;
  cursor:pointer;
}

/* header */
.modal-header h3{
  font-size:22px;
  font-weight:800;
  margin-bottom:3px;
  background:var(--gradient-cta);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.modal-header p{
  font-size:13px;
  color:#6b7280;
  margin-bottom:16px;
}

/* form rows */
.form-row{
  display:flex;
  gap:10px;
}

.form-group{
  flex:1;
  margin-bottom:10px;
}

.form-group label{
  font-size:12px;
  font-weight:600;
  margin-bottom:4px;
  display:block;
}


.contact-form input,
.contact-form textarea{
  width:100%;
  padding:10px 11px;
  border-radius:6px;
  border:1px solid #e5e7eb;
  font-size:13px;
  transition:.2s;
}



.contact-form input:focus,
.contact-form textarea:focus{
  border-color:#2545FC;
  box-shadow:0 0 0 2px rgba(37,69,252,.15);
  outline:none;
}

/* button */
.contact-submit{
  width:100%;
  padding:11px;
  border:none;
  border-radius:8px;
  margin-top:6px;
  background:var(--gradient-cta);
  color:#fff;
  font-weight:600;
  font-size:14px;
  cursor:pointer;
}

/* Office map: hover-only highlight (final override) */
.office-map-office {
  transition: none;
}

.office-map-office.active {
  background: #f8fafc;
  border-color: #e2e8f0;
  box-shadow: none;
}

.office-map-office:hover,
.office-map-office.active:hover {
  background: #0f1e78;
  border-color: #0f1e78;
  box-shadow: 0 12px 30px rgba(15, 30, 120, 0.32);
}

.office-map-office.active strong {
  color: #1e3a8a;
}

.office-map-office:hover strong,
.office-map-office.active:hover strong {
  color: #ffffff;
}

.office-map-office.active .office-map-meta {
  color: #475569;
}

.office-map-office:hover .office-map-meta,
.office-map-office.active:hover .office-map-meta {
  color: rgba(255, 255, 255, 0.9);
}

.office-map-office.active .office-map-address {
  color: #64748b;
}

.office-map-office:hover .office-map-address,
.office-map-office.active:hover .office-map-address {
  color: rgba(255, 255, 255, 0.86);
}

.office-map-office.active .office-map-phone {
  color: #334155;
}

.office-map-office:hover .office-map-phone,
.office-map-office.active:hover .office-map-phone {
  color: #ffffff;
}



/* =========================
   FLEX CARDS WRAPPER
========================= */
.expanding-flex-cards {
  display: flex;
  width: 100%;
  gap: 20px;
  margin-top: 60px;
}

/* =========================
   CARD BASE
========================= */
.expanding-flex-cards-item {
  position: relative;
  height: 520px;
  flex: 1;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;

  transition:
    flex 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s ease,
    box-shadow 0.5s ease;
}

.expanding-flex-cards-item:hover {
  transform: scale(1.035);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

/* =========================
   ACTIVE CARD
========================= */
.expanding-flex-cards-item.active {
  flex: 4.5;
  box-shadow: 0 45px 110px rgba(0, 0, 0, 0.35);
}

/* =========================
   IMAGE
========================= */
.expanding-flex-cards-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: scale(1.08);
  transition: transform 1.2s ease;
}

.expanding-flex-cards-item.active img {
  transform: scale(1.15);
}

/* =========================
   OVERLAY (ALWAYS ACTIVE)
========================= */
.expanding-flex-cards-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.8) 30%,
      rgba(0, 0, 0, 0.45) 60%,
      rgba(0, 0, 0, 0.15) 85%
    ),
    radial-gradient(
      circle at 25% 80%,
      rgba(255, 170, 0, 0.2),
      transparent 65%
    );

  transition: all 0.5s ease;
}

/* ACTIVE → slightly lighter but NOT removed */
.expanding-flex-cards-item.active::before {
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.65) 30%,
      rgba(0, 0, 0, 0.3) 60%,
      rgba(0, 0, 0, 0.1) 85%
    ),
    radial-gradient(
      circle at 30% 75%,
      rgba(255, 200, 0, 0.25),
      transparent 70%
    );
}

/* =========================
   FOOTER
========================= */

.expanding-flex-cards-item-footer {
  position: absolute;
  bottom: 28px;
  left: 22px;
  right: 22px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
}

/* =========================
   TITLE (BIG + VERTICAL)
========================= */

.expanding-flex-cards-title {
  font-size: 34px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 2px;
  line-height: 1.2;

  writing-mode: vertical-rl;
  transform: rotate(180deg);

  text-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);

  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================
   ACTIVE TITLE (HORIZONTAL)
========================= */
.expanding-flex-cards-item.active .expanding-flex-cards-title {
  writing-mode: horizontal-tb;
  transform: none;
  font-size: 36px;
  letter-spacing: 1.2px;
}

/* =========================
   BODY CONTENT
========================= */
.expanding-flex-cards-item-body {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;

  opacity: 0;
  transform: translateY(40px);

  transition:
    opacity 0.5s ease,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.expanding-flex-cards-item-body p {
  color: #ffffff;
  font-size: 22px; /* bigger */
  font-weight: 600;
  text-align: center;
  max-width: 600px;
  line-height: 1.7;

  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

/* SHOW CONTENT */
.expanding-flex-cards-item.active .expanding-flex-cards-item-body {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   SUBTLE LIGHT EFFECT
========================= */
.expanding-flex-cards-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background: radial-gradient(
    circle at 70% 20%,
    rgba(255, 255, 255, 0.08),
    transparent 60%
  );

  opacity: 0;
  transition: opacity 0.6s ease;
}

.expanding-flex-cards-item.active::after {
  opacity: 1;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .expanding-flex-cards {
    flex-direction: column;
  }

  .expanding-flex-cards-item {
    height: 320px;
  }

  .expanding-flex-cards-item.active {
    flex: 1;
  }

  .expanding-flex-cards-title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 26px;
  }

  .expanding-flex-cards-item-body p {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .services-section {
    padding-top: var(--space-section-mobile);
    padding-bottom: var(--space-section-mobile);
  }

  .services-header h2 {
    font-size: 28px;
  }

  .expanding-flex-cards {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 24px;
    gap: 16px;
  }

  .expanding-flex-cards-item {
    width: 100%;
    flex: 0 0 auto;
    height: 260px;
  }

  .expanding-flex-cards-item.active {
    height: auto;
    min-height: 360px;
  }

  .expanding-flex-cards-title {
    font-size: 20px;
  }

  .expanding-flex-cards-item-body p {
    font-size: 16px;
  }

  .expanding-flex-cards-item-body {
    position: absolute;
    inset: 0;
    padding: 18px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: none;
  }

  .expanding-flex-cards-item.active .expanding-flex-cards-item-body {
    opacity: 1;
  }

  .expanding-flex-cards-item-body p {
    font-size: 15px;
    max-width: 100%;
    text-align: center;
  }

  .expanding-flex-cards-item.active::before {
    opacity: 0;
  }

  .expanding-flex-cards-item-footer {
    bottom: 14px;
    left: 16px;
    right: 16px;
    width: auto;
  }

  .expanding-flex-cards-item img {
    object-fit: cover;
    object-position: center;
  }
}

.trusted-section {
  background: rgb(16 26 106) !important;

  backdrop-filter: blur(20px);
  
  
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ALIGNMENT FIX */
.trusted-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  padding-left: 10px; /* slight push for alignment */
}

/* LABEL */
.trusted-label {
  font-size: 12px;
  letter-spacing: 1.2px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}

/* MARQUEE */
.trusted-marquee {
  flex: 1;
  overflow: hidden;
  position: relative;
}

/* FADE EDGES (IMPORTANT FIX) */
.trusted-marquee::before,
.trusted-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}



/* TRACK (KEY FIX HERE) */
.trusted-track {
  display: flex;
  width: max-content; /* IMPORTANT */
  gap: 70px;
  animation: marquee 30s linear infinite;
}

/* PERFECT LOOP */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* LOGOS */
.logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LOGO STYLE */
.logo-item img {
  height: 50px;
  max-width: 150px;
  object-fit: contain;

  filter: brightness(0) invert(1) opacity(0.85);
  transition: all 0.3s ease;
}

.logo-item:hover img {
  opacity: 1;
  transform: scale(1.08);
}

/* OPTIONAL: PAUSE ON HOVER */
.trusted-track:hover {
  animation-play-state: paused;
}

/* Office Map Section - Match Contact Layout */

.office-map-section {
  height: clamp(720px, 82vh, 920px);
  min-height: clamp(720px, 82vh, 920px);
  overflow: hidden;
}

.office-map-wrapper {
  height: 100%;
  max-height: 100%;
  align-items: stretch;
}

.office-map-map-area {
  height: 100%;
  min-height: 0;
  overflow: hidden;
  flex: 0 0 60%;
}

#office-map-canvas {
  height: 100%;
  min-height: 100%;
}

.office-map-panel {
  height: 100%;
  max-height: 100%;
  overflow: hidden;
  padding: 18px 18px;
  gap: 12px;
  flex: 0 0 40%;
  min-width: 0;
}

.office-map-panel-title {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

#office-map-list {
  flex: 1 1 auto;
  gap: 8px;
  overflow-y: auto;
  min-height: 0;
  padding-right: 6px;
}

.office-map-office {
  padding: 10px 12px;
  gap: 10px;
  border-radius: 10px;
}

.office-map-flag {
  width: 28px;
  height: 28px;
  font-size: 16px;
}

.office-map-office strong {
  font-size: 0.98rem;
  margin-bottom: 2px;
}

.office-map-meta,
.office-map-address,
.office-map-phone {
  font-size: 0.84rem;
  line-height: 1.25;
}

.office-map-address,
.office-map-phone {
  margin-top: 2px;
}

@media (max-width: 1024px) {
  .office-map-section {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .office-map-wrapper {
    height: auto;
    max-height: none;
  }

  .office-map-map-area {
    height: 60vh;
    min-height: 420px;
    overflow: visible;
  }

  .office-map-panel {
    height: auto;
    max-height: none;
    overflow: visible;
  }
}


/* process Layout */

/* Sticky Follow Section */
.process-sticky-wrap {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(37, 69, 252, 0.08), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}

.process-sticky-section {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.process-sticky-panel {
  --sticky-progress: 0;
  width: min(980px, 92vw);
  margin: 0 auto;
  padding: clamp(32px, 4vw, 56px);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(37, 69, 252, 0.12);
  box-shadow: 0 30px 80px rgba(20, 35, 90, 0.12);
  text-align: center;
  transform: translateY(calc((1 - var(--sticky-progress)) * 28px));
  opacity: calc(0.78 + (var(--sticky-progress) * 0.22));
  transition: transform 0.18s linear, opacity 0.18s linear;
}

.process-sticky-kicker {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #2545FC;
}

.process-sticky-title {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #111111;
}

.process-sticky-text {
  max-width: 720px;
  margin: 20px auto 0;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.6;
  color: #3f455c;
}

.process-sticky-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.process-sticky-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(37, 69, 252, 0.08);
  border: 1px solid rgba(37, 69, 252, 0.16);
  color: #1631b8;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .process-sticky-wrap {
    height: auto !important;
  }

  .process-sticky-section {
    position: relative;
    min-height: auto;
    padding: 72px 20px;
  }

  .process-sticky-panel {
    border-radius: 24px;
    transform: none;
    opacity: 1;
  }

  .process-sticky-text {
    font-size: 17px;
  }
}

@media (min-width: 1440px) {
  .office-map-section {
    height: clamp(760px, 78vh, 940px);
    min-height: clamp(760px, 78vh, 940px);
  }

  .office-map-panel {
    padding: 22px 22px;
  }

  #office-map-list {
    gap: 10px;
  }
}

@media (max-width: 1024px) {
  .office-map-section {
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 44px 0 56px;
  }

  .office-map-wrapper {
    display: flex;
    flex-direction: column;
    height: auto;
    max-height: none;
    min-height: 0;
  }

  .office-map-map-area {
    order: 1;
    width: 100%;
    flex: 0 0 auto !important;
    height: clamp(280px, 42vh, 420px);
    min-height: 280px;
    overflow: hidden;
  }

  #office-map-canvas {
    width: 100%;
    height: 100%;
    min-height: 280px;
  }

  .office-map-panel {
    order: 2;
    width: 100%;
    flex: 0 0 auto !important;
    height: auto;
    max-height: none;
    overflow: visible;
    padding: 18px 14px 12px;
    border-left: none;
    border-top: 1px solid #e2e8f0;
  }

  .office-map-panel-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  #office-map-list {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .office-map-section {
    padding: 24px 0 40px;
  }

  .office-map-map-area {
    display: none;
  }

  #office-map-canvas {
    display: none;
  }

  .office-map-panel {
    padding: 14px 12px 10px;
  }

  .office-map-panel-title {
    font-size: 1.05rem;
    margin-bottom: 10px;
  }

  .office-map-wrapper {
    display: block;
  }

  .office-map-panel {
    width: 100%;
    border-top: none;
  }

  .office-map-office {
    padding: 10px;
    gap: 8px;
    border-radius: 12px;
  }

  .office-map-flag {
    width: 26px;
    height: 26px;
    font-size: 15px;
  }

  .office-map-office strong {
    font-size: 0.92rem;
  }

  .office-map-meta,
  .office-map-address,
  .office-map-phone {
    font-size: 0.78rem;
    line-height: 1.28;
  }
}
