* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: #04091a;
  color: #e2eaf8;
  overflow-x: hidden;
}
a {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
    text-decoration: none;
}
/* NAVBAR */
.navbar {
  background: rgba(6, 13, 30, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0;
  height: 56px;
  transition: all 0.3s ease;
}

.navbar .container-fluid {
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff !important;
  text-decoration: none;
  padding: 0;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.02);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 6px;
}

.brand-logo-icon {
  width: 34px;
  height: 34px;
  position: relative;
}

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

.brand-text {
  line-height: 1.1;
}

.brand-text .main {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
}

.brand-text .sub {
  font-size: 0.6rem;
  font-weight: 400;
  color: #7a93b5;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.navbar-nav {
  flex-direction: row;
  gap: 0;
  align-items: center;
}

.nav-link {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0 14px !important;
  white-space: nowrap;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #1e6fff;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #fff !important;
}

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

.nav-link.active {
  color: #fff !important;
  border-bottom: none;
}

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

.btn-getin {
  background: #1e6fff;
  color: #fff !important;
  border: none;
  border-radius: 5px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.btn-getin:hover {
  background: #0a5ce8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 111, 255, 0.3);
}

/* HERO */
.hero {
  position: relative;
  min-height: 560px;
  background: #04091a;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 53%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.05);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #04091a 46%, rgba(4, 9, 26, 0.3) 60%, rgba(4, 9, 26, 0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 10px 0 10px;
}

.hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 16px;
  color: #fff;
}

.hero h1 .blue {
  color: #3a8eff;
  position: relative;
  display: inline-block;
}

.hero-desc {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  max-width: 490px;
  margin-bottom: 28px;
}

.btn-hero-primary {
  background: #1e6fff;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-hero-primary:hover {
  background: #0a5ce8;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(30, 111, 255, 0.4);
}

.btn-hero-primary i {
  transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
  transform: translateX(3px);
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-hero-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
}

.stat-ic {
  font-size: 1.3rem;
  color: #3a8eff;
}

.stat-val {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stat-lbl {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.3;
}

/* SERVICES */
.services-sec {
  background: #f8f9fc;
  padding: 80px 0;
}

.services-sec .eyebrow {
  font-size: 0.92rem;
  font-weight: 600;
  color: #1e6fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 6px;
}

.services-sec h2 {
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
  color: #0d1b2a;
  margin-bottom: 50px;
}

.svc-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.svc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.svc-img {
  height: 140px;
  overflow: hidden;
  position: relative;
}

.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.svc-card:hover .svc-img img {
  transform: scale(1.1);
}

.svc-body {
  padding: 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.svc-icon-wrap {
  width: 40px;
  height: 40px;
  background: #1e3a8a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.svc-card:hover .svc-icon-wrap {
  background: #1e6fff;
  transform: rotateY(180deg);
}

.svc-icon-wrap i {
  color: #60a5fa;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.svc-card:hover .svc-icon-wrap i {
  color: #fff;
}

.svc-body h5 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.svc-body p {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.6;
  flex: 1;
}

.learn-link {
  color: #1e6fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  transition: gap 0.3s ease;
}

.learn-link:hover {
  color: #0a5ce8;
  gap: 10px;
}

/* PRODUCTS */
.products-sec {
  background: #fff;
  padding: 80px 0;
}

.products-sec .eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e6fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.products-sec h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 12px;
}



.view-all {
  color: #1e6fff;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.view-all:hover {
  color: #0a5ce8;
  transform: translateX(5px);
}

.prod-card {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
}

.prod-card:hover {
  border-color: #1e6fff;
  box-shadow: 0 10px 25px rgba(30, 111, 255, 0.1);
  transform: translateY(-5px);
}

.prod-img {
  height: 160px;
  overflow: hidden;
}

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

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

.prod-body {
  padding: 20px;
}

.prod-body h6 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 8px;
}

.prod-body p {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 15px;
}

.cta-prod-box {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  border-radius: 10px;
  padding: 32px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.cta-prod-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cta-prod-box h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.cta-prod-box p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  line-height: 1.5;
}

.btn-start {
  background: #fff;
  color: #1e3a8a;
  border: none;
  border-radius: 6px;
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.btn-start:hover {
  background: #1e6fff;
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* PROCESS */
.process-sec {
  background: #0b1628;
  padding: 80px 0;
}

.process-sec .eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  color: #1e6fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.process-sec h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.process-line {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  padding-top: 10px;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
}

.step-connector {
  position: absolute;
  top: 24px;
  left: 50%;
  right: -50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 0;
  border-top: 1px dashed rgba(100, 160, 255, 0.35);
}

.step-circle {
  width: 56px;
  height: 56px;
  background: #0f2040;
  border: 2px solid rgba(100, 160, 255, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #60a5fa;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  transition: all 0.4s ease;
}

.process-step:hover .step-circle {
  background: #1e6fff;
  border-color: #1e6fff;
  color: #fff;
  box-shadow: 0 0 20px rgba(30, 111, 255, 0.5);
}

.step-num-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  background: #1e6fff;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step:hover .step-num-badge {
  background: #fff;
  color: #1e6fff;
}

.process-step h6 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 150px;
}

/* INDUSTRIES */
.industries-sec {
  background: #fff;
  padding: 80px 0;
}

.industries-sec .eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e6fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.industries-sec h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0d1b2a;
  line-height: 1.2;
}

.industry-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  cursor: pointer;
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.industry-icon-wrap:hover {
  background: #f8f9fc;
  transform: translateY(-5px);
}

.ind-ic {
  width: 64px;
  height: 64px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #1e6fff;
  background: #f8fafc;
  transition: all 0.4s ease;
}

.industry-icon-wrap:hover .ind-ic {
  background: #1e6fff;
  color: #fff;
  border-color: #1e6fff;
  transform: rotateY(180deg);
}

.ind-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #0d1b2a;
}

/* EXPERTISE */
.expertise-sec {
  background: #0b1628;
  padding: 80px 25px;
}

.expertise-sec .eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e6fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.expertise-sec h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 28px;
}

.btn-know {
  background: #1e6fff;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 12px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-know:hover {
  background: #0a5ce8;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(30, 111, 255, 0.4);
}

.btn-know:hover i {
  transform: translateX(4px);
  transition: transform 0.3s ease;
}

.exp-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.exp-item:hover {
  transform: translateX(5px);
}

.exp-item i {
  color: #3a8eff;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.exp-item strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.exp-item span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  display: block;
}

.expertise-img-box {
  border-radius: 12px;
  overflow: hidden;
  height: 320px;
  position: relative;
}

.expertise-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.expertise-img-box:hover img {
  transform: scale(1.05);
}

.expertise-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 30, 80, 0.5), rgba(0, 100, 255, 0.2));
}

/* CASE STUDIES & TESTIMONIALS */
.cases-sec {
  background: #fff;
  padding: 80px 0;
}

.cases-sec .eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e6fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cases-sec h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0d1b2a;
}

.case-card {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #1e6fff;
}

.case-img {
  height: 150px;
  overflow: hidden;
}

.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.case-card:hover .case-img img {
  transform: scale(1.1);
}

.case-body {
  padding: 20px;
}

.case-body h6 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 8px;
  line-height: 1.4;
}

.case-body p {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Testimonial Carousel Overrides */
.testimonial-col {
  padding-left: 40px;
}

.testimonial-col .eyebrow2 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e6fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.quote-mark {
  font-size: 4rem;
  color: #1e6fff;
  line-height: 0.7;
  font-family: Georgia, serif;
  margin-bottom: 16px;
  display: block;
  opacity: 0.8;
}

.testimonial-col p {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-col .author {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
}

.carousel-indicators.dots {
  position: static;
  margin-left: 0;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 24px !important;
}

.carousel-indicators.dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d1d5db;
  border: none;
  opacity: 1;
  transition: all 0.3s ease;
}

.carousel-indicators.dots button.active {
  background-color: #1e6fff;
  transform: scale(1.2);
}

/* PARTNERS MARQUEE */
.partners-sec {
  background: #fff;
  padding: 50px 0;
  border-top: 1px solid #e5e7eb;
  overflow: hidden;
}
.partners-sec1 {
  background: #e7e7e7 !important;
  padding: 50px 0;
  border-top: 1px solid #e5e7eb;
  overflow: hidden;
}
.partner-track {
  display: flex;
  align-items: center;
  gap: 60px;
  white-space: nowrap;
  animation: scrollMarquee 25s linear infinite;
}

.partner-track:hover {
  animation-play-state: paused;
}

/* .partner-item{filter:grayscale(1);opacity:0.6;transition:all 0.3s ease;font-weight:700;font-size:1.2rem;color:#374151; display:inline-block;} */
.partner-item:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* CTA BAND */
.cta-band {
  background: #04091a;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=1400&q=80') center/cover no-repeat;
  opacity: 0.12;
  mix-blend-mode: luminosity;
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-band h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.cta-band h2 u {
  text-underline-offset: 6px;
  text-decoration-color: #3a8eff;
}

.cta-band p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
}

.btn-cta-band {
  background: #1e6fff;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 111, 255, 0.3);
}

.btn-cta-band:hover {
  background: #0a5ce8;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(30, 111, 255, 0.5);
}

.btn-cta-band:hover i {
  transform: translateX(4px);
  transition: transform 0.3s ease;
}

/* FOOTER */
footer {
  background: #04091a;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 60px 0 24px;
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.foot-brand-icon {
  width: 36px;
  height: 36px;
}

.foot-brand-icon svg {
  width: 36px;
  height: 36px;
}

.foot-brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.foot-brand-sub {
  font-size: 0.6rem;
  color: #7a93b5;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.foot-desc {
  font-size: 0.85rem;
  color: rgb(255, 255, 255);
  line-height: 1.7;
  margin-bottom: 20px;
}

.foot-social {
  display: flex;
  gap: 10px;
}

.foot-soc {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.foot-soc:hover {
  background: #1e6fff;
  color: #fff;
  border-color: #1e6fff;
  transform: translateY(-3px);
}

.foot-heading {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.foot-links {
  list-style: none;
}

.foot-links li {
  margin-bottom: 12px;
}

.foot-links a {
  font-size: 0.82rem;
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: all 0.3s ease;
}

.foot-links a:hover {
  color: #3a8eff;
  padding-left: 5px;
}

.foot-contact-item {
  display: flex;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  align-items: flex-start;
}

.foot-contact-item i {
  color: #3a8eff;
  width: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 40px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.foot-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.foot-bottom a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s;
}

.foot-bottom a:hover {
  color: #fff;
}




/* ===========================
   PREMIUM FOOTER ENHANCEMENT
=========================== */

footer {
  position: relative;
  background: linear-gradient(180deg, #030816 0%, #071223 100%);
  padding: 80px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

/* Background Glow Effects */
footer::before,
footer::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
}

footer::before {
  width: 380px;
  height: 380px;
  background: rgba(30, 111, 255, 0.12);
  top: -140px;
  left: -120px;
  animation: footerGlow1 12s ease-in-out infinite alternate;
}

/*footer::after{*/
/*  width:320px;*/
/*  height:320px;*/
/*  background:rgba(58,142,255,0.08);*/
/*  bottom:-120px;*/
/*  right:-100px;*/
/*  animation:footerGlow2 14s ease-in-out infinite alternate;*/
/*}*/

@keyframes footerGlow1 {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(50px, 40px);
  }
}

@keyframes footerGlow2 {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(-40px, -30px);
  }
}

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

/* Brand Section */
.foot-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  transition: 0.4s ease;
}

.foot-brand:hover {
  transform: translateX(6px);
}

.foot-brand-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
}

.foot-brand:hover .foot-brand-icon {
  transform: rotate(8deg) scale(1.08);
  border-color: #1e6fff;
  box-shadow: 0 0 25px rgba(30, 111, 255, 0.35);
}

.foot-brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.3px;
}

