/* ============================================================
   HOME PAGE STYLES
   ============================================================ */

/* ── Shared section spacing ── */
.section { padding: 96px 0; }
.section-sm { padding: 72px 0; }
.section-alt { background: var(--off-white); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-sec);
  line-height: 1.75;
  max-width: 560px;
}

/* ============================================================
   HERO — ORBIT GRAPHIC VERSION
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
  /* Replace /images/hero-bg.jpg with your actual image path */
  background:
    linear-gradient(135deg, rgba(6,10,24,0.93) 0%, rgba(10,16,38,0.88) 50%, rgba(15,25,60,0.84) 100%),
    url('/images/hero-bg.jpg') center center / cover no-repeat;
  background-color: #06080f;
}

/* Subtle radial blue glow top-right */
.hero::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44,110,232,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  padding: 80px 0;
}

/* ── Left: text ── */
.hero-left { max-width: 580px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 6px 14px 6px 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 22px; height: 22px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.65rem;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-head);
  font-size: 35px;
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
  min-height: 2.64em; /* two lines × line-height — prevents layout jump during typing */
}

/* Typewriter cursor (home hero) */
.hero-typo-cursor {
  display: inline-block;
  color: #7AABFF;
  font-weight: 200;
  margin-left: 2px;
  animation: blink-hero-cur 0.75s step-end infinite;
}
@keyframes blink-hero-cur {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
.hero-typo-cursor.done {
  animation: none;
  opacity: 0;
  transition: opacity 0.6s ease 0.2s;
}
.hero-title .accent {
  color: #7AABFF;
  position: relative;
  display: inline-block;
}
.hero-title .accent::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: #7AABFF;
  border-radius: 2px;
  opacity: 0.3;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-actions .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
}
.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-num span { color: #7AABFF; }
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}

/* ── Right: Orbit graphic ── */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Outer container — sets overall size */
.orbit-wrap {
  position: relative;
  width: 420px;
  height: 420px;
  flex-shrink: 0;
}

/* Static dashed rings (just visual guides) */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.orbit-ring.or1 {
  width: 320px; height: 320px;
  border: 1.5px dashed rgba(44,110,232,0.4);
}
.orbit-ring.or2 {
  width: 420px; height: 420px;
  border: 1px dashed rgba(44,110,232,0.15);
}

/* Center hub */
.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 108px; height: 108px;
  background: rgba(15, 22, 55, 0.9);
  border: 2px solid rgba(44,110,232,0.6);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow:
    0 0 0 8px rgba(44,110,232,0.06),
    0 0 40px rgba(44,110,232,0.3),
    inset 0 0 24px rgba(44,110,232,0.12);
  backdrop-filter: blur(10px);
}
.orbit-center::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(44,110,232,0.18);
  animation: pulse-ring 3s ease-in-out infinite;
}
.orbit-center i {
  font-size: 1.7rem;
  color: #7AABFF;
  margin-bottom: 5px;
}
.orbit-center-label {
  font-family: var(--font-head);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-align: center;
  line-height: 1.5;
}

/*
  HOW THE ORBIT WORKS:
  - .orbit-track is an invisible box that spins (orbit-spin)
  - Each .orbit-node sits at a position on that spinning track
  - Each .orbit-node counter-rotates (orbit-counter) so its icon
    always stays upright — exactly like the reference image
*/
.orbit-track {
  position: absolute;
  top: 50%; left: 50%;
  width: 320px; height: 320px;
  margin: -160px 0 0 -160px;
  animation: orbit-spin 20s linear infinite;
  z-index: 5;
}

.orbit-node {
  position: absolute;
  width: 80px; height: 80px;
  background: rgba(10, 16, 45, 0.88);
  border: 1.5px solid rgba(44,110,232,0.5);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  backdrop-filter: blur(10px);
  box-shadow:
    0 4px 24px rgba(0,0,0,0.5),
    0 0 16px rgba(44,110,232,0.15),
    inset 0 1px 0 rgba(255,255,255,0.06);
  animation: orbit-counter 20s linear infinite;
  cursor: default;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.orbit-node:hover {
  border-color: rgba(44,110,232,0.9);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5), 0 0 24px rgba(44,110,232,0.35);
}
.orbit-node i {
  font-size: 1.25rem;
  color: #7AABFF;
}
.orbit-node span {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-align: center;
  line-height: 1.3;
}

