:root {
  --brand-primary: #b3007d;
  --bg-dark: #08050c;
  --text-light: #f3f4f6;
  
  /* Multi-Color Gradient Palette */
  --c1: #b3007d; /* Primary Magenta */
  --c2: #7928ca; /* Deep Purple */
  --c3: #00dfd8; /* Cyan Glow */
  --c4: #ff007f; /* Neon Pink */
  --brand-primary: #b3007d;
  --brand-cyan: #00f2fe;
  --brand-pink: #ff007f;
  --bg-glass: rgba(12, 8, 20, 0.75);
  --glass-border: rgba(255, 255, 255, 0.12);
  --text-main: #f3f4f6;
}

/* --- Topbar Container with Animated Multi-Color Mesh Background --- */
.modern-topbar {
  background-color: var(--bg-dark);
  background: radial-gradient(circle at 20% -20%, rgba(179, 0, 125, 0.35), transparent 40%),
              radial-gradient(circle at 80% 120%, rgba(0, 223, 216, 0.25), transparent 40%),
              #08050c;
  background-size: 200% 200%;
  animation: ambientMesh 10s ease infinite alternate;
  padding: 8px 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-light);
  font-size: 0.875rem;
  position: relative;
  overflow: hidden;
  z-index: 100;
}

/* Continuous Light Sweep Border at Bottom */
.glow-border-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c1), var(--c3), var(--c4), transparent);
  background-size: 200% 100%;
  animation: sweepBorder 4s linear infinite;
}

.topbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --- Animated Multi-Color Text --- */
.animated-gradient-text {
  background: linear-gradient(90deg, #ffffff, #ff80df, #00dfd8, #ffffff);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 6s ease infinite;
}

/* --- Contact Section --- */
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.icon-wrapper {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff80df;
  z-index: 1;
}

/* Rotating Multi-Color Ring around Icon */
.icon-wrapper::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--c1), var(--c3), var(--c4));
  z-index: -1;
  animation: rotateGlow 3s linear infinite;
  opacity: 0.7;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.contact-link:hover .icon-wrapper::before {
  opacity: 1;
  filter: drop-shadow(0 0 8px var(--c3));
}

.contact-link:hover .contact-text {
  color: #00dfd8;
  text-shadow: 0 0 10px rgba(0, 223, 216, 0.5);
}



/* --- Social Media Buttons --- */
.topbar-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-btn {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.85rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Multi-Color Hover Reactions for Social Icons */
.social-btn:hover {
  transform: translateY(-3px) scale(1.1);
  color: #fff;
  border-color: transparent;
}

.social-btn.facebook:hover {
  background: #1877f2;
  box-shadow: 0 0 15px rgba(24, 119, 242, 0.8);
}

.social-btn.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 0 15px rgba(220, 39, 67, 0.8);
}

.social-btn.linkedin:hover {
  background: #0a66c2;
  box-shadow: 0 0 15px rgba(10, 102, 194, 0.8);
}

.social-btn.pinterest:hover {
  background: #bd081c;
  box-shadow: 0 0 15px rgba(189, 8, 28, 0.8);
}

/* --- KEYFRAME ANIMATIONS --- */

/* Background gradient shift */
@keyframes ambientMesh {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* Bottom Light Border Sweep */
@keyframes sweepBorder {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Text Gradient Flow */
@keyframes gradientText {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Rotating Ring */
@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Infinity SVG Motion */
@keyframes infinityDash {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -160; }
}


/* hero-section */


/* ==========================================================================
   HERO SECTION REDESIGN V4 (Sleek Dark Glass & Modern Layout)
   ========================================================================== */

#hero-v4.hero-section {
  position: relative;
  min-height: 90vh;
  padding: 60px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #060913;
  color: #ffffff;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* --- Video Background & Overlays --- */
.hero-video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35; /* Video stays clearly visible without blocking readability */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(6, 9, 19, 0.6) 0%, rgba(6, 9, 19, 0.95) 100%);
}

.mesh-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

/* --- Glowing Orbs --- */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 1;
}

.orb-primary {
  width: 350px;
  height: 350px;
  background: rgba(236, 72, 153, 0.25);
  top: 10%;
  left: 10%;
}

.orb-secondary {
  width: 400px;
  height: 400px;
  background: rgba(168, 85, 247, 0.25);
  bottom: 10%;
  right: 10%;
}

/* --- Left Column Styling --- */
.hero-badge {
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  backdrop-filter: blur(10px);
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ec4899;
  box-shadow: 0 0 10px #ec4899;
  animation: pulse 1.8s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.8); }
}

.badge-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #f472b6;
  text-transform: uppercase;
}

.hero-heading {
  font-size: clamp(2.2rem, 4.5vw, 2.7rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}

.text-gradient-animated {
  background: linear-gradient(135deg, #ec4899 0%, #a855f7 50%, #3b82f6 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 5s infinite alternate;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
}

/* --- Buttons --- */
.btn-glow-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ec4899 0%, #a855f7 100%);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px -5px rgba(236, 72, 153, 0.4);
  transition: all 0.3s ease;
}

.btn-glow-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -5px rgba(236, 72, 153, 0.6);
  color: #ffffff;
}

.btn-glass-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-glass-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  color: #ffffff;
}

/* --- Right Column Floating Cards --- */
.hero-visual-wrapper {
  position: relative;
  padding: 20px;
}

.floating-glass-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: floatAnim 6s ease-in-out infinite alternate;
}

@keyframes floatAnim {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

.box-title {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.live-tag {
  font-size: 11px;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.2);
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-info span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  display: block;
}

.stat-info h4 {
  margin: 4px 0 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
}

.mini-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 30px;
}