.foot-brand-sub {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: #7ea8ff;
  text-transform: uppercase;
}

/* Description */
.foot-desc {
  font-size: 0.88rem;
  line-height: 1.9;
  color: rgb(255, 255, 255);
  max-width: 360px;
  margin-bottom: 24px;
}

/* Social Icons */
.foot-social {
  display: flex;
  gap: 12px;
}

.foot-soc {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.foot-soc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e6fff, #4fa5ff);
  opacity: 0;
  transition: 0.35s ease;
}

.foot-soc i {
  position: relative;
  z-index: 2;
}

.foot-soc:hover {
  transform: translateY(-6px);
  border-color: #1e6fff;
  box-shadow: 0 10px 25px rgba(30, 111, 255, 0.35);
  color: #fff;
}

.foot-soc:hover::before {
  opacity: 1;
}

/* Headings */
.foot-heading {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.foot-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 2px;
  background: #1e6fff;
  border-radius: 20px;
}

/* Links */
.foot-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.foot-links li {
  margin-bottom: 14px;
}

.foot-links a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 0.84rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.foot-links a::before {
  content: '›';
  opacity: 0;
  transform: translateX(-6px);
  transition: 0.3s ease;
}

.foot-links a:hover {
  color: #4fa5ff;
  transform: translateX(6px);
}

.foot-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Contact */
.foot-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: rgb(255, 255, 255);
  transition: 0.3s ease;
}

.foot-contact-item:hover {
  transform: translateX(5px);
}

.foot-contact-item i {
  width: 38px;
  height: 38px;
  background: rgba(30, 111, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4fa5ff;
  flex-shrink: 0;
  transition: 0.3s ease;
}

.foot-contact-item:hover i {
  background: #1e6fff;
  color: #fff;
  box-shadow: 0 8px 20px rgba(30, 111, 255, 0.35);
}

/* Bottom */
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 55px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.foot-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.foot-bottom a {
  font-size: 0.78rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.45);
  transition: 0.3s ease;
}

.foot-bottom a:hover {
  color: #4fa5ff;
}

/* Fade Animation */
footer .col-lg-4,
footer .col-lg-3,
footer .col-lg-2,
footer .col-lg-1 {
  opacity: 0;
  transform: translateY(30px);
  animation: footerReveal 1s forwards;
}

footer .col-lg-4 {
  animation-delay: 0.1s;
}

footer .col-lg-2:nth-child(2) {
  animation-delay: 0.25s;
}

footer .col-lg-2:nth-child(3) {
  animation-delay: 0.4s;
}

footer .col-lg-1 {
  animation-delay: 0.55s;
}

footer .col-lg-3 {
  animation-delay: 0.7s;
}

@keyframes footerReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media(max-width:991px) {

  footer {
    text-align: center;
  }

  .foot-brand,
  .foot-social {
    justify-content: center;
  }

  .foot-heading::after {
    left: 12%;
    transform: translateX(-50%);
  }

  .foot-contact-item {
    justify-content: center;
  }

  .foot-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-band h2 u {
    text-decoration: none;
    background: linear-gradient(90deg, #1e6fff, #73b4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 34px;
  }


}






/* 
=================== */

/* ===========================
   CTA BAND OPTION 3
   Luxury Split Card Design
=========================== */

.cta-band {
  position: relative;
  padding: 60px 0;
  background:
    radial-gradient(circle at top left, rgba(30, 111, 255, 0.12), transparent 35%),
    radial-gradient(circle at bottom right, rgba(58, 142, 255, 0.08), transparent 35%),
    #050b18;
  overflow: hidden;
}

/* Floating Background Lines */
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.4;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(50px);
  }
}

.cta-band .container {
  position: relative;
  z-index: 2;
}

/* Main Layout */
.cta-band-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;

  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.02));

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  padding: 40px 70px;

  backdrop-filter: blur(20px);

  overflow: hidden;

  transition: 0.4s ease;

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.4);
}

/* Left Accent Glow */
.cta-band-inner::before {
  content: '';
  position: absolute;
  left: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(30, 111, 255, 0.35), transparent 70%);
  filter: blur(30px);
}

/* Right Gradient Border */
.cta-band-inner::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, #1e6fff, #4fa5ff);
  opacity: 0.08;
  border-radius: 50%;
}

/* Hover */
.cta-band-inner:hover {
  transform: translateY(-8px);
  border-color: rgba(79, 165, 255, 0.35);
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(30, 111, 255, 0.08);
}

/* Heading */
.cta-band h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
  max-width: 720px;
  margin-bottom: 20px;
  letter-spacing: -0.6px;
}

.cta-band h2 u {
  text-decoration: none;
  background: linear-gradient(90deg, #1e6fff, #73b4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

/* Underline Glow */
.cta-band h2 u::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 4px;
  border-radius: 20px;
  background: linear-gradient(90deg, #1e6fff, #73b4ff);
  box-shadow: 0 0 20px rgba(30, 111, 255, 0.4);
}

/* Description */
.cta-band p {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.68);
  max-width: 620px;
}

/* Button */
.btn-cta-band {
  position: relative;
  border: none;
  background: transparent;
  color: #fff;

  padding: 18px 38px;
  border-radius: 18px;

  font-size: 0.95rem;
  font-weight: 700;

  border: 1px solid rgba(255, 255, 255, 0.15);

  display: flex;
  align-items: center;
  gap: 12px;

  cursor: pointer;
  overflow: hidden;

  transition: 0.35s ease;

  backdrop-filter: blur(12px);
}

/* Gradient Fill Hover */
.btn-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e6fff, #4fa5ff);
  transform: translateY(100%);
  transition: 0.4s ease;
  z-index: -1;
}

.btn-cta-band:hover::before {
  transform: translateY(0);
}

.btn-cta-band:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow:
    0 15px 35px rgba(30, 111, 255, 0.35);
}

.btn-cta-band i {
  transition: transform 0.3s ease;
}

.btn-cta-band:hover i {
  transform: translateX(6px);
}

/* Floating Mini Elements */
.cta-band-inner span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4fa5ff;
  box-shadow: 0 0 15px rgba(79, 165, 255, 0.5);
}

/* Responsive */
@media(max-width:991px) {

  .cta-band {
    padding: 90px 0;
  }

  .cta-band-inner {
    justify-content: center;
    text-align: center;
    padding: 50px 35px;
  }

  .cta-band h2 {
    font-size: 2rem;
  }

  .cta-band p {
    margin: 0 auto;
  }
}

@media(max-width:576px) {

  .cta-band h2 {
    font-size: 1.6rem;
  }

  .cta-band-inner {
    padding: 40px 24px;
  }

  .btn-cta-band {
    width: 100%;
    justify-content: center;
  }
}





/* ================================== */



/* ===========================
   PREMIUM PARTNERS SECTION
=========================== */

.partners-sec {
  position: relative;
  padding: 30px 0;
  background: #f7f9fc;
  overflow: hidden;
}

/* Soft Background Glow */
.partners-sec::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -120px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(30, 111, 255, 0.08), transparent 70%);
  filter: blur(80px);
}

.partners-sec::after {
  content: '';
  position: absolute;
  right: -150px;
  bottom: -150px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(58, 142, 255, 0.06), transparent 70%);
  filter: blur(90px);
}

.partners-sec .container-fluid {
  position: relative;
  z-index: 2;
}

/* Heading */
.partners-heading {
  text-align: center;
  margin-bottom: 55px;
}

.partners-heading span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  color: #1e6fff;
}

.partners-heading h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 12px;
}

/* Marquee */
.partners-marquee {
  overflow: hidden;
  position: relative;
}

.partner-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: partnerScroll 28s linear infinite;
}

.partner-track:hover {
  animation-play-state: paused;
}

@keyframes partnerScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Card */
.partner-item {
  position: relative;

  min-width: 280px;
  height: 120px;

  background: #fff;
  border-radius: 24px;

  display: flex;
  align-items: center;
  gap: 18px;

  padding: 0 28px;

  border: 1px solid rgba(15, 23, 42, 0.06);

  box-shadow:
    0 15px 35px rgba(15, 23, 42, 0.05);

  transition: all .35s ease;

  cursor: pointer;

  overflow: hidden;
}

/* Hover */
.partner-item:hover {
  transform: translateY(-10px);
  box-shadow:
    0 25px 50px rgba(30, 111, 255, 0.12);
  border-color: rgba(30, 111, 255, 0.18);
}

/* Icon */
.partner-icon {
  width: 64px;
  height: 64px;

  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #081120;
  color: #fff;

  font-size: 1.3rem;
  font-weight: 800;

  flex-shrink: 0;

  transition: .35s ease;
}

.partner-item:hover .partner-icon {
  background: #1e6fff;
  transform: rotate(-8deg) scale(1.08);
}

/* Content */
.partner-content h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}

.partner-content p {
  margin: 4px 0 0;
  font-size: 0.82rem;
  color: #64748b;
}

/* Shine Effect */
.partner-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.6),
      transparent);
  transform: skewX(-20deg);
  transition: .8s ease;
}

.partner-item:hover::before {
  left: 140%;
}

/* Fade Edges */
.partners-marquee {
  mask-image: linear-gradient(to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%);
}

/* Responsive */
@media(max-width:991px) {

  .partners-sec {
    padding: 80px 0;
  }

  .partners-heading h2 {
    font-size: 1.8rem;
  }

  .partner-item {
    min-width: 240px;
    height: 105px;
  }
}

@media(max-width:576px) {

  .partners-heading h2 {
    font-size: 1.5rem;
  }

  .partner-item {
    min-width: 210px;
    height: 95px;
    padding: 0 18px;
  }

  .partner-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .partner-content h5 {
    font-size: 0.9rem;
  }

  .partner-content p {
    font-size: 0.75rem;
  }
}


/* ===========================
   PREMIUM CASE STUDIES SECTION
=========================== */

.cases-sec {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

/* Background Glow */
.cases-sec::before {
  content: '';
  position: absolute;
  top: -180px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 111, 255, 0.08), transparent 70%);
  filter: blur(100px);
  animation: floatGlow1 10s ease-in-out infinite alternate;
}

.cases-sec::after {
  content: '';
  position: absolute;
  right: -150px;
  bottom: -200px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0, 140, 255, 0.06), transparent 70%);
  filter: blur(90px);
  animation: floatGlow2 12s ease-in-out infinite alternate;
}

@keyframes floatGlow1 {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(40px, 25px);
  }
}

@keyframes floatGlow2 {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(-35px, -25px);
  }
}

.cases-sec .container {
  position: relative;
  z-index: 2;
}

/* Heading */
.cases-sec .eyebrow {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1e6fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cases-sec h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

/* View all */
.view-all {
  color: #1e6fff;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: .35s ease;
}

.view-all:hover {
  transform: translateX(6px);
  color: #0a58ff;
}

.view-all i {
  transition: .3s ease;
}

.view-all:hover i {
  transform: translateX(4px);
}

/* Case Cards */
.case-card {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);

  backdrop-filter: blur(14px);

  box-shadow:
    0 20px 40px rgba(15, 23, 42, 0.06);

  transition: all .45s ease;
}

