


.re-hero-section {
  --re-black:       #07090F;
  --re-navy:        #0D1526;
  --re-blue:        #1B4FD8;
  --re-blue-mid:    #2563EB;
  --re-blue-light:  #38BDF8;
  --re-gold:        #C8A95A;
  --re-white:       #FFFFFF;
  --re-off-white:   #F8FAFF;
  --re-muted:       #8A9BB5;
  --re-glass-bg:    rgba(13, 21, 38, 0.72);
  --re-glass-border:rgba(56, 189, 248, 0.18);

  /* spacing */
  --re-pad-x:       clamp(1.25rem, 5vw, 5rem);
  --re-pad-y:       clamp(3rem,    8vh, 6rem);

  /* type scale */
  --re-h1:          clamp(2.1rem,  4.8vw, 4rem);
  --re-h2:          clamp(1.05rem, 1.9vw, 1.35rem);
  --re-h3:          clamp(0.9rem,  1.4vw, 1.05rem);
  --re-body:        clamp(0.88rem, 1.2vw, 1rem);

  --re-radius:      1rem;
  --re-transition:  0.28s cubic-bezier(.4,0,.2,1);
}

/* ── Reset within scope ────────────────────────────────────── */
.re-hero-section *,
.re-hero-section *::before,
.re-hero-section *::after {
  box-sizing: border-box;
  margin:     0;
  padding:    0;
}

/* ── Section shell ─────────────────────────────────────────── */
.re-hero-section {
  position:         relative;
  background-color: var(--re-black);
  color:            var(--re-white);
  
  overflow: hidden;
  padding: 30px 90px 30px 90px;
}
.re-hero__h1{
  font-size: 2.6rem;
  font-weight: 800;
}
.re-hero__h1-accent{
  background: linear-gradient(
    135deg,
    #0F172A 0%,
    #1D4ED8 50%,
    #60A5FA 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ── Background grid ───────────────────────────────────────── */
.re-hero__bg-grid {
  position:   absolute;
  inset:      0;
  background-image:
    linear-gradient(rgba(27, 79, 216, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 79, 216, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}

/* ── Ambient glows ─────────────────────────────────────────── */
.re-hero__bg-glow {
  position:      absolute;
  border-radius: 50%;
  filter:        blur(120px);
  pointer-events:none;
  z-index:       0;
}
.re-hero__bg-glow--left {
  width:  700px;
  height: 700px;
  top:    -200px;
  left:   -200px;
  background: radial-gradient(circle, rgba(27,79,216,0.18) 0%, transparent 70%);
}
.re-hero__bg-glow--right {
  width:  600px;
  height: 600px;
  bottom: -180px;
  right:  -100px;
  background: radial-gradient(circle, rgba(56,189,248,0.12) 0%, transparent 70%);
}

/* ── Layout container ──────────────────────────────────────── */
.re-hero__container {
  position:        relative;
  z-index:         1;
  display:         grid;
  grid-template-columns: 1fr 1fr;
  gap:             clamp(2rem, 4vw, 5rem);
  align-items:     center;
  max-width:       1380px;
  margin-inline:   auto;
}

/* ─────────────────────────────────────────────────────────────
   LEFT — CONTENT
───────────────────────────────────────────────────────────── */
.re-hero__content {
  display:        flex;
  flex-direction: column;
  gap:            1.4rem;
}

/* paragraph */
.re-hero__para {
  font-size:   var(--re-body);
  font-weight: 400;
  line-height: 1.78;
  color:       #7A8FA8;
  max-width:   52ch;
}


.re-hero__btn {
  display:         inline-flex;
  align-items:     center;
  gap:             0.5rem;
  padding:         0.78rem 1.7rem;
  border-radius:   0.55rem;
  
  font-size:       0.9rem;
  font-weight:     600;
  text-decoration: none;
  transition:      all var(--re-transition);
  white-space:     nowrap;
  cursor:          pointer;
}

/* primary */
.re-hero__btn--primary {
  background:  linear-gradient(135deg, var(--re-blue) 0%, #1a3fc2 100%);
  color:       var(--re-white);
  border:      1px solid transparent;
  box-shadow:  0 0 0 0 rgba(27,79,216,0);
}
.re-hero__btn--primary:hover{
  background: #fff!important;
}


/* secondary */
.re-hero__btn--secondary {
  background:  transparent;
  color:       var(--re-off-white);
  border:      1px solid rgba(255,255,255,0.2);
}

.re-hero__media {
  position: relative;
}

/* decorative angular corner frames */
.re-hero__frame-corner {
  position:   absolute;
  width:      48px;
  height:     48px;
  z-index:    3;
  pointer-events: none;
}
.re-hero__frame-corner--tl {
  top:   -10px;
  left:  -10px;
  border-top:   2px solid var(--re-gold);
  border-left:  2px solid var(--re-gold);
  border-radius: 4px 0 0 0;
}
.re-hero__frame-corner--br {
  bottom: -10px;
  right:  -10px;
  border-bottom: 2px solid var(--re-gold);
  border-right:  2px solid var(--re-gold);
  border-radius: 0 0 4px 0;
}

/* video wrapper */
.re-hero__video-wrap {
  position:     relative;
  border-radius: calc(var(--re-radius) * 1.5);
  overflow:     hidden;
  aspect-ratio: 4/3;
  border:       1px solid rgba(27,79,216,0.35);
  box-shadow:
    0 0 0 1px rgba(56,189,248,0.08),
    0 32px 80px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.re-hero__video {
  width:      100%;
  height:     100%;
  object-fit: cover;
  display:    block;
  transition: transform 0.6s ease;
}
.re-hero__video-wrap:hover .re-hero__video {
  transform: scale(1.03);
}

/* cinematic gradient overlay on video */
.re-hero__video-overlay {
  position:   absolute;
  inset:      0;
  background:
    linear-gradient(to top,   rgba(7,9,15,0.75) 0%,  transparent 45%),
    linear-gradient(to right, rgba(7,9,15,0.25) 0%,  transparent 60%);
  pointer-events: none;
}

/* ── Floating badges ────────────────────────────────────────── */
.re-hero__badge {
  position:     absolute;
  display:      flex;
  align-items:  center;
  gap:          0.65rem;
  padding:      0.65rem 0.9rem;
  background:   var(--re-glass-bg);
  border:       1px solid var(--re-glass-border);
  border-radius: 0.75rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index:      4;
  box-shadow:   0 8px 32px rgba(0,0,0,0.35);
  animation:    re-float 5s ease-in-out infinite;
}

/* AI badge — top-right */
.re-hero__badge--ai {
  top:   -1rem;
  right: -1rem;
  animation-delay: 0s;
}

/* stat badge — bottom-left */
.re-hero__badge--stat {
  bottom: 4rem;
  left:   -1.4rem;
  animation-delay: 1.8s;
}

@keyframes re-float {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-7px); }
}

.re-hero__badge-icon {
  width:          38px;
  height:         38px;
  border-radius:  0.5rem;
  background:     rgba(56,189,248,0.1);
  border:         1px solid rgba(56,189,248,0.25);
  display:        flex;
  align-items:    center;
  justify-content:center;
  flex-shrink:    0;
}
.re-hero__badge-label {
  font-size:   0.8rem;
  font-weight: 700;
  color:       var(--re-off-white);
  line-height: 1;
  margin-bottom: 0.15rem;
}
.re-hero__badge-sub {
  font-size:   0.68rem;
  font-weight: 400;
  color:       var(--re-muted);
  line-height: 1;
}

/* radial stat ring */
.re-hero__stat-ring {
  position:   relative;
  width:      40px;
  height:     40px;
  flex-shrink:0;
  display:    flex;
  align-items:center;
  justify-content:center;
}
.re-hero__stat-ring svg {
  position: absolute;
  top: 0; left: 0;
  transform: rotate(-90deg);
}
.re-hero__stat-num {
  position:    relative;
  font-size:   0.65rem;
  font-weight: 700;
  color:       var(--re-blue-light);
  line-height: 1;
}

/* ── Live pill ──────────────────────────────────────────────── */
.re-hero__pill {
  position:     absolute;
  bottom:       1.2rem;
  right:        1.2rem;
  display:      inline-flex;
  align-items:  center;
  gap:          0.45rem;
  font-size:    0.7rem;
  font-weight:  600;
  color:        var(--re-off-white);
  background:   rgba(0,0,0,0.55);
  border:       1px solid rgba(255,255,255,0.12);
  padding:      0.3rem 0.75rem;
  border-radius:100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  letter-spacing: 0.04em;
  z-index:      5;
}
.re-hero__pill-dot {
  width:         7px;
  height:        7px;
  border-radius: 50%;
  background:    #22C55E;
  box-shadow:    0 0 0 3px rgba(34,197,94,0.25);
  animation:     re-pulse 1.8s infinite;
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────── */

/* Tablet landscape → still 2-col but tighter */
@media (max-width: 1100px) {
  .re-hero__container {
    gap: 2.5rem;
  }
  .re-hero__badge--stat {
    left: 0.5rem;
  }
}

/* Tablet portrait → stack vertically */
@media (max-width: 860px) {
  .re-hero-section {
    padding: clamp(2.5rem,6vw,4rem) clamp(1rem,4vw,2.5rem);
  }
  .re-hero__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .re-hero__media {
    order: -1;   /* video above text on tablet/mobile */
    max-width: 620px;
    margin-inline: auto;
    width: 100%;
  }
  .re-hero__para {
    max-width: 65ch;
  }
}

/* Mobile */
@media (max-width: 560px) {
  .re-hero__h1 {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
  }
  .re-hero__trust-bar {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .re-hero__trust-divider {
    display: none;
  }
  .re-hero__badge--ai {
    top: -0.5rem;
    right: 0.25rem;
  }
  .re-hero__badge--stat {
    left: 0.25rem;
    bottom: 3.5rem;
  }
  .re-hero__cta-group {
    flex-direction: column;
  }
  .re-hero__btn {
    width: 100%;
    justify-content: center;
  }
  .re-hero__frame-corner--tl,
  .re-hero__frame-corner--br {
    display: none;
  }
}

/* Large desktop */
@media (min-width: 1440px) {
  .re-hero-section {
    padding: 7rem var(--re-pad-x);
  }
  .re-hero__container {
    grid-template-columns: 55% 1fr;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .re-hero__eyebrow-dot,
  .re-hero__pill-dot,
  .re-hero__badge {
    animation: none;
  }
  .re-hero__video-wrap:hover .re-hero__video {
    transform: none;
  }
}


/* ── Reset / Section Wrapper ── */
.sg-sec2 {
  overflow: hidden;
}

/* ════════════════════════════════
   HERO BAND
   ════════════════════════════════ */
.sg-sec2-hero {
  background: #000000;
  position: relative;
  padding-top: 30px;
  padding-bottom: 70px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 87%, 0 100%);
}

/* Diagonal grid texture */
.sg-sec2-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -52deg,
      rgba(21, 101, 192, 0.07) 0px,
      rgba(21, 101, 192, 0.07) 1px,
      transparent 1px,
      transparent 52px
    );
  pointer-events: none;
}

/* Ambient blue glow */
.sg-sec2-hero::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(21, 101, 192, 0.18) 0%, transparent 68%);
  pointer-events: none;
}

/* Eyebrow pill */
.sg-sec2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #42A5F5;
  margin-bottom: 22px;
  padding: 6px 18px;
  border: 1px solid rgba(66, 165, 245, 0.38);
  border-radius: 24px;
  background: rgba(66, 165, 245, 0.07);
}

.sg-sec2-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #42A5F5;
  display: inline-block;
  animation: sg2-pulse 2.2s ease-in-out infinite;
}

