/* ==========================================================================
   Modern UI Hero Section: Strict 80vh Architectural Canvas
   ========================================================================== */
.mod-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 80vh;
  max-height: 90vh;
  padding: 0 5%;
  background-color: #030712; /* Deep Obsidian Base */
  color: #f8fafc;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

/* Background Atmosphere & Infinite Breathing Zoom Image */
.mod-bg-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.mod-bg-image-layer {
  position: absolute;
  inset: -15%;
  background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: contrast(1.4) brightness(0.8);
  animation: bgInfiniteBreathingZoom 22s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes bgInfiniteBreathingZoom {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.12) translate(-15px, -10px); }
  100% { transform: scale(1.22) translate(15px, 10px); }
}

.mod-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(236, 72, 153, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(6, 182, 212, 0.05) 1px, transparent 1px);
  background-size: 45px 45px;
  mask-image: radial-gradient(circle at 65% 50%, black 35%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 65% 50%, black 35%, transparent 80%);
}

.mod-vignette-shroud {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 50%, rgba(3, 7, 18, 0.35) 0%, #030712 85%),
              linear-gradient(to bottom, transparent 0%, #030712 100%);
}

/* Ambient Luminescence Pockets */
.mod-glow-pocket {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
}

.glow-fuchsia {
  width: 480px;
  height: 480px;
  background: rgba(236, 72, 153, 0.14);
  top: -40px;
  right: 10%;
  animation: modGlowCycle 8s ease-in-out infinite alternate;
}

.glow-cyan {
  width: 480px;
  height: 480px;
  background: rgba(6, 182, 212, 0.14);
  bottom: -40px;
  left: 10%;
  animation: modGlowCycle 10s ease-in-out infinite alternate-reverse;
}

@keyframes modGlowCycle {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.15); opacity: 0.9; }
}

/* Master Layout Grid */
.mod-master-container {
  position: relative;
  z-index: 1;
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

/* ==========================================================================
   Left Column: Content & Conversion Metrics
   ========================================================================== */
.mod-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mod-badge-strip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(236, 72, 153, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.mod-pulse-beacon {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ec4899;
  box-shadow: 0 0 8px #ec4899;
  animation: pulseBlink 2s infinite;
}

@keyframes pulseBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.65); }
}

.mod-badge-text {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.3px;
  color: #f472b6;
}

.mod-badge-sep {
  color: #475569;
  font-size: 0.7rem;
}

.mod-badge-state {
  font-family: monospace;
  font-size: 0.65rem;
  font-weight: 700;
  color: #38bdf8;
}

.mod-main-title {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.mod-gradient-text {
  background: linear-gradient(135deg, #f43f5e 0%, #d946ef 50%, #38bdf8 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 6s ease-in-out infinite;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.mod-lead-desc {
  font-size: 0.96rem;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0 0 24px 0;
  max-width: 560px;
}

/* Micro-Metrics Bar */
.mod-metrics-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 22px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  margin-bottom: 26px;
}

.mod-m-item strong {
  font-size: 1.25rem;
  font-weight: 900;
  color: #ffffff;
}

.mod-m-item span {
  display: block;
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 500;
}

.mod-m-sep {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
}

/* Action Group */
.mod-action-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mod-btn-primary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: linear-gradient(135deg, #db2777 0%, #9333ea 100%);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(219, 39, 119, 0.4);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.mod-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(219, 39, 119, 0.55);
}

.btn-sheen-sweep {
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-25deg);
  transition: left 0.75s ease;
}
.mod-btn-primary:hover .btn-sheen-sweep { left: 140%; }

.mod-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 13px 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f8fafc;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.mod-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* ==========================================================================
   Right Column: 3D Vector Prism & Platform Nodes
   ========================================================================== */
.mod-visual-col {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.mod-3d-stage {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

/* Orbital Radar Discs */
.mod-radar-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}

.ring-1 {
  width: 380px;
  height: 380px;
  border: 1.5px dashed rgba(236, 72, 153, 0.25);
  animation: ringSpin 32s linear infinite;
}

.ring-2 {
  width: 270px;
  height: 270px;
  border: 1px solid rgba(6, 182, 212, 0.3);
  animation: ringSpin 20s linear infinite reverse;
}

@keyframes ringSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ==========================================================================
   3D VECTOR PERFORMANCE PRISM MODEL
   ========================================================================== */
.mod-prism-assembly {
  position: relative;
  width: 180px;
  height: 260px;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: prismFloat 6s ease-in-out infinite alternate;
}

@keyframes prismFloat {
  0% { transform: rotateY(0deg) rotateX(12deg); }
  100% { transform: rotateY(360deg) rotateX(12deg); }
}

.prism-glass-core {
  position: absolute;
  width: 80px;
  height: 220px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.25) 0%, rgba(6, 182, 212, 0.25) 100%);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(236, 72, 153, 0.3);
}

