/* === Stats Section === */
.stats-section {
  background: #0e0e0e;
  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 {
  background-color: #0e0e0e;
  padding: 60px 20px;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

/* Section Title */
.why-us-header {
  margin-bottom: 40px;
}

.why-us-header h2 {
  font-size: 2.5rem;
  color: #00c2ff;
  font-weight: 700;
  text-align: center;
}

/* Cards Grid */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
}

/* Individual Card */
.why-card {
  background-color: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  padding: 2rem;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.why-card:hover {
  background-color: #3f51b5;
  color: #fff;
  transform: translateY(-10px);
}

.why-card i {
  font-size: 3rem;
  margin-bottom: 12px;
}

.icon-world {
  color: #00bcd4;
}

.icon-payment {
  color: #0af;
}

.icon-legal {
  color: #ff9800;
}

.icon-instant {
  color: #f44336;
}

.icon-security {
  color: #3f51b5;
}

.why-card:hover .icon-security {
  color: #fff;
}

.icon-support {
  color: #9c27b0;
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #3cc85e;
}

.why-card p {
  font-size: 0.95rem;
  color: inherit;
}



/* 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;
  }


  /* 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 */
