/* ==============================
   NEUROX MAIN INDEX.CSS
   ============================== */

:root {
  --green: #00c49a;      /* Connect */
  --blue: #007bff;       /* Build */
  --yellow: #fcb900;     /* Scale */
  --red: #ff4d4f;        /* Launch */
  --dark: #0f172a;
  --light: #f9fafb;
  --text: #1e293b;
  --gray: #64748b;
  --gradient-main: linear-gradient(135deg, var(--green), var(--blue), var(--yellow), var(--red));
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--light);
  color: var(--text);
  overflow-x: hidden;
}
/* ============================================================
   HERO SECTION — MAIN SITE (Curved Journey Style)
   ============================================================ */
.hero {
  background: rgb(248, 248, 248);
  color: #202020;
  padding: 120px 20px 100px;
  border-radius: 0 0 70px 70px;
  overflow: hidden;
  position: relative;
}

.hero-container {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}

/* Left Content */
.hero-content {
  flex: 1 1 520px;
}
.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  background: linear-gradient(90deg, #202020, #202020, #202020, #202020);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-content p {
  font-size: 1.15rem;
  color: #515151;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 2rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-green,
.btn-blue,
.btn-yellow {
  padding: 0.9rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}
.btn-green { background: #00c49a; }
.btn-blue { background: #2563eb; }
.btn-yellow { background: #fcb900; color: #000; }
.btn-green:hover { background: #00b087; }
.btn-blue:hover { background: #1e4ed1; }
.btn-yellow:hover { background: #e6a800; }

/* Right Journey Path */
.journey-path {
  flex: 1 1 520px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.journey-path svg {
  width: 100%;
  max-width: 700px;
  height: 460px;
  animation: floatPath 6s ease-in-out infinite alternate;
}

/* Floating animation for SVG */
@keyframes floatPath {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}

/* Responsive */
@media (max-width: 992px) {
  .hero {
    text-align: center;
    padding: 6rem 2rem;
  }
  .hero-container {
    flex-direction: column;
    align-items: center;
  }
  .journey-path {
    order: -1;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .journey-path svg {
    max-width: 480px;
  }
}
.stage-icon image {
  transition: transform 0.4s ease, filter 0.4s ease;
}
.stage-icon:hover image {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* ==============================
   ECOSYSTEM OVERVIEW — PREMIUM
   ============================== */
.ecosystem {
  position: relative;
  overflow: hidden;
  padding: 10rem 2rem;
  background: radial-gradient(circle at top left, #f8fafc 0%, #ffffff 100%);
}

/* Floating gradient glow background */
.ecosystem::before,
.ecosystem::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  filter: blur(180px);
  opacity: 0.5;
  z-index: 0;
  animation: floatGlow 14s ease-in-out infinite;
}
.ecosystem::before {
  top: -250px;
  left: -250px;
  background: radial-gradient(circle, rgba(0, 196, 154, 0.35), transparent 70%);
}
.ecosystem::after {
  bottom: -250px;
  right: -250px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.35), transparent 70%);
  animation-delay: 6s;
}
@keyframes floatGlow {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.1) translateY(-25px); }
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
  z-index: 5;
}
.section-header h2 {
  font-size: 3rem;
  font-weight: 800;
  background: #202020;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
  margin-bottom: 0.7rem;
}
.section-header p {
  color: #515151;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Division Container */
.division {
  margin-bottom: 6rem;
  position: relative;
  z-index: 5;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
}
/* .division:hover {
  transform: translateY(-10px) scale(1.02);
} */

/* Light Trail Effect */
/* .division::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  filter: blur(60px);
}
.connect::after {
  background: linear-gradient(90deg, rgba(0, 196, 154, 0.25), transparent);
}
.build::after {
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.25), transparent);
}
.scale::after {
  background: linear-gradient(90deg, rgba(252, 185, 0, 0.25), transparent);
}
.division:hover::after {
  opacity: 1;
} */

/* Division Content Box */
.division-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 3.5rem 3rem; */
  /* background: rgba(255, 255, 255, 0.9); */
  /* border: 1px solid rgba(226, 232, 240, 0.6); */
  /* border-radius: 28px; */
  /* box-shadow: 0 10px 40px rgba(15, 23, 42, 0.07); */
  /* backdrop-filter: blur(10px); */
  /* transition: all 0.4s ease; */
}
.division-content.reverse {
  flex-direction: row-reverse;
}

/* Text Section */
.division-text {
  flex: 1;
  min-width: 300px;
}
.division-text h3 {
  font-size: 2.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.division-text i {
  font-size: 1.8rem;
  padding: 0.7rem;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, #00c49a, hsl(221, 83%, 53%));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.connect i {
  background: linear-gradient(135deg, #00c49a, #00906d);
}
.build i {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}
.scale i {
  background: linear-gradient(135deg, #fcb900, #f59e0b);

}
.division-text p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  max-width: 580px;
}

/* Image Section */
.division-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.division-image img {
  max-width: 35%;
  border-radius: 50%;
  box-shadow: 0 1px 1px rgba(15, 23, 42, 0.15);
  /* transform: perspective(1000px) rotateY(0); */
  transition: all 0.6s ease;
}
/* .division:hover .division-image img {
  transform: perspective(1000px) rotateY(4deg) scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
} */

/* CTA Buttons */
.btn-green, .btn-blue, .btn-yellow {
  padding: 1rem 2.4rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.4px;
  transition: all 0.4s ease;
  display: inline-block;
}
.btn-green {
  background: linear-gradient(90deg, #00c49a, #00a784);
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 196, 154, 0.3);
}
.btn-blue {
  background: linear-gradient(90deg, #2563eb, #1e40af);
  color: #fff;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}
.btn-yellow {
  background: linear-gradient(90deg, #fcb900, #f59e0b);
  color: #000;
  box-shadow: 0 0 20px rgba(252, 185, 0, 0.3);
}
.btn-green:hover, .btn-blue:hover, .btn-yellow:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.35);
}

/* Responsive Layout */
@media (max-width: 992px) {
  .division-content {
    flex-direction: column !important;
    text-align: center;
    padding: 2.5rem 2rem;
  }
  .division-text h3 {
    justify-content: center;
  }
  .division-image img {
    max-width: 70%;
  }
}
@media (max-width: 600px) {
  .section-header h2 {
    font-size: 2.3rem;
  }
  .division-text h3 {
    font-size: 1.8rem;
  }
  .division-text p {
    font-size: 1rem;
  }
}


/* ==============================
   VISION SECTION
   ============================== */
.vision {
  position: relative;
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* Dynamic Background Glow */
.vision-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(0, 196, 154, 0.25), transparent 70%),
              radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.25), transparent 70%),
              radial-gradient(circle at 50% 50%, rgba(252, 185, 0, 0.15), transparent 70%);
  transition: transform 0.3s ease;
  filter: blur(80px);
  z-index: 0;
}

/* Text Section */
.vision-content {
  position: relative;
  z-index: 2;
  max-width: 1150px;
  margin: 0 auto 4.5rem;
}
.vision h2 {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #fff, #fff, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}
.vision-lead {
  font-size: 1.2rem;
  line-height: 1.85;
  color: #e2e8f0;
  max-width: 720px;
  margin: 0 auto;
}

/* Pillars Layout */
.vision-pillars {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2.5rem;
  flex-wrap: wrap;
}

/* Each Pillar */
.pillar {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 2.8rem 2rem;
  border-radius: 24px;
  flex: 1 1 300px;
  max-width: 340px;
  transition: all 0.5s ease;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.25);
  position: relative;
  overflow: hidden;
}

/* Hover Glow */
.pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  border-radius: 24px;
  filter: blur(45px);
  transition: opacity 0.5s ease;
  z-index: 0;
}
.pillar.green::before { background: rgba(0, 196, 154, 0.3); }
.pillar.blue::before  { background: rgba(37, 99, 235, 0.3); }
.pillar.yellow::before { background: rgba(252, 185, 0, 0.35); }

.pillar:hover::before {
  opacity: 1;
}
/* .pillar:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
} */

/* Pillar Text */
.pillar h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1.2rem 0 0.7rem;
  color: #fff;
  position: relative;
  z-index: 2;
}
.pillar p {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* Icon Circle */
.icon-circle {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 1.8rem;
  margin: 0 auto;
  color: #fff;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
  z-index: 2;
  position: relative;
}
.icon-circle.green {
  background: linear-gradient(135deg, #00c49a, #00a37f);
}
.icon-circle.blue {
  background: linear-gradient(135deg, #2563eb, #1e40af);
}
.icon-circle.yellow {
  background: linear-gradient(135deg, #fcb900, #f59e0b);
}

/* Responsive */
@media (max-width: 992px) {
  .vision h2 { font-size: 2.2rem; }
  .vision-lead { font-size: 1.05rem; }
}
@media (max-width: 768px) {
  .pillar { max-width: 90%; }
}
/* ============================================================
   APPROACH SECTION (PREMIUM STYLE)
============================================================ */
.approach {
  padding: 3rem 2rem 7rem;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Background Glow Effects */
.approach::before,
.approach::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  z-index: 0;
}
/* Subtle gradient overlay */
.approach::before {
  width: 305px;
  height: 350px;
  top: -100px;
  /* background: #2563eb; */
  right: -100px;

}
.approach::after {
  width: 350px;
  height: 350px;
  /* background: #00c49a; */
  left: -80px;

  bottom: -120px;
}


.approach h2 {
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(90deg, #202020, #202020);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.approach .section-subtitle {
  font-size: 1.2rem;
  color: #515151;
  max-width: 1200px;
  margin: 0 auto 50px auto;
  line-height: 1.75;
  position: relative;
  z-index: 2;
}


/* Grid Layout */
.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Step Card */
.step {
  /* background: #fff; */
  padding: 45px 32px;
  /* border-radius: 22px; */
  /* box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05); */
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
  /* border: 1px solid rgba(0,0,0,0.03); */
}

/* .step:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.15);
} */

/* Step Number Watermark */
.step-number {
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(0, 207, 193, 0.1);
  z-index: 0;
}

/* Step Icon */
.step i {
  font-size: 1.8rem;
  color: white;
  background: linear-gradient(135deg, #00c49a, hsl(221, 83%, 53%));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
  padding: 0.7rem;
  border-radius: 50%;
}

/* Step Title */
.step h3 {
  font-size: 1.3rem;
  color: #1e3a8a;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

/* Step Text */
.step p {
  font-size: 0.96rem;
  color: #555;
  position: relative;
  z-index: 1;
  line-height: 1.65;
}

/* Glow border effect */
.step::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(0,207,193,0.25), rgba(37,99,235,0.25)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.step:hover::after {
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .approach-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media (max-width: 600px) {
  .approach-steps {
    grid-template-columns: 1fr;
  }
  .step {
    padding: 40px 25px;
  }
}
/* ============================================================
   WHY NEURO SOLUTIONS (PREMIUM FOUNDER-CENTRIC STYLE)
============================================================ */
.why-neuro {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  padding: 3rem 2rem 7rem;
  position: relative;
  overflow: hidden;
}

/* Subtle glowing blobs */
.why-neuro::before,
.why-neuro::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  /* filter: blur(120px); */
  opacity: 0.05;
}
.why-neuro::before {
  width: 350px;
  height: 350px;
  top: -80px;
  /* background: #00c49a; */
    left: -120px;

}
.why-neuro::after {
  width: 250px;
  height: 250px;
  bottom: -120px;
  background: #2563eb;
  right: -120px;
}

/* Header */
.why-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.why-header h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #202020;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #202020, #202020, #202020);
  position: relative;
  z-index: 2;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
  margin-bottom: 0.7rem;
}
.why-header p {
  font-size: 1.2rem;
  color: #515151;
  max-width: 1000px;
  margin: 0 auto 50px auto;
  line-height: 1.75;
  position: relative;
  z-index: 2;
}

/* Grid layout */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

/* Card styling */
.why-card {
  /* background: rgba(255, 255, 255, 0.85); */
  /* border-radius: 20px; */
  padding: 1.5rem 2rem 1.5rem;
  /* box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08); */
  /* backdrop-filter: blur(10px); */
  /* border: 1px solid rgba(226, 232, 240, 0.6); */
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* .why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.1);
} */

/* Animated border glow */
/* .why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, rgba(0, 196, 154, 0.6), rgba(37, 99, 235, 0.6)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.why-card:hover::before {
  opacity: 1;
} */

/* Icon styles */
.why-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00c49a, #14b8a6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  margin: 0 auto 1.4rem;
  box-shadow: 0 6px 18px rgba(0, 196, 154, 0.3);
  transition: transform 0.4s ease, background 0.4s ease;
}

.why-card:nth-child(2) .why-icon {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.3);
}

.why-card:nth-child(3) .why-icon {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.3);
}

.why-card:nth-child(4) .why-icon {
  background: linear-gradient(135deg, #9333ea, #a855f7);
  box-shadow: 0 6px 18px rgba(147, 51, 234, 0.3);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(8deg);
}

/* Text */
.why-card h4 {
  font-size: 1.35rem;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.why-card p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .why-header h2 {
    font-size: 2.2rem;
  }
  .why-card {
    padding: 2.5rem 1.8rem;
  }
}
/* ==============================
   CTA SECTION — Premium Version
   ============================== */
.cta {
  position: relative;
  overflow: hidden;
  padding: 4rem 1rem;
  text-align: center;
  color: #fff;
  background: white;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

/* Animated glowing particles */
.cta-particles::before,
.cta-particles::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 120px 120px;
  animation: particleMove 60s linear infinite;
  opacity: 0.15;
}
.cta-particles::after {
  background-size: 90px 90px;
  animation-duration: 90s;
  opacity: 0.25;
}
@keyframes particleMove {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 2000px 2000px, 1000px 1000px; }
}

/* Floating glowing lights */
.cta-lights::before,
.cta-lights::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  z-index: 1;
}
.cta-lights::before {
  background: radial-gradient(circle, rgba(37, 99, 235, 0.4), transparent 70%);
  top: 10%;
  left: 10%;
  animation: floatLight 12s ease-in-out infinite;
}
.cta-lights::after {
  background: radial-gradient(circle, rgba(0, 196, 154, 0.35), transparent 70%);
  bottom: 10%;
  right: 10%;
  animation: floatLight 14s ease-in-out infinite reverse;
}
@keyframes floatLight {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-25px) scale(1.05); }
}

/* Subtle grid overlay */
.cta-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.1;
  z-index: 0;
}

/* Content */
.cta-content {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-radius: 28px;
  /* backdrop-filter: blur(10px); */
  /* background: rgba(255, 255, 255, 0.04); */
  /* box-shadow: 0 0 60px rgba(0, 0, 0, 0.25); */
  animation: fadeInUp 1.5s ease;
}

.cta-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1.2rem;
  background: linear-gradient(90deg, #00c49a, #2563eb, #fcb900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-content p {
  font-size: 1.2rem;
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* Glowing button */
.btn-glow {
  display: inline-block;
  padding: 1rem 3rem;
  border-radius: 50px;
  background: linear-gradient(90deg, #00c49a, #2563eb);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.35s ease;
  font-size: 1.1rem;
  box-shadow: 0 0 30px rgba(0, 196, 154, 0.4), 0 0 40px rgba(37, 99, 235, 0.25);
}
/* .btn-glow:hover {
  transform: translateY(-5px) scale(1.05);
  background: linear-gradient(90deg, #2563eb, #00c49a);
  box-shadow: 0 0 35px rgba(37, 99, 235, 0.6), 0 0 70px rgba(0, 196, 154, 0.5);
} */

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
  .cta-content h2 { font-size: 2.3rem; }
  .cta-content p { font-size: 1.05rem; }
}
@media (max-width: 600px) {
  .cta { padding: 6rem 1.5rem; }
  .cta-content { padding: 2rem 1.5rem; }
  .cta-content h2 { font-size: 1.9rem; }
}




/* ==============================
   RESPONSIVE DESIGN
   ============================== */
@media (max-width: 992px) {
  .division-content {
    flex-direction: column;
  }

  .division-text, .division-image {
    text-align: center;
  }

  .division-text h3 {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.3rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

}

@media (max-width: 500px) {
  .hero {
    padding: 5rem 1.5rem;
  }
}