.case-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 30px 60px rgba(30, 111, 255, 0.12);
}

/* Image */
.case-img {
  height: 185px;
  overflow: hidden;
  position: relative;
}

.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

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

/* Gradient Overlay */
.case-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.28),
      transparent);
}

/* Body */
.case-body {
  padding: 28px;
}

.case-body h6 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.5;
}

.case-body p {
  font-size: 0.86rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* Learn Link */
.learn-link {
  color: #1e6fff;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: .3s ease;
}

.learn-link:hover {
  gap: 12px;
}

/* Testimonial Side */
.testimonial-col {
  position: relative;
  padding-left: 60px;
}

/* Testimonial Box */
#testimonialCarousel {
  position: relative;
  background: rgba(255, 255, 255, 0.75);

  padding: 25px 30px;
  border: 1px solid rgba(15, 23, 42, 0.06);

  backdrop-filter: blur(20px);

  box-shadow:
    0 25px 50px rgba(15, 23, 42, 0.07);

  overflow: hidden;
}

/* Border Glow */
#testimonialCarousel::before {
  content: '';
  position: absolute;
  inset: 0;
  
  padding: 1px;

  background: linear-gradient(135deg,
      rgba(30, 111, 255, 0.18),
      transparent,
      rgba(96, 165, 250, 0.18));

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
}

/* Eyebrow */
.eyebrow2 {
  font-size: 0.72rem;
  font-weight: 700;
  color: #1e6fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* Quote */
.quote-mark {
  font-size: 5rem;
  color: #1e6fff;
  line-height: 0.8;
  opacity: .12;
  position: absolute;
  top: 20px;
  right: 30px;
  font-family: Georgia, serif;
}

/* Testimonial Text */
.carousel-item p {
  font-size: 1rem;
  color: #334155;
  line-height: 1.95;
  margin-bottom: 24px;
  font-style: italic;
}

/* Author */
.author {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
}

/* Dots */
.carousel-indicators.dots {
  position: relative;
  margin: 28px 0 0;
  justify-content: flex-start;
  gap: 10px;
}

.carousel-indicators.dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #d1d5db;
  opacity: 1;
  transition: .35s ease;
}

.carousel-indicators.dots button.active {
  width: 34px;
  border-radius: 20px;
  background: #1e6fff;
}

/* Hover Glow */
#testimonialCarousel:hover {
  box-shadow:
    0 30px 65px rgba(30, 111, 255, 0.10);
}

/* Responsive */
@media(max-width:1199px) {

  .testimonial-col {
    padding-left: 25px;
  }
}

@media(max-width:991px) {

  .cases-sec {
    padding: 85px 0;
  }

  .cases-sec h2 {
    font-size: 2rem;
  }

  .testimonial-col {
    padding-left: 0;
    margin-top: 35px;
  }

  #testimonialCarousel {
    padding: 35px 30px;
  }

  .case-img {
    height: 210px;
  }
}

@media(max-width:576px) {

  .cases-sec {
    padding: 70px 0;
  }

  .cases-sec h2 {
    font-size: 1.6rem;
  }

  .case-card {
    border-radius: 20px;
  }

  .case-img {
    height: 190px;
  }

  .case-body {
    padding: 22px;
  }

  .case-body h6 {
    font-size: 0.95rem;
  }

  .case-body p {
    font-size: 0.8rem;
  }

  #testimonialCarousel {
    border-radius: 24px;
    padding: 28px 22px;
  }

  .carousel-item p {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .quote-mark {
    font-size: 4rem;
    right: 20px;
  }
}


/* ===========================
   DARK TESTIMONIAL CAROUSEL
=========================== */

.testimonial-col {
  position: relative;
  padding-left: 50px;
}

/* Eyebrow */
.eyebrow2 {
  font-size: 0.72rem;
  font-weight: 700;
  color: #60a5fa;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* Quote Icon */
.quote-mark {
  position: absolute;
  top: 40px;
  right: 30px;
  font-size: 5rem;
  color: rgba(96, 165, 250, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 1;
}

/* Main Carousel Box */
#testimonialCarousel {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(135deg, #07111f 0%, #0b1628 45%, #111c30 100%);

  border-radius: 32px;

  padding: 50px 45px;

  border: 1px solid rgba(255, 255, 255, 0.06);

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);

  transition: all .4s ease;
}

/* Glow Border */
#testimonialCarousel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 32px;
  padding: 1px;

  background: linear-gradient(135deg,
      rgba(96, 165, 250, 0.25),
      transparent,
      rgba(30, 111, 255, 0.2));

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
}

/* Floating Glow */
#testimonialCarousel::after {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  top: -80px;
  right: -80px;

  background: radial-gradient(circle, rgba(30, 111, 255, 0.18), transparent 70%);
  filter: blur(50px);
  z-index: 0;
}

/* Carousel Inner */
.carousel-inner {
  position: relative;
  z-index: 2;
}

/* Testimonial Text */
.carousel-item p {
  font-size: 1rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 28px;
  font-style: italic;
  transition: .4s ease;
}

/* Author */
.author {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: .3px;
}

/* Indicators */
.carousel-indicators.dots {
  position: relative;
  margin: 32px 0 0;
  justify-content: flex-start;
  gap: 10px;
  z-index: 3;
}

/* Dot */
.carousel-indicators.dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;

  background: rgba(255, 255, 255, 0.25);

  opacity: 1;
  transition: all .35s ease;
}

/* Active Dot */
.carousel-indicators.dots button.active {
  width: 34px;
  border-radius: 30px;
  background: linear-gradient(90deg, #1e6fff, #60a5fa);
  box-shadow: 0 0 15px rgba(30, 111, 255, 0.4);
}

/* Hover Effect */
#testimonialCarousel:hover {
  transform: translateY(-6px);
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(30, 111, 255, 0.12);
}

/* Soft Inner Shine */
.carousel-item {
  animation: fadeSlide 0.6s ease;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media(max-width:991px) {

  .testimonial-col {
    padding-left: 0;
    margin-top: 40px;
  }

  #testimonialCarousel {
    padding: 40px 32px;
  }
}

@media(max-width:576px) {

  #testimonialCarousel {
    padding: 32px 24px;
    border-radius: 24px;
  }

  .carousel-item p {
    font-size: 0.9rem;
    line-height: 1.9;
  }

  .quote-mark {
    font-size: 4rem;
    top: 30px;
    right: 20px;
  }
}



/* Smooth Bootstrap Carousel Animation */
#testimonialCarousel .carousel-inner {
  overflow: hidden;
  border-radius: inherit;
}

#testimonialCarousel .carousel-item {
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.2s ease-in-out;
  opacity: 0;
}

/* Active Slide */
#testimonialCarousel .carousel-item.active {
  opacity: 1;
}

/* Smooth Fade Effect */
.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

/* Smooth Text Movement */
#testimonialCarousel .carousel-item p,
#testimonialCarousel .carousel-item .author {
  transform: translateY(18px);
  opacity: 0;
  transition: all .9s ease;
}

#testimonialCarousel .carousel-item.active p,
#testimonialCarousel .carousel-item.active .author {
  transform: translateY(0);
  opacity: 1;
}

/* Delay Author Slightly */
#testimonialCarousel .carousel-item.active .author {
  transition-delay: .2s;
}

/* Smooth Dots */
.carousel-indicators.dots button {
  transition: all .45s ease;
}


/* Drag Cursor */
#testimonialCarousel {
  cursor: grab;
  user-select: none;
}

#testimonialCarousel:active {
  cursor: grabbing;
}




/* ===========================
   EXPERTISE SECTION - PREMIUM UI UPGRADE
   (SCOPED ONLY)
=========================== */

.expertise-sec {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 70px 30;
  background: #0b1628;
}

/* animated glowing orbs */
.expertise-sec::before,
.expertise-sec::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  z-index: 0;
}

.expertise-sec::before {
  background: #1e6fff;
  top: -160px;
  left: -140px;
  animation: orbMove1 10s ease-in-out infinite alternate;
}

.expertise-sec::after {
  background: #3a8eff;
  bottom: -160px;
  right: -140px;
  animation: orbMove2 12s ease-in-out infinite alternate;
}

@keyframes orbMove1 {
  from {
    transform: translateY(0px) scale(1);
  }

  to {
    transform: translateY(40px) scale(1.1);
  }
}

@keyframes orbMove2 {
  from {
    transform: translateY(0px) scale(1);
  }

  to {
    transform: translateY(-40px) scale(1.15);
  }
}

/* ensure content above glow */
.expertise-sec .container {
  position: relative;
  z-index: 2;
}

/* LEFT HEADING */
.expertise-sec h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

/* BUTTON */
.expertise-sec .btn-know {
  background: #1e6fff;
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.expertise-sec .btn-know:hover {
  transform: translateY(-3px);
  background: #0a5ce8;
  box-shadow: 0 10px 25px rgba(30, 111, 255, 0.35);
}

.expertise-sec .btn-know::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: -100%;
  top: 0;
  background: rgba(255, 255, 255, 0.15);
  transition: 0.4s;
}

.expertise-sec .btn-know:hover::after {
  left: 0;
}

/* EXP ITEM CARD STYLE */
.expertise-sec .exp-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  transition: all 0.35s ease;
  position: relative;
  cursor: default;
}

/* hover glow */
.expertise-sec .exp-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 111, 255, 0.15), transparent);
  border-radius: 12px;
  opacity: 0;
  transition: 0.3s;
}

.expertise-sec .exp-item:hover::before {
  opacity: 1;
}

.expertise-sec .exp-item i {
  color: #3a8eff;
  font-size: 1.1rem;
  margin-top: 3px;
  transition: 0.3s ease;
}

.expertise-sec .exp-item:hover i {
  transform: scale(1.3) rotate(10deg);
  color: #1e6fff;
}

.expertise-sec .exp-item strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.expertise-sec .exp-item span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* IMAGE BOX */
.expertise-sec .expertise-img-box {
  margin-top: 25px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.6s ease;
}

.expertise-sec .expertise-img-box img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.expertise-sec .expertise-img-box:hover img {
  transform: scale(1.06);
}

/* overlay */
.expertise-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(30, 111, 255, 0.15));
}

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

@media (max-width: 992px) {
  .expertise-sec h2 {
    font-size: 1.6rem;
  }

  .expertise-sec .expertise-img-box img {
    height: 260px;
  }
}

@media (max-width: 576px) {
  .expertise-sec {
    padding: 60px 0;
  }

  .expertise-sec h2 {
    font-size: 1.35rem;
  }

  .expertise-sec .exp-item {
    padding: 10px;
  }
}



/* ===========================
   INDUSTRIES SECTION - PREMIUM UPGRADE
   (SCOPED ONLY)
=========================== */

.industries-sec {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  background: #ffffff;
}

/* soft background glow */
.industries-sec::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 111, 255, 0.12), transparent 60%);
  top: -180px;
  left: -160px;
  filter: blur(60px);
  z-index: 0;
}

.industries-sec::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(58, 142, 255, 0.10), transparent 60%);
  bottom: -180px;
  right: -160px;
  filter: blur(60px);
  z-index: 0;
}

.industries-sec .container {
  position: relative;
  z-index: 2;
}

/* LEFT HEADING */
.industries-sec .eyebrow {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1e6fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.industries-sec h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0d1b2a;
  line-height: 1.2;
}