/*
  Node positions — evenly spaced at 60° apart on a circle of r=160px
  Angles: 270°(top), 330°(top-right), 30°(bottom-right),
          90°(bottom), 150°(bottom-left), 210°(top-left)
  Formula: top = 50% + r·sin(θ) - 40px
           left = 50% + r·cos(θ) - 40px
*/
.orbit-node.n1 { top:  -40px; left:  120px; } /* 270° top         */
.orbit-node.n2 { top:   40px; left:  259px; } /* 330° top-right   */
.orbit-node.n3 { top:  219px; left:  259px; } /* 30°  bot-right   */
.orbit-node.n4 { top:  281px; left:  120px; } /* 90°  bottom      */
.orbit-node.n5 { top:  219px; left:  -19px; } /* 150° bot-left    */
.orbit-node.n6 { top:   40px; left:  -19px; } /* 210° top-left    */

@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes orbit-counter {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
@keyframes pulse-ring {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.08); }
}

/* Responsive */
@media (max-width: 1100px) {
  .orbit-wrap { width: 360px; height: 360px; }
  .orbit-ring.or1 { width: 276px; height: 276px; }
  .orbit-ring.or2 { width: 360px; height: 360px; }
  .orbit-track { width: 276px; height: 276px; margin: -138px 0 0 -138px; }
  .orbit-node.n1 { top:  -40px; left:  99px; }
  .orbit-node.n2 { top:   29px; left:  222px; }
  .orbit-node.n3 { top:  187px; left:  222px; }
  .orbit-node.n4 { top:  238px; left:   99px; }
  .orbit-node.n5 { top:  187px; left:  -24px; }
  .orbit-node.n6 { top:   29px; left:  -24px; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 40px 0 60px; text-align: center; }
  .hero-right { display: none; }
  .hero-left { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; gap: 24px; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-badge { display: inline-flex; }
}

/* ============================================================
   ABOUT STRIP
   ============================================================ */

/* ============================================================
   SERVICES / TRAINING CARDS
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.sc-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 1.2rem;
  margin-bottom: 16px;
  transition: background var(--transition), color var(--transition);
}
.service-card:hover .sc-icon { background: var(--blue); color: var(--white); }

.sc-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.sc-desc {
  font-size: 0.86rem;
  color: var(--text-sec);
  flex: 1;
  line-height: 1.65;
  margin-bottom: 16px;
}
.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap var(--transition);
}
.service-card:hover .sc-link { gap: 8px; }
.service-card:hover .sc-link-alt { gap: 8px; }

.sc-offer-pills {
  display: flex;
  gap: 7px;
  margin-bottom: 16px;
}
.sc-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.sc-pill-training {
  background: var(--blue-light);
  color: var(--blue);
  border: 1px solid rgba(44,110,232,0.2);
}
.sc-pill-service {
  background: #F0FDF4;
  color: #059669;
  border: 1px solid rgba(5,150,105,0.2);
}
.sc-dual-links {
  display: block;
  text-align: center;
  margin-top: auto;
  width: 100%;
}
.sc-dual-links .sc-link,
.sc-dual-links .sc-link-alt {
  margin: 0 10px;
}
.sc-link-alt { color: #059669; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.why-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition), transform var(--transition);
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.why-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 1.3rem;
  margin: 0 auto 16px;
}
.why-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.why-desc { font-size: 0.84rem; color: var(--text-sec); line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.testi-quote {
  font-size: 2.5rem;
  color: var(--blue-light);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--blue);
  opacity: 0.3;
}
.testi-text {
  font-size: 0.9rem;
  color: var(--text-sec);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  flex-shrink: 0;
}
.testi-name {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text-primary);
}
.testi-course { font-size: 0.77rem; color: var(--text-muted); }
.testi-stars {
  margin-left: auto;
  color: #F59E0B;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--blue);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 200px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text {}
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.cta-desc { font-size: 0.95rem; color: rgba(255,255,255,0.75); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; flex-shrink: 0; }
.btn-white {
  background: var(--white);
  color: var(--blue);
  font-family: var(--font-head);
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-white:hover { background: var(--off-white); transform: translateY(-1px); }
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-inner .about-graphic { order: -1; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 40px 0 60px;
    text-align: center;
  }
  .hero-right { display: none; }
  .hero-left { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; gap: 24px; }
  .hero-desc { margin: 0 auto 36px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}

@media (max-width: 600px) {
  .cards-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   HERO ENTRANCE ANIMATION (plays on page load)
   ============================================================ */
@keyframes hero-enter {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-right-enter {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hero-title   { animation: hero-enter 0.75s cubic-bezier(0.4,0,0.2,1) 0.10s both; }
.hero-desc    { animation: hero-enter 0.75s cubic-bezier(0.4,0,0.2,1) 0.25s both; }
.hero-actions { animation: hero-enter 0.75s cubic-bezier(0.4,0,0.2,1) 0.40s both; }
.hero-stats   { animation: hero-enter 0.75s cubic-bezier(0.4,0,0.2,1) 0.55s both; }
.hero-right   { animation: hero-right-enter 0.90s cubic-bezier(0.4,0,0.2,1) 0.20s both; }

/* ============================================================
   HERO FLOATING PARTICLES
   ============================================================ */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(122,171,255,0.18);
  animation: float-up linear infinite;
}
@keyframes float-up {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 0.6; }
  100% { transform: translateY(-110vh) rotate(540deg); opacity: 0; }
}

/* ============================================================
   ABOUT STRIP — MOBILE FIX
   ============================================================ */
.about-strip-section {
  position: relative;
  overflow: hidden;
}
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.about-deco .ab-blob1 {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44,110,232,0.07) 0%, transparent 68%);
  top: -140px; right: -100px;
  animation: slow-drift 18s ease-in-out infinite alternate;
}
.about-deco .ab-blob2 {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5,150,105,0.05) 0%, transparent 68%);
  bottom: -100px; left: 5%;
  animation: slow-drift 22s ease-in-out infinite alternate-reverse;
}
@media (max-width: 860px) {
  .about-strip-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 580px) {
  .about-strip-section { padding: 64px 0 !important; }
  .about-strip-inner { gap: 28px; }
}