@keyframes sg2-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.65); }
}

/* Main headline */
.sg-sec2-headline {
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  font-weight: 800;
  line-height: 1.22;
  color: #ffffff;
  margin-bottom: 22px;
  letter-spacing: -0.3px;
}

/* Intro paragraph */
.sg-sec2-intro {
  font-size: 1.02rem;
  line-height: 1.82;
  color: rgba(255, 255, 255, 0.66);
  max-width: 610px;
  margin-bottom: 0;
}

/* ── Stat Badge ── */
.sg-sec2-badge-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-top: 24px;
}

.sg-sec2-badge {
  background: linear-gradient(148deg, #1565C0 0%, #0A2463 100%);
  border-radius: 20px;
  padding: 44px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(66, 165, 245, 0.22);
  box-shadow: 0 28px 64px rgba(21, 101, 192, 0.38), 0 0 0 1px rgba(255,255,255,0.04) inset;
  max-width: 260px;
  width: 100%;
}

.sg-sec2-badge::before {
  content: '';
  position: absolute;
  top: -44px;
  right: -44px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.sg-sec2-badge::after {
  content: '';
  position: absolute;
  bottom: -56px;
  left: -32px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.sg-sec2-badge-num {
  font-size: 5.6rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  letter-spacing: -3px;
}

.sg-sec2-badge-rule {
  width: 36px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 auto 14px;
  position: relative;
  z-index: 1;
  border-radius: 2px;
}

.sg-sec2-badge-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ════════════════════════════════
   FEATURES GRID
   ════════════════════════════════ */
.sg-sec2-features {
  background: #F4F8FF;
  padding: 28px 0 80px;
  margin-top: -52px;
  position: relative;
  z-index: 2;
}

/* ── Card ── */
.sg-sec2-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 28px 32px;
  height: 100%;
  position: relative;
  border: 1px solid rgba(21, 101, 192, 0.09);
  border-top: 3px solid rgba(21, 101, 192, 0.12);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Animated top accent bar */
.sg-sec2-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1565C0 0%, #42A5F5 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

/* Corner triangle accent */
.sg-sec2-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 56px 56px;
  border-color: transparent transparent rgba(21, 101, 192, 0.06) transparent;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sg-sec2-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 52px rgba(21, 101, 192, 0.13), 0 4px 16px rgba(0, 0, 0, 0.06);
  border-color: rgba(21, 101, 192, 0.18);
  border-top-color: transparent;
}

.sg-sec2-card:hover::before {
  transform: scaleX(1);
}

.sg-sec2-card:hover::after {
  opacity: 1;
}

/* Icon container */
.sg-sec2-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.09) 0%, rgba(21, 101, 192, 0.17) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1565C0;
  margin-bottom: 22px;
  flex-shrink: 0;
  transition: background 0.32s ease, color 0.32s ease, transform 0.32s ease;
}

.sg-sec2-card:hover .sg-sec2-card-icon {
  background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
  color: #ffffff;
  transform: scale(1.08);
}

/* Card heading */
.sg-sec2-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
  line-height: 1.38;
}

/* Card body */
.sg-sec2-card-desc {
  font-size: 0.9rem;
  line-height: 1.74;
  color: rgba(0, 0, 0, 0.62);
  margin-bottom: 0;
  flex-grow: 1;
}

/* ════════════════════════════════
   RESPONSIVE
   ════════════════════════════════ */
@media (max-width: 991px) {
  .sg-sec2-hero {
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
    padding-bottom: 128px;
  }
  .sg-sec2-features {
    margin-top: -40px;
  }
}

@media (max-width: 767px) {
  .sg-sec2-hero {
    clip-path: none;
    padding: 60px 0 60px;
  }
  .sg-sec2-features {
    margin-top: 0;
    padding: 48px 0 56px;
  }
  .sg-sec2-headline {
    font-size: 1.6rem;
  }
  .sg-sec2-card {
    padding: 28px 22px 24px;
  }
}

@media (max-width: 480px) {
  .sg-sec2-headline {
    font-size: 1.42rem;
  }
  .sg-sec2-badge-num {
    font-size: 4.2rem;
  }
}


.sg-sec3 {
  overflow: hidden;
}
.sg-sec3-hero {
  background: #000000;
  position: relative;
  padding: 30px 0;
  overflow: hidden;
margin-bottom: 30px;
}

.sg-sec3-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -52deg,
    rgba(21, 101, 192, 0.065) 0px,
    rgba(21, 101, 192, 0.065) 1px,
    transparent 1px,
    transparent 50px
  );
  pointer-events: none;
}

.sg-sec3-hero::after {
  content: '';
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(21, 101, 192, 0.16) 0%, transparent 68%);
  pointer-events: none;
}

.sg-sec3-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #42A5F5;
  margin-bottom: 20px;
  padding: 6px 18px;
  border: 1px solid rgba(66, 165, 245, 0.35);
  border-radius: 24px;
  background: rgba(66, 165, 245, 0.07);
}

.sg-sec3-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #42A5F5;
  display: inline-block;
  animation: sg3-blink 2.2s ease-in-out infinite;
}

@keyframes sg3-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.6); }
}

.sg-sec3-headline {
  font-size: clamp(1.65rem, 3.2vw, 2.45rem);
  font-weight: 800;
  line-height: 1.24;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
 text-align: center;
}

.sg-sec3-intro {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.64);
  margin-bottom: 0;
  text-align: center;
}

/* ════════════════════════════════
   TAB BODY
   ════════════════════════════════ */
.sg-sec3-body {
  background: #F4F8FF;
  padding: 0 0 84px;
  margin-top: -36px;
  position: relative;
  z-index: 2;
}

.sg-sec3-inner {
  padding-top: 56px;
}

/* ── Tab Nav ── */
.sg-sec3-tab-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: sticky;
  top: 24px;
}

.sg-sec3-tab-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  background: #ffffff;
  border: 1px solid rgba(21, 101, 192, 0.1);
  border-left: 3px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  width: 100%;
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
  transition: all 0.24s ease;
  outline: none;
  position: relative;
}

.sg-sec3-tab-btn:hover {
  background: rgba(21, 101, 192, 0.05);
  border-left-color: #42A5F5;
  color: #1565C0;
}

.sg-sec3-tab-btn.active {
  background: #1565C0;
  border-color: #1565C0;
  color: #ffffff;
  box-shadow: 0 8px 28px rgba(21, 101, 192, 0.28);
}

.sg-sec3-btn-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(21, 101, 192, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1565C0;
  flex-shrink: 0;
  transition: background 0.24s ease, color 0.24s ease;
}

.sg-sec3-tab-btn.active .sg-sec3-btn-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.sg-sec3-btn-label {
  flex: 1;
}

/* Arrow pointer on active tab */
.sg-sec3-tab-btn.active::after {
  content: '';
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 13px solid #1565C0;
  z-index: 3;
}

/* ── Tab Content Panel ── */
.sg-sec3-tab-content {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(21, 101, 192, 0.1);
  box-shadow: 0 10px 40px rgba(21, 101, 192, 0.09), 0 2px 8px rgba(0, 0, 0, 0.04);
  min-height: 480px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sg-sec3-tab-content::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(21, 101, 192, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.sg-sec3-tab-content::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 90px 90px;
  border-color: transparent transparent rgba(21, 101, 192, 0.05) transparent;
  pointer-events: none;
}

/* ── Panes ── */
.sg-sec3-pane {
  display: none;
  padding: 48px 48px 44px;
  flex: 1;
  flex-direction: column;
}

.sg-sec3-pane.active {
  display: flex;
  animation: sg3-fadein 0.32s ease;
}

@keyframes sg3-fadein {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.sg-sec3-pane-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.1) 0%, rgba(21, 101, 192, 0.18) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1565C0;
  margin-bottom: 28px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.sg-sec3-pane-icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 22px;
  border: 1.5px dashed rgba(21, 101, 192, 0.22);
}

.sg-sec3-pane-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.2px;
  position: relative;
  z-index: 1;
}

.sg-sec3-pane-title::after {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, #1565C0, #42A5F5);
  border-radius: 2px;
  margin-top: 12px;
}

.sg-sec3-pane-desc {
  font-size: 0.97rem;
  line-height: 1.82;
  color: rgba(0, 0, 0, 0.62);
  margin-bottom: 28px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.sg-sec3-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.sg-sec3-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #1565C0;
  background: rgba(21, 101, 192, 0.08);
  border: 1px solid rgba(21, 101, 192, 0.18);
  border-radius: 20px;
  padding: 5px 14px;
  letter-spacing: 0.2px;
}

.sg-sec3-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1565C0;
  flex-shrink: 0;
}

/* ════════════════════════════════
   RESPONSIVE
   ════════════════════════════════ */
@media (max-width: 991px) {
  .sg-sec3-hero {
    clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
    padding-bottom: 88px;
  }

  .sg-sec3-tab-nav {
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 14px;
    margin-bottom: 24px;
    position: static;
    scrollbar-width: thin;
    scrollbar-color: rgba(21, 101, 192, 0.3) transparent;
  }

  .sg-sec3-tab-nav::-webkit-scrollbar {
    height: 4px;
  }

  .sg-sec3-tab-nav::-webkit-scrollbar-thumb {
    background: rgba(21, 101, 192, 0.25);
    border-radius: 4px;
  }

  .sg-sec3-tab-btn {
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 112px;
    max-width: 120px;
    padding: 12px 10px;
    border-left: 1px solid rgba(21, 101, 192, 0.1);
    border-bottom: 3px solid transparent;
    border-radius: 12px;
    gap: 8px;
    flex-shrink: 0;
  }

  .sg-sec3-tab-btn:hover {
    border-left-color: rgba(21, 101, 192, 0.1);
    border-bottom-color: #42A5F5;
  }

  .sg-sec3-tab-btn.active {
    border-left-color: #1565C0;
    border-bottom-color: transparent;
  }

  .sg-sec3-tab-btn.active::after {
    display: none;
  }

  .sg-sec3-btn-label {
    font-size: 0.71rem;
    line-height: 1.3;
  }

  .sg-sec3-pane {
    padding: 32px 28px 28px;
  }

  .sg-sec3-tab-content {
    min-height: 420px;
  }
}