/* ===========================
   INDUSTRY CARD
=========================== */

.industries-sec .industry-icon-wrap {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 18px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

/* hover glow layer */
.industries-sec .industry-icon-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 111, 255, 0.15), transparent);
  opacity: 0;
  transition: 0.3s ease;
}

.industries-sec .industry-icon-wrap:hover::before {
  opacity: 1;
}

/* hover lift */
.industries-sec .industry-icon-wrap:hover {
  transform: translateY(-8px);
  border-color: #1e6fff;
  box-shadow: 0 15px 30px rgba(30, 111, 255, 0.15);
}

/* ICON BOX */
.industries-sec .ind-ic {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f7ff;
  color: #1e6fff;
  font-size: 1.3rem;
  transition: all 0.4s ease;
}

/* icon animation */
.industries-sec .industry-icon-wrap:hover .ind-ic {
  background: #1e6fff;
  color: #fff;
  transform: rotateY(180deg) scale(1.05);
}

/* LABEL */
.industries-sec .ind-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #0d1b2a;
  transition: 0.3s ease;
}

.industries-sec .industry-icon-wrap:hover .ind-label {
  color: #1e6fff;
}

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

@media (max-width: 992px) {
  .industries-sec h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .industries-sec {
    padding: 60px 0;
  }

  .industries-sec h2 {
    font-size: 1.35rem;
  }

  .industries-sec .industry-icon-wrap {
    padding: 14px 8px;
  }
}


/* ============================ */

/* ===========================
   PROCESS SECTION - CONNECTED FLOW (GAF STYLE)
   SCOPED ONLY
=========================== */

.process-sec {
  position: relative;
  padding: 100px 0;
  background: radial-gradient(circle at top left, #0b1628, #070d18);
  overflow: hidden;
}

/* ambient glow */
.process-sec::before,
.process-sec::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.18;
  z-index: 0;
}

.process-sec::before {
  background: #1e6fff;
  top: -200px;
  left: -200px;
}

.process-sec::after {
  background: #3a8eff;
  bottom: -200px;
  right: -200px;
}

/* container */
.process-sec .container {
  position: relative;
  z-index: 2;
}

/* TITLE */
.process-sec .eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3a8eff;
  margin-bottom: 10px;
}

.process-sec h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

/* ===========================
   HORIZONTAL FLOW SYSTEM
=========================== */

.process-line {
  display: flex;
  gap: 50px;
  position: relative;
  align-items: stretch;
  flex-wrap: wrap;
}

/* CONNECTOR LINE */
.process-line::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
      rgba(30, 111, 255, 0.2),
      rgba(30, 111, 255, 0.8),
      rgba(255, 255, 255, 0.1));
  z-index: 0;
}

/* STEP CARD */
.process-step {
  flex: 1;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px 18px;
  position: relative;


}

/* hover lift */
.process-step:hover {

  border-color: #1e6fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* NODE DOT */
.process-step::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;

  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #1e6fff;
  box-shadow: 0 0 18px rgba(30, 111, 255, 0.7);
}

/* ICON */
.step-circle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #0f2040;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  font-size: 1rem;
  margin-bottom: 12px;
  transition: transform 0.35s ease, background 0.35s ease;
}

/* icon hover */
.process-step:hover .step-circle {
  background: #1e6fff;
  color: #fff;
  transform: rotate(12deg) scale(1.05);
}

/* NUMBER BADGE */
.step-num-badge {
  position: absolute;
  top: 10px;
  right: 9px;
  width: 22px;
  height: 22px;
  background: #fff;
  color: #1e6fff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TEXT */
.process-step h6 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.process-step p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

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

@media (max-width: 992px) {
  .process-line {
    flex-direction: column;
  }

  .process-line::before {
    display: none;
  }

  .process-step::before {
    top: 10px;
    left: 10px;
    transform: none;
  }
}



/* ===========================
   ALIGNMENT FIX (SAFE PATCH)
   DOES NOT CHANGE DESIGN
=========================== */

/* better alignment inside bootstrap column */
.process-line {
  align-items: flex-start;
}

/* make cards equal height alignment clean */
.process-step {
  align-self: stretch;
  height: 100%;
}

/* FIX: center connector line properly */
.process-line::before {
  top: 4px;
  /* aligns with icon center better */
}

/* FIX: center dot on each card */
.process-step::before {
  left: 50%;
  transform: translateX(-50%);
}

/* FIX: better spacing consistency */
.process-step {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* FIX: avoid uneven stretch from flex */
.process-step h6 {
  margin-top: 4px;
}

/* FIX: better mobile stacking alignment */
@media (max-width: 992px) {
  .process-step {
    width: 100%;
  }

  .process-line {
    gap: 16px;
  }

  /* remove horizontal line in mobile */
  .process-line::before {
    display: none;
  }

  /* reposition dot for mobile */
  .process-step::before {
    top: 12px;
    left: 14px;
    transform: none;
  }
}

/* FIX: prevent icon shifting */
.step-circle {
  flex-shrink: 0;
}

/* ===========================
   SWIPER PREMIUM BACKGROUND CARDS
=========================== */

.svc-card {
  position: relative;
  height: 380px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transform: translateZ(0);
}

/* BACKGROUND IMAGE */
.svc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 0.6s ease;
}

/* DARK OVERLAY */
.svc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.65) 70%,
      rgba(0, 0, 0, 0.85) 100%);
  backdrop-filter: blur(1px);
}

/* HOVER ZOOM */
.svc-card:hover .svc-bg {
  transform: scale(1.2);
}

/* CONTENT */
.svc-body {
  position: absolute;
  bottom: 0;
  padding: 22px;
  color: #fff;
  z-index: 2;
}

/* ICON */
.svc-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(30, 111, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease;
}

.svc-card:hover .svc-icon-wrap {
  transform: rotateY(180deg);
}

/* TITLE */
.svc-body h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

/* TEXT */
.svc-body p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin-bottom: 12px;
}

/* LINK */
.learn-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: #3a8eff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease, color 0.3s ease;
}

.learn-link:hover {
  color: #fff;
  gap: 12px;
}

/* SWIPER CARD SCALE EFFECT */
.swiper-slide {
  transform: scale(0.95);
  transition: transform 0.4s ease;
}

.swiper-slide-active {
  transform: scale(1);
}

/* MOBILE */
@media (max-width: 768px) {
  .svc-card {
    height: 320px;
  }
}



/* ===========================
   SWIPER PAGINATION (MODERN DOTS)
=========================== */

.servicesSwiper .swiper-pagination {
  bottom: -10px !important;
  text-align: center;
}

.servicesSwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.25);
  opacity: 1;
  margin: 0 6px !important;
  border-radius: 50%;
  position: relative;
  transition: all 0.4s ease;
}

/* active dot */
.servicesSwiper .swiper-pagination-bullet-active {
  background: #1e6fff;
  transform: scale(1.4);
  box-shadow: 0 0 15px rgba(30, 111, 255, 0.7);
}

/* glow pulse effect */
.servicesSwiper .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(30, 111, 255, 0.25);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* ===========================
   SWIPER ARROWS (GLASS NEON STYLE)
=========================== */

.servicesSwiper .swiper-button-prev,
.servicesSwiper .swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.4s ease;
}

/* icon size */
.servicesSwiper .swiper-button-prev::after,
.servicesSwiper .swiper-button-next::after {
  font-size: 14px;
  font-weight: bold;
}

/* hover glow */
.servicesSwiper .swiper-button-prev:hover,
.servicesSwiper .swiper-button-next:hover {
  background: #1e6fff;
  box-shadow: 0 0 20px rgba(30, 111, 255, 0.6);
  transform: scale(1.1);
}

/* positioning tweak */
.servicesSwiper .swiper-button-prev {
  left: 10px;
}

.servicesSwiper .swiper-button-next {
  right: 10px;
}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1200px;
  }
}

/* MOBILE CLEAN UI */
@media (max-width: 768px) {

  .servicesSwiper .swiper-button-prev,
  .servicesSwiper .swiper-button-next {
    display: none;
  }
}


/* ===========================
   HERO NAV - PREMIUM FLOATING CONTROLS
=========================== */

.hero-nav {
  position: absolute;
  bottom: 110px;
  right: 55px;
  display: flex;
  gap: 30px;
  z-index: 20;
}

/* MAIN ARROW BUTTON */
.hero-arrow {
  width: 56px;
  height: 56px;
  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  position: relative;

  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.12);

  color: #fff;
  font-size: 15px;

  overflow: hidden;

  transition: all 0.35s ease;
}

/* glowing gradient layer */
.hero-arrow::before {
  content: "";
  position: absolute;
  inset: -2px;

  background: linear-gradient(135deg,
      #1e6fff,
      #3a8eff,
      #60a5fa);

  opacity: 0;
  transition: 0.4s ease;
  z-index: 0;
}

/* inner shine effect */
.hero-arrow::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 60%);
  top: -30%;
  left: -30%;
  opacity: 0;
  transition: 0.5s ease;
}

/* hover state */
.hero-arrow:hover {
  transform: translateY(-5px) scale(1.08);
  border-color: rgba(30, 111, 255, 0.9);

}

.hero-arrow:hover::before {
  opacity: 1;
}

.hero-arrow:hover::after {
  opacity: 1;
}

/* icon stays above glow */
.hero-arrow i {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

/* icon animation */
.hero-arrow:hover i {
  transform: scale(1.15);
}

/* click effect */
.hero-arrow:active {
  transform: scale(0.92);
}

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

@media (max-width: 768px) {
  .hero-nav {
    right: 18px;
    bottom: 18px;
  }

  .hero-arrow {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
}




/* ===========================
   PREMIUM NAVBAR UPGRADE
=========================== */

.navbar {
  height: 80px;
  /*background: rgba(6, 13, 30, 0.75);*/
    background: #fff;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.35s ease;
}

/* sticky scroll effect */
.navbar.scrolled {
  background: rgba(6, 13, 30, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* brand animation */
.navbar-brand {
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.03);
}

/* NAV LINKS */
.navbar-nav .nav-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  /*color: rgb(255, 255, 255) !important;*/
  color:black !important;
  padding: 10px 14px !important;
  transition: all 0.3s ease;
}

/* hover glow underline */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #1e6fff, #60a5fa);
  transition: 0.3s ease;
  border-radius: 10px;
}

.navbar-nav .nav-link:hover {
  /*color: #fff !important;*/
  color: #071223 !important;
}

.navbar-nav .nav-link:hover::after {
  width: 60%;
}

/* active state */
.navbar-nav .nav-link.active {
  /*color: #fff !important;*/
   color: #000 !important;
}

.navbar-nav .nav-link.active::after {
  width: 80%;
}

/* CTA BUTTON */
.btn-getin {
  background: linear-gradient(135deg, #1e6fff, #3a8eff);
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff !important;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(30, 111, 255, 0.25);
}

.btn-getin:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(30, 111, 255, 0.4);
}

/* ===========================
   MOBILE MENU IMPROVEMENT
=========================== */

@media (max-width: 991px) {

  .navbar-collapse {
    background: rgba(6, 13, 30, 0.98);
    backdrop-filter: blur(16px);
    padding: 20px;
    border-radius: 14px;
    margin-top: 10px;
    animation: fadeDown 0.35s ease;
  }

  .navbar-nav {
    gap: 8px;
  }

  .navbar-nav .nav-link {
    padding: 12px !important;
    border-radius: 8px;
  }

  .navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .btn-getin {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }
}

/* animation */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* ===========================
   MOBILE NAVBAR - PREMIUM OFFCANVAS STYLE
=========================== */

@media (max-width: 991px) {

  /* collapse container becomes floating panel */
  .navbar-collapse {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);

    background: rgba(6, 13, 30, 0.98);
    backdrop-filter: blur(18px);

    padding: 24px;
    overflow-y: auto;

    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;

    transition: all 0.35s ease;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* when menu is open */
  .navbar-collapse.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  /* nav items vertical */
  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-top: 10px;
  }

  .navbar-nav .nav-link {
    width: 100%;
    padding: 14px 12px !important;
    border-radius: 10px;
    font-size: 0.95rem;
  }

  .navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  /* CTA button mobile */
  .btn-getin {
    width: 100%;
    justify-content: center;
    margin-top: 16px;
    padding: 12px;
  }

  /* hamburger button glow */
  .navbar-toggler {
    padding: 6px 10px;
  }

  .navbar-toggler i {
    font-size: 1.2rem;
  }

  .hero {
    padding: 0px 15px;
  }

  .hero h1 {
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.38;
    margin-bottom: 16px;
    color: #fff;
  }

  .products-sec {
    background: #fff;
    padding: 30px 0;
  }

  .process-sec h2 {
    font-size: 1.7rem;
    line-height: 1.2;
  }

  .products-sec h2 {
    font-size: 1.7rem;
    font-weight: 800;
  }
}