.prism-core-beam {
  width: 6px;
  height: 190px;
  background: linear-gradient(180deg, #ec4899 0%, #38bdf8 100%);
  box-shadow: 0 0 20px #ec4899, 0 0 40px #38bdf8;
  border-radius: 4px;
}

/* Orbiting Channel Platform Nodes */
.platform-orbit-node {
  position: absolute;
  width: 44px;
  height: 44px;
  background: rgba(15, 23, 42, 0.95);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transform-style: preserve-3d;
}

.node-google {
  top: 10%;
  left: -15px;
  color: #ea4335;
  border-color: rgba(234, 67, 53, 0.5);
  box-shadow: 0 0 15px rgba(234, 67, 53, 0.4);
}

.node-meta {
  top: 30%;
  right: -20px;
  color: #1877f2;
  border-color: rgba(24, 119, 242, 0.5);
  box-shadow: 0 0 15px rgba(24, 119, 242, 0.4);
}

.node-analytics {
  bottom: 30%;
  left: -20px;
  color: #f9ab00;
  border-color: rgba(249, 171, 0, 0.5);
  box-shadow: 0 0 15px rgba(249, 171, 0, 0.4);
}

.node-ads {
  bottom: 10%;
  right: -15px;
  color: #a855f7;
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

/* Floating Telemetry Shards */
.mod-hud-capsule {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
  z-index: 4;
  white-space: nowrap;
  pointer-events: none;
}

.capsule-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.ico-fuchsia { background: rgba(236, 72, 153, 0.15); border: 1px solid rgba(236, 72, 153, 0.3); }
.ico-cyan    { background: rgba(6, 182, 212, 0.15); border: 1px solid rgba(6, 182, 212, 0.3); }

.capsule-info strong {
  display: block;
  font-size: 0.74rem;
  color: #ffffff;
}

.capsule-info span {
  font-size: 0.62rem;
  color: #94a3b8;
}

.capsule-top {
  top: 20px;
  right: 5px;
  animation: capsuleFloatA 4.5s ease-in-out infinite alternate;
}

.capsule-bottom {
  bottom: 25px;
  left: 5px;
  animation: capsuleFloatB 5s ease-in-out infinite alternate;
}

@keyframes capsuleFloatA {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

@keyframes capsuleFloatB {
  0% { transform: translateY(0); }
  100% { transform: translateY(8px); }
}

/* Staggered Scroll-Reveal Animations */
.scroll-reveal {
  opacity: 0;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal[data-dir="left"]  { transform: translateX(-35px); }
.scroll-reveal[data-dir="right"] { transform: translateX(35px); }

.scroll-reveal.revealed {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 1024px) {
  .mod-hero-section {
    height: auto;
    min-height: 80vh;
    max-height: none;
    padding: 70px 5%;
  }

  .mod-master-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mod-content-col {
    align-items: center;
  }

  .mod-badge-strip,
  .mod-metrics-bar,
  .mod-action-group {
    justify-content: center;
  }

  .mod-3d-stage {
    max-width: 380px;
    height: 380px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .mod-main-title {
    font-size: 1.8rem;
  }

  .mod-metrics-bar {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .mod-m-sep {
    display: none;
  }

  .mod-action-group {
    flex-direction: column;
    width: 100%;
  }

  .mod-btn-primary,
  .mod-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Section 2 Starst  */

/* ==========================================================================
   Compact Growth Section (Light Background & Small Cards)
   ========================================================================== */
.growth-compact-section {
  position: relative;
  width: 100%;
  padding: 90px 5% 85px;
  background-color: #f8fafc; /* Your default light background */
  color: #0f172a;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  overflow: hidden;
  box-sizing: border-box;
}

.compact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Header */
.compact-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.compact-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #0284c7;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
  margin-bottom: 12px;
}

.compact-beacon {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0284c7;
  box-shadow: 0 0 6px rgba(2, 132, 199, 0.8);
}

.compact-title {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin: 0 0 8px 0;
}

.compact-subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: #475569;
  margin: 0;
}

/* Small Cards Grid */
.compact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mini-growth-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.mini-growth-card:hover {
  transform: translateY(-4px);
  border-color: #0284c7;
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.08);
}

.card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.mini-ico {
  font-size: 1.1rem;
}

.mini-num {
  font-family: monospace;
  font-size: 0.7rem;
  font-weight: 800;
  color: #94a3b8;
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 6px;
}

.mini-growth-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.01em;
}

.mini-growth-card p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #64748b;
}

/* Footer Dock */
.compact-footer-dock {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 24px 30px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.dock-title {
  font-family: monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #0284c7;
}

.dock-steps {
  font-size: 0.88rem;
  font-weight: 700;
  color: #334155;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.highlight-growth {
  color: #059669;
}

.dock-channels {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid #f1f5f9;
  width: 100%;
}

/* Scroll-Reveal Animation */
.scroll-reveal {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal[data-dir="down"] { transform: translateY(-20px); }
.scroll-reveal[data-dir="up"]   { transform: translateY(20px); }

.scroll-reveal.revealed {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* Responsive Adaptations */
@media (max-width: 1024px) {
  .compact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .growth-compact-section {
    padding: 70px 5%;
  }

  .compact-grid {
    grid-template-columns: 1fr;
  }
}

/* Section 2 ENds  */

/* Section 3 Starst  */

/* ==========================================================================
   Digital Marketing Services Pill Cloud Section (Matches Reference Layout)
   ========================================================================== */
.digital-services-pill-section {
  position: relative;
  width: 100%;
  padding: 100px 5% 95px;
  background-color: #f8fafc; /* Standard clean light mode */
  color: #0f172a;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  overflow: hidden;
  box-sizing: border-box;
}

.pill-section-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Header Block */
.pill-section-header {
  max-width: 880px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pill-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: #0284c7;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
  margin-bottom: 18px;
}

.pill-dot {
  width: 6px;
  height: 6px;
  background-color: #0284c7;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(2, 132, 199, 0.8);
  animation: pillDotPulse 2s infinite;
}

@keyframes pillDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.6); }
}

.pill-section-title {
  font-size: clamp(2.3rem, 4.4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: #0f172a;
  margin: 0 0 14px 0;
}

.pill-lead-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 10px 0;
  line-height: 1.5;
}

.pill-sublead-text {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
  max-width: 800px;
}

/* ==========================================================================
   Center-Aligned Pill Button Cloud
   ========================================================================== */
.pill-links-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 14px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Rounded-Rectangle Button Pill Style */
.service-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  background-color: #ffffff;
  color: #1e293b;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #e2e8f0;
  border-radius: 30px; /* Fully rounded smooth pills */
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
  user-select: none;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-pill-btn:hover {
  border-color: #0284c7;
  color: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(2, 132, 199, 0.12);
  background-color: #ffffff;
}

.service-pill-btn:active {
  transform: translateY(0);
}

/* Staggered Scroll-Reveal Base */
.scroll-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Responsive Rules */
@media (max-width: 768px) {
  .digital-services-pill-section {
    padding: 70px 5%;
  }

  .pill-links-cloud {
    gap: 10px;
  }

  .service-pill-btn {
    padding: 10px 20px;
    font-size: 0.84rem;
  }
}

/* Section 3 ENds  */


/* Section 4 Starst  */

/* ==========================================================================
   Modern Modular UI System (Default Light Background #f8fafc)
   ========================================================================== */
.dx-service-card-matrix {
  position: relative;
  width: 100%;
  padding: 100px 5%;
  background-color: #f8fafc;
  color: #0f172a;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  overflow: hidden;
  border-bottom: 1px solid #e2e8f0;
  box-sizing: border-box;
}

.dx-service-card-matrix.reversed-bg {
  background-color: #f1f5f9;
}

.dx-container {
  max-width: 1260px;
  margin: 0 auto;
}

/* Layout Blueprints */
.dx-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.dx-split-layout.reversed {
  grid-template-columns: 1fr 1fr;
}

.dx-triple-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.dx-centered-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px auto;
}

/* Tag Pill System */
.dx-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  font-family: monospace;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #0284c7;
  margin-bottom: 16px;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
}