.mini-bar-chart span {
  width: 5px;
  background: linear-gradient(to top, #ec4899, #a855f7);
  border-radius: 3px;
}

.stat-badge {
  font-size: 11px;
  color: #a855f7;
  background: rgba(168, 85, 247, 0.15);
  padding: 4px 10px;
  border-radius: 8px;
}

/* Micro Floating Cards */
.micro-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.card-1 {
  top: -10px;
  right: 10px;
  animation: floatAnim 5s ease-in-out infinite alternate-reverse;
}

.card-2 {
  bottom: -15px;
  left: 10px;
  animation: floatAnim 7s ease-in-out infinite alternate;
}

/* Responsive */
@media (max-width: 991px) {
  #hero-v4.hero-section {
    padding: 100px 0 60px;
  }
  .hero-text-content {
    text-align: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-visual-wrapper {
    margin-top: 40px;
  }
}


/* section4  */ 

/* ==========================================================================
   SPIN ON WEB - STAR BLINK PATTERN & INFINITE BORDER GLOW ANIMATION
   ========================================================================== */

#growth-section.spin-growth-section {
  position: relative;
  padding: 60px 0;
  /* Rich Deep Cyber Dark Background */
  background: radial-gradient(circle at 50% 20%, #5e005b 0%, #090010 70%, #5d0b60 100%);
  color: #ffffff;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow: hidden;
  border-top: 1px solid rgba(56, 189, 248, 0.15);
  border-bottom: 1px solid rgba(56, 189, 248, 0.15);
}

/* --- NEW: Star Blink Animated Background Pattern --- */
.light-mesh-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Star Mesh with Blinking Animation */
.mesh-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(1.5px 1.5px at 20px 30px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(1.5px 1.5px at 40px 70px, #38bdf8, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 90px 40px, #f472b6, rgba(0,0,0,0)),
    radial-gradient(1.5px 1.5px at 160px 120px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 230px 190px, #a855f7, rgba(0,0,0,0)),
    radial-gradient(1.5px 1.5px at 300px 80px, #38bdf8, rgba(0,0,0,0));
  background-repeat: repeat;
  background-size: 350px 350px;
  opacity: 0.6;
  animation: starBlink 4s infinite alternate ease-in-out;
}

@keyframes starBlink {
  0% { opacity: 0.3; transform: scale(0.98); }
  50% { opacity: 0.8; }
  100% { opacity: 0.4; transform: scale(1.01); }
}

/* Glowing Ambient Spheres */
.glow-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  animation: floatOrb 10s infinite alternate ease-in-out;
}

.sphere-1 {
  width: 480px;
  height: 480px;
  background: rgba(14, 165, 233, 0.22);
  top: -100px;
  left: -80px;
}

.sphere-2 {
  width: 500px;
  height: 500px;
  background: rgba(139, 92, 246, 0.2);
  bottom: -120px;
  right: -80px;
  animation-delay: -3s;
}

.sphere-3 {
  width: 360px;
  height: 360px;
  background: rgba(236, 72, 153, 0.18);
  top: 35%;
  left: 40%;
  animation-delay: -5s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0); }
  100% { transform: translate(45px, -35px); }
}

/* --- Header Section --- */




.growth-main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.gradient-text-glow {
  background: linear-gradient(135deg, #38bdf8 0%, #a855f7 50%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.growth-main-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(226, 232, 240, 0.82);
  max-width: 850px;
  margin: 0 auto;
}

/* --- BENTO CARDS WITH INFINITE ROTATING BORDER ANIMATION --- */
.bento-card {
  position: relative;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 38px 32px;
  overflow: hidden;
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: floatCard 6s ease-in-out infinite alternate;
  z-index: 1;
}

/* Infinite Rotating Gradient Border Overlay Effect */
.bento-card::before {
  content: '';
  position: absolute;
  inset: -150%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    transparent 60%,
    #38bdf8 70%,
    #a855f7 85%,
    #f472b6 100%
  );
  animation: rotateBorder 4s linear infinite;
  z-index: -2;
}

/* Inner Background Layer to create Card Border Gap */
.bento-card::after {
  content: '';
  position: absolute;
  inset: 1.5px; /* Border thickness */
  background: rgba(13, 20, 38, 0.92);
  border-radius: 27px;
  z-index: -1;
  transition: background 0.3s ease;
}

@keyframes rotateBorder {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Staggered Floating Cards */
.col-lg-4:nth-child(1) .bento-card { animation-delay: 0s; }
.col-lg-4:nth-child(2) .bento-card { animation-delay: -1.5s; }
.col-lg-4:nth-child(3) .bento-card { animation-delay: -3s; }
.col-lg-6:nth-child(4) .bento-card { animation-delay: -2s; }
.col-lg-6:nth-child(5) .bento-card { animation-delay: -4s; }

@keyframes floatCard {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

/* Hover States & Neon Glow Intensification */
.bento-card:hover {
  transform: translateY(-12px) scale(1.02) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

.bento-card:hover::after {
  background: rgba(18, 28, 54, 0.95);
}

.card-pink-glow:hover { box-shadow: 0 0 30px rgba(244, 114, 182, 0.4); }
.card-blue-glow:hover { box-shadow: 0 0 30px rgba(56, 189, 248, 0.4); }
.card-purple-glow:hover { box-shadow: 0 0 30px rgba(192, 132, 252, 0.4); }
.card-green-glow:hover { box-shadow: 0 0 30px rgba(52, 211, 153, 0.4); }
.card-orange-glow:hover { box-shadow: 0 0 30px rgba(251, 146, 60, 0.4); }

/* Multi-colored Neon Icon Boxes */
.bento-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.bento-card:hover .bento-icon-wrapper {
  transform: scale(1.15) rotate(8deg);
}

.icon-pink { background: rgba(236, 72, 153, 0.15); color: #f472b6; border: 1px solid rgba(236, 72, 153, 0.35); }
.icon-blue { background: rgba(56, 189, 248, 0.15); color: #38bdf8; border: 1px solid rgba(56, 189, 248, 0.35); }
.icon-purple { background: rgba(168, 85, 247, 0.15); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.35); }
.icon-green { background: rgba(52, 211, 153, 0.15); color: #34d399; border: 1px solid rgba(52, 211, 153, 0.35); }
.icon-orange { background: rgba(251, 146, 60, 0.15); color: #fb923c; border: 1px solid rgba(251, 146, 60, 0.35); }

/* Text inside Cards */
.bento-content {
  position: relative;
  z-index: 2;
}

.bento-content h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.bento-content p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.75);
  margin: 0;
}

/* Watermark Numbering */
.card-bg-watermark {
  position: absolute;
  bottom: -20px;
  right: 15px;
  font-size: 5.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  line-height: 1;
  user-select: none;
  transition: all 0.3s ease;
  z-index: 2;
}

.bento-card:hover .card-bg-watermark {
  color: rgba(56, 189, 248, 0.12);
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 991px) {
  #growth-section.spin-growth-section { padding: 70px 0; }
  .bento-card { animation: none; }
}



/*  why choose */

/* ==========================================================================
   WHY SPIN ON WEB - MULTI-COLOR LIGHT GLASSMORPHISM SECTION
   ========================================================================== */

.why-spin-light {
  background: #f8fafc; /* Clean, modern light slate background */
  color: #1e293b;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* --- Multi-Color Background Decor --- */
.light-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.light-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(148, 163, 184, 0.2) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  animation: floatOrb 8s ease-in-out infinite alternate;
}

.orb-cyan { width: 350px; height: 350px; background: #06b6d4; top: -50px; left: -50px; }
.orb-pink { width: 380px; height: 380px; background: #ec4899; bottom: -50px; right: -50px; }
.orb-purple { width: 300px; height: 300px; background: #a855f7; top: 35%; right: 25%; }
.card-purple:hover { border-color: #c084fc; }

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -25px) scale(1.08); }
}


.why-title {
  font-size: clamp(1.8rem, 3.5vw, 2.1rem);
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
}

.gradient-text-multi {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #db2777 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gradient-multi {
  display: block;
  width: 70px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #2563eb, #a855f7, #ec4899);
}

.why-desc {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #475569;
}

/* --- Multi-Color Feature Cards --- */
.feature-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateX(8px);
  background: #ffffff;
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.08);
}



.icon-purple { background: #f3e8ff; color: #9333ea; }



.feature-info p {
    color: #000000;
    line-height: 30px;
    font-weight: 400;
    text-align: justify;
}




/* --- Right Column Image Box & Glassmorphism --- */
.why-image-wrapper {
  padding: 10px;
}

.rainbow-glow-frame {
  position: absolute;
  inset: -2px;
  border-radius: 32px;
  background: linear-gradient(135deg, #06b6d4, #a855f7, #ec4899);
  filter: blur(12px);
  opacity: 0.5;
  z-index: -1;
}

.glass-img-container {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.why-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.glass-img-container:hover .why-img {
  transform: scale(1.03);
}

/* Floating Badges */
.floating-glass-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  padding: 12px 18px;
  border-radius: 18px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  animation: floatBadge 6s ease-in-out infinite alternate;
}

.badge-top-left {
  top: -10px;
  left: -10px;
}

.badge-bottom-right {
  bottom: -10px;
  right: -10px;
  text-align: center;
  animation-delay: -3s;
}

@keyframes floatBadge {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.gradient-text-pink {
  background: linear-gradient(135deg, #ec4899, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.4rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 991px) {
  .floating-glass-badge {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    margin-top: 12px;
    display: inline-flex;
  }
}





/* why  */

/* ==========================================================================
   WHY DO YOUR BUSINESSES NEED DM - CYBER DARK & NEON GLOW STYLING
   ========================================================================== */

.dm-section.whychoose {
  background: radial-gradient(circle at 50% 30%, #0d1527 0%, #060a12 70%, #020408 100%);
  color: #ffffff;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  border-top: 1px solid rgba(56, 189, 248, 0.12);
  border-bottom: 1px solid rgba(56, 189, 248, 0.12);
}

/* --- SVG Background Path & Vector Animation --- */
.vector-bg-wrapper {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.animated-svg-path {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.7;
}

.flowing-path-1 {
  animation: strokeFlow 20s linear infinite;
}

.flowing-path-2 {
  animation: strokeFlowReverse 25s linear infinite;
}

@keyframes strokeFlow {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 1000; }
}

@keyframes strokeFlowReverse {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -1000; }
}

/* Glowing Ambient Orbs */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.orb-cyan {
  width: 450px;
  height: 450px;
  background: rgba(56, 189, 248, 0.15);
  top: -100px;
  left: -100px;
}

.orb-purple {
  width: 500px;
  height: 500px;
  background: rgba(168, 85, 247, 0.15);
  bottom: -150px;
  right: -100px;
}

/* Heading Divider Animation */
.animate-border {
  display: block;
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #38bdf8, #a855f7, #f472b6);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.5);
}

/* --- Glassmorphic Container Card --- */
.dm-card {
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.feature-lead-text {
  color: #e2e8f0;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
}

/* --- Neon Feature Items --- */
.neon-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.neon-feature-item {
  display: flex;
align-items: center;
    gap: 16px;
    padding: 9px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.neon-feature-item:hover {
  transform: translateX(8px);
  background: rgba(20, 30, 55, 0.8);
}

/* Hover Border Glows */
.item-blue:hover { border-color: #38bdf8; box-shadow: 0 0 20px rgba(56, 189, 248, 0.25); }
.item-green:hover { border-color: #34d399; box-shadow: 0 0 20px rgba(52, 211, 153, 0.25); }
.item-purple:hover { border-color: #c084fc; box-shadow: 0 0 20px rgba(192, 132, 252, 0.25); }
.item-orange:hover { border-color: #fb923c; box-shadow: 0 0 20px rgba(251, 146, 60, 0.25); }
.item-pink:hover { border-color: #f472b6; box-shadow: 0 0 20px rgba(244, 114, 182, 0.25); }

/* Neon Icon Wrappers */
.neon-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.icon-blue { background: rgba(56, 189, 248, 0.15); color: #38bdf8; border: 1px solid rgba(56, 189, 248, 0.3); }
.icon-green { background: rgba(52, 211, 153, 0.15); color: #34d399; border: 1px solid rgba(52, 211, 153, 0.3); }
.icon-purple { background: rgba(168, 85, 247, 0.15); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.3); }
.icon-orange { background: rgba(251, 146, 60, 0.15); color: #fb923c; border: 1px solid rgba(251, 146, 60, 0.3); }
.icon-pink { background: rgba(236, 72, 153, 0.15); color: #f472b6; border: 1px solid rgba(236, 72, 153, 0.3); }

.feature-content strong {
  display: block;
  color: #ffffff;
  font-size: 0.98rem;
  margin-bottom: 2px;
}

.feature-content p {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(226, 232, 240, 0.7);
  line-height: 1.45;
}

/* --- Right Column Image Visual --- */
.dm-image-wrapper {
  padding: 10px;
}

.neon-frame-glow {
  position: absolute;
  inset: -2px;
  border-radius: 28px;
  background: linear-gradient(135deg, #38bdf8, #a855f7, #f472b6);
  filter: blur(15px);
  opacity: 0.4;
  z-index: -1;
}

.glass-image-box {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.service-img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  transition: transform 0.5s ease;
  display: block;
}

.glass-image-box:hover .service-img {
  transform: scale(1.03);
}

.img-bottom-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(15, 23, 42, 0.9) 100%);
  pointer-events: none;
}

/* Floating Glass Stat Badge */
.floating-neon-card {
  position: absolute;
  bottom: -15px;
  left: -15px;
  background: rgba(13, 20, 38, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.35);
  backdrop-filter: blur(16px);
  padding: 12px 20px;
  border-radius: 18px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
  animation: floatStat 5s infinite alternate ease-in-out;
}

@keyframes floatStat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.pulse-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.3);
}

.text-cyan {
  color: #38bdf8;
  font-size: 0.78rem;
}
.heading .growth-main-title{color:#fff!important; font-size: clamp(1.8rem, 3.5vw, 2.1rem);}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .floating-neon-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 15px;
  }
}



/* services card*/



/* service 4 */


/* ==========================================================================
   TRENDING INTERACTIVE STRIP LAYOUT (NO CARDS) - LIGHT THEME
   ========================================================================== */

.services-trending-section {
  background: #f8fafc;
  color: #0f172a;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow: hidden;
}

/* Background Visual Elements */
.trending-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.vector-mesh {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(148, 163, 184, 0.2) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
}

.gradient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
}

.orb-1 { width: 450px; height: 450px; background: #38bdf8; top: -100px; left: -100px; }
.orb-2 { width: 500px; height: 500px; background: #c084fc; bottom: -100px; right: -100px; }

/* Header Typography */
.pill-badge-trending {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 40px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0284c7;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.live-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0284c7;
  box-shadow: 0 0 0 rgba(2, 132, 199, 0.4);
  animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(2, 132, 199, 0); }
  100% { box-shadow: 0 0 0 0 rgba(2, 132, 199, 0); }
}

.trending-main-heading {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.neon-gradient-text {
  background: linear-gradient(135deg, #0284c7 0%, #9333ea 50%, #db2777 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trending-header-desc {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
}

/* --- Interactive Accordion Strip List --- */
.services-interactive-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-strip-item {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 20px;
  padding: 24px 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  overflow: hidden;
}

.service-strip-item:hover,
.service-strip-item.active {
  background: #ffffff;
  border-color: #0284c7;
  box-shadow: 0 20px 40px rgba(2, 132, 199, 0.08);
}

/* Strip Header Layout */
.service-strip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.service-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #94a3b8;
  font-mono: monospace;
  transition: color 0.3s ease;
  min-width: 40px;
}

.service-strip-item:hover .service-num,
.service-strip-item.active .service-num {
  color: #0284c7;
}

.service-title-wrap {
  flex-grow: 1;
}

.service-tag {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
  margin-bottom: 4px;
}

.service-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

.service-name a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-strip-item:hover .service-name a {
  color: #0284c7;
}

/* Icon Preview Box */
.service-icon-preview {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f1f5f9;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.service-strip-item:hover .service-icon-preview {
  transform: scale(1.1) rotate(-5deg);
  background: #e0f2fe;
}

/* Expand Arrow Circle */
.expand-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #475569;
  transition: all 0.3s ease;
}

.service-strip-item:hover .expand-arrow,
.service-strip-item.active .expand-arrow {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
  transform: rotate(45deg);
}

/* Expandable Content Area */
.service-strip-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.service-strip-item:hover .service-strip-body,
.service-strip-item.active .service-strip-body {
  max-height: 350px;
  opacity: 1;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed #e2e8f0;
}

.service-info-text {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Custom Action Button */
.trending-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  border-radius: 30px;
  background: #0f172a;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.trending-action-btn:hover {
  background: #0284c7;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(2, 132, 199, 0.3);
  transform: translateY(-2px);
}

.trending-action-btn i {
  transition: transform 0.3s ease;
}

.trending-action-btn:hover i {
  transform: translateX(5px);
}

/* Media Image Frame with Glow */
.service-media-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.media-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-strip-item:hover .media-img {
  transform: scale(1.05);
}

/* Glow Variations */
.media-glow-cyan { position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.3), transparent 70%); }
.media-glow-purple { position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(192, 132, 252, 0.3), transparent 70%); }
.media-glow-pink { position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(244, 114, 182, 0.3), transparent 70%); }
.media-glow-orange { position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(251, 146, 60, 0.3), transparent 70%); }
.media-glow-emerald { position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(52, 211, 153, 0.3), transparent 70%); }
.media-glow-blue { position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(96, 165, 250, 0.3), transparent 70%); }

/* Mobile Responsiveness */
@media (max-width: 767px) {
  .service-strip-item {
    padding: 20px;
  }
  .service-strip-header {
    flex-wrap: wrap;
  }
  .service-num {
    display: none;
  }
  .service-name {
    font-size: 1.15rem;
  }
  .service-strip-item:hover .service-strip-body,
  .service-strip-item.active .service-strip-body {
    max-height: 600px;
  }
}


/* why choose  */

/* ==========================================================================
   WHY CHOOSE US - DARK THEME (#6d0458 BASE)
   ========================================================================== */

.why-choose-dark-section {
  background-color: #12010f; /* Ultra Dark Background */
  color: #f1f5f9;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow: hidden;
}

/* Ambient Background Glows */
.dark-ambient-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.cyber-grid-mesh {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(109, 4, 88, 0.15) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(109, 4, 88, 0.15) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 70%, transparent 100%);
}

.plum-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.6;
}

.orb-top {
  width: 450px;
  height: 450px;
  background: #6d0458;
  top: -100px;
  left: -100px;
}

.orb-bottom {
  width: 500px;
  height: 500px;
  background: #9d0b7e;
  bottom: -150px;
  right: -100px;
}


/* Sticky Image Box */
.sticky-image-container {
  position: sticky;
  top: 100px;
}

.glass-image-wrapper {
  position: relative;
  border-radius: 24px;
  padding: 10px;
  background: rgba(109, 4, 88, 0.2);
  border: 1px solid rgba(230, 80, 200, 0.25);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.main-feature-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.glass-image-wrapper:hover .main-feature-img {
  transform: scale(1.03);
}

.image-overlay-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(109, 4, 88, 0.4) 100%);
  pointer-events: none;
}

.floating-stat-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: rgba(22, 3, 20, 0.85);
  border: 1px solid rgba(232, 121, 249, 0.4);
  backdrop-filter: blur(16px);
  padding: 14px 22px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.text-neon {
  font-size: 1.8rem;
  color: #e879f9;
}

.stat-number {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
}

/* Feature Cards Stack */
.feature-boxes-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plum-feature-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  border-radius: 20px;
  background: rgba(109, 4, 88, 0.15);
  border: 1px solid rgba(230, 80, 200, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.plum-feature-box:hover {
  background: rgba(109, 4, 88, 0.35);
  border-color: rgba(232, 121, 249, 0.5);
  transform: translateX(10px);
  box-shadow: 0 15px 35px rgba(109, 4, 88, 0.3);
}

/* Icon Styling */
.feature-icon-hex {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #6d0458 0%, #a21caf 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(109, 4, 88, 0.4);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.plum-feature-box:hover .feature-icon-hex {
  transform: scale(1.1) rotate(6deg);
}

/* Content Details */
.feature-content-column .title h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.plum-feature-box:hover .feature-content-column .title h3 {
  color: #f472b6;
}

.feature-content-column p {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .sticky-image-container {
    position: relative;
    top: 0;
  }
  .floating-stat-card {
    right: 10px;
    bottom: -15px;
  }
  .plum-feature-box:hover {
    transform: translateY(-5px);
  }
}


/* the process */

    /* ==========================================================================
   THE PROCESS WE FOLLOW - CONNECTED ROADFLOW (DARK PLUM THEME)
   ========================================================================== */


.process-flow-section {
  /* Shifted Base Palette: Deep Magenta Violet to Midnight Obsidian */
  background: linear-gradient(145deg, #2a0223 0%, #150112 40%, #090008 100%);
  color: #ffffff;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(232, 121, 249, 0.15); /* Separator Line */
}

/* Background Layers */
.process-bg-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* 1. Distinct Radial Background Image Vignette */
.bg-image-overlay {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  mix-blend-mode: overlay;
  filter: contrast(130%) saturate(120%);
  mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0.2) 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0.2) 80%);
}

/* 2. Soft Ambient Lighting Spotlight Effect */
.gradient-plum-blend {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 70% 40% at 50% 10%, rgba(192, 38, 211, 0.25) 0%, transparent 80%),
    radial-gradient(ellipse 50% 50% at 80% 90%, rgba(109, 4, 88, 0.3) 0%, transparent 80%);
}

/* 3. Replaced Squared Grid with Modern Hexagonal Honeycomb Mesh (Different Texture) */
.cyber-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(244, 114, 182, 0.2) 1px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.6;
}

/* 4. Glowing Neon Gradient Light Bars (Top & Bottom Section Glows) */
.glowing-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}




/* Roadmap Connector Line (Desktop) */
.process-roadmap-wrapper {
  position: relative;
}

.roadmap-connector-line {
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(232, 121, 249, 0.25);
  z-index: 1;
}

.line-pulse-glow {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #e879f9, transparent);
  animation: lineFlow 3s infinite linear;
}

@keyframes lineFlow {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Process Step Nodes */
.process-step-node {
  position: relative;
  background: rgba(109, 4, 88, 0.18);
  border: 1px solid rgba(232, 121, 249, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 28px 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.process-step-node:hover {
  transform: translateY(-12px);
  background: rgba(109, 4, 88, 0.4);
  border-color: rgba(232, 121, 249, 0.6);
  box-shadow: 0 20px 40px rgba(109, 4, 88, 0.4);
}

/* Header & Icon */
.node-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
  z-2;
}

.step-counter {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(232, 121, 249, 0.4);
  font-family: monospace;
  transition: color 0.3s ease;
}

.process-step-node:hover .step-counter {
  color: #e879f9;
}

.icon-ring-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, #6d0458 0%, #3b0230 100%);
  border: 1px solid rgba(232, 121, 249, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.process-step-node:hover .icon-ring-wrapper {
  transform: scale(1.1) rotate(6deg);
  border-color: #f472b6;
  background: linear-gradient(135deg, #a21caf 0%, #6d0458 100%);
}

.process-icon {
  max-height: 100%;
  object-fit: contain;
}

/* Node Body Content */
.node-body {
  flex-grow: 1;
}

.phase-tag {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f472b6;
  margin-bottom: 6px;
}

.step-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-desc {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

/* Bottom Glow Accent Bar */
.node-glow-bar {
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #f472b6, #e879f9);
  border-radius: 2px;
  margin-top: 18px;
  transition: width 0.4s ease;
}

.process-step-node:hover .node-glow-bar {
  width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .roadmap-connector-line {
    display: none;
  }
  .process-step-node:hover {
    transform: translateY(-6px);
  }
}


/* industries 2 */

/* ==========================================================================
   INDUSTRIES & COMPACT METRICS - OPTIMIZED LIGHT THEME
   ========================================================================== */



/* Brand Ticker Slider */
.brand-ticker-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 8px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.brand-ticker-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: smoothTicker 28s linear infinite;
}

.brand-ticker-wrapper:hover .brand-ticker-track {
  animation-play-state: paused;
}

@keyframes smoothTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brand-chip {
  width: 160px;
  height: 84px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.brand-chip:hover {
  border-color: #0284c7;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.12);
}

.brand-chip img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.brand-chip:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* --- Ultra-Compact Horizontal Stat Strip --- */
.compact-stat-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 14px 18px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.02);
  position: relative;
  overflow: hidden;
}

.compact-stat-strip:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.strip-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.compact-stat-strip:hover .strip-icon {
  transform: scale(1.1) rotate(-5deg);
}

.strip-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.strip-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.strip-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #b2008f;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-bottom: 4px;
}

.strip-value-wrap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
}

.strip-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  line-height: 1.1;
}

.strip-tag {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 12px;
  background: #f1f5f9;
  color: #475569;
}

/* Color Variant Hover Stings */
.strip-cyan:hover { border-color: #38bdf8; }
.strip-cyan:hover .strip-tag { background: #e0f2fe; color: #0284c7; }

.strip-purple:hover { border-color: #c084fc; }
.strip-purple:hover .strip-tag { background: #f3e8ff; color: #9333ea; }

.strip-pink:hover { border-color: #f472b6; }
.strip-pink:hover .strip-tag { background: #fce7f3; color: #db2777; }

.strip-orange:hover { border-color: #fb923c; }
.strip-orange:hover .strip-tag { background: #ffedd5; color: #ea580c; }



/* counter */

/* ==========================================================================
   ACHIEVEMENT CREATIVE SECTION - 3D PERSPECTIVE & SVG FLOW
   ========================================================================== */

/* reuseable section split line */
.achievement-creative-section {
  border-top: 1px solid rgba(230, 80, 200, 0.1);
  /*overflow: visible !important;*/
}

/* Background Animated SVG Waves */
.orb-center {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(109, 4, 88, 0.4) 0%, rgba(18, 1, 15, 0.2) 70%, transparent 100%);
  filter: blur(100px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
}

.animated-wave-bg {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  opacity: 0.3;
  pointer-events: none;
  mix-blend-mode: color-dodge;
}

.wave-path {
  fill: #6d0458;
  animation: waveFlow 6s infinite ease-in-out alternate;
}

@keyframes waveFlow {
  0% { transform: translateY(0); }
  100% { transform: translateY(15px) scaleY(1.05); }
}

/* --- Creative Stats Frame --- */
.stats-perspective-frame {
  perspective: 1500px;
  z-index: 5;
}

.perspective-row {
  position: relative;
  z-index: 2;
}

/* Individual Stat Nodes */
.creative-stat-node {
  background: rgba(109, 4, 88, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(232, 121, 249, 0.15);
  border-radius: 20px;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

/* Perspective Specific Tilts (Desktop) */
@media (min-width: 992px) {
  .creative-stat-node:nth-child(even) { transform: rotateY(-10deg) rotateX(4deg); }
  .creative-stat-node:nth-child(odd) { transform: rotateY(10deg) rotateX(-4deg); }
}

.creative-stat-node:hover {
  transform: translateY(-8px) scale(1.02) !important; /* Overrides tilts on hover */
  background: rgba(109, 4, 88, 0.4);
  border-color: rgba(232, 121, 249, 0.6);
  box-shadow: 0 20px 40px rgba(109, 4, 88, 0.35);
}

/* Icon Box */
.creative-stat-node .node-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.creative-stat-node:hover .node-icon {
  transform: scale(1.1) rotate(6deg);
}

/* Color Variant Hover Stings */
.node-purple .node-icon { background: linear-gradient(135deg, #6d0458 0%, #a21caf 100%); border: 1px solid #c084fc; }
.creative-stat-node.node-purple:hover { border-color: #c084fc; box-shadow: 0 0 25px rgba(192, 132, 252, 0.35); }

.node-pink .node-icon { background: linear-gradient(135deg, #a21caf 0%, #db2777 100%); border: 1px solid #f472b6; }
.creative-stat-node.node-pink:hover { border-color: #f472b6; box-shadow: 0 0 25px rgba(244, 114, 182, 0.35); }

.node-cyan .node-icon { background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%); border: 1px solid #38bdf8; }
.creative-stat-node.node-cyan:hover { border-color: #38bdf8; box-shadow: 0 0 25px rgba(56, 189, 248, 0.35); }

.node-orange .node-icon { background: linear-gradient(135deg, #ea580c 0%, #fb923c 100%); border: 1px solid #fb923c; }
.creative-stat-node.node-orange:hover { border-color: #fb923c; box-shadow: 0 0 25px rgba(251, 146, 60, 0.35); }

/* Node Content */
.node-body {
  flex-grow: 1;
}

.node-counter {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.node-counter h3.counter {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
}

.node-counter span {
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(232, 121, 249, 0.6);
  line-height: 1;
}

.node-body p {
  font-size: 0.9rem;
  font-weight: 600;
  color: #cbd5e1;
  margin: 0;
  letter-spacing: 0.3px;
}

/* Floating Elements & Geometry */
.float-svg {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  animation: floatGeometry 6s infinite alternate ease-in-out;
}

.svg-rect { top: -30px; left: 10%; animation-delay: -1s; }
.svg-tri { bottom: 10%; left: -20px; animation-delay: -3s; }
.svg-cir { top: 30%; right: -20px; animation-delay: -5s; }

@keyframes floatGeometry {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(15px, 15px) rotate(15deg); }
}




@media (max-width: 991px) {
  [class*="float-delay"] {
    animation: none;
    margin-top: 0px !important;
  }
}


/* testimonial 6 */
/* ==========================================================================
   2026 LIGHT THEME CYBER-VECTOR TESTIMONIAL SYSTEM
   ========================================================================== */

.light-cyber-testimonial {
  background: #f8fafc;
  color: #0f172a;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow: hidden;
}

/* Ambient Layer & Vector Grid Canvas */
.light-ambient-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.light-grid-mesh {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(rgba(2, 132, 199, 0.12) 1.5px, transparent 1.5px),
    radial-gradient(rgba(147, 51, 234, 0.08) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
}

/* Multi-color Ambient Orbs */
.light-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  animation: orbFloat 10s ease-in-out infinite alternate;
}

.orb-sky { width: 450px; height: 450px; background: #38bdf8; top: -100px; left: -100px; }
.orb-purple { width: 450px; height: 450px; background: #c084fc; bottom: -120px; right: -100px; }
.orb-pink { width: 350px; height: 350px; background: #f472b6; top: 30%; right: 15%; }

@keyframes orbFloat {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-20px) scale(1.08); }
}

/* Vector Shapes Animation */
.bg-vector-shape {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 260px;
  height: 260px;
  animation: rotateVector 20s linear infinite;
  pointer-events: none;
}

@keyframes rotateVector {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.bg-wave-vector {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
}

/* Header Elements */
.light-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0284c7;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.08);
}

.live-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0284c7;
  box-shadow: 0 0 0 rgba(2, 132, 199, 0.4);
  animation: liveBeacon 1.8s infinite;
}

@keyframes liveBeacon {
  0% { box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(2, 132, 199, 0); }
  100% { box-shadow: 0 0 0 0 rgba(2, 132, 199, 0); }
}

.light-title-2026 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
}

.light-gradient-text {
  background: linear-gradient(135deg, #0284c7 0%, #9333ea 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-line-divider {
  display: block;
  width: 65px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #0284c7, #9333ea);
}

.light-subtitle-2026 {
  font-size: 0.98rem;
  color: #64748b;
  max-width: 580px;
  margin: 0 auto;
}

/* Light Card System */
.light-card-wrapper {
  position: relative;
  margin: 20px 8px;
  height: calc(100% - 40px);
}

/* Dynamic Animated Gradient Border */
.animated-gradient-border {
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background: linear-gradient(135deg, #0284c7, #9333ea, #ec4899, #38bdf8);
  background-size: 300% 300%;
  z-index: 1;
  opacity: 0;
  filter: blur(6px);
  transition: opacity 0.4s ease, filter 0.4s ease;
  animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.light-card-inner {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  padding: 32px 28px 26px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Card Hover Physics */
.light-card-wrapper:hover .light-card-inner {
  transform: translateY(-8px);
  background: #ffffff;
  border-color: rgba(2, 132, 199, 0.3);
  box-shadow: 0 20px 40px rgba(2, 132, 199, 0.12);
}

.light-card-wrapper:hover .animated-gradient-border {
  opacity: 1;
  filter: blur(3px);
}

/* Hologram Quote Badge */
.holo-quote-badge {
  position: absolute;
  top: -18px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0284c7, #9333ea);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: transform 0.4s ease;
}

.light-card-wrapper:hover .holo-quote-badge {
  transform: scale(1.1) rotate(12deg);
}

/* Profile Header Row */
.profile-header-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.light-avatar-ring {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, #0284c7, #9333ea);
  flex-shrink: 0;
}

.light-avatar-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  background: #ffffff;
}

.status-beacon {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background: #10b981;
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 6px #10b981;
}

.profile-meta .client-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.profile-meta .client-role {
  font-size: 0.78rem;
  font-weight: 600;
  color: #0284c7;
}

.rating-badge-pill {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #d97706;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
}

/* Review Text */
.review-text-wrap p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #334155;
  margin: 0;
  font-weight: 450;
}

/* Card Footer Chips */
.card-footer-tech {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}

.tech-chip {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  background: #f8fafc;
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.verified-check {
  font-size: 0.75rem;
  font-weight: 700;
  color: #10b981;
}

/* Corner Vector Animation */
.corner-svg-ring {
  position: absolute;
  top: -25px;
  left: -20px;
  pointer-events: none;
  z-index: 3;
  animation: floatRing 6s ease-in-out infinite alternate;
}

@keyframes floatRing {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-10px) rotate(15deg); }
}

/* Light Carousel Custom Dots */
.light-testimonial-carousel .owl-dots {
  margin-top: 20px !important;
  text-align: center;
}

.light-testimonial-carousel .owl-dot span {
  width: 10px !important;
  height: 10px !important;
  margin: 5px 6px !important;
  background: #cbd5e1 !important;
  transition: all 0.3s ease !important;
}

.light-testimonial-carousel .owl-dot.active span {
  width: 32px !important;
  background: linear-gradient(90deg, #0284c7, #9333ea) !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}



/* cta */

/* ==========================================================================
   2026 DARK CYBER-FUTURISTIC CTA SECTION
   ========================================================================== */

.dark-cyber-cta {
  background: #030712; /* Deep Obsidian Slate */
  color: #f8fafc;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  padding: 80px 0;
}

/* Ambient Neon Glowing Orbs & Tech Grid */
.dark-ambient-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.tech-mesh-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(rgba(56, 189, 248, 0.12) 1px, transparent 1px),
    radial-gradient(rgba(147, 51, 234, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0, 16px 16px;
}

.orb-cta-primary {
  width: 550px;
  height: 550px;
  background: #0284c7;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.3;
}

.orb-cta-secondary {
  width: 450px;
  height: 450px;
  background: #9333ea;
  bottom: -200px;
  right: -50px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.25;
}

/* Header UI Elements */
.cyber-badge-glow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #38bdf8;
  box-shadow: 0 0 15px rgba(2, 132, 199, 0.2);
  letter-spacing: 0.5px;
  width: fit-content;
}

.pulse-beacon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 10px #38bdf8;
  animation: beaconPulse 1.8s infinite;
}

@keyframes beaconPulse {
  0% { transform: scale(0.9); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
  100% { transform: scale(0.9); opacity: 1; }
}

.dark-title-2026 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.neon-gradient-text {
  background: linear-gradient(135deg, #38bdf8 0%, #c084fc 50%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cyber-line-divider {
  display: block;
  width: 70px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #38bdf8, #9333ea);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

.dark-subtitle-2026 {
  font-size: 1rem;
  color: #94a3b8;
  max-width: 620px;
  margin: 0 auto;
}

/* Cyber Form Pill Design (Unified Input Engine) */
.cyber-cta-form-pill {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 60px;
  padding: 8px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(2, 132, 199, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.cyber-cta-form-pill:focus-within {
  border-color: rgba(56, 189, 248, 0.8);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.6),
    0 0 35px rgba(56, 189, 248, 0.3);
}

.cyber-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.cyber-input-wrap.border-start-lg {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.input-icon {
  color: #38bdf8;
  font-size: 1.1rem;
  margin-right: 12px;
}

.cyber-form-control, 
.cyber-form-select {
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
  font-size: 0.95rem;
  padding: 14px 0 !important;
  width: 100%;
  box-shadow: none !important;
  outline: none !important;
}

.cyber-form-control::placeholder {
  color: #64748b;
}

.cyber-form-select {
  cursor: pointer;
}

.cyber-form-select option {
  background-color: #0f172a;
  color: #ffffff;
}

/* Cyber Button Engine */
.cyber-btn-submit {
  width: 100%;
  height: 100%;
  min-height: 52px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #0284c7, #9333ea);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.35);
  transition: all 0.4s ease;
}

.cyber-btn-submit:hover {
  background: linear-gradient(135deg, #38bdf8, #ec4899);
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.4);
  transform: translateY(-2px);
}

/* Extra Form (Step 2) Styling */
.cyber-extra-form-card {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.cyber-input-wrap.single-pill {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 0 18px;
  transition: border-color 0.3s ease;
}

.cyber-input-wrap.single-pill:focus-within {
  border-color: #38bdf8;
}

.cyber-btn-submit.secondary-btn {
  width: auto;
  display: inline-flex;
}

/* Floating Decorative Avatar Anchor */
.cta-image {
  bottom: 20px;
  left: 30px;
  z-index: 3;
  pointer-events: none;
}

.cta-img-ring {
  position: relative;
  padding: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(147, 51, 234, 0.2));
  backdrop-filter: blur(10px);
  animation: floatCTA 6s ease-in-out infinite alternate;
}

@keyframes floatCTA {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-12px) rotate(4deg); }
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .cyber-cta-form-pill {
    border-radius: 24px;
    padding: 16px;
  }
  
  .cyber-input-wrap.border-start-lg {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
    padding-top: 10px;
  }

  .cyber-btn-submit {
    margin-top: 15px;
  }
}



/* cta 2 */

/* ==========================================================================
   2026 DARK CYBER CTA WITH INTERACTIVE STEP ANIMATION
   ========================================================================== */

.dark-cyber-cta {
  background: #030712;
  color: #f8fafc;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  padding: 80px 0;
}

.dark-ambient-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.tech-mesh-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(rgba(56, 189, 248, 0.12) 1px, transparent 1px),
    radial-gradient(rgba(147, 51, 234, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0, 16px 16px;
}

.orb-cta-primary {
  width: 550px;
  height: 550px;
  background: #0284c7;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.3;
}

.orb-cta-secondary {
  width: 450px;
  height: 450px;
  background: #9333ea;
  bottom: -200px;
  right: -50px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.25;
}

.cyber-badge-glow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #38bdf8;
  box-shadow: 0 0 15px rgba(2, 132, 199, 0.2);
  letter-spacing: 0.5px;
  width: fit-content;
}

.pulse-beacon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 10px #38bdf8;
  animation: beaconPulse 1.8s infinite;
}

@keyframes beaconPulse {
  0% { transform: scale(0.9); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
  100% { transform: scale(0.9); opacity: 1; }
}

.dark-title-2026 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.25;
  transition: all 0.3s ease;
}

.neon-gradient-text {
  background: linear-gradient(135deg, #38bdf8 0%, #c084fc 50%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cyber-line-divider {
  display: block;
  width: 70px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #38bdf8, #9333ea);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

.dark-subtitle-2026 {
  font-size: 1rem;
  color: #94a3b8;
  max-width: 620px;
  margin: 0 auto;
}

/* Step Form Animation Classes */
.step-form-wrapper {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-slide-out {
  opacity: 0;
  transform: translateY(-15px) scale(0.98);
}

.fade-slide-in {
  animation: slideInUp 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Cyber Pill Inputs Engine */
.cyber-cta-form-pill {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 60px;
  padding: 8px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(2, 132, 199, 0.15);
}

.cyber-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.cyber-input-wrap.border-start-lg {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.input-icon {
  color: #38bdf8;
  font-size: 1.1rem;
  margin-right: 12px;
}

.cyber-form-control, 
.cyber-form-select {
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
  font-size: 0.95rem;
  padding: 14px 0 !important;
  width: 100%;
  box-shadow: none !important;
  outline: none !important;
}

.cyber-form-control::placeholder {
  color: #64748b;
}

.cyber-form-select {
  cursor: pointer;
}

.cyber-form-select option {
  background-color: #0f172a;
  color: #ffffff;
}

.cyber-btn-submit {
  width: 100%;
  height: 100%;
  min-height: 52px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #0284c7, #9333ea);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.35);
  transition: all 0.4s ease;
}

.cyber-btn-submit:hover {
  background: linear-gradient(135deg, #38bdf8, #ec4899);
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.4);
  transform: translateY(-2px);
}

/* Step 2 Extra Form Design */
.cyber-extra-form-card {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(147, 51, 234, 0.35);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.cyber-input-wrap.single-pill {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 0 18px;
  transition: border-color 0.3s ease;
}

.cyber-input-wrap.single-pill:focus-within {
  border-color: #38bdf8;
}

.btn-back-step {
  background: transparent;
  border: none;
  color: #38bdf8;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s ease;
}

.btn-back-step:hover {
  color: #c084fc;
  text-decoration: underline;
}

.step-indicator {
  font-size: 0.8rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.5px;
}

.cyber-btn-submit.secondary-btn {
  width: auto;
  display: inline-flex;
}

.cta-image {
  bottom: 20px;
  left: 30px;
  z-index: 3;
  pointer-events: none;
}

.cta-img-ring {
  position: relative;
  padding: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(147, 51, 234, 0.2));
  backdrop-filter: blur(10px);
  animation: floatCTA 6s ease-in-out infinite alternate;
}

@keyframes floatCTA {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-12px) rotate(4deg); }
}

@media (max-width: 991px) {
  .cyber-cta-form-pill {
    border-radius: 24px;
    padding: 16px;
  }
  .cyber-input-wrap.border-start-lg {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
    padding-top: 10px;
  }
  .cyber-btn-submit {
    margin-top: 15px;
  }
}

.cyber-input-box input::placeholder{color:#c4c4c4!important;}

.feature-stack .feature-card-item{align-items: center; }


/* tech slider */

   /* ==========================================================================
   UNIVERSE NEON CAROUSEL SYSTEM
   ========================================================================== */

/* ==========================================================================
   COSMIC NEON OWL NAV CONTROLS REDESIGN
   ========================================================================== */

/* Top-Right Container Alignment */
.techslider.owl-carousel .owl-nav {
  display: flex !important;
  gap: 14px;
  position: absolute;
  top: -95px;
  right: 0;
  z-index: 20;
}

/* Base Navigation Button Design (Glassmorphic + Cyber Ring) */
.techslider.owl-carousel .owl-nav button.owl-prev,
.techslider.owl-carousel .owl-nav button.owl-next {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: rgba(109, 4, 88, 0.45) !important; /* Semi-transparent Purple Base */
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(192, 132, 252, 0.35) !important;
  color: #38bdf8 !important; /* Neon Cyan Arrow */
  font-size: 1.25rem !important;
  line-height: 1 !important;
  
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  
  position: relative !important;
  left: auto !important;
  right: auto !important;
  margin: 0 !important;
  outline: none !important;

  /* Hardware Accelerated Animations */
  transform: translateZ(0);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5),
              inset 0 0 10px rgba(109, 4, 88, 0.3) !important;
}

/* Hover Effect - Glowing Pulse & Gradient Accent */
.techslider.owl-carousel .owl-nav button.owl-prev:hover,
.techslider.owl-carousel .owl-nav button.owl-next:hover {
  background: linear-gradient(135deg, #6d0458, #38bdf8) !important;
  border-color: rgba(56, 189, 248, 0.8) !important;
  color: #ffffff !important;
  
  transform: translateY(-4px) scale(1.1) !important;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.6),
              0 0 35px rgba(109, 4, 88, 0.8) !important;
}

/* Active Click Press Physics */
.techslider.owl-carousel .owl-nav button.owl-prev:active,
.techslider.owl-carousel .owl-nav button.owl-next:active {
  transform: translateY(-1px) scale(0.98) !important;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.4) !important;
}

/* Inner Arrow Icon Styling (Supports FontAwesome / Bootstrap Icons / Text) */
.techslider.owl-carousel .owl-nav button.owl-prev span,
.techslider.owl-carousel .owl-nav button.owl-next span,
.techslider.owl-carousel .owl-nav button.owl-prev i,
.techslider.owl-carousel .owl-nav button.owl-next i {
  display: inline-block;
  transition: transform 0.3s ease !important;
  filter: drop-shadow(0 0 6px rgba(56, 189, 248, 0.6));
}

/* Arrow Slide Animations on Hover */
.techslider.owl-carousel .owl-nav button.owl-prev:hover span,
.techslider.owl-carousel .owl-nav button.owl-prev:hover i {
  transform: translateX(-2px) scale(1.15) !important;
  filter: drop-shadow(0 0 8px #ffffff);
}

.techslider.owl-carousel .owl-nav button.owl-next:hover span,
.techslider.owl-carousel .owl-nav button.owl-next:hover i {
  transform: translateX(2px) scale(1.15) !important;
  filter: drop-shadow(0 0 8px #ffffff);
}

/* Responsive Tweaks for Small Screens */
@media (max-width: 768px) {
  .techslider.owl-carousel .owl-nav {
    top: -65px;
    gap: 10px;
  }
  
  .techslider.owl-carousel .owl-nav button.owl-prev,
  .techslider.owl-carousel .owl-nav button.owl-next {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.1rem !important;
  }
}
.universe-industries-section {
  background: #020617; /* Deepest Space Black */
  color: #f8fafc;
  
  padding: 50px 0;
}

/* Background Layers */
.cosmic-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.starfield-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(rgba(56, 189, 248, 0.15) 1px, transparent 1px),
    radial-gradient(rgba(236, 72, 153, 0.12) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
}

.nebula-cloud {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.35;
  animation: floatNebula 12s ease-in-out infinite alternate;
}

.cloud-1 { width: 500px; height: 500px; background: #0284c7; top: -150px; left: -100px; }
.cloud-2 { width: 550px; height: 550px; background: #c084fc; bottom: -150px; right: -100px; animation-delay: -6s; }





/* Orbital Glass Card Architecture */
.orbital-card {
  position: relative;
  border-radius: 24px;
  padding: 1px;
  margin: 15px 6px;
}

.card-neon-aura {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.3), rgba(192, 132, 252, 0.2), rgba(236, 72, 153, 0.2));
  opacity: 0.5;
  transition: opacity 0.4s ease, filter 0.4s ease;
}

.card-inner {
  position: relative;
  z-index: 2;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 23px;
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateZ(0);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.4s ease, border-color 0.4s ease;
}

.orbital-card:hover .card-inner {
  transform: translateY(-10px);
  background: rgba(15, 23, 42, 0.95);
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.orbital-card:hover .card-neon-aura {
  opacity: 1;
  filter: blur(8px);
  background: linear-gradient(135deg, #38bdf8, #9333ea, #ec4899);
}

/* SVG Orbit Ring Mechanics */
.orbit-icon-container {
  position: relative;
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech_logo {
  width: 38px !important;
  height: 38px !important;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.5));
  z-index: 3;
  transition: transform 0.4s ease;
}

.orbit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  pointer-events: none;
}

.orbit-path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 2;
}

.orbit-dot {
  fill: none;
  stroke: url(#orbitGradient);
  stroke: #38bdf8;
  stroke-width: 3;
  stroke-dasharray: 40 200;
  animation: rotateOrbit 6s linear infinite;
  transform-origin: center;
}

@keyframes rotateOrbit {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.orbital-card:hover .tech_logo {
  transform: scale(1.15);
}

.orbital-card:hover .orbit-dot {
  stroke: #f472b6;
  animation-duration: 2s; /* Speed up rotation on hover */
}

/* Card Text Styling */
.tech_name {
  font-size: 1.08rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.cosmic-chip {
  font-size: 0.72rem;
  font-weight: 700;
  color: #38bdf8;
  background: rgba(2, 132, 199, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.orbital-card:hover .cosmic-chip {
  background: rgba(192, 132, 252, 0.2);
  border-color: rgba(192, 132, 252, 0.5);
  color: #c084fc;
}



/* faq */
    
    
    /* ==========================================================================
   COSMIC DARK FAQ SECTION STYLES
   ========================================================================== */

.cosmic-faq-section {
  background: #020617;
  color: #f8fafc;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  padding: 90px 0;
}

/* Backdrop Effects */
.faq-bg-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.faq-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(56, 189, 248, 0.12) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
}

.faq-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.3;
}

.orb-primary { width: 450px; height: 450px; background: #6d0458; top: -100px; left: -100px; }
.orb-secondary { width: 450px; height: 450px; background: #0284c7; bottom: -100px; right: -100px; }

/* Image Wrapper with Floating Animation */
.faq-media-wrapper {
  position: relative;
}

.faq-img-glow {
  position: absolute;
  inset: 10%;
  background: linear-gradient(135deg, #6d0458, #38bdf8);
  filter: blur(50px);
  opacity: 0.25;
  border-radius: 50%;
}

.floating-faq-img {
  max-width: 90%;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
  animation: floatMotion 6s ease-in-out infinite alternate;
}

@keyframes floatMotion {
  0% { transform: translateY(0); }
  100% { transform: translateY(-16px); }
}

/* Typography & Badges */
.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #38bdf8;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.15);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 10px #38bdf8;
}

.faq-title {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.neon-text-gradient {
  background: linear-gradient(135deg, #38bdf8, #c084fc, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-border-line {
  width: 65px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #38bdf8, #6d0458);
}

.text-slate {
  color: #94a3b8;
}

/* Glassmorphism Accordion Mechanics */
.custom-faq-accordion .accordion-item {
  background: rgba(15, 23, 42, 0.75) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-faq-accordion .accordion-item:hover {
  border-color: rgba(56, 189, 248, 0.4) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.custom-faq-accordion .accordion-button {
  background: transparent !important;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 18px 20px;
  gap: 12px;
  box-shadow: none !important;
}

.custom-faq-accordion .accordion-button:not(.collapsed) {
  color: #38bdf8 !important;
}

/* Custom Icon Inside Button */
.faq-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(56, 189, 248, 0.1);
  color: #38bdf8;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) .faq-icon-wrapper {
  background: linear-gradient(135deg, #6d0458, #38bdf8);
  color: #ffffff;
}

/* Custom Toggle Arrow Styling */
.custom-faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2338bdf8'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
  transition: transform 0.3s ease;
}

.custom-faq-accordion .accordion-body {
  padding: 0 20px 20px 64px;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .custom-faq-accordion .accordion-body {
    padding: 0 20px 20px 20px;
  }
}



/* faq 2 */ 
/* ==========================================================================
   CYBER FAQ REDESIGN STYLES
   ========================================================================== */

.cyber-faq-wrapper {
  background: #020617;
  color: #f8fafc;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  padding: 90px 0;
}

/* Background Meshes */
.faq-ambient-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.faq-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(56, 189, 248, 0.12) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
}

.faq-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.3;
}

.orb-1 { width: 450px; height: 450px; background: #6d0458; top: -100px; left: -100px; }
.orb-2 { width: 450px; height: 450px; background: #0284c7; bottom: -100px; right: -100px; }

/* Header & Tags */
.cyber-chip-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #38bdf8;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.15);
}

.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 10px #38bdf8;
}

.cyber-heading {
  font-size: clamp(2.2rem, 3.5vw, 2.9rem);
  font-weight: 800;
}

.neon-text-gradient {
  background: linear-gradient(135deg, #38bdf8, #c084fc, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heading-line {
  width: 70px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #38bdf8, #6d0458);
}

.cyber-subheading {
  font-size: 1rem;
  color: #94a3b8;
}

/* Category Tabs */
.cosmic-tabs {
  gap: 10px;
  border: none;
}

.cosmic-tabs .nav-link {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  border-radius: 25px;
  padding: 8px 22px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.cosmic-tabs .nav-link.active,
.cosmic-tabs .nav-link:hover {
  background: linear-gradient(135deg, #6d0458, #0284c7);
  color: #ffffff;
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 0 15px rgba(2, 132, 199, 0.4);
}

/* Visual Card & Floating Badge */
.faq-visual-card {
  border-radius: 24px;
  padding: 1px;
}

.visual-border-glow {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.3), rgba(109, 4, 88, 0.2));
  filter: blur(8px);
}

.visual-inner {
  position: relative;
  z-index: 2;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 23px;
}

.faq-hero-img {
  max-width: 85%;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
}

.floating-tech-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #6d0458, #38bdf8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

.stat-number {
  display: block;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: #94a3b8;
}

/* Accordion Mechanics */
.custom-cyber-accordion .cosmic-card {
  background: rgba(15, 23, 42, 0.75) !important;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  overflow: hidden;
  transition: all 0.3s ease;
}

.custom-cyber-accordion .cosmic-card:hover {
  border-color: rgba(56, 189, 248, 0.4) !important;
}

.custom-cyber-accordion .accordion-button {
  background: transparent !important;
  color: #ffffff !important;
  font-weight: 700;
  padding: 18px 20px;
  gap: 14px;
  box-shadow: none !important;
}

.custom-cyber-accordion .accordion-button:not(.collapsed) {
  color: #38bdf8 !important;
}

.acc-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: #38bdf8;
  background: rgba(2, 132, 199, 0.15);
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.custom-cyber-accordion .accordion-body {
  padding: 0 20px 20px 60px;
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA Banner Section */
.cyber-cta-card {
  background: linear-gradient(135deg, rgba(109, 4, 88, 0.4), rgba(15, 23, 42, 0.9));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.cosmic-glow-btn {
  background: linear-gradient(135deg, #0284c7, #9333ea);
  color: #ffffff !important;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
  transition: all 0.3s ease;
}

.cosmic-glow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.7);
}



/* faq3 */


/* ==========================================================================
   LIGHT THEME FAQ SECTION STYLES
   ========================================================================== */

.light-faq-section {
  background: #f8fafc; /* Clean Light Slate Background */
  color: #1e293b;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  padding: 90px 0;
}

/* Background Pattern */
.light-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(14, 165, 233, 0.08) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Section Header */
.light-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #ffffff;
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0284c7;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.08);
}

.badge-ring {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0284c7;
  box-shadow: 0 0 8px rgba(2, 132, 199, 0.6);
}

.section-heading {
  font-size: clamp(2.1rem, 3.2vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.gradient-text {
  background: linear-gradient(135deg, #0284c7, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heading-accent {
  width: 65px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #0284c7, #9333ea);
}

.section-desc {
  font-size: 0.98rem;
  color: #64748b;
}

/* Left Visual Area & Floating Chip */
.visual-wrapper {
  border-radius: 24px;
}

.visual-bg-glow {
  position: absolute;
  inset: 5%;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.15), rgba(147, 51, 234, 0.15));
  filter: blur(40px);
  border-radius: 50%;
}

.visual-card {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.faq-hero-img {
  max-width: 85%;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.06));
}

.floating-trust-chip {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #ffffff;
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: 16px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.1);
}

.chip-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0284c7, #9333ea);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.chip-title {
  display: block;
  font-weight: 800;
  font-size: 0.88rem;
  color: #0f172a;
}

.chip-subtitle {
  display: block;
  font-size: 0.72rem;
  color: #64748b;
}

/* Light Accordions */
.custom-light-accordion .light-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.custom-light-accordion .light-card:hover {
  border-color: rgba(2, 132, 199, 0.4) !important;
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.08);
  transform: translateY(-2px);
}

.custom-light-accordion .accordion-button {
  background: #ffffff !important;
  color: #0f172a !important;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 18px 20px;
  gap: 12px;
  box-shadow: none !important;
}

.custom-light-accordion .accordion-button:not(.collapsed) {
  color: #0284c7 !important;
}

.faq-number {
  font-size: 0.82rem;
  font-weight: 800;
  color: #0284c7;
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.2);
  padding: 4px 10px;
  border-radius: 8px;
}

.custom-light-accordion .accordion-body {
  padding: 0 20px 20px 58px;
  color: #475569;
  font-size: 0.94rem;
  line-height: 1.6;
}

/* Toggle Arrow Icon */
.custom-light-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230284c7'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
}

/* Call-To-Action Banner */
.support-banner-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 5px solid #0284c7;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.btn-light-gradient {
  background: linear-gradient(135deg, #0284c7, #9333ea);
  color: #ffffff !important;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.25);
  transition: all 0.3s ease;
}

.btn-light-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(2, 132, 199, 0.4);
}

@media (max-width: 768px) {
  .custom-light-accordion .accordion-body {
    padding: 0 20px 20px 20px;
  }
}


/* faq 4 */
/* ==========================================================================
   PASTEL LIGHT GRADIENT & BLUE THEME FAQ STYLES
   ========================================================================== */

.pastel-faq-section {
  /* Pastel Light Blue Gradient Base */
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f8fafc 100%);
  color: #0f172a;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  padding: 90px 0;
}

/* Ambient Backdrops & Animated Blur Dots */
.pastel-ambient-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.pastel-grid-mesh {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(37, 99, 235, 0.08) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
}

.pastel-dot {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: floatBlurDot 10s ease-in-out infinite alternate;
}

.dot-1 {
  width: 320px;
  height: 320px;
  background: #38bdf8;
  top: -60px;
  left: -40px;
}

.dot-2 {
  width: 380px;
  height: 380px;
  background: #60a5fa;
  bottom: -80px;
  right: -50px;
  animation-delay: -4s;
}

.dot-3 {
  width: 250px;
  height: 250px;
  background: #93c5fd;
  top: 40%;
  left: 45%;
  animation-delay: -2s;
}

@keyframes floatBlurDot {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(35px, 25px) scale(1.12); }
}

/* Header Elements */
.pastel-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #2563eb;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.08);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 10px #2563eb;
  animation: pulseBlue 1.8s infinite;
}

@keyframes pulseBlue {
  0% { transform: scale(0.8); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.4; }
  100% { transform: scale(0.8); opacity: 1; }
}

.pastel-heading {
  font-size: clamp(2.2rem, 3.4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.blue-gradient-text {
  background: linear-gradient(135deg, #1d4ed8, #0284c7, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pastel-divider {
  width: 65px;
  height: 3.5px;
  border-radius: 3px;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
}

.pastel-subheading {
  font-size: 1rem;
  color: #475569;
}

/* Left Card & Floating Trust Badge */
.pastel-glass-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.06);
}

.faq-hero-img {
  max-width: 85%;
  filter: drop-shadow(0 12px 24px rgba(37, 99, 235, 0.12));
}

.pastel-trust-chip {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 16px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}

.chip-blue-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.chip-title {
  display: block;
  font-weight: 800;
  font-size: 0.88rem;
  color: #0f172a;
}

.chip-subtitle {
  display: block;
  font-size: 0.72rem;
  color: #64748b;
}

/* Accordion Component */
.custom-pastel-accordion .pastel-card {
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.custom-pastel-accordion .pastel-card:hover {
  background: #ffffff !important;
  border-color: rgba(37, 99, 235, 0.4) !important;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.09);
  transform: translateY(-2px);
}

.custom-pastel-accordion .accordion-button {
  background: transparent !important;
  color: #0f172a !important;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 18px 20px;
  gap: 12px;
  box-shadow: none !important;
}

.custom-pastel-accordion .accordion-button:not(.collapsed) {
  color: #2563eb !important;
}

.faq-blue-num {
  font-size: 0.82rem;
  font-weight: 800;
  color: #2563eb;
  background: #eff6ff;
  border: 1px solid rgba(37, 99, 235, 0.25);
  padding: 4px 10px;
  border-radius: 8px;
}

.custom-pastel-accordion .accordion-body {
  padding: 0 20px 20px 58px;
  color: #475569;
  font-size: 0.94rem;
  line-height: 1.6;
}

/* Arrow Customization */
.custom-pastel-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232563eb'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
}

/* CTA Banner Card */
.pastel-cta-banner {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-left: 5px solid #2563eb;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.08);
}

.blue-pastel-btn {
  background: linear-gradient(135deg, #2563eb, #0284c7);
  color: #ffffff !important;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
}

.blue-pastel-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.45);
}

@media (max-width: 768px) {
  .custom-pastel-accordion .accordion-body {
    padding: 0 20px 20px 20px;
  }
}



/* faq5 */


/* ==========================================================================
   3D PERSPECTIVE PASTEL & MAGENTA (#84096b) THEME
   ========================================================================== */

.perspective-faq-section {
  /* Pastel Magenta Light Gradient Base */
  background: linear-gradient(135deg, #fdf4ff 0%, #fae8ff 50%, #f8fafc 100%);
  color: #0f172a;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  padding: 90px 0;
}

/* Background Ambient Blur Dots */
.perspective-ambient-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.magenta-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(132, 9, 107, 0.08) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
}

.magenta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  animation: floatBlurDot 9s ease-in-out infinite alternate;
}

.orb-1 {
  width: 350px;
  height: 350px;
  background: #e879f9;
  top: -80px;
  left: -50px;
}

.orb-2 {
  width: 380px;
  height: 380px;
  background: #84096b;
  bottom: -90px;
  right: -50px;
  animation-delay: -4s;
}

@keyframes floatBlurDot {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 20px) scale(1.1); }
}

/* Header Typography & Badges */
.magenta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(132, 9, 107, 0.2);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #84096b;
  box-shadow: 0 4px 15px rgba(132, 9, 107, 0.08);
}

.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #84096b;
  box-shadow: 0 0 10px #84096b;
  animation: pulseMagenta 1.8s infinite;
}

@keyframes pulseMagenta {
  0% { transform: scale(0.8); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.4; }
  100% { transform: scale(0.8); opacity: 1; }
}

.perspective-heading {
  font-size: clamp(2.2rem, 3.4vw, 2.9rem);
  font-weight: 800;
}

.magenta-gradient-text {
  background: linear-gradient(135deg, #84096b, #c026d3, #e879f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.magenta-divider {
  width: 65px;
  height: 3.5px;
  border-radius: 3px;
  background: linear-gradient(90deg, #84096b, #e879f9);
}

.perspective-subheading {
  font-size: 1rem;
  color: #64748b;
}

/* 3D Perspective Card Mechanics */
.perspective-3d-wrapper {
  perspective: 1200px;
}

.perspective-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  box-shadow: -10px 20px 40px rgba(132, 9, 107, 0.12);
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s ease;
  transform-style: preserve-3d;
}

.perspective-3d-wrapper:hover .perspective-card {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
  box-shadow: 0 25px 50px rgba(132, 9, 107, 0.2);
}

.card-glow-layer {
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(132, 9, 107, 0.2), rgba(232, 121, 249, 0.1));
  z-index: -1;
}

.faq-hero-img {
  max-width: 85%;
  filter: drop-shadow(0 15px 30px rgba(132, 9, 107, 0.15));
  transform: translateZ(30px);
}

/* Floating 3D Badge */
.floating-3d-chip {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(132, 9, 107, 0.2);
  border-radius: 16px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(132, 9, 107, 0.15);
  transform: translateZ(45px);
}

.chip-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #84096b, #c026d3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.chip-title {
  display: block;
  font-weight: 800;
  font-size: 0.88rem;
  color: #0f172a;
}

.chip-subtitle {
  display: block;
  font-size: 0.72rem;
  color: #64748b;
}

/* Accordion 3D Cards */
.custom-3d-accordion .card-3d-item {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: perspective(1000px) translateZ(0);
}

.custom-3d-accordion .card-3d-item:hover {
  background: #ffffff !important;
  border-color: rgba(132, 9, 107, 0.35) !important;
  box-shadow: 0 12px 28px rgba(132, 9, 107, 0.12);
  transform: perspective(1000px) translateZ(12px) translateY(-2px);
}

.custom-3d-accordion .accordion-button {
  background: transparent !important;
  color: #0f172a !important;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 18px 20px;
  gap: 12px;
  box-shadow: none !important;
}

.custom-3d-accordion .accordion-button:not(.collapsed) {
  color: #84096b !important;
}

.faq-mag-num {
  font-size: 0.82rem;
  font-weight: 800;
  color: #84096b;
  background: #fdf4ff;
  border: 1px solid rgba(132, 9, 107, 0.25);
  padding: 4px 10px;
  border-radius: 8px;
}

.custom-3d-accordion .accordion-body {
  padding: 0 20px 20px 58px;
  color: #475569;
  font-size: 0.94rem;
  line-height: 1.6;
}

/* Arrow Toggle Icon */
.custom-3d-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2384096b'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
}

/* CTA Banner */
.magenta-3d-banner {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(132, 9, 107, 0.2);
  border-left: 5px solid #84096b;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(132, 9, 107, 0.08);
}

.magenta-3d-btn {
  background: linear-gradient(135deg, #84096b, #c026d3);
  color: #ffffff !important;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 6px 20px rgba(132, 9, 107, 0.3);
  transition: all 0.3s ease;
}

.magenta-3d-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(132, 9, 107, 0.45);
}

/* Responsive Media Queries */
@media (max-width: 991px) {
  .perspective-card {
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .custom-3d-accordion .accordion-body {
    padding: 0 20px 20px 20px;
  }
}



/* benefit */

/* ==========================================================================
   BENEFITS SECTION: MODERN MAGENTA FLEX ACCORDION & 3D CSS
   ========================================================================== */

.benifitdigital {
  background: linear-gradient(135deg, #fdf4ff 0%, #fae8ff 50%, #f8fafc 100%);
  color: #0f172a;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  padding: 90px 0;
}

/* Background Animated Elements */
.benefit-ambient-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.magenta-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(132, 9, 107, 0.08) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
}

.magenta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  animation: floatBlurDot 9s ease-in-out infinite alternate;
}

.orb-1 {
  width: 350px;
  height: 350px;
  background: #e879f9;
  top: -80px;
  left: -50px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: #84096b;
  bottom: -90px;
  right: -50px;
  animation-delay: -4s;
}

@keyframes floatBlurDot {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 20px) scale(1.1); }
}

/* Header Styling */
.magenta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(132, 9, 107, 0.2);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #84096b;
  box-shadow: 0 4px 15px rgba(132, 9, 107, 0.08);
}

.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #84096b;
  box-shadow: 0 0 10px #84096b;
  animation: pulseMagenta 1.8s infinite;
}

@keyframes pulseMagenta {
  0% { transform: scale(0.8); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.4; }
  100% { transform: scale(0.8); opacity: 1; }
}

.benefit-title {
  font-size: clamp(2.2rem, 3.4vw, 2.9rem);
  font-weight: 800;
}

.magenta-gradient-text {
  background: linear-gradient(135deg, #84096b, #c026d3, #e879f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.magenta-divider {
  width: 65px;
  height: 3.5px;
  border-radius: 3px;
  background: linear-gradient(90deg, #84096b, #e879f9);
}

.benefit-subheading {
  font-size: 1rem;
  color: #64748b;
  max-width: 680px;
}

/* Flexible Accordion Grid Layout */
.benefit-flex-wrapper {
  display: flex;
  gap: 16px;
  height: 520px;
  width: 100%;
}

.benefit-flex-card {
  position: relative;
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.benefit-flex-card:hover,
.benefit-flex-card.active {
  flex: 4.5;
  box-shadow: 0 20px 45px rgba(132, 9, 107, 0.22);
}

/* Background & Overlays */
.card-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}

.benefit-flex-card:hover .card-bg-layer,
.benefit-flex-card.active .card-bg-layer {
  transform: scale(1.08);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(132, 9, 107, 0.85) 100%);
  transition: opacity 0.4s ease;
}

.benefit-flex-card:hover .card-overlay,
.benefit-flex-card.active .card-overlay {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(132, 9, 107, 0.95) 85%);
}

/* Card Content Box */
.card-content-box {
  position: absolute;
  inset: 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  color: #ffffff;
}

.card-num {
  font-size: 0.9rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 12px;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Vertical Title (Shown when card is collapsed) */
.card-vertical-title {
  font-size: 1.25rem;
  font-weight: 700;
  white-space: nowrap;
  transform: rotate(-90deg) translateX(0);
  transform-origin: left bottom;
  position: absolute;
  bottom: 40px;
  left: 45px;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.4s ease;
  margin: 0;
  color: #ffffff;
}

.benefit-flex-card:hover .card-vertical-title,
.benefit-flex-card.active .card-vertical-title {
  opacity: 0;
  transform: rotate(-90deg) translateY(20px);
  pointer-events: none;
}

/* Expanded Content (Shown on hover/active) */
.card-expanded-body {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s;
}

.benefit-flex-card:hover .card-expanded-body,
.benefit-flex-card.active .card-expanded-body {
  opacity: 1;
  transform: translateY(0);
}

.card-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #ffffff;
}

.card-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

/* Responsive Styles for Mobile & Tablets */
@media (max-width: 991px) {
  .benefit-flex-wrapper {
    flex-direction: column;
    height: auto;
  }

  .benefit-flex-card {
    height: 180px;
    flex: none !important;
  }

  .benefit-flex-card:hover,
  .benefit-flex-card.active {
    height: 280px;
  }

  .card-vertical-title {
    display: none;
  }

  .card-expanded-body {
    opacity: 1;
    transform: translateY(0);
  }

  .card-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}