/* ===========================
   PROCESS SECTION - RESPONSIVE FIX ONLY
=========================== */

@media (max-width: 1200px) {
  .process-line {
    gap: 16px;
  }

  .process-step {
    transform: none !important;
    /* REMOVE INLINE / GSAP SHIFT ISSUE */
  }
}

/* TABLET */
@media (max-width: 992px) {
  .process-sec .row {
    flex-direction: column;
  }

  .process-sec .col-lg-3 {
    text-align: center;
  }

  .process-sec h2 {
    font-size: 1.8rem;
  }

  .process-line {
    flex-wrap: wrap;
    justify-content: center;
  }

  .process-step {
    flex: 0 0 45%;
    transform: none !important;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .process-sec {
    padding: 70px 0;
  }

  .process-line {
    flex-direction: column;
    align-items: center;
  }

  .process-step {
    width: 100%;
    max-width: 420px;
    transform: none !important;
  }

  .step-circle {
    margin: 0 auto 10px;
  }

  .process-step h6,
  .process-step p {
    text-align: center;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .process-sec h2 {
    font-size: 1.5rem;
  }

  .process-step {
    padding: 18px 16px;
  }
}




/* ===========================
   FOOTER RESPONSIVE LEFT ALIGN FIX
=========================== */

/* TABLET */
@media (max-width: 992px) {

  footer,
  footer .row,
  footer [class*="col-"] {
    text-align: left !important;
  }

  .foot-brand {
    justify-content: flex-start !important;
  }

  .foot-social {
    justify-content: flex-start !important;
  }

  .foot-contact-item {
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .foot-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left !important;
    gap: 10px;
  }
}

/* MOBILE */
@media (max-width: 768px) {

  footer {
    text-align: left !important;
    padding: 60px 0;
  }

  footer * {
    text-align: left !important;
  }

  .foot-brand {
    flex-direction: row;
    justify-content: flex-start !important;
  }

  .foot-links {
    padding-left: 0;
  }

  .foot-links li {
    list-style: none;
    margin-bottom: 8px;
  }

  .foot-contact-item {
    justify-content: flex-start !important;
    gap: 8px;
    margin-bottom: 10px;
  }

  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .foot-bottom .d-flex {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

  .foot-brand-name {
    font-size: 1.1rem;
  }

  .foot-desc {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .foot-heading {
    font-size: 0.95rem;
  }

  .foot-contact-item span {
    font-size: 0.85rem;
  }

  .foot-bottom p {
    font-size: 0.8rem;
  }
}



/* ===========================
   BACK TO TOP BUTTON
=========================== */

.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3a8a, #3a8eff);
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 9999;
}

/* hover effect */
.back-to-top:hover {
  transform: translateY(0) scale(1.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* show state */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


.brand-logo img {
  height: 60px;
}

.container-fluid {
  padding: 0 80px;
  height: 100%;

}

/* ===========================
   PARTNERS SECTION
=========================== */

.partners-sec {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(180deg, #07111f, #091728);
  overflow: hidden;
}

/* Heading */
.partners-heading {
  text-align: center;
  margin-bottom: 55px;
}

.partners-heading h2 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* Marquee */
.partners-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Track */
.partner-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: partnerScroll 35s linear infinite;
}

/* Card */
.partner-item {
  width: 220px;
  height: 120px;
  /*background: rgba(255,255,255,0.04);*/
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(18px);
  transition: all 0.35s ease;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

/* Glow */
.partner-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(58, 142, 255, 0.12),
      transparent 60%);
  opacity: 0;
  transition: 0.4s ease;
}

/* Hover */
.partner-item:hover {
  transform: translateY(-8px);
  border-color: rgba(58, 142, 255, 0.35);
  /*background: rgba(255,255,255,0.08);*/
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.partner-item:hover::before {
  opacity: 1;
}

/* Logo */
.partner-item img {
  max-width: 185px;
  max-height: 80px;
  object-fit: contain;
  /* filter: grayscale(100%) brightness(1.1); */
  /* opacity: 0.85; */
  transition: all 0.35s ease;
}

.partner-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

/* Infinite Scroll */
@keyframes partnerScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Edge Fade */
.partners-marquee::before,
.partners-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 140px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.partners-marquee::before {
  left: 0;
  background: linear-gradient(to right, #07111f, transparent);
}

.partners-marquee::after {
  right: 0;
  background: linear-gradient(to left, #07111f, transparent);
}

.mission-vision-split {
  background: #07111f;
  padding: 80px 0;
}

.mission-vision-split .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.mv-panel {
  border-radius: 30px;
  padding: 38px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
}

.mv-panel i {
  font-size: 2rem;
  color: #60a5fa;
  margin-bottom: 18px
}

.mv-panel p {
  color: rgba(255, 255, 255, .68);
  line-height: 1.8;
}

.values-wave {
  padding: 90px 0;
  background: #f7faff;
}

.wave-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 35px
}

.wave-grid div {
  background: #fff;
  border-radius: 26px;
  padding: 30px;
  border: 1px solid #e5e7eb;
  transition: .35s
}

.wave-grid div:nth-child(even) {
  transform: translateY(28px);
}

.wave-grid div:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(30, 111, 255, .14)
}

.wave-grid i {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #eff6ff;
  color: #1e6fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
}



.mission-vision-split .container {
  grid-template-columns: 1fr
}

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

.why-choose-ribbon {
  background: #fff;
  padding: 90px 0
}

.why-ribbon-card {
  background: linear-gradient(135deg, #071223, #0b1628);
  border-radius: 34px;
  padding: 45px;
  display: grid;
  grid-template-columns: .9fr 1.4fr;
  gap: 36px;
  box-shadow: 0 30px 70px rgba(4, 9, 26, .25);
  position: relative;
  overflow: hidden
}

.why-ribbon-card:after {
  content: "";
  position: absolute;
  right: -110px;
  top: -110px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(30, 111, 255, .2);
  filter: blur(30px)
}

.why-ribbon-card h2 {
  color: #fff
}

.why-ribbon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  position: relative;
  z-index: 2
}

.why-ribbon-grid>div {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  padding: 20px
}

.why-ribbon-grid strong {
  display: block;
  color: #fff;
  margin-bottom: 8px
}

.mv-image-grid-v4 {
  padding: 50px 0;
  background: #fff;
  color: #0f172a
}

.mv-grid-v4 {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px
}

.why-ribbon-grid span {
  color: rgba(255, 255, 255, .68);
  font-size: .86rem;
  line-height: 1.65
}


.mv-grid-v4 {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px
}

.mv-card-v4 {
  border-radius: 30px;
  overflow: hidden;
  min-height: 300px
}

.mv-card-v4.text {
  padding: 38px;
  background: #f3f7ff;
  border: 1px solid #dbeafe
}

.mv-card-v4.text.dark {
  background: #071223;
  color: #fff
}

.mv-card-v4.text.dark p {
  color: rgba(255, 255, 255, .68)
}

.mv-card-v4 i {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #1e6fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px
}

.mv-card-v4 h3 {
  font-weight: 900
}

.mv-card-v4 p {
  color: #475569;
  line-height: 1.8
}

.mv-card-v4.image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.mv-card-v4.tall {
  grid-row: span 1
}

@media (max-width: 992px) {
  .partner-item {
    width: 180px;
    height: 100px;
  }

  .mission-vision-split .container {
    gap: 16px
  }

  .job-detail-grid-v4,
  .mv-grid-v4,
  .case-grid-v4 {
    grid-template-columns: 1fr
  }

  .mv-image-grid-v4 {
    padding: 65px 0
  }

  .why-ribbon-card {
    grid-template-columns: 1fr;
    padding: 30px
  }

  .mv-image-grid-section,
  .why-choose-ribbon {
    padding: 60px 0
  }

  .mv-image-grid-section,
  .why-choose-ribbon {
    padding: 60px 0
  }

  .why-ribbon-card,
  .editorial-feature {
    padding: 22px
  }

  .offer-dial-grid,
  .why-ribbon-grid,
  .solution-map-grid {
    grid-template-columns: 1fr
  }

  .container-fluid {
    padding: 0 15px;
    height: 100%;

  }

  .partner-item img {
    max-width: 110px;
  }

  .partners-heading h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .partners-sec {
    padding: 70px 0;
  }

  .partner-item {
    width: 150px;
    height: 90px;
    border-radius: 18px;
  }

  .partner-item img {
    max-width: 90px;
    max-height: 45px;
  }

  .partner-track {
    gap: 18px;
    animation-duration: 22s;
  }

  .partners-heading h2 {
    font-size: 1.7rem;
  }
}

.learn-link1:hover {
  color: black;
}

.footer::after {
  display: none;
}





/* =========================
   MINI HIGHLIGHTS
========================= */

.mini-highlights-sec {
  padding: 40px 0;


}

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

.mini-highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.12);
}

.mini-highlight-card i {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, #2563eb, #0f172a);
  color: #fff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}

.mini-highlight-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.mini-highlight-card p {
  margin: 0;
  color: #667085;
  font-size: 15px;
  font-weight: 500;
}

/* MOBILE */

@media(max-width:767px) {

  .mini-highlights-sec {
    padding: 30px 0;
  }

  .mini-highlight-card {
    padding: 28px 15px;
  }

  .mini-highlight-card h4 {
    font-size: 18px;
  }

  .services-sec {

    padding: 49px 0;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #04091a 46%, rgba(4, 9, 26, 0.9) 60%, rgba(4, 9, 26, 0.7) 100%);
  }
}



/* MOBILE */
@media (max-width: 768px) {
  .back-to-top {
    width: 45px;
    height: 45px;
    right: 15px;
    bottom: 15px;
  }

  .hero {
    position: relative;
    min-height: 489px;
    background: #04091a;
    overflow: hidden;
    display: flex;
    align-items: center;
  }



}

/* ===========================
   INNER PAGES - SOCBRIDGE
=========================== */
.brand-logo img {
  max-height: 54px;
  width: auto;
  display: block;
}

.dropdown-menu {
  /*background: #071223;*/
color: rgb(255, 255, 255);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.dropdown-item {
  /*color: rgb(255, 255, 255);*/
  color:black;
  font-size: .84rem;
  border-radius: 8px;
  padding: 9px 12px;
}

.dropdown-item:hover {
  /*background: rgba(30, 111, 255, .16);*/
  /*color: #fff;*/
      background: #2779FF;
    color: #fff;
}

.inner-hero {
  min-height: 430px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #04091a;
}

.inner-hero>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .42;
  transform: scale(1.04);
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #04091a 0%, rgba(4, 9, 26, .88) 42%, rgba(4, 9, 26, .55) 100%);
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 40px;
}

.inner-hero .eyebrow,
.inner-section .eyebrow {
  font-size: .82rem;
  font-weight: 800;
  color: #3a8eff;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.inner-hero h1 {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
  max-width: 780px;
  margin-bottom: 18px;
}

.inner-hero p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .72);
  max-width: 760px;
}

.inner-section {
  padding: 85px 0;
  position: relative;
  overflow: hidden;
}

.inner-section.light {
  background: #fff;
  color: #0f172a;
}

.inner-section.dark {
  background: radial-gradient(circle at top left, #0b1628, #050b18);
  color: #fff;
}

.inner-section h2 {
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1.22;
  margin-bottom: 18px;
  color: inherit;
}

.inner-section p {
  font-size: .98rem;
  line-height: 1.8;
  color: #64748b;
}

.inner-section.dark p {
  color: rgba(255, 255, 255, .66);
}

.section-head {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 45px;
}

.inner-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(15, 23, 42, .05);
  transition: .35s ease;
  color: #0f172a;
  position: relative;
  overflow: hidden;
}

.inner-card:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 111, 255, .10), transparent);
  opacity: 0;
  transition: .35s ease;
}