.center-pill {
  margin-left: auto;
  margin-right: auto;
}

/* Typography */
.dx-title {
  font-size: clamp(2.1rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: #0f172a;
  margin: 0 0 8px 0;
  letter-spacing: -0.025em;
}

.dx-subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0284c7;
  margin: 0 0 16px 0;
}

.dx-desc {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #475569;
  margin: 0 0 24px 0;
}

.dx-mini-heading {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #0f172a;
  margin: 0 0 12px 0;
}

/* Feature Pills Cloud */
.dx-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dx-feature-pills.vertical-stack {
  flex-direction: column;
}

.dx-pill {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.02);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.dx-pill:hover {
  border-color: #0284c7;
  color: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(2, 132, 199, 0.1);
}

/* Media Frames & HUD Overlays */
.dx-media-frame {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.dx-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.dx-media-frame:hover .dx-img {
  transform: scale(1.03);
}

.dx-floating-hud {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 10px 18px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #0f172a;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
  z-index: 2;
  white-space: nowrap;
}

.top-right { top: 20px; right: 20px; }
.top-left { top: 20px; left: 20px; }
.bottom-left { bottom: 20px; left: 20px; }
.bottom-right { bottom: 20px; right: 20px; }

/* Custom Unique Section Framing Variations */
.dx-live-ticker-box {
  background: #0f172a;
  color: #ffffff;
  padding: 20px;
  border-radius: 16px;
  font-family: monospace;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
}
.dx-live-ticker-box span { display: block; font-size: 0.7rem; color: #38bdf8; margin-bottom: 6px; }
.dx-live-ticker-box strong { font-size: 1.5rem; color: #34d399; }

.dx-floating-glass-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 45px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.04);
}
.glass-box-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 24px;
}

