.stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  color: #c84211;
  margin: 80px auto;
  max-width: 100%;
  padding: 40px 20px;
  margin-bottom: 0;
}

.stat h2 {
  font-size: 2.5rem;
  margin-bottom: 8px;
  font-weight: 500;
}

.stat p {
  color: #5e5e5e;
  font-size: 1rem;
}

/* Responsive layout */
@media (max-width: 992px) {
  .stats-section {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .stats-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

.trainers-section {
  color: #5e5e5e;
  text-align:left;
}

.trainers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 0 20px;
}

.trainer-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trainer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.trainer-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.trainer-info {
  padding: 16px;
}

.trainer-info h4 {
  color: #c84211;
  font-weight: 600;
}

.trainer-info span {
  font-weight: 400;
  font-size: 0.9rem;
  color: #5e5e5e;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .trainers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .trainers-grid {
    grid-template-columns: 1fr;
  }

  .trainer-info h4 {
    font-size: 1.1rem;
  }

  .trainer-info p {
    font-size: 0.9rem;
  }
}

.review-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #f4f4f4;
}

.review-section h2 {
  color: #c84211;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-content: center;
}

.review-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.15);
}

.review-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.review-card h3 {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.review-card .stars {
  color: #ffc107;
  margin-bottom: 10px;
}

.review-card p {
  color: #5e5e5e;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive Layout */
@media (max-width: 992px) {
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-section h2 {
    font-size: 1.5rem;
  }

  .review-card {
    padding: 16px;
  }
}

.footer {
  background-color: #c84211; /* same as your theme color */
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  margin-top: 40px;
}

.footer-content {
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.footer .brand {
  font-weight: 600;
}

@media (max-width: 576px) {
  .footer-content {
    font-size: 0.85rem;
    line-height: 1.5;
  }
}