.inner-card:hover {
  transform: translateY(-10px);
  border-color: rgba(30, 111, 255, .35);
  box-shadow: 0 25px 55px rgba(30, 111, 255, .13);
  color: #0f172a;
}

.inner-card:hover:before {
  opacity: 1;
}

.inner-card>i {
  font-size: 1.6rem;
  width: 58px;
  height: 58px;
  background: #f3f7ff;
  color: #1e6fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.inner-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.inner-card p {
  font-size: .88rem;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.inner-card span {
  font-size: .86rem;
  font-weight: 700;
  color: #1e6fff;
  position: relative;
  z-index: 2;
}

.metric-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.metric-panel div {
  background: linear-gradient(135deg, #071223, #0b1b38);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  padding: 30px;
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 25px 55px rgba(0, 0, 0, .18);
}

.metric-panel strong {
  font-size: 2rem;
  color: #60a5fa;
  font-weight: 800;
  line-height: 1.1;
}

.metric-panel span {
  color: rgba(255, 255, 255, .72);
  font-size: .9rem;
  margin-top: 8px;
}

.glass-box {
  height: 100%;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.glass-box i,
.feature-icon i {
  font-size: 1.6rem;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #1e6fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 12px 30px rgba(30, 111, 255, .35);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding: 16px 18px 16px 48px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  color: #334155;
  font-size: .82rem;
  line-height: 1.55;
}

.dark .check-list li {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .75);
}

.check-list li:before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 18px;
  top: 17px;
  color: #1e6fff;
}

.timeline-list {
  display: grid;
  gap: 18px;
}

.timeline-list div {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 22px;
}

.timeline-list strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 6px;
}

.timeline-list span {
  color: rgba(255, 255, 255, .66);
  font-size: .9rem;
}

.job-card,
.blog-card {
  height: 100%;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .05);
  transition: .35s ease;
}

.job-card:hover,
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(30, 111, 255, .12);
  border-color: rgba(30, 111, 255, .25);
}

.job-card h4,
.blog-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.job-card a,
.blog-card a {
  font-size: .88rem;
  font-weight: 700;
  color: #1e6fff;
  text-decoration: none;
}

.blog-card span {
  display: inline-flex;
  background: #edf4ff;
  color: #1e6fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 999px;
  padding: 6px 10px;
  margin-bottom: 16px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-list div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-list i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #edf4ff;
  color: #1e6fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-list span {
  color: #475569;
  line-height: 1.7;
  font-size: .92rem;
}

.contact-form {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
     padding: 10px 34px;
  box-shadow: 0 20px 55px rgba(15, 23, 42, .08);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dbe3ef;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: .92rem;
  color: #0f172a;
  outline: none;
  transition: .25s ease;
  background: #f8fafc;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1e6fff;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(30, 111, 255, .08);
}

.btn-cta-band {
  text-decoration: none;
}
.contact-form select{
  font-size: 14px;
  color: #4c4c4d !important;
}
@media(max-width:991px) {
  .inner-hero h1 {
    font-size: 2.25rem
  }

  .inner-section {
    padding: 65px 0
  }

  .metric-panel {
    grid-template-columns: 1fr
  }

  .navbar-nav {
    flex-direction: column;
    align-items: flex-start
  }

  .navbar {
    height: auto
  }

  .navbar .container-fluid {
    padding: 14px 20px
  }

  .navbar-collapse {
    padding: 18px 0
  }

  .dropdown-menu {
    position: static !important;
    transform: none !important
  }

  .inner-section h2 {
    font-size: 1.7rem
  }
}

@media(max-width:576px) {
  .inner-hero {
    min-height: 360px
  }

  .inner-hero h1 {
    font-size: 1.85rem
  }

  .inner-hero p {
    font-size: .95rem
  }

  .contact-form {
    padding: 24px
  }

  .metric-panel div {
    min-height: 120px
  }
}


/* ===========================
   ENHANCED INNER PAGE SYSTEM
=========================== */
.enhanced-hero {
  min-height: 520px;
}

.inner-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #04091a;
}

.inner-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #04091a 0%, rgba(4, 9, 26, .88) 38%, rgba(4, 9, 26, .38) 100%);
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 15px;
}

.inner-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
  font-weight: 800;
  color: #fff;
  max-width: 850px;
  letter-spacing: -1px;
}

.inner-hero p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .72);
  max-width: 720px;
  margin-top: 20px;
}

.hero-mini-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-mini-actions a {
  text-decoration: none;
}

.inner-section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.inner-section.light {
  background: #f7f9fc;
  color: #0f172a;
}

.inner-section.dark {
  background: radial-gradient(circle at top left, #0b1628, #050b18);
  color: #fff;
}

.section-head {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 48px;
}

.section-head.text-start {
  margin-left: 0;
  text-align: left;
}

.section-head h2,
.inner-section h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
  color: inherit;
}

.section-head p,
.inner-section p {
  color: #6a6a6a;
  line-height: 1.8;
}

.inner-section.dark .section-head p,
.inner-section.dark p {
  color: rgba(255, 255, 255, .68);
}

.eyebrow {
  font-size: .78rem;
  font-weight: 800;
  color: #1e6fff;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-feature-card,
.product-feature-card {
  display: block;
  height: 100%;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, .06);
  box-shadow: 0 20px 45px rgba(15, 23, 42, .06);
  transition: .35s ease;
}

.service-feature-card:hover,
.product-feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(30, 111, 255, .28);
  box-shadow: 0 30px 70px rgba(30, 111, 255, .13);
}

.service-feature-img {
  height: 210px;
  overflow: hidden;
}

.service-feature-img img,
.product-feature-card img,
.insight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .7s ease;
}

.service-feature-card:hover img,
.product-feature-card:hover img,
.insight-card:hover img {
  transform: scale(1.08);
}

.service-feature-body {
    padding: 20px 25px;
}

.service-feature-body i,
.product-feature-card i {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #eff6ff;
  color: #1e6fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.service-feature-body h4,
.product-feature-card h4 {
  font-weight: 800;
  margin-bottom: 10px;
}

.service-feature-body p,
.product-feature-card p {
  font-size: .92rem;
  color: #64748b;
  line-height: 1.7;
}

.service-feature-body span,
.product-feature-card span {
  font-size: .9rem;
  font-weight: 700;
  color: #1e6fff;
}

.image-stack {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, .18);
}

.image-stack img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.image-stack::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 111, 255, .15), rgba(4, 9, 26, .35));
}

.floating-stat {
  position: absolute;
  right: 25px;
  bottom: 25px;
  z-index: 2;
  background: rgba(4, 9, 26, .86);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 18px 22px;
  color: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .28);
}

.floating-stat strong {
  display: block;
  font-size: 1.6rem;
  color: #60a5fa;
}

.floating-stat span {
  font-size: .8rem;
  color: rgba(255, 255, 255, .72);
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.mini-metrics div {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .05);
}

.mini-metrics strong {
  display: block;
  color: #1e6fff;
  font-size: 1.5rem;
}

.mini-metrics span {
  font-size: .78rem;
  color: #64748b;
}

.icon-box-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.icon-box {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  padding: 25px;
  min-height: 145px;
  transition: .35s ease;
  position: relative;
  overflow: hidden;
}

.light .icon-box {
  background: #fff;
  border-color: #e5e7eb;
  box-shadow: 0 14px 35px rgba(15, 23, 42, .05);
}

.icon-box::before {
  content: '';
  position: absolute;
  inset: auto -40px -50px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(30, 111, 255, .12);
  filter: blur(20px);
}

.icon-box:hover {
  transform: translateY(-8px);
  border-color: #1e6fff;
  box-shadow: 0 25px 55px rgba(30, 111, 255, .16);
}

.icon-box i {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #1e6fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.icon-box h5 {
  font-weight: 800;
  font-size: 1rem;
  color: inherit;
  position: relative;
  z-index: 1;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.check-list li {
  position: relative;
  padding: 7px 0 7px 34px;
  color: #475569;
  line-height: 1.2;
}

.dark .check-list li {
  color: rgba(255, 255, 255, .75);
}

.check-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 5px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #1e6fff;
  color: #fff;
  font-size: .7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.two-col {
  columns: 2;
  column-gap: 32px;
}

.visual-panel {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(15, 23, 42, .16);
}

.visual-panel img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.visual-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  background: rgba(4, 9, 26, .86);
  color: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  font-weight: 700;
}

.timeline-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.timeline-step,
.process-grid div {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;
  padding: 28px;
  transition: .35s ease;
}

.timeline-step:hover,
.process-grid div:hover {
  transform: translateY(-8px);
  border-color: #1e6fff;
}

.timeline-step span,
.process-grid span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #1e6fff;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 18px;
}

.gallery-card {
  height: 330px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15, 23, 42, .1);
}

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

.imageCarousel {
  padding-bottom: 50px;
}

.related-box {
  background: #fff;
  border-radius: 28px;
  padding: 35px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, .08);
 border: 1px solid #c9c9c9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.related-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill-link {
  padding: 10px 16px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1e6fff;
  text-decoration: none;
  font-weight: 700;
  font-size: .85rem;
}

.value-card,
.mission-card,
.odc-band>div {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .06);
  height: 100%;
  transition: .35s ease;
}

.value-card:hover,
.mission-card:hover,
.odc-band>div:hover {
  transform: translateY(-8px);
}

.value-card i {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #1e6fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.value-card h4,
.mission-card h3 {
  font-weight: 800;
}

.dark .mission-card {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .1);
}

.mission-card span {
  color: #60a5fa;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .75rem;
}