@media (max-width: 575px) {
  .sg-sec3-hero {
    clip-path: none;
    padding: 56px 0 60px;
  }

  .sg-sec3-body {
    margin-top: 0;
    padding-bottom: 60px;
  }

  .sg-sec3-inner {
    padding-top: 40px;
  }

  .sg-sec3-tab-btn {
    min-width: 96px;
    max-width: 104px;
    padding: 10px 8px;
  }

  .sg-sec3-pane {
    padding: 28px 20px 24px;
  }

  .sg-sec3-pane-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    margin-bottom: 20px;
  }

  .sg-sec3-pane-title {
    font-size: 1.2rem;
  }

  .sg-sec3-tab-content {
    min-height: unset;
  }
}


/* ════════════════════════════════
   WRAPPER
   ════════════════════════════════ */
.sg-sec4 {
  background: #050D1C;
  position: relative;
}

/* Diagonal pattern overlay */
.sg-sec4::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -52deg,
    rgba(21, 101, 192, 0.05) 0px,
    rgba(21, 101, 192, 0.05) 1px,
    transparent 1px,
    transparent 56px
  );
  pointer-events: none;
  z-index: 0;
}

/* ════════════════════════════════
   HERO BAND
   ════════════════════════════════ */
.sg-sec4-hero {
  padding: 30px 0;
  position: relative;
  z-index: 1;
}

.sg-sec4-hero::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse at 85% 50%, rgba(21, 101, 192, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.sg-sec4-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #42A5F5;
  margin-bottom: 20px;
  padding: 6px 18px;
  border: 1px solid rgba(66, 165, 245, 0.35);
  border-radius: 24px;
  background: rgba(66, 165, 245, 0.07);
}

.sg-sec4-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #42A5F5;
  display: inline-block;
  animation: sg4-blink 2.2s ease-in-out infinite;
}

@keyframes sg4-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.6); }
}

.sg-sec4-headline {
  font-size: clamp(1.65rem, 3.2vw, 2.45rem);
  font-weight: 800;
  line-height: 1.24;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
  max-width: 820px;
}

.sg-sec4-intro {
  font-size: 1rem;
  line-height: 1.82;
  color: rgba(255, 255, 255, 0.55);
  max-width: 760px;
  margin-bottom: 0;
}

/* Section divider */
.sg-sec4-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(21, 101, 192, 0.45) 25%, rgba(21, 101, 192, 0.45) 75%, transparent 100%);
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════
   GRID WRAPPER
   ════════════════════════════════ */
.sg-sec4-grid-wrap {
  padding: 54px 0 84px;
  position: relative;
  z-index: 1;
}

/* Custom 5-col flex grid */
.sg-sec4-grid {
  display: flex;
  flex-wrap: wrap;
  margin: -8px;
}

.sg-sec4-col {
  width: 50%;       /* mobile: 2 per row */
  padding: 8px;
  position: relative;
}

@media (min-width: 768px) {
  .sg-sec4-col { width: 33.333%; } /* tablet: 3 per row */
}

@media (min-width: 992px) {
  .sg-sec4-col { width: 20%; }     /* desktop: 5 per row */
}

/* ════════════════════════════════
   TITLE CARD
   ════════════════════════════════ */
.sg-sec4-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-top: 2px solid rgba(21, 101, 192, 0.42);
  border-radius: 16px;
  padding: 28px 16px 22px;
  text-align: center;
  cursor: pointer;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
  user-select: none;
  outline: none;
}

/* Inner radial glow (hidden by default) */
.sg-sec4-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(21, 101, 192, 0.14) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 16px;
}

/* Hover + active states */
.sg-sec4.has-hover .sg-sec4-col:hover .sg-sec4-card,
.sg-sec4-col.sg4-active .sg-sec4-card {
  border-color: rgba(21, 101, 192, 0.55);
  border-top-color: #1565C0;
  box-shadow:
    0 0 0 1px rgba(21, 101, 192, 0.15),
    0 12px 36px rgba(21, 101, 192, 0.24);
  transform: translateY(-3px);
}

.sg-sec4.has-hover .sg-sec4-col:hover .sg-sec4-card::after,
.sg-sec4-col.sg4-active .sg-sec4-card::after {
  opacity: 1;
}

/* Focus ring for keyboard navigation */
.sg-sec4-card:focus-visible {
  outline: 2px solid #42A5F5;
  outline-offset: 2px;
}

/* ── Card Icon ── */
.sg-sec4-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(21, 101, 192, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #42A5F5;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

.sg-sec4.has-hover .sg-sec4-col:hover .sg-sec4-card-icon,
.sg-sec4-col.sg4-active .sg-sec4-card-icon {
  background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
  color: #ffffff;
  transform: scale(1.1);
}

/* ── Card H3 Title ── */
.sg-sec4-card-title {
  font-size: 0.83rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.48;
  position: relative;
  z-index: 1;
  transition: color 0.28s ease;
}

.sg-sec4.has-hover .sg-sec4-col:hover .sg-sec4-card-title,
.sg-sec4-col.sg4-active .sg-sec4-card-title {
  color: #ffffff;
}

/* ── Hover Hint ── */
.sg-sec4-card-hint {
  font-size: 0.67rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.28s ease;
}

.sg-sec4-card-hint svg {
  transition: transform 0.28s ease;
}

.sg-sec4.has-hover .sg-sec4-col:hover .sg-sec4-card-hint,
.sg-sec4-col.sg4-active .sg-sec4-card-hint {
  color: #42A5F5;
}

.sg-sec4.has-hover .sg-sec4-col:hover .sg-sec4-card-hint svg,
.sg-sec4-col.sg4-active .sg-sec4-card-hint svg {
  transform: translateY(-2px);
}

/* ════════════════════════════════
   POPUP
   ════════════════════════════════ */
.sg-sec4-popup {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(14px);
  width: 292px;
  background: #040E20;
  border: 1px solid rgba(66, 165, 245, 0.25);
  border-radius: 16px;
  padding: 22px 22px 20px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(21, 101, 192, 0.08),
    0 0 36px rgba(21, 101, 192, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s ease, transform 0.3s cubic-bezier(0.34, 1.08, 0.64, 1);
  z-index: 1000;
  text-align: left;
}

/* Arrow — rotated square (points down toward card) */
.sg-sec4-popup-arrow {
  position: absolute;
  bottom: -7px;
  left: calc(50% - 6px);
  width: 13px;
  height: 13px;
  background: #040E20;
  border-right: 1px solid rgba(66, 165, 245, 0.25);
  border-bottom: 1px solid rgba(66, 165, 245, 0.25);
  transform: rotate(45deg);
}

/* ── Show via CSS hover (non-touch only) ── */
.sg-sec4.has-hover .sg-sec4-col:hover .sg-sec4-popup {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* ── Show via JS active class (touch + click) ── */
.sg-sec4-col.sg4-active .sg-sec4-popup {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Popup H3 */
.sg-sec4-popup-title {
  font-size: 0.93rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.36;
}

/* Blue rule */
.sg-sec4-popup-rule {
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #1565C0, #42A5F5);
  border-radius: 1px;
  margin-bottom: 12px;
}

/* Description */
.sg-sec4-popup-desc {
  font-size: 0.8rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.57);
  margin: 0;
}

/* ════════════════════════════════
   EDGE COLUMN ALIGNMENT — DESKTOP (5-col)
   ════════════════════════════════ */
@media (min-width: 992px) {
  /* 1st in every row → left-align popup */
  .sg-sec4-col:nth-child(5n+1) .sg-sec4-popup {
    left: 0;
    transform: translateX(0) translateY(14px);
  }
  .sg-sec4-col:nth-child(5n+1) .sg-sec4-popup-arrow { left: 34px; }

  .sg-sec4.has-hover .sg-sec4-col:nth-child(5n+1):hover .sg-sec4-popup,
  .sg-sec4-col:nth-child(5n+1).sg4-active .sg-sec4-popup {
    transform: translateX(0) translateY(0);
  }

  /* 5th in every row → right-align popup */
  .sg-sec4-col:nth-child(5n) .sg-sec4-popup {
    left: auto;
    right: 0;
    transform: translateX(0) translateY(14px);
  }
  .sg-sec4-col:nth-child(5n) .sg-sec4-popup-arrow {
    left: auto;
    right: 34px;
  }
  .sg-sec4.has-hover .sg-sec4-col:nth-child(5n):hover .sg-sec4-popup,
  .sg-sec4-col:nth-child(5n).sg4-active .sg-sec4-popup {
    transform: translateX(0) translateY(0);
  }
}

/* ════════════════════════════════
   EDGE COLUMN ALIGNMENT — TABLET (3-col)
   ════════════════════════════════ */
@media (min-width: 768px) and (max-width: 991px) {
  .sg-sec4-col:nth-child(3n+1) .sg-sec4-popup {
    left: 0;
    transform: translateX(0) translateY(14px);
  }
  .sg-sec4-col:nth-child(3n+1) .sg-sec4-popup-arrow { left: 34px; }
  .sg-sec4.has-hover .sg-sec4-col:nth-child(3n+1):hover .sg-sec4-popup,
  .sg-sec4-col:nth-child(3n+1).sg4-active .sg-sec4-popup {
    transform: translateX(0) translateY(0);
  }

  .sg-sec4-col:nth-child(3n) .sg-sec4-popup {
    left: auto;
    right: 0;
    transform: translateX(0) translateY(14px);
  }
  .sg-sec4-col:nth-child(3n) .sg-sec4-popup-arrow {
    left: auto;
    right: 34px;
  }
  .sg-sec4.has-hover .sg-sec4-col:nth-child(3n):hover .sg-sec4-popup,
  .sg-sec4-col:nth-child(3n).sg4-active .sg-sec4-popup {
    transform: translateX(0) translateY(0);
  }
}

/* ════════════════════════════════
   MOBILE — POPUP BELOW CARD
   ════════════════════════════════ */
@media (max-width: 767px) {
  .sg-sec4-popup {
    bottom: auto;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: auto;
    transform: translateY(-10px);
  }

  /* Arrow points UP on mobile */
  .sg-sec4-popup-arrow {
    top: -7px;
    bottom: auto;
    left: calc(50% - 6px);
    border-top: 1px solid rgba(66, 165, 245, 0.25);
    border-left: 1px solid rgba(66, 165, 245, 0.25);
    border-right: none;
    border-bottom: none;
    transform: rotate(45deg);
  }

  /* Mobile: hover has no effect — only JS active class works */
  .sg-sec4.has-hover .sg-sec4-col:hover .sg-sec4-popup {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
  }

  .sg-sec4-col.sg4-active .sg-sec4-popup {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}



/* ════════════════════════════════
   WRAPPER
   ════════════════════════════════ */
   .sg-sec5-outer{
    overflow:hidden;
    width: 1050px;
    margin:0 auto;
}

.sg-sec5-track{
    display:flex;
    margin:0 !important;
    padding:0 !important;
}

.sg-sec5-item{
    box-sizing:border-box;
}
.sg-sec5 {
  background: #ffffff;
  overflow: hidden;
}

.sg-sec5-hero {
  padding: 30px 0;
  position: relative;
}

.sg-sec5-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 40%, rgba(21, 101, 192, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.sg-sec5-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #1565C0;
  margin-bottom: 20px;
  padding: 6px 18px;
  border: 1px solid rgba(21, 101, 192, 0.28);
  border-radius: 24px;
  background: rgba(21, 101, 192, 0.06);
}

.sg-sec5-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1565C0;
  display: inline-block;
  animation: sg5-blink 2.2s ease-in-out infinite;
}

@keyframes sg5-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.6); }
}