/* Staggered Scroll-Reveal Animations */
.scroll-reveal {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal[data-dir="left"] { transform: translateX(-35px); }
.scroll-reveal[data-dir="right"] { transform: translateX(35px); }
.scroll-reveal[data-dir="up"] { transform: translateY(25px); }

.scroll-reveal.revealed {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* Responsive Adaptations */
@media (max-width: 1080px) {
  .dx-split-layout,
  .dx-triple-grid,
  .glass-box-body {
    grid-template-columns: 1fr !important;
    gap: 35px;
  }
}

@media (max-width: 768px) {
  .dx-service-card-matrix {
    padding: 70px 5%;
  }
  .dx-img {
    height: 270px;
  }
}

/* Section 4 Ends  */


/* Section last  */

/* ==========================================================================
   Complete Digital Marketing Solutions Compact Section
   ========================================================================== */
.dg-complete-solutions-section {
  position: relative;
  width: 100%;
  padding: 90px 5% 85px;
  background-color: #f8fafc; /* Your default clean light background */
  color: #0f172a;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  overflow: hidden;
  box-sizing: border-box;
  border-top: 1px solid #e2e8f0;
}

.solutions-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* Header */
.solutions-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.solutions-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.3px;
  color: #0284c7;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
  margin-bottom: 16px;
}

.solutions-beacon {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0284c7;
  box-shadow: 0 0 8px rgba(2, 132, 199, 0.8);
  animation: beaconPulseLight 2s infinite;
}

@keyframes beaconPulseLight {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.65); }
}

.solutions-title {
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin: 0 0 14px 0;
}

.solutions-lead {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

.solutions-lead strong {
  color: #0f172a;
}

/* Animated Pipeline Card */
.solutions-pipeline-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 26px 32px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.03);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pipeline-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: monospace;
  font-size: 0.72rem;
  font-weight: 800;
  color: #64748b;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}

.pipeline-status {
  color: #0284c7;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  padding: 2px 8px;
  border-radius: 6px;
}

.solutions-steps-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  overflow-x: auto;
  padding: 6px 0;
}

.sol-step {
  padding: 8px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.sol-step:hover {
  border-color: #0284c7;
  color: #0284c7;
  transform: translateY(-2px);
}

.highlight-step {
  background: linear-gradient(135deg, #059669, #10b981);
  border-color: #34d399;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.sol-arrow {
  color: #cbd5e1;
  font-weight: 900;
  font-size: 1rem;
}

/* Action Dock */
.solutions-action-dock {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 22px 30px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.03);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.dock-text-col {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dock-text-col strong {
  font-size: 1.05rem;
  font-weight: 900;
  color: #0f172a;
}

.dock-text-col span {
  font-size: 0.86rem;
  color: #64748b;
}

.solutions-cta-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.solutions-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(2, 132, 199, 0.5);
}

.btn-sheen-effect {
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-25deg);
  transition: left 0.75s ease;
}

.solutions-cta-btn:hover .btn-sheen-effect {
  left: 140%;
}

/* Staggered Scroll-Reveal Animation */
.scroll-reveal {
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal[data-dir="down"] { transform: translateY(-20px); }
.scroll-reveal[data-dir="up"]   { transform: translateY(20px); }

.scroll-reveal.revealed {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* Responsive Adaptations */
@media (max-width: 768px) {
  .dg-complete-solutions-section {
    padding: 70px 5%;
  }

  .solutions-steps-track {
    justify-content: flex-start;
  }

  .sol-arrow {
    display: none;
  }

  .solutions-action-dock {
    flex-direction: column;
    align-items: flex-start;
  }

  .solutions-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Section Last  */