.odc-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.team-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 45px rgba(15, 23, 42, .07);
  transition: .35s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 65px rgba(30, 111, 255, .15);
}

.team-img {
  height: 310px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s ease;
}

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

.team-info {
  padding: 25px;
}

.team-info h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
}

.team-info p {
  font-size: .9rem;
  color: #64748b;
}

.team-social {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.team-social i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #eff6ff;
  color: #1e6fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-feature-card img {
  height: 240px;
}

.product-feature-card div {
  padding: 26px;
}

.insight-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .06);
  height: 100%;
}

.insight-card img {
  height: 210px;
}

.insight-card h4 {
  font-weight: 800;
  font-size: 1rem;
  color: #0f172a;
  padding: 24px 24px 8px;
}

.insight-card p {
  font-size: .88rem;
  color: #64748b;
  padding: 0 24px 24px;
}

.enhanced-job {
  position: relative;
  overflow: hidden;
}

.job-card.enhanced-job {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .06);
  transition: .35s ease;
}

.job-card.enhanced-job:hover {
  transform: translateY(-8px);
  border-color: #1e6fff;
  box-shadow: 0 26px 60px rgba(30, 111, 255, .14);
}

.job-card h4 {
  font-weight: 800;
  color: #0f172a;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.job-meta span {
  font-size: .78rem;
  background: #eff6ff;
  color: #1e6fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
}

.btn-open-job {
  border: none;
  background: #1e6fff;
  color: #fff;
  border-radius: 12px;
  padding: 11px 18px;
  font-weight: 800;
  transition: .3s ease;
}

.btn-open-job:hover {
  background: #0a5ce8;
  transform: translateY(-2px);
}

.job-modal {
  background: #07111f;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 26px;
  overflow: hidden;
}

.job-modal .modal-header,
.job-modal .modal-footer {
  border-color: rgba(255, 255, 255, .08);
}

.modal-info {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 18px;
  height: 100%;
}

.form-shell {
  background: #fff;
  border-radius: 30px;
  padding: 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 25px 65px rgba(15, 23, 42, .08);
}

.contact-form label {
  font-weight: 800;
  color: #0f172a;
  font-size: .85rem;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dbe3ef;
  border-radius: 14px;
  padding: 8px 15px;
  outline: none;
  background: #f8fafc;
  color: #0f172a;
  transition: .25s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #1e6fff;
  box-shadow: 0 0 0 4px rgba(30, 111, 255, .08);
  background: #fff;
}

.contact-info-panel {
  background: linear-gradient(135deg, #07111f, #0b1628);
  border-radius: 30px;
  padding: 38px;
  color: #fff;
  height: 100%;
  box-shadow: 0 25px 65px rgba(15, 23, 42, .18);
}

.contact-mini {
  display: flex;
  gap: 14px;
  margin-top: 52px;
  align-items: flex-start;
  color: rgb(255, 255, 255);
}

.contact-mini i {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: #1e6fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-section iframe {
  width: 100%;
  height: 430px;
  border: 0;
  display: block;
  filter: saturate(.95) contrast(1.05);
}

@media(max-width:991px) {
  .inner-section {
    padding: 50px 0
  }

  .odc-band {
    grid-template-columns: 1fr
  }

  .two-col {
    columns: 1
  }

  .mini-metrics {
    grid-template-columns: 1fr
  }

  .related-box {
    align-items: flex-start
  }

  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    background: #06101f;
    padding: 15px;
    border-radius: 12px
  }

  .navbar .dropdown-menu {
    background: #07111f;
    border: 1px solid rgba(255, 255, 255, .08)
  }

  .navbar .dropdown-item {
    color: rgba(255, 255, 255, .75)
  }
}

@media(max-width:576px) {
  .inner-hero {
    min-height: 270px
  }

  .inner-hero-content {
    padding: 55px 15px
  }

  .form-shell,
  .contact-info-panel {
    padding: 25px
  }

  .team-img {
    height: 250px
  }

  .gallery-card {
    height: 240px
  }

  .image-stack,
  .image-stack img {
    min-height: 310px
  }

  .visual-panel img {
    height: 280px
  }

  .icon-box-grid {
    grid-template-columns: 1fr
  }

  .cta-band-inner {
    padding: 34px 22px !important
  }
}


/* =========================================================
   SOCBRIDGE INNER PAGES ENHANCEMENT V2
   Keeps home page content/layout intact while upgrading inner pages
========================================================= */
.site-navbar-v2 {
  z-index: 1050;
}

.site-navbar-v2 .navbar-brand img {
  max-height: 58px;
    /*  background: white;*/
    /*border-radius: 3px;*/
}

.site-navbar-v2 .dropdown-toggle::after {
  margin-left: .05rem;
  vertical-align: .12em;
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-chip-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .86);
  font-size: .82rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.premium-hero-v2 h1 {
  max-width: 880px;
}

.premium-hero-v2 p {
  max-width: 780px;
}

.section-heading span {
  font-size: .78rem;
  font-weight: 800;
  color: #1e6fff;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
}

.section-heading h2 {
  font-size: 2.35rem;
  font-weight: 850;
  line-height: 1.18;
  color: #0f172a;
  margin-bottom: 14px;
}

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

.section-heading p {
  font-size: 1rem;
  line-height: 1.8;
  color: #64748b;
  margin: 0 auto;
  max-width: 780px;
}

.dark .section-heading p {
  color: rgba(255, 255, 255, .68);
}

.offer-grid-v2 .icon-box p {
  font-size: .88rem;
  line-height: 1.7;
  color: #64748b;
  margin: 10px 0 0;
  position: relative;
  z-index: 1;
}

.dark .offer-grid-v2 .icon-box p {
  color: rgba(255, 255, 255, .68);
}

.service-feature-card-v2 {
  display: block;
  text-decoration: none;
  color: inherit;
}

.service-deep-card {
  height: 100%;
  padding: 34px;
  border-radius: 26px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .09);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
  transition: .35s ease;
  position: relative;
  overflow: hidden;
}

.service-deep-card::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -80px;
  bottom: -80px;
  background: rgba(30, 111, 255, .16);
  filter: blur(20px);
}

.service-deep-card:hover {
  transform: translateY(-10px);
  border-color: #1e6fff;
}

.service-deep-card span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  background: #1e6fff;
  color: #fff;
  font-weight: 900;
  margin-bottom: 20px;
}

.service-deep-card h4 {
  color: #fff;
  font-weight: 850;
  margin-bottom: 10px;
}

.service-deep-card p {
  color: rgba(255, 255, 255, .68);
  line-height: 1.75;
  margin: 0;
}

.process-grid-v2 div {
  position: relative;
  overflow: hidden;
}

.process-grid-v2 div h4 {
  font-size: 1.05rem;
  font-weight: 850;
  color: inherit;
  margin-bottom: 8px;
}

.process-grid-v2 div p {
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .66);
  margin: 0;
}

.light .process-grid-v2 div {
  background: #fff;
  border-color: #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .06);
}

.light .process-grid-v2 div h4 {
  color: #0f172a;
}

.light .process-grid-v2 div p {
  color: #64748b;
}

.industry-deep-card {
  height: 100%;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .06);
  transition: .35s ease;
}

.industry-deep-card:hover {
  transform: translateY(-10px);
  border-color: #1e6fff;
  box-shadow: 0 28px 62px rgba(30, 111, 255, .14);
}

.industry-deep-card i {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #eff6ff;
  color: #1e6fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 22px;
}

.industry-deep-card h4 {
  font-weight: 850;
  color: #0f172a;
  margin-bottom: 10px;
}

.industry-deep-card p {
  color: #64748b;
  line-height: 1.75;
  margin: 0;
}

.team-card-v2 .team-info span {
  display: block;
  color: #64748b;
  font-size: .82rem;
  line-height: 1.6;
  min-height: 42px;
}

.team-card-v2 .team-social i {
  transition: .3s ease;
}

.team-social i:hover {
  background: #1e6fff;
  color: #fff;
}

.inner-cta-v2 .cta-band-inner {
  align-items: center;
}

.map-section {
  background: #07111f;
  padding: 0 0 0px;
}

.map-section iframe {
  border-radius: 0;
  min-height: 430px;
}

.mobile-nav-head {
  display: none;
}

.mobile-nav-backdrop {
  display: none;
}

.mobile-menu-btn {
  width: 46px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .12) !important;
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
  padding: 9px;
  box-shadow: none !important;
}

.mobile-menu-btn span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 10px;
  margin: 5px 0;
  transition: .3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.mobile-menu-open {
  overflow: hidden;
}

@media (min-width: 992px) {
  .site-navbar-v2 .dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .site-navbar-v2 .dropdown-menu {
    min-width: 245px;
  }
}

@media(max-width:991px) {
  .site-navbar-v2 {
    height: 74px;
  }

  .site-navbar-v2 .container-fluid {
    padding: 0 18px;
  }

  .mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, .65);
    backdrop-filter: blur(5px);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: .3s ease;
    display: block;
  }

  .mobile-nav-backdrop.show {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav-panel {
    display: block !important;
    position: fixed;
    top: 0;
    right: 0;
    width: min(88vw, 390px);
    height: 100vh;
    z-index: 1055;
    background: linear-gradient(180deg, #050b18 0%, #081426 100%);
    border-left: 1px solid rgba(255, 255, 255, .10);
    box-shadow: -25px 0 70px rgba(0, 0, 0, .48);
    padding: 18px;
    transform: translateX(110%);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
    overflow-y: auto;
    border-radius: 0 !important;
  }

  .mobile-nav-panel.show {
    transform: translateX(0);
  }

  .mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .mobile-nav-head img {
    max-height: 48px;
  }

  .mobile-close {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    color: #fff;
  }

  .site-navbar-v2 .navbar-nav {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    width: 100%;
    gap: 8px;
  }

  .site-navbar-v2 .nav-item {
    width: 100%;
  }

  .site-navbar-v2 .navbar-nav .nav-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 14px !important;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    background: rgba(255, 255, 255, .04);
    font-size: .95rem;
  }

  .site-navbar-v2 .navbar-nav .nav-link::after {
    display: none;
  }

  .site-navbar-v2 .navbar-nav .nav-link:hover,
  .site-navbar-v2 .navbar-nav .nav-link.active {
    background: rgba(30, 111, 255, .18);
    border-color: rgba(30, 111, 255, .35);
  }

  .site-navbar-v2 .dropdown-menu {
    position: static !important;
    transform: none !important;
    display: none !important;
    width: 100%;
    margin: 8px 0 0 !important;
    padding: 8px !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, .04) !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    box-shadow: none !important;
  }

  .site-navbar-v2 .dropdown-menu.show {
    display: block !important;
  }

  .site-navbar-v2 .dropdown-item {
    padding: 12px 14px;
    border-radius: 12px;
    font-size: .9rem;
    color: rgba(255, 255, 255, .76) !important;
  }

  .site-navbar-v2 .dropdown-item:hover,
  .site-navbar-v2 .dropdown-item.active {
    background: rgba(30, 111, 255, .18) !important;
    color: #fff !important;
  }

  .mobile-cta-link {
    width: 100%;
    justify-content: center;
    margin-top: 16px;
    padding: 14px 18px !important;
    border-radius: 14px;
  }

  .section-heading h2 {
    font-size: 1.85rem;
  }

  .premium-hero-v2 h1 {
    font-size: 2.2rem;
  }

  .hero-chip-row span {
    font-size: .76rem;
    padding: 9px 11px;
  }

  .map-section {
    padding-bottom: 50px;
  }
}

@media(max-width:576px) {
  .premium-hero-v2 h1 {
    font-size: 1.85rem;
  }

  .premium-hero-v2 p {
    font-size: .94rem;
  }

  .section-heading h2 {
    font-size: 1.55rem;
  }

  .mobile-nav-panel {
    width: 80vw;
  }

  .site-navbar-v2 .navbar-brand img {
    max-height: 46px;
  }

  .service-deep-card {
    padding: 24px;
  }

  .industry-deep-card {
    padding: 24px;
  }

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


/* Requested correction sections - about, insights, industries, detailed careers */
.offer-tile-a {
  height: 100%;
  background: linear-gradient(180deg, #fff, #f7faff);
  border: 1px solid #e5e7eb;
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .06);
  transition: .35s ease;
  position: relative;
  overflow: hidden;
}

.offer-tile-a:before {
  content: '';
  position: absolute;
  right: -70px;
  top: -70px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(30, 111, 255, .10);
}

.offer-tile-a:hover {
  transform: translateY(-10px);
  border-color: rgba(30, 111, 255, .35);
  box-shadow: 0 26px 60px rgba(30, 111, 255, .14);
}

.offer-tile-a i {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #1e6fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.offer-tile-a h4 {
  font-size: 1.05rem;
  font-weight: 850;
  color: #0f172a;
  margin-bottom: 10px;
}

.offer-tile-a p {
  font-size: .9rem;
  line-height: 1.75;
  color: #64748b;
  margin: 0;
}

.about-process-ribbon {
  background: linear-gradient(135deg, #050b18, #0b1b38) !important;
}

.about-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.about-flow-grid div {
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 22px;
  padding: 24px;
  min-height: 230px;
  transition: .35s ease;
}

.about-flow-grid div:hover {
  transform: translateY(-8px);
  border-color: #1e6fff;
  background: rgba(30, 111, 255, .12);
}

.about-flow-grid b {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  background: #1e6fff;
  color: #fff;
  margin-bottom: 18px;
}

.about-flow-grid h4 {
  font-size: 1rem;
  font-weight: 850;
  color: #fff;
  margin-bottom: 8px;
}

.about-flow-grid p {
  font-size: .86rem;
  color: rgba(255, 255, 255, .68);
  line-height: 1.7;
  margin: 0;
}

.mv-grid-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: repeat(2, 280px);
  gap: 22px;
}

.mv-image-big {
  grid-row: span 2;
}

.mv-grid-layout img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .12);
}

.mv-content-card {
  border-radius: 30px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.mv-content-card:after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -80px;
  bottom: -80px;
  background: rgba(255, 255, 255, .14);
}

.mv-content-card.mission {
  background: linear-gradient(135deg, #071223, #1e3a8a);
  color: #fff;
}

.mv-content-card.vision {
  background: linear-gradient(135deg, #1e6fff, #3a8eff);
  color: #fff;
}

.mv-content-card span {
  font-size: .78rem;
  letter-spacing: 2px;
  font-weight: 850;
  text-transform: uppercase;
  color: #b8d4ff;
}

.mv-content-card h3 {
  font-size: 1.35rem;
  font-weight: 850;
  margin: 12px 0;
}

.mv-content-card p {
  color: rgba(255, 255, 255, .78);
  margin: 0;
  line-height: 1.75;
}

.why-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.why-mini-stats div {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
}

.why-mini-stats strong {
  display: block;
  color: #fff;
  font-size: 1.2rem;
}

.why-mini-stats span {
  font-size: .75rem;
  color: rgba(255, 255, 255, .62);
}

.why-stack-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.why-stack-list div {
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 24px;
  padding: 24px;
  transition: .35s ease;
}

.why-stack-list div:hover {
  transform: translateY(-8px);
  border-color: #1e6fff;
}

.why-stack-list i {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: #1e6fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-stack-list h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 850;
}

.why-stack-list p {
  font-size: .86rem;
  color: rgba(255, 255, 255, .68);
  margin: 0;
}

.detailed-job-modal .modal-header {
  align-items: flex-start;
}

.modal-kicker {
  font-size: .72rem;
  letter-spacing: 2px;
  color: #60a5fa;
  font-weight: 850;
  text-transform: uppercase;
}

.job-modal-intro {
  font-size: 1rem !important;
  color: rgba(255, 255, 255, .74) !important;
}

.modal-list-box {
  height: 100%;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 20px;
  padding: 22px;
}

.modal-list-box strong {
  display: block;
  color: #fff;
  margin-bottom: 14px;
}

.modal-list-box ul {
  padding-left: 18px;
  margin: 0;
}

.modal-list-box li {
  color: rgba(255, 255, 255, .72);
  font-size: .9rem;
  line-height: 1.65;
  margin-bottom: 8px;
}

.modal-note {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(30, 111, 255, .12);
  color: rgba(255, 255, 255, .78);
}

.modal-note i {
  color: #60a5fa;
  margin-top: 3px;
}

.insights-editorial {
  background: #f8fbff !important;
}

.insight-feature-layout {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 26px;
}

.insight-feature-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .08);
}

.insight-feature-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.insight-feature-card div {
  padding: 34px;
}

.insight-feature-card span,
.insight-side-stack b {
  font-size: .75rem;
  letter-spacing: 2px;
  color: #1e6fff;
  font-weight: 900;
  text-transform: uppercase;
}

.insight-feature-card h2 {
  color: #0f172a;
  margin: 12px 0;
}

.insight-feature-card p {
  color: #64748b;
}

.insight-feature-card a {
  font-weight: 800;
  color: #1e6fff;
  text-decoration: none;
}

.insight-side-stack {
  display: grid;
  gap: 16px;
}

.insight-side-stack div {
  background: #071223;
  color: #fff;
  border-radius: 26px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .08);
}

.insight-side-stack h4 {
  font-size: 1.05rem;
  font-weight: 850;
  margin: 10px 0;
}

.insight-side-stack p {
  color: rgba(255, 255, 255, .68);
  font-size: .88rem;
  line-height: 1.7;
  margin: 0;
}

.insight-lab-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.insight-lab-grid div {
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 26px;
  padding: 28px;
}

.insight-lab-grid i {
  width: 54px;
  height: 54px;
  border-radius: 17px;
  background: #1e6fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.insight-lab-grid h4 {
  font-size: 1rem;
  font-weight: 850;
  color: #fff;
}

.insight-lab-grid p {
  font-size: .86rem;
  color: rgba(255, 255, 255, .68);
  margin: 0;
}

.insight-roadmap {
  display: grid;
  gap: 14px;
}

.insight-roadmap div {
  border-left: 4px solid #1e6fff;
  background: #fff;
  border-radius: 0 22px 22px 0;
  padding: 22px 26px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, .06);
}

.insight-roadmap span {
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #1e6fff;
  text-transform: uppercase;
}

.insight-roadmap h4 {
  font-weight: 850;
  color: #0f172a;
  margin: 8px 0;
}

.insight-roadmap p {
  margin: 0;
  color: #64748b;
}

.industry-pattern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.industry-pattern-grid div {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .06);
  transition: .35s ease;
}

.industry-pattern-grid div:hover {
  transform: translateY(-8px);
  border-color: #1e6fff;
}

.industry-pattern-grid i {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: #bcd4ff;
  color: #00AC5C;
  
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 30px;
}

.industry-pattern-grid h4 {
  font-size: 1rem;
  font-weight: 850;
  color: #0f172a;
}

.industry-pattern-grid p {
  font-size: .86rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.engage-image-card {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  min-height: 430px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .35);
}

.engage-image-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  opacity: .86;
}

.engage-image-card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: rgba(5, 11, 24, .78);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  padding: 22px;
  backdrop-filter: blur(14px);
}

.engage-image-card strong {
  display: block;
  font-size: 1.4rem;
  color: #fff;
}

.engage-image-card span {
  color: #9ec5ff;
}

.engage-check-list p {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, .72) !important;
  margin-bottom: 14px;
}

.engage-check-list i {
  color: #60a5fa;
  margin-top: 6px;
}

@media(max-width:1199px) {

  .about-flow-grid,
  .insight-lab-grid,
  .industry-pattern-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insight-feature-layout {
    grid-template-columns: 1fr;
  }
}

@media(max-width:991px) {
  .mv-grid-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .mv-image-big,
  .mv-image-small {
    height: 280px;
  }

  .why-stack-list {
    grid-template-columns: 1fr;
  }

  .why-mini-stats {
    grid-template-columns: 1fr;
  }

  .about-flow-grid {
    grid-template-columns: 1fr 1fr;
  }





}
.service-feature-body1 i{
margin-bottom: 2px !important;
}

.partners-sec1{
  background: white;
}



@media(max-width:576px) {

  .about-flow-grid,
  .insight-lab-grid,
  .industry-pattern-grid {
    grid-template-columns: 1fr;
  }

  .offer-tile-a,
  .mv-content-card,
  .why-stack-list div,
  .insight-feature-card div {
    padding: 24px;
  }

  .insight-feature-card img {
    height: 240px;
  }
    .site-navbar-v2 .dropdown-menu {
        position: static !important;
        transform: none !important;
        display: none !important;
        width: 100%;
        margin: 8px 0 0 !important;
        padding: 8px !important;
        border-radius: 16px !important;
        background: rgba(255, 255, 255, .04) !important;
        border: 1px solid rgba(255, 255, 255, .08) !important;
        box-shadow: none !important;
    }
  .about-flow-grid div {
    min-height: auto;
  }

  .engage-image-card,
  .engage-image-card img {
    min-height: 320px;
    height: 320px;
  }

  .detailed-job-modal .modal-body {
    padding: 20px;
  }

  .mobile-nav-panel .dropdown-menu {
        animation: mobileDrop .25s ease;
    }
    .mobile-nav-v3 .dropdown-menu.mobile-open, .mobile-nav-v3 .dropdown-menu.show {
        display: block !important;
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 650px !important;
    }
        .mobile-nav-v3 .dropdown-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height .28s ease, padding .28s ease;
    }
      .mobile-nav-list-v3 .dropdown-toggle:before {
        content: '+';
        width: 26px;
        height: 26px;
        border-radius: 8px;
        background: rgba(30, 111, 255, .16);
        display: flex;
        align-items: center;
        justify-content: center;
        order: 2;
        color: #60a5fa;
        font-weight: 900;
    }
}




@media (max-width: 768px) {
  .icon-box {
    text-align: center;
  }

  .icon-box i {
   
    margin: 0 auto 12px;
  }
 
  .industry-deep-card {
    text-align: center;
  }

  .industry-deep-card i {
  
    margin: 0 auto 15px;
  }
 .mv-card-v4.text {
    text-align: center;
  }

  .mv-card-v4.text i {
   
    margin: 0 auto 15px;
  }
 .offer-tile-a {
    text-align: center;
  }

  .offer-tile-a i {
    margin: 0 auto 15px;
  }


}


/* 1. Global Box-Sizing & Viewport Fix */
html, body {
    overflow-x: hidden !important;
    max-width: 100%;
    width: 100%;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* 2. Floating Card Mobile Fix */
@media (max-width: 768px) {
    .about-floating-card {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 15px;
        max-width: 100%;
    }
}

/* 3. Animation Overflow Safety Wrapper */
/* Add this class to the sections containing your reveal animations */
.overflow-safe-section {
    overflow-x: hidden;
    width: 100%;
}