.sg-sec5-headline {
  font-size: clamp(1.65rem, 3.2vw, 2.45rem);
  font-weight: 800;
  line-height: 1.24;
  color: #000000;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
  max-width: 820px;
}

.sg-sec5-intro {
  font-size: 1rem;
  line-height: 1.82;
  color: rgba(0, 0, 0, 0.57);
  max-width: 760px;
  margin-bottom: 0;
}

/* ════════════════════════════════
   CAROUSEL AREA
   ════════════════════════════════ */
.sg-sec5-carousel-area {
  padding: 28px 0 80px;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #EDF4FF 48%, #ffffff 100%);
}

/* Blue ambient glow behind cards — makes glass blur visible */
.sg-sec5-carousel-area::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 960px;
  height: 560px;
  background: radial-gradient(ellipse at center, rgba(21, 101, 192, 0.11) 0%, transparent 62%);
  pointer-events: none;
}

.sg-sec5-carousel-wrap {
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════
   TRACK
   ════════════════════════════════ */
.sg-sec5-outer {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  z-index: 1;
}

.sg-sec5-track {
  display: flex;
  align-items: stretch;
  will-change: transform;
  transform: translateZ(0);
  /* Transition set via JS */
}

/* ════════════════════════════════
   ITEM WRAPPER (gap via padding)
   ════════════════════════════════ */
.sg-sec5-item {
  flex-shrink: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
}

/* ════════════════════════════════
   GLASS CARD
   ════════════════════════════════ */
.sg-sec5-card {
  background: rgba(5, 13, 28, 0.88);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(66, 165, 245, 0.16);
  border-radius: 20px;
  padding: 32px 26px 28px;
  width: 100%;
  min-height: 308px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.13),
    0 0 0 1px rgba(66, 165, 245, 0.06);
    margin: 10px;
}

/* Top accent line (default: subtle, hover: full gradient) */
.sg-sec5-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(66, 165, 245, 0.3);
  transition: background 0.35s ease;
  z-index: 2;
}

/* Bottom-right ambient glow */
.sg-sec5-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at bottom right, rgba(21, 101, 192, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.sg-sec5-card:hover {
  border-color: rgba(21, 101, 192, 0.5);
  box-shadow:
    0 18px 50px rgba(21, 101, 192, 0.24),
    0 0 0 1px rgba(66, 165, 245, 0.16);
  transform: translateY(-6px);
}

.sg-sec5-card:hover::before {
  background: linear-gradient(90deg, #1565C0 0%, #42A5F5 100%);
}

/* ── Card Icon ── */
.sg-sec5-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(21, 101, 192, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #42A5F5;
  margin-bottom: 22px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.sg-sec5-card:hover .sg-sec5-card-icon {
  background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
  color: #ffffff;
  transform: scale(1.1);
}

/* ── Card H3 ── */
.sg-sec5-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

/* ── Card Description ── */
.sg-sec5-card-desc {
  font-size: 0.875rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════
   CONTROLS (arrows + dots)
   ════════════════════════════════ */
.sg-sec5-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}

/* ── Arrow Buttons ── */
.sg-sec5-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #000000;
  border: 1px solid rgba(21, 101, 192, 0.32);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  outline: none;
  transition: background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, transform 0.2s ease;
}

.sg-sec5-arrow:hover {
  background: #1565C0;
  border-color: #1565C0;
  box-shadow: 0 8px 28px rgba(21, 101, 192, 0.38);
  transform: scale(1.06);
}

.sg-sec5-arrow:active {
  transform: scale(0.93);
}

/* ── Dots ── */
.sg-sec5-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
  max-width: 260px;
}

.sg-sec5-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  border: none;
  cursor: pointer;
  padding: 0;
  outline: none;
  flex-shrink: 0;
  transition: width 0.3s ease, border-radius 0.3s ease, background 0.3s ease;
}

.sg-sec5-dot.active {
  width: 28px;
  border-radius: 4px;
  background: #1565C0;
}

.sg-sec5-dot:hover:not(.active) {
  background: rgba(21, 101, 192, 0.42);
}

@media (max-width: 767px){

  .sg-sec5-carousel-wrap{
      overflow:hidden;
  }

  .sg-sec5-outer{
      width:100%;
      overflow:hidden;
  }

  .sg-sec5-track{
      display:flex;
  }

  .sg-sec5-item{
      min-width:100%;
      width:100%;
      flex:0 0 100%;
      padding:0;
  }

  .sg-sec5-card{
      width:100%;
      max-width:100%;
      box-sizing:border-box;
  }

}



/* ════════════════════════════════
   WRAPPER
   ════════════════════════════════ */
.sg-cta-rs {
  background: #000000;
  position: relative;
  overflow: hidden;
  padding: 30px 0;
}

/* ════════════════════════════════
   BACKGROUND LAYER
   ════════════════════════════════ */
.sg-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Diagonal grid texture */
.sg-cta-grid {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -52deg,
    rgba(21, 101, 192, 0.052) 0px,
    rgba(21, 101, 192, 0.052) 1px,
    transparent 1px,
    transparent 58px
  );
}

/* Central radial glow */
.sg-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(21, 101, 192, 0.24) 0%,
    rgba(21, 101, 192, 0.1) 40%,
    transparent 68%
  );
  animation: sg-cta-breathe 5s ease-in-out infinite;
}

@keyframes sg-cta-breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 1;    }
  50%       { transform: translate(-50%, -50%) scale(1.13); opacity: 0.72; }
}

/* Concentric rings */
.sg-cta-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(21, 101, 192, 0.14);
}

.sg-cta-r1 { width: 320px;   height: 320px;   border-color: rgba(21,101,192,0.22); }
.sg-cta-r2 { width: 560px;   height: 560px;   border-color: rgba(21,101,192,0.12); }
.sg-cta-r3 { width: 800px;   height: 800px;   border-color: rgba(21,101,192,0.07); }
.sg-cta-r4 { width: 1080px;  height: 1080px;  border-color: rgba(21,101,192,0.04); }

/* Floating accent dots */
.sg-cta-dot {
  position: absolute;
  border-radius: 50%;
  background: #1565C0;
}

.sg-cta-d1 { width:  6px; height:  6px; top: 16%; left:  7%;  animation: sg-cta-float 7s ease-in-out infinite; }
.sg-cta-d2 { width:  4px; height:  4px; top: 74%; left: 10%;  animation: sg-cta-float 9s ease-in-out infinite 1.6s; opacity: .65; }
.sg-cta-d3 { width:  8px; height:  8px; top: 20%; right: 8%;  animation: sg-cta-float 6s ease-in-out infinite 0.9s; }
.sg-cta-d4 { width:  5px; height:  5px; top: 70%; right: 12%; animation: sg-cta-float 8s ease-in-out infinite 2.2s; opacity: .6; }
.sg-cta-d5 { width:  3px; height:  3px; top: 46%; left:  3%;  animation: sg-cta-float 10s ease-in-out infinite 3.1s; opacity: .5; }
.sg-cta-d6 { width:  4px; height:  4px; top: 55%; right: 5%;  animation: sg-cta-float 7.5s ease-in-out infinite 1s; opacity: .45; }

@keyframes sg-cta-float {
  0%, 100% { transform: translateY(0);     opacity: 0.55; }
  50%       { transform: translateY(-15px); opacity: 1;    }
}

/* Bottom shimmer line */
.sg-cta-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(21, 101, 192, 0.55) 25%,
    rgba(66, 165, 245, 0.7) 50%,
    rgba(21, 101, 192, 0.55) 75%,
    transparent 100%
  );
}

/* ════════════════════════════════
   CONTENT WRAPPER
   ════════════════════════════════ */
.sg-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* ── Eyebrow ── */
.sg-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #42A5F5;
  margin-bottom: 26px;
  padding: 6px 20px;
  border: 1px solid rgba(66, 165, 245, 0.35);
  border-radius: 24px;
  background: rgba(66, 165, 245, 0.07);
}

.sg-cta-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #42A5F5;
  display: inline-block;
  animation: sg-cta-blink 2.2s ease-in-out infinite;
}

@keyframes sg-cta-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.6); }
}

/* ── H2 Headline ── */
.sg-cta-headline {
  font-size: clamp(2rem, 4.8vw, 3.5rem);
  font-weight: 900;
  line-height: 1.16;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.6px;
}

.sg-cta-headline-accent {
  color: #42A5F5;
  position: relative;
  display: inline-block;
}

/* Subtle underline glow beneath "Dubai" */
.sg-cta-headline-accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 3px;
  background: linear-gradient(90deg, #1565C0, #42A5F5);
  border-radius: 2px;
  opacity: 0.7;
}

/* ── Body Text ── */
.sg-cta-body {
  font-size: 1.05rem;
  line-height: 1.84;
  color: rgba(255, 255, 255, 0.58);
  max-width: 680px;
  margin: 0 auto 44px;
}

/* ════════════════════════════════
   BUTTONS
   ════════════════════════════════ */
.sg-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Primary button */
.sg-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1565C0;
  color: #ffffff;
  border: 2px solid #1565C0;
  border-radius: 50px;
  padding: 16px 38px;
  font-size: 0.97rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, transform 0.22s ease;
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep on primary button */
.sg-cta-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
  transition: left 0.55s ease;
  pointer-events: none;
}

.sg-cta-btn-primary:hover::before {
  left: 150%;
}

.sg-cta-btn-primary svg {
  transition: transform 0.28s ease;
  flex-shrink: 0;
}

.sg-cta-btn-primary:hover {
  background: #1976D2;
  border-color: #1976D2;
  box-shadow: 0 14px 38px rgba(21, 101, 192, 0.52);
  transform: translateY(-3px);
  color: #ffffff;
  text-decoration: none;
}