/* ============================================================
   SCROLL REVEAL SYSTEM
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.78s cubic-bezier(0.4,0,0.2,1),
              transform 0.78s cubic-bezier(0.4,0,0.2,1);
  will-change: opacity, transform;
}
[data-reveal="up"]    { transform: translateY(50px); }
[data-reveal="left"]  { transform: translateX(-55px); }
[data-reveal="right"] { transform: translateX(55px); }
[data-reveal="scale"] { transform: scale(0.88); }
[data-reveal="fade"]  {}
[data-reveal].revealed { opacity: 1; transform: translate(0,0) scale(1) !important; }

/* Delay helpers */
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.17s; }
.d3 { transition-delay: 0.28s; }
.d4 { transition-delay: 0.40s; }

/* Stagger grid children */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.66s cubic-bezier(0.4,0,0.2,1),
              transform 0.66s cubic-bezier(0.4,0,0.2,1);
  will-change: opacity, transform;
}
[data-stagger].revealed > *:nth-child(1) { transition-delay: 0.04s; }
[data-stagger].revealed > *:nth-child(2) { transition-delay: 0.13s; }
[data-stagger].revealed > *:nth-child(3) { transition-delay: 0.22s; }
[data-stagger].revealed > *:nth-child(4) { transition-delay: 0.31s; }
[data-stagger].revealed > *:nth-child(5) { transition-delay: 0.40s; }
[data-stagger].revealed > *:nth-child(6) { transition-delay: 0.49s; }
[data-stagger].revealed > * { opacity: 1; transform: none; }

/* Honour prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-stagger] > *,
  .hero-title, .hero-desc, .hero-actions, .hero-stats, .hero-right {
    opacity: 1 !important; transform: none !important;
    animation: none !important; transition: none !important;
  }
}

/* ============================================================
   SECTION DECORATIVE ELEMENTS
   ============================================================ */
@keyframes slow-drift {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(28px,18px) scale(1.07); }
}

/* Services — dot grid */
.section-services {
  position: relative;
  overflow: hidden;
}
.section-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(44,110,232,0.055) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}
.section-services > .container { position: relative; z-index: 1; }

/* Why Choose Us — colour blobs */
.section-why {
  position: relative;
  overflow: hidden;
}
.why-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.why-deco .wd-blob1 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44,110,232,0.08) 0%, transparent 70%);
  top: -80px; left: -80px;
  animation: slow-drift 16s ease-in-out infinite alternate;
}
.why-deco .wd-blob2 {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.05) 0%, transparent 70%);
  bottom: -60px; right: 8%;
  animation: slow-drift 20s ease-in-out infinite alternate-reverse;
}
.section-why > .container { position: relative; z-index: 1; }

/* Testimonials — colour blobs */
.section-testimonials {
  position: relative;
  overflow: hidden;
}
.testi-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.testi-deco .td-blob1 {
  position: absolute;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44,110,232,0.06) 0%, transparent 70%);
  top: -100px; right: -80px;
  animation: slow-drift 14s ease-in-out infinite alternate;
}
.testi-deco .td-blob2 {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.05) 0%, transparent 70%);
  bottom: -80px; left: 20%;
  animation: slow-drift 19s ease-in-out infinite alternate-reverse;
}
.section-testimonials > .container { position: relative; z-index: 1; }