/* === Stats Section === */
.stats-section {
  background: radial-gradient(circle at top left, #0f172a, #020617);
  padding: 80px 20px;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  padding-top: 0;
  margin-top: 0;
}

.stats-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.stats-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  background: #e8edf3;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-6px);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2563eb; /* professional blue */
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 500;
  color: #475569; /* neutral gray */
}




/* why choose us section */
/* === WHY US SECTION (Modern Neon Gradient Style) === */
.why-us-section {
  position: relative;
  background: radial-gradient(circle at top left, #020617, #0b0f1a);
  padding: 100px 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #f8fafc;
  overflow: hidden;
}

/* Subtle glowing background animation */
.why-us-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(59, 130, 246, 0.08), rgba(147, 51, 234, 0.08));
  mix-blend-mode: overlay;
  animation: hueRotate 15s infinite linear;
  z-index: 0;
}

@keyframes hueRotate {
  from { filter: hue-rotate(0deg); }
  to { filter: hue-rotate(360deg); }
}

/* Section Title */
.why-us-header {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.why-us-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #06b6d4, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-clip: text;
  color: transparent;
}

/* Cards Grid */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 35px;
  width: 100%;
  max-width: 1200px;
  position: relative;
  z-index: 2;
}

/* Individual Card */
.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 2.5rem 1.8rem;
  text-align: center;
  color: #e2e8f0;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.4);
}

/* Icon Styling */
.why-card i {
  font-size: 3rem;
  margin-bottom: 15px;
  display: inline-block;
  background: linear-gradient(135deg, #06b6d4, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.4s ease;
  background-clip: text;
  color: transparent;
}

.why-card:hover i {
  transform: rotate(8deg) scale(1.1);
}

/* Card Headings */
.why-card h3 {
  font-size: 1.3rem;
  color: #22d3ee;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Card Text */
.why-card p {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
}



/* Extra Large Desktops */
@media (min-width: 1280px) {
  /* why choose us section */

  .why-us-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop & Large Tablets */
@media (min-width: 1024px) and (max-width: 1279px) {

  .stat-number {
    font-size: 2.4rem;
  }


  /* why choose us section */

  .why-us-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 1023px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 1rem;
  }


  /* why choose us section */



  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-us-header h2 {
    font-size: 2.2rem;
  }
}

/* Large Phones (phablets) */
@media (min-width: 576px) and (max-width: 767px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 1.8rem;
  }


  /* why choose us section */


  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-us-header h2 {
    font-size: 2rem;
  }
  .why-card {
    padding: 20px;
  }
}

/* Standard Mobile Phones */
@media (max-width: 575px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.95rem;
  }

  /* why choose us section */


  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-us-header h2 {
    font-size: 1.9rem;
  }
  .why-card {
    padding: 20px;
  }
  .why-card h3 {
    font-size: 1rem;
  }
  .why-card p {
    font-size: 0.85rem;
  }
}

/* Small Phones */
@media (max-width: 375px) {
  .stat-number {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .stats-grid {
    margin: 0 auto;
    gap: 20px;
  }


  /* why choose us section */


  .why-us-header h2 {
    font-size: 1.75rem;
  }
  .why-card p {
    font-size: 0.8rem;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }
}










/* Base Section Styles */