.sg-cta-btn-primary:hover svg {
  transform: translateX(5px);
}

/* Outline button */
.sg-cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 16px 38px;
  font-size: 0.97rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: border-color 0.28s ease, color 0.28s ease, background 0.28s ease, transform 0.22s ease, box-shadow 0.28s ease;
}

.sg-cta-btn-outline svg {
  flex-shrink: 0;
  transition: transform 0.28s ease;
}

.sg-cta-btn-outline:hover {
  border-color: #42A5F5;
  color: #42A5F5;
  background: rgba(66, 165, 245, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(66, 165, 245, 0.15);
  text-decoration: none;
}

.sg-cta-btn-outline:hover svg {
  transform: rotate(-15deg);
}

/* ════════════════════════════════
   DIVIDER
   ════════════════════════════════ */
.sg-cta-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 40px;
}

/* ════════════════════════════════
   TRUST STRIP
   ════════════════════════════════ */
.sg-cta-trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.sg-cta-trust-col {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  text-align: left;
}

.sg-cta-trust-col:last-child {
  border-right: none;
}

.sg-cta-trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(21, 101, 192, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #42A5F5;
  flex-shrink: 0;
  border: 1px solid rgba(66, 165, 245, 0.14);
}

.sg-cta-trust-val {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  display: block;
}

.sg-cta-trust-lbl {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-top: 3px;
}

/* ════════════════════════════════
   RESPONSIVE
   ════════════════════════════════ */
@media (max-width: 991px) {
  .sg-cta { padding: 88px 0 84px; }
  .sg-cta-r3, .sg-cta-r4 { display: none; }
  .sg-cta-trust-col { padding: 0 18px; }
}

@media (max-width: 767px) {
  .sg-cta { padding: 72px 0 68px; }
  .sg-cta-glow { width: 460px; height: 460px; }
  .sg-cta-r1  { width: 260px; height: 260px; }
  .sg-cta-r2  { width: 440px; height: 440px; }
  .sg-cta-d3, .sg-cta-d4, .sg-cta-d5, .sg-cta-d6 { display: none; }

  .sg-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .sg-cta-btn-primary,
  .sg-cta-btn-outline {
    width: 100%;
    max-width: 340px;
    justify-content: center;
    padding: 15px 28px;
  }

  .sg-cta-trust-col {
    width: 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 14px 16px;
    justify-content: flex-start;
  }

  .sg-cta-trust-col:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.08);
  }

  .sg-cta-trust-col:last-child,
  .sg-cta-trust-col:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .sg-cta-trust-col {
    width: 100%;
    border-right: none;
  }
  .sg-cta-trust-col:nth-child(odd) {
    border-right: none;
  }
  .sg-cta-trust-col:last-child {
    border-bottom: none;
  }
}



/* ════════════════════════════════
   WRAPPER
   ════════════════════════════════ */
.sg-sec6 {
  background: #ffffff;
  overflow: hidden;
}

/* ════════════════════════════════
   HERO BAND
   ════════════════════════════════ */
.sg-sec6-hero {
  padding: 84px 0 56px;
  position: relative;
}

.sg-sec6-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 40%,
    rgba(21, 101, 192, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.sg-sec6-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #1565C0;
  margin-bottom: 20px;
  padding: 6px 18px;
  border: 1px solid rgba(21, 101, 192, 0.28);
  border-radius: 24px;
  background: rgba(21, 101, 192, 0.06);
}

.sg-sec6-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1565C0;
  display: inline-block;
  animation: sg6-blink 2.2s ease-in-out infinite;
}

@keyframes sg6-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.6); }
}

.sg-sec6-headline {
  font-size: clamp(1.65rem, 3.2vw, 2.45rem);
  font-weight: 800;
  line-height: 1.24;
  color: #000000;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
  max-width: 820px;
}

.sg-sec6-intro {
  font-size: 1rem;
  line-height: 1.82;
  color: rgba(0, 0, 0, 0.57);
  max-width: 760px;
  margin-bottom: 0;
}

/* ════════════════════════════════
   CARDS GRID AREA
   ════════════════════════════════ */
.sg-sec6-grid {
  padding: 8px 0 84px;
}

/* ════════════════════════════════
   BASE CARD
   ════════════════════════════════ */
.sg-sec6-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: default;
  height: 300px;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.45s ease, transform 0.38s ease;
}

.sg-sec6-card:hover {
  box-shadow:
    0 20px 56px rgba(21, 101, 192, 0.24),
    0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

/* Featured cards — taller */
.sg-sec6-card-featured { height: 410px; }

/* ── Image ── */
.sg-sec6-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.75s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.sg-sec6-card:hover .sg-sec6-card-img {
  transform: scale(1.08);
}

/* ── Gradient Overlay (::before) ── */
.sg-sec6-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.04) 0%,
    rgba(5, 13, 28, 0.42) 32%,
    rgba(5, 13, 28, 0.95) 60%
  );
  z-index: 1;
  transition: background 0.45s ease;
}

.sg-sec6-card:hover::before {
  background: linear-gradient(
    180deg,
    rgba(5, 13, 28, 0.18) 0%,
    rgba(5, 13, 28, 0.62) 28%,
    rgba(5, 13, 28, 0.99) 55%
  );
}

/* ── Blue Border Frame (::after) ── */
.sg-sec6-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 2px solid transparent;
  z-index: 5;
  pointer-events: none;
  transition: border-color 0.42s ease, box-shadow 0.42s ease;
}

.sg-sec6-card:hover::after {
  border-color: rgba(21, 101, 192, 0.65);
  box-shadow: 0 0 24px rgba(21, 101, 192, 0.18) inset;
}

/* ── Corner Icon ── */
.sg-sec6-card-corner {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(5, 13, 28, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(66, 165, 245, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #42A5F5;
  z-index: 3;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}

.sg-sec6-card:hover .sg-sec6-card-corner {
  background: #1565C0;
  color: #ffffff;
  border-color: #1565C0;
  transform: scale(1.12) rotate(8deg);
}

/* ── Title Block (always visible) ── */
.sg-sec6-card-title-wrap {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  padding: 0 22px;
  z-index: 3;
  transition: bottom 0.42s cubic-bezier(0.34, 1.05, 0.64, 1);
}

.sg-sec6-card:hover .sg-sec6-card-title-wrap {
  bottom: 102px;
}

/* Tag label */
.sg-sec6-card-tag {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #42A5F5;
  background: rgba(21, 101, 192, 0.22);
  border: 1px solid rgba(66, 165, 245, 0.28);
  border-radius: 10px;
  padding: 3px 10px;
  margin-bottom: 8px;
}

/* H3 Card Title */
.sg-sec6-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.sg-sec6-card-featured .sg-sec6-card-title {
  font-size: 1.15rem;
}

/* ── Description Panel (slides up from below on hover) ── */
.sg-sec6-card-desc-panel {
  position: absolute;
  bottom: -100px;
  left: 0;
  right: 0;
  padding: 10px 22px 22px;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 13, 28, 0.98) 28%);
  z-index: 2;
  transition: bottom 0.42s cubic-bezier(0.34, 1.05, 0.64, 1);
}

.sg-sec6-card:hover .sg-sec6-card-desc-panel {
  bottom: 0;
}

.sg-sec6-card-desc {
  font-size: 0.79rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.66);
  margin: 0;
}

/* ════════════════════════════════
   TOUCH DEVICES — always show desc
   ════════════════════════════════ */
@media (hover: none) {
  .sg-sec6-card-title-wrap { bottom: 90px; }
  .sg-sec6-card-desc-panel { bottom: 0; }
  .sg-sec6-card:hover { transform: none; }
}

/* ════════════════════════════════
   RESPONSIVE
   ════════════════════════════════ */
@media (max-width: 991px) {
  .sg-sec6-card          { height: 280px; }
  .sg-sec6-card-featured { height: 370px; }
  .sg-sec6-card:hover .sg-sec6-card-title-wrap { bottom: 96px; }
}

@media (max-width: 767px) {
  .sg-sec6-hero   { padding: 56px 0 40px; }
  .sg-sec6-grid   { padding: 0 0 60px; }
  .sg-sec6-card   { height: 240px; }
  .sg-sec6-card-featured { height: 300px; }
  .sg-sec6-card-title { font-size: 0.88rem; }
  .sg-sec6-card-desc  { font-size: 0.74rem; }
  .sg-sec6-card-title-wrap { bottom: 16px; }
  .sg-sec6-card:hover .sg-sec6-card-title-wrap { bottom: 88px; }
  .sg-sec6-card-desc-panel { bottom: -85px; }
  .sg-sec6-card:hover .sg-sec6-card-desc-panel { bottom: 0; }
}

@media (max-width: 480px) {
  .sg-sec6-card          { height: 220px; }
  .sg-sec6-card-featured { height: 280px; }
}



  .sdp-clients { background: #050D1C; padding-top: 30px; padding-bottom: 30px; }
.sdp-clients-heading {  font-size: 1rem; color: #fff; text-align: center; letter-spacing: 0.05em; margin-bottom: 24px; font-weight: 500; }
.sdp-logo-strip-wrap { overflow: hidden; position: relative; }
.sdp-logo-strip-wrap::before, .sdp-logo-strip-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.sdp-logo-strip-wrap::before { left: 0; background: linear-gradient(90deg, var(--sdp-dark-2), transparent); }
.sdp-logo-strip-wrap::after { right: 0; background: linear-gradient(270deg, var(--sdp-dark-2), transparent); }
.sdp-logo-strip { display: flex; gap: 48px; animation: sdpScrollLogos 28s linear infinite; width: max-content; align-items: center; padding: 12px 0; }
.sdp-logo-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; padding: 12px 24px;  font-weight: 700; font-size: 0.85rem; color: rgba(148,163,184,0.7); white-space: nowrap; transition: all 0.3s; min-width: 120px; text-align: center; }
.sdp-logo-item img{
    width: auto;
    height: 30px;
}
.sdp-logo-item:hover { border-color: rgba(37,99,235,0.3); color: var(--sdp-white); }
@keyframes sdpScrollLogos { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }



/* ════════════════════════════════
   WRAPPER
   ════════════════════════════════ */
.sg-proc {
  background: #ffffff;
  overflow: hidden;
}

/* ════════════════════════════════
   HERO BAND
   ════════════════════════════════ */
.sg-proc-hero {
  padding: 30px 0;
  position: relative;
}

.sg-proc-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 40%,
    rgba(21, 101, 192, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.sg-proc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #1565C0;
  margin-bottom: 20px;
  padding: 6px 18px;
  border: 1px solid rgba(21, 101, 192, 0.28);
  border-radius: 24px;
  background: rgba(21, 101, 192, 0.06);
}

.sg-proc-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1565C0;
  display: inline-block;
  animation: sg-proc-blink 2.2s ease-in-out infinite;
}

@keyframes sg-proc-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.6); }
}

.sg-proc-headline {
  font-size: clamp(1.65rem, 3.2vw, 2.45rem);
  font-weight: 800;
  line-height: 1.24;
  color: #000000;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
  max-width: 820px;
}

.sg-proc-intro {
  font-size: 1rem;
  line-height: 1.82;
  color: rgba(0, 0, 0, 0.57);
  max-width: 680px;
  margin-bottom: 0;
}

/* ════════════════════════════════
   TIMELINE OUTER (scrollable container)
   ════════════════════════════════ */
.sg-proc-timeline-outer {
  padding: 8px 0 84px;
  position: relative;
}

/* ── subtle blue glow behind timeline ── */
.sg-proc-timeline-outer::before {
  content: '';
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 120px;
  background: radial-gradient(ellipse at center,
    rgba(21, 101, 192, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.sg-proc-scroll-wrap {
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(21, 101, 192, 0.3) transparent;
}

.sg-proc-scroll-wrap::-webkit-scrollbar { height: 4px; }
.sg-proc-scroll-wrap::-webkit-scrollbar-thumb {
  background: rgba(21, 101, 192, 0.3);
  border-radius: 4px;
}

/* ════════════════════════════════
   TIMELINE TRACK (flex row of steps)
   ════════════════════════════════ */
.sg-proc-track {
  display: flex;
  position: relative;
  min-width: 960px; /* prevent too-narrow on tablet */
  padding: 0 24px 16px;
  gap: 0;
}

/* ── Base horizontal line ── */
.sg-proc-track::after {
  content: '';
  position: absolute;
  bottom: 40px; /* center of 48px node (48/2 = 24 + 16px pb = 40) */
  left: 64px;
  right: 64px;
  height: 2px;
  background: rgba(21, 101, 192, 0.12);
  z-index: 0;
}

/* ── Animated blue fill line ── */
.sg-proc-track::before {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 64px;
  right: 64px;
  height: 2px;
  background: linear-gradient(90deg,
    #0D47A1 0%,
    #1565C0 25%,
    #42A5F5 50%,
    #1565C0 75%,
    #0D47A1 100%
  );
  transform: scaleX(0);
  transform-origin: left center;
  animation: sg-proc-line-draw 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
  z-index: 1;
}

@keyframes sg-proc-line-draw {
  to { transform: scaleX(1); }
}

/* ════════════════════════════════
   EACH STEP
   ════════════════════════════════ */
.sg-proc-step {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
  cursor: default;
}

/* ── DARK GLASS CARD ── */
.sg-proc-card {
  background: rgba(5, 13, 28, 0.90);
  border: 1px solid rgba(66, 165, 245, 0.14);
  border-radius: 16px;
  padding: 22px 18px 20px;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.32s ease, box-shadow 0.32s ease, transform 0.32s ease;
  animation: sg-proc-card-drop 0.55s ease both;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* Top gradient accent bar */
.sg-proc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(66, 165, 245, 0.28);
  transition: background 0.32s ease;
}

/* Bottom corner glow */
.sg-proc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at bottom right,
    rgba(21, 101, 192, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

/* Staggered card drop animation */
.sg-proc-step:nth-child(1) .sg-proc-card { animation-delay: 0.1s; }
.sg-proc-step:nth-child(2) .sg-proc-card { animation-delay: 0.24s; }
.sg-proc-step:nth-child(3) .sg-proc-card { animation-delay: 0.38s; }
.sg-proc-step:nth-child(4) .sg-proc-card { animation-delay: 0.52s; }
.sg-proc-step:nth-child(5) .sg-proc-card { animation-delay: 0.66s; }
.sg-proc-step:nth-child(6) .sg-proc-card { animation-delay: 0.80s; }

@keyframes sg-proc-card-drop {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Card hover */
.sg-proc-step:hover .sg-proc-card {
  border-color: rgba(21, 101, 192, 0.45);
  box-shadow:
    0 16px 44px rgba(21, 101, 192, 0.22),
    0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.sg-proc-step:hover .sg-proc-card::before {
  background: linear-gradient(90deg, #1565C0, #42A5F5);
}

/* ── Card Icon ── */
.sg-proc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(21, 101, 192, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #42A5F5;
  flex-shrink: 0;
  transition: background 0.32s ease, color 0.32s ease, transform 0.32s ease;
}

.sg-proc-step:hover .sg-proc-icon {
  background: linear-gradient(135deg, #1565C0, #0D47A1);
  color: #ffffff;
  transform: scale(1.1);
}

/* ── Card H3 ── */
.sg-proc-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.42;
}

/* ── Card Description ── */
.sg-proc-card-desc {
  font-size: 0.76rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.52);
  margin: 0;
  flex-grow: 1;
}

/* ── Vertical Stem (card → node) ── */
.sg-proc-stem {
  width: 2px;
  height: 28px;
  flex-shrink: 0;
  background: linear-gradient(180deg, rgba(21, 101, 192, 0.3), #1565C0);
  animation: sg-proc-stem-grow 0.35s ease both;
}

.sg-proc-step:nth-child(1) .sg-proc-stem { animation-delay: 0.3s; }
.sg-proc-step:nth-child(2) .sg-proc-stem { animation-delay: 0.46s; }
.sg-proc-step:nth-child(3) .sg-proc-stem { animation-delay: 0.62s; }
.sg-proc-step:nth-child(4) .sg-proc-stem { animation-delay: 0.78s; }
.sg-proc-step:nth-child(5) .sg-proc-stem { animation-delay: 0.94s; }
.sg-proc-step:nth-child(6) .sg-proc-stem { animation-delay: 1.1s; }

@keyframes sg-proc-stem-grow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

/* ── Node (numbered circle) ── */
.sg-proc-node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1565C0;
  border: 3px solid #ffffff;
  outline: 3px solid rgba(21, 101, 192, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  transition: transform 0.32s ease, box-shadow 0.32s ease, outline-color 0.32s ease;
  animation: sg-proc-node-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* Staggered node pop */
.sg-proc-step:nth-child(1) .sg-proc-node { animation-delay: 0.45s; }
.sg-proc-step:nth-child(2) .sg-proc-node { animation-delay: 0.7s; }
.sg-proc-step:nth-child(3) .sg-proc-node { animation-delay: 0.95s; }
.sg-proc-step:nth-child(4) .sg-proc-node { animation-delay: 1.2s; }
.sg-proc-step:nth-child(5) .sg-proc-node { animation-delay: 1.45s; }
.sg-proc-step:nth-child(6) .sg-proc-node { animation-delay: 1.7s; }

@keyframes sg-proc-node-pop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.sg-proc-step:hover .sg-proc-node {
  transform: scale(1.18);
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.45);
  outline-color: rgba(21, 101, 192, 0.5);
}

/* ── Step label below node ── */
.sg-proc-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.38);
  text-align: center;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: color 0.28s ease;
  white-space: nowrap;
}

.sg-proc-step:hover .sg-proc-label {
  color: #1565C0;
}

/* ════════════════════════════════
   MOBILE — VERTICAL TIMELINE
   ════════════════════════════════ */
@media (max-width: 767px) {
  .sg-proc-hero { padding: 56px 0 40px; }
  .sg-proc-timeline-outer { padding: 0 0 60px; }

  .sg-proc-scroll-wrap {
    overflow-x: visible;
  }

  /* Remove horizontal track line */
  .sg-proc-track::before,
  .sg-proc-track::after { display: none; }

  .sg-proc-track {
    flex-direction: column;
    min-width: unset;
    padding: 0 16px 0 0;
    gap: 0;
    position: relative;
  }

  /* Vertical line on left (connecting all nodes) */
  .sg-proc-track .sg-proc-v-line {
    display: block;
    position: absolute;
    top: 24px;       /* starts at center of first node */
    bottom: 72px;    /* ends above center of last node */
    left: 24px;      /* center of 48px node */
    width: 2px;
    background: linear-gradient(180deg, #1565C0 0%, rgba(21,101,192,0.15) 100%);
    animation: sg-proc-v-draw 1.4s ease 0.3s both;
    transform-origin: top;
  }

  @keyframes sg-proc-v-draw {
    from { transform: scaleY(0); }
    to   { transform: scaleY(1); }
  }

  /* Each step: node left, card right */
  .sg-proc-step {
    flex-direction: row;
    align-items: flex-start;
    padding: 0 0 28px 0;
    gap: 18px;
  }

  /* Move stem & node to left column */
  .sg-proc-stem { display: none; }
  .sg-proc-label { display: none; }

  .sg-proc-node {
    order: -1;        /* first in row = left */
    flex-shrink: 0;
  }

  .sg-proc-card {
    flex: 1;
    min-width: 0;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .sg-proc-card { padding: 18px 14px 16px; gap: 10px; }
  .sg-proc-icon { width: 40px; height: 40px; border-radius: 10px; }
  .sg-proc-card-title { font-size: 0.85rem; }
}


.sg-sec9{background:#030D1E;position:relative;overflow:hidden}
.sg-sec9::before{content:'';position:absolute;inset:0;background-image:repeating-linear-gradient(-52deg,rgba(21,101,192,0.045) 0px,rgba(21,101,192,0.045) 1px,transparent 1px,transparent 56px);pointer-events:none;z-index:0}
.sg-sec9::after{content:'';position:absolute;top:20%;right:-120px;width:560px;height:560px;border-radius:50%;background:radial-gradient(circle at center,rgba(21,101,192,0.13) 0%,transparent 65%);pointer-events:none;z-index:0}

.sg-sec9 .s9-inner{position:relative;z-index:1;max-width:1200px;margin:0 auto;padding:80px 24px 88px}

.sg-sec9 .s9-eyebrow{display:inline-flex;align-items:center;gap:8px;font-size:11px;font-weight:700;letter-spacing:3.5px;text-transform:uppercase;color:#42A5F5;margin-bottom:18px;padding:6px 18px;border:1px solid rgba(66,165,245,0.35);border-radius:24px;background:rgba(66,165,245,0.07)}
.sg-sec9 .s9-eyebrow::before{content:'';width:6px;height:6px;border-radius:50%;background:#42A5F5;display:inline-block;animation:s9blink 2.2s ease-in-out infinite}
@keyframes s9blink{0%,100%{opacity:1;transform:scale(1)}50%{opacity:0.4;transform:scale(0.6)}}

.sg-sec9 .s9-headline{font-size:clamp(1.5rem,2.8vw,2.2rem);font-weight:800;line-height:1.24;color:#fff;margin-bottom:16px;letter-spacing:-0.3px;max-width:780px}
.sg-sec9 .s9-intro{font-size:.975rem;line-height:1.82;color:rgba(255,255,255,0.55);max-width:720px;margin-bottom:52px}

.sg-sec9 .s9-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:12px;margin-bottom:48px}

.sg-sec9 .s9-card{background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.08);border-radius:14px;padding:18px 14px 16px;cursor:pointer;transition:background .22s,border-color .22s,transform .22s,box-shadow .22s;display:flex;flex-direction:row;align-items:center;gap:10px;outline:none;text-align:left;width:100%}
.sg-sec9 .s9-card:hover{background:rgba(21,101,192,0.12);border-color:rgba(21,101,192,0.4);transform:translateY(-3px);box-shadow:0 8px 28px rgba(21,101,192,0.18)}
.sg-sec9 .s9-card.s9-active{background:rgba(21,101,192,0.18);border-color:#1565C0;box-shadow:0 0 0 1px #1565C0,0 8px 32px rgba(21,101,192,0.38);transform:translateY(-2px)}

.sg-sec9 .s9-card-icon{width:38px;height:38px;border-radius:10px;background:rgba(21,101,192,0.15);border:1px solid rgba(66,165,245,0.18);display:flex;align-items:center;justify-content:center;color:#42A5F5;flex-shrink:0;transition:background .22s,color .22s}
.sg-sec9 .s9-card.s9-active .s9-card-icon{background:rgba(21,101,192,0.35);color:#fff}
.sg-sec9 .s9-card:hover .s9-card-icon{background:rgba(21,101,192,0.25)}

.sg-sec9 .s9-card-num{font-size:10px;font-weight:700;letter-spacing:2px;color:rgba(66,165,245,0.55);margin-bottom:2px}
.sg-sec9 .s9-card.s9-active .s9-card-num{color:rgba(66,165,245,0.85)}
.sg-sec9 .s9-card-name{font-size:0.78rem;font-weight:600;color:rgba(255,255,255,0.65);line-height:1.3;transition:color .22s}
.sg-sec9 .s9-card:hover .s9-card-name,.sg-sec9 .s9-card.s9-active .s9-card-name{color:#fff}

.sg-sec9 .s9-card-dot{width:6px;height:6px;border-radius:50%;background:#1565C0;margin-top:2px;opacity:0;transition:opacity .22s;flex-shrink:0}
.sg-sec9 .s9-card.s9-active .s9-card-dot{opacity:1}

.sg-sec9 .s9-panes{position:relative}
.sg-sec9 .s9-pane{display:none}
.sg-sec9 .s9-pane.s9-pane-active{display:block}

.sg-sec9 .s9-row{display:grid;grid-template-columns:1fr 1fr;gap:32px;align-items:center}

.sg-sec9 .s9-content{display:flex;flex-direction:column;gap:0}
.sg-sec9 .s9-counter{display:inline-flex;align-items:center;gap:6px;font-size:.7rem;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:rgba(66,165,245,0.75);background:rgba(21,101,192,0.1);border:1px solid rgba(66,165,245,0.2);border-radius:20px;padding:4px 14px;margin-bottom:22px;width:fit-content}
.sg-sec9 .s9-icon{width:64px;height:64px;border-radius:18px;background:linear-gradient(135deg,rgba(21,101,192,0.14) 0%,rgba(21,101,192,0.24) 100%);display:flex;align-items:center;justify-content:center;color:#42A5F5;margin-bottom:24px;position:relative;flex-shrink:0;border:1px solid rgba(66,165,245,0.15)}
.sg-sec9 .s9-icon::before{content:'';position:absolute;inset:-7px;border-radius:23px;border:1.5px dashed rgba(66,165,245,0.2)}
.sg-sec9 .s9-title{font-size:clamp(1.2rem,2vw,1.65rem);font-weight:800;color:#fff;margin-bottom:14px;line-height:1.28;letter-spacing:-.2px}
.sg-sec9 .s9-rule{width:48px;height:3px;background:linear-gradient(90deg,#1565C0,#42A5F5);border-radius:2px;margin-bottom:18px}
.sg-sec9 .s9-desc{font-size:.95rem;line-height:1.84;color:rgba(255,255,255,0.58);margin-bottom:24px}
.sg-sec9 .s9-tags{display:flex;flex-wrap:wrap;gap:8px}
.sg-sec9 .s9-tag{display:inline-flex;align-items:center;gap:6px;font-size:.74rem;font-weight:600;color:#42A5F5;background:rgba(21,101,192,0.1);border:1px solid rgba(66,165,245,0.2);border-radius:20px;padding:5px 14px}
.sg-sec9 .s9-tag::before{content:'';width:5px;height:5px;border-radius:50%;background:#1565C0;flex-shrink:0}

.sg-sec9 .s9-img-wrap{position:relative;border-radius:20px;overflow:hidden;height:420px;border:1px solid rgba(66,165,245,0.12);box-shadow:0 24px 64px rgba(0,0,0,0.4),0 0 0 1px rgba(21,101,192,0.1)}
.sg-sec9 .s9-img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .75s cubic-bezier(.25,.1,.25,1)}
.sg-sec9 .s9-img-wrap:hover .s9-img{transform:scale(1.05)}
.sg-sec9 .s9-img-overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(21,101,192,0.08) 0%,rgba(5,13,28,0.48) 60%,rgba(5,13,28,0.7) 100%);pointer-events:none}
.sg-sec9 .s9-img-wrap::before{content:'';position:absolute;top:0;right:0;width:120px;height:120px;background:radial-gradient(circle at top right,rgba(21,101,192,0.2) 0%,transparent 65%);pointer-events:none;z-index:1}
.sg-sec9 .s9-img-badge{position:absolute;bottom:18px;left:18px;display:flex;align-items:center;gap:10px;background:rgba(3,13,30,0.82);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);border:1px solid rgba(66,165,245,0.25);border-radius:12px;padding:10px 16px;z-index:3}
.sg-sec9 .s9-badge-icon{width:32px;height:32px;border-radius:8px;background:rgba(21,101,192,0.25);display:flex;align-items:center;justify-content:center;color:#42A5F5;flex-shrink:0}
.sg-sec9 .s9-badge-label{font-size:.82rem;font-weight:600;color:rgba(255,255,255,0.9)}

@media(max-width:900px){
  .sg-sec9 .s9-grid{grid-template-columns:repeat(3,1fr)}
  .sg-sec9 .s9-row{grid-template-columns:1fr;gap:24px}
  .sg-sec9 .s9-img-wrap{height:320px}
}
@media(max-width:600px){
  .sg-sec9 .s9-grid{grid-template-columns:repeat(2,1fr)}
  .sg-sec9 .s9-inner{padding:56px 16px 64px}
  .sg-sec9 .s9-img-wrap{height:240px;border-radius:14px}
  .sg-sec9 .s9-card{padding:14px 12px 12px}
}
@media(max-width:360px){
  .sg-sec9 .s9-grid{grid-template-columns:1fr}
}

  
    
/* Case study */
@media (max-width: 480px){

    .casestudies_sec .client-title{
        font-size: 28px !important;
        line-height: 1.15;
    }

}
.casestudies_sec {
  /* margin: 4rem 0 0; */
  position: relative;
}
.casestudies_sec > h2{
  padding: 30px 0;
  font-size: 2.65rem;
  font-weight: 800;

}
.viewCaseStudies {
  border: 1px solid #fff;
  color: #fff;
  border-radius: 10px;
  padding: 10px 1.5rem;
  text-decoration: none;
  /* display: inline-block; */
  width: auto;
  transition: background 0.3s ease, color 0.3s ease;
}
.viewCaseStudies {
  width: fit-content;
}

.viewCaseStudies:hover {
  background-color: #fff;
  color: #132948;
  text-decoration: none;
}
.casestudies_sec > h2{
    text-align: center;
}
.casestudies_sec > h3 {
  text-align: center;
  line-height: normal;
  font-size: 2.7rem;
  color: #132948;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 1.5rem;
}

.caseStudiesSliderBox h4 {
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
  text-align: left;
  margin-bottom: 1rem;
}

/* ── Slider wrapper ── */
.casestudies_slider {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
}

.slider-casestudies {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

/* Desktop: 2 cards per view */
.caseStudiesSliderBox {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 10px;
  box-sizing: border-box;
}

/* ── Card box ── */
.case_box {
  padding: 24px 20px 20px;
  border-radius: 20px;
  height: 380px;
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Row inside card — fill full height */
.case_box .row {
  flex: 1;
  min-height: 0;
  height: 100%;
}

/* Text column */
.case_box .col-lg-6:first-child {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  height: 100%;
}

.case_box p {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: start;
  color: #fff;
  margin-bottom: 1rem;
  flex-shrink: 1;
}

.case_logo img {
  margin-bottom: 1rem;
  height: auto;
  width: 100px;
}

.case_img img {
  float: right;
  width: 100%;
  height: auto;
  text-align: center;
}

/* ── img-wrapper base ── */
.img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* ── Landscape images ── */
.img-landscape {
  padding: 10px 6px 0 0;
  align-items: center;
  justify-content: center;
  max-height: 340px;
}

.img-landscape img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 330px;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
  opacity: 0.95;
  display: block;
}

/* ── Portrait images ── */
.img-portrait {
  align-items: flex-end;
  padding-top: 10px;
  max-height: 360px;
}

.img-portrait img {
  padding-bottom: 15px;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: contain;
  object-position: bottom;
  border-radius: 12px 12px 0 0;
  filter: drop-shadow(0 -8px 24px rgba(0, 0, 0, 0.4));
  display: block;
  margin: 0 auto;
}

/* ── Arrow buttons ── */
.caseStudiesBottomArrows {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 40;
  width: fit-content;
  margin: 16px;
}

.caseStudiesBottomArrows button {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  border: none;
  padding: 8px;
  background-color: #0b79be;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.caseStudiesBottomArrows button:hover {
  background-color: transparent;
  color: #0b79be;
  border: 1px solid #0b79be;
}

.caseStudiesBottomArrows button i {
  font-size: 1rem;
}

.caseStudiesLeftArrow i,
.caseStudieRightArrow i {
  font-size: 1.2rem;
}

/* ── Case available ── */
.case-available {
  display: flex;
  gap: 10px;
  margin-bottom: 1rem;
  align-items: center;
}

.case-available p {
  margin-bottom: 0;
}

.case-available img {
  filter: invert(1);
  width: 40px;
  height: 40px;
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */

/* Tablet: still 2 per view but smaller image */
@media (max-width: 991.98px) {
  .img-landscape {
    max-height: 220px;
  }
  .img-landscape img {
    max-height: 210px;
  }
  .img-portrait {
    max-height: 240px;
  }
  .img-portrait img {
    max-height: 230px;
  }
  .case_box {
    height: 360px;
  }
}
.viewCaseStudies {
  width: fit-content;
  display: block;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .viewCaseStudies {
    margin: 0;
  }
}
@media (max-width: 767.98px) {
  .caseStudiesSliderBox h4 {
    text-align: center;
  }
}

/* Mobile: 1 card per view, stacked layout */
@media (max-width: 767.98px) {

  /* 1 slide per view */
  .caseStudiesSliderBox {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 6px;
  }

  /* Auto height so content fits */
  .case_box {
    height: auto;
    min-height: unset;
    padding: 20px 16px 16px;
  }

  /* Stack text on top, image below */
  .case_box .row {
    flex-direction: column;
    height: auto;
  }

  .case_box .col-lg-6 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    height: auto !important;
  }

  /* Text block */
  .case_box .col-lg-6:first-child {
    height: auto;
    overflow: visible;
  }

  .case_box p {
    -webkit-line-clamp: 5;
    margin-bottom: 0.75rem;
  }

  .caseStudiesSliderBox h4 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
  }

  /* Image block — fixed height on mobile */
  .img-wrapper {
    height: 180px;
    margin-top: 12px;
  }

  .img-landscape,
  .img-portrait {
    max-height: 180px;
    padding: 0;
  }

  .img-landscape img,
  .img-portrait img {
    max-height: 170px;
    width: 100%;
    object-fit: contain;
  }

  .img-portrait {
    align-items: center;
  }

  .img-portrait img {
    border-radius: 10px;
    object-position: center;
  }

  /* Arrows */
  .caseStudiesBottomArrows {
    margin-top: 12px;
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .casestudies_sec > h4 {
    font-size: 2rem;
  }
  .caseStudiesSliderBox h4 {
    font-size: 1.3rem;
  }
  .img-wrapper {
    height: 150px;
  }
  .img-landscape img,
  .img-portrait img {
    max-height: 140px;
  }
}

  
  
.device-compat-section { padding: 48px 0 32px; }
.container { margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.sec-label { display: inline-block; font-size: 12px; font-weight: 500; color: var(--color-text-info); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px; }
.sec-title { font-size: 22px; font-weight: 500; color: var(--color-text-primary); margin: 0 0 10px; }
.sec-title span { color: var(--color-text-info); }
.sec-desc { font-size: 14px; color: var(--color-text-secondary); margin: 0 0 36px; }
.device-group { margin-bottom: 36px; }
.device-group-label { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.group-icon { display: flex; align-items: center; justify-content: center; }
.group-name { font-size: 13px; font-weight: 500; color: var(--color-text-secondary); white-space: nowrap; }
.group-line { flex: 1; height: 1px; background: var(--color-border-tertiary); }
.device-cards-row { display: flex; flex-wrap: wrap; gap: 12px; }
.device-card { display: flex; flex-direction: column; align-items: center; gap: 7px; padding: 16px 14px 14px; background: var(--color-background-secondary); border: 1px solid var(--color-border-tertiary); border-radius: var(--border-radius-lg); min-width: 130px; flex: 1 1 130px; max-width: 180px; transition: border-color .18s; cursor: default; }
.device-card:hover { border-color: var(--color-border-secondary); }
.dev-icon { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; }
.dev-name { font-size: 12px; font-weight: 500; color: var(--color-text-primary); text-align: center; line-height: 1.4; }
.dev-sub { font-size: 11px; color: var(--color-text-secondary); text-align: center; }


   .tech-section *,
  .tech-section *::before,
  .tech-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  .tech-section {
    background: #050810;
    padding: 30px 0!important;
    position: relative;
    overflow: hidden;
  }

  .tech-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
    animation: ts-blob1 8s ease-in-out infinite alternate;
  }

  .tech-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 140, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: ts-blob2 10s ease-in-out infinite alternate;
  }

  @keyframes ts-blob1 {
    from { transform: translate(0,0) scale(1); }
    to   { transform: translate(60px, 80px) scale(1.15); }
  }
  @keyframes ts-blob2 {
    from { transform: translate(0,0) scale(1); }
    to   { transform: translate(-50px, -60px) scale(1.2); }
  }

  .ts-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .ts-heading-wrap {
    text-align: center;
    margin-bottom: 60px;
  }

  .ts-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #0052ff;
    background: rgba(0, 82, 255, 0.08);
    border: 1px solid rgba(0, 82, 255, 0.3);
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 20px;
    animation: ts-fadedown 0.6s ease both;
  }

  .ts-heading-wrap h3 {
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    animation: ts-fadedown 0.7s 0.1s ease both;
  }

  .ts-heading-wrap h3 span {
    color: #0052ff;
  }

  @keyframes ts-fadedown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* TABS */
  .ts-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 48px;
    animation: ts-fadeup 0.6s 0.2s ease both;
  }

  @keyframes ts-fadeup {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .ts-tab-btn {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #6b7a99;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
  }

  .ts-tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: #0052ff;
    transition: width 0.3s ease;
  }

  .ts-tab-btn:hover {
    color: #ffffff;
    border-color: rgba(0, 82, 255, 0.4);
    background: rgba(0, 82, 255, 0.07);
  }

  .ts-tab-btn:hover::after { width: 100%; }

  .ts-tab-btn.ts-active {
    color: #ffffff;
    background: rgba(0, 82, 255, 0.15);
    border-color: #0052ff;
  }

  .ts-tab-btn.ts-active::after { width: 100%; }

  /* PANEL */
  .ts-panel {
    display: none;
  }

  .ts-panel.ts-show {
    display: block;
    animation: ts-panelin 0.4s ease both;
  }

  @keyframes ts-panelin {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* GRID */
  /* .ts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
  } */
   .ts-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px; 
}

  /* CARD */
  .ts-card {
      width: calc(16.66% - 20px); 
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 6px;
    padding: 28px 16px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    cursor: default;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    animation: ts-cardin 0.5s ease both;
  }

  .ts-card:nth-child(1)  { animation-delay: 0.00s; }
  .ts-card:nth-child(2)  { animation-delay: 0.04s; }
  .ts-card:nth-child(3)  { animation-delay: 0.08s; }
  .ts-card:nth-child(4)  { animation-delay: 0.12s; }
  .ts-card:nth-child(5)  { animation-delay: 0.16s; }
  .ts-card:nth-child(6)  { animation-delay: 0.20s; }
  .ts-card:nth-child(7)  { animation-delay: 0.24s; }
  .ts-card:nth-child(8)  { animation-delay: 0.28s; }
  .ts-card:nth-child(9)  { animation-delay: 0.32s; }
  .ts-card:nth-child(10) { animation-delay: 0.36s; }
  .ts-card:nth-child(11) { animation-delay: 0.40s; }
  .ts-card:nth-child(12) { animation-delay: 0.44s; }
  .ts-card:nth-child(13) { animation-delay: 0.48s; }
  .ts-card:nth-child(14) { animation-delay: 0.52s; }
  .ts-card:nth-child(15) { animation-delay: 0.56s; }

  @keyframes ts-cardin {
    from { opacity: 0; transform: translateY(18px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  .ts-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,82,255,0.5), transparent);
    transform: scaleX(0);
    transition: transform 0.35s ease;
  }

  .ts-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 82, 255, 0.45);
    background: rgba(0, 82, 255, 0.07);
  }

  .ts-card:hover::before {
    transform: scaleX(1);
  }

  /* Icon wrapper — white bg for icons */
  .ts-icon-wrap {
    width: 100px;
    height: 56px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }

  .ts-card:hover .ts-icon-wrap {
    box-shadow: 0 6px 28px rgba(0, 82, 255, 0.35);
    transform: scale(1.08);
  }

  .ts-icon-wrap img {
    width: 80px;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .ts-card p {
    font-size: 11px;
    font-weight: 400;
    color: #8a9bc2;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
  }

  .ts-card:hover p {
    color: #c8d4f0;
  }

  /* Corner accent */
  .ts-card::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 20px; height: 20px;
    border-bottom: 1px solid rgba(0, 82, 255, 0.4);
    border-right: 1px solid rgba(0, 82, 255, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 0 6px 0;
  }

  .ts-card:hover::after {
    opacity: 1;
  }

  /* Scanline overlay */
  .ts-scanline {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(0,0,0,0.03) 3px,
      rgba(0,0,0,0.03) 4px
    );
    pointer-events: none;
    z-index: 0;
  }

  /* RESPONSIVE */
 /* ── RESPONSIVE FIX ── */

/* Desktop default – 6 columns (already in your base CSS, confirm karo) */
.ts-card {
  width: calc(16.66% - 14px);
}

/* Tablet large – 4 columns */
@media (max-width: 1024px) {
  .ts-card {
    width: calc(25% - 13px);
  }
}

/* Tablet – 3 columns */
@media (max-width: 768px) {
  .tech-section {
    padding: 40px 16px !important;
  }

  .ts-heading-wrap {
    margin-bottom: 36px;
  }

  .ts-heading-wrap h3 {
    font-size: 22px;
  }

  .ts-tabs {
    gap: 6px;
    margin-bottom: 28px;
  }

  .ts-tab-btn {
    font-size: 10px;
    padding: 8px 12px;
    letter-spacing: 1px;
  }

  .ts-card {
    width: calc(33.33% - 11px);
  }

  .ts-icon-wrap {
    width: 80px;
    height: 46px;
  }

  .ts-icon-wrap img {
    width: 64px;
  }

  .ts-card p {
    font-size: 10px;
  }
}

/* Mobile – 2 columns */
@media (max-width: 480px) {
  .tech-section {
    padding: 30px 12px !important;
  }

  .ts-tabs {
    gap: 5px;
    margin-bottom: 20px;
  }

  .ts-tab-btn {
    font-size: 9px;
    padding: 7px 9px;
    letter-spacing: 0.5px;
  }

  .ts-card {
    width: calc(50% - 8px);
    padding: 18px 10px 14px;
    gap: 10px;
  }

  .ts-icon-wrap {
    width: 70px;
    height: 40px;
  }

  .ts-icon-wrap img {
    width: 56px;
  }

  .ts-card p {
    font-size: 9.5px;
  }
}




  /* ===== FAQ ===== */
.sg-faq { padding: 30px 0; background: #fff; }
.sg-faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.sg-faq-item { border-radius: 14px; overflow: hidden; }
.sg-faq-q {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 18px;
  font-weight: 500;
  color: rgb(0 0 0 / 57%);
  text-align: left;
  transition: color .3s;
}
#faq-heading{
  font-size: 2.6rem;
  font-weight: 800;
}
.sg-faq-q:hover { color: #1B4FD8; }
.sg-faq-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  position: relative;
}
.sg-faq-icon::before, .sg-faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: #03323e;
  transition: transform .35s ease, opacity .35s;
}
.sg-faq-icon::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.sg-faq-icon::after { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
.sg-faq-item.open .sg-faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.sg-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.2,.7,.2,1);
  padding: 0 24px;
  color: #1b5ef7;
  font-size: 17.5px;
  line-height: 1.7;
}
.sg-faq-item.open .sg-faq-a { padding: 0 24px 22px; }
