/* =========================
   Global Styles
========================= */
body {
  font-family: "Poppins", sans-serif;
  background: #f8f9fa;
}

/* =========================
   Carousel Styles
========================= */
#homeCarousel {
  max-height: 550px;
  overflow: hidden;
}

#homeCarousel img {
  height: 550px;
  object-fit: cover;
}

.carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  padding: 15px;
  border-radius: 10px;
}

/* Mobile Carousel */
@media (max-width: 768px) {
  #homeCarousel {
    max-height: 350px;
  }
  #homeCarousel img {
    height: 350px;
  }
  .carousel-caption h5 {
    font-size: 1.1rem;
  }
  .carousel-caption p {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  #homeCarousel {
    max-height: 250px;
  }
  #homeCarousel img {
    height: 250px;
  }
  .carousel-caption {
    padding: 8px;
  }
  .carousel-caption h5 {
    font-size: 1rem;
  }
  .carousel-caption p {
    font-size: 0.75rem;
  }
}

/* =========================
   Services Section
========================= */
.services-section {
  padding: 60px 20px;
}

.services-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  color: #0d6efd;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card i {
  font-size: 40px;
  color: #0d6efd;
  margin-bottom: 20px;
  transition: 0.3s ease;
}

.service-card:hover i {
  color: #6610f2;
  transform: scale(1.2);
}

.service-card h5 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
}

/* =========================
   Info Card (Brochure Section)
========================= */
.info-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease-in-out;
  max-width: 800px;
  margin: auto;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.info-card h3 {
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.info-card p {
  color: #555;
  margin-bottom: 25px;
  font-size: 1rem;
}

.btn-download {
  background-color: blue;
  border: none;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  transition: 0.3s;
}

.btn-download:hover {
  background-color: #2E2EFF;
}

/* =========================
   Counter / Milestones
========================= */
.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin: 0 auto;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.bg-gradient-success {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.bg-gradient-warning {
  background: linear-gradient(135deg, #fbc531, #e1b12c);
}

.bg-gradient-danger {
  background: linear-gradient(135deg, #ff0844, #ffb199);
}

.counter {
  font-size: 2rem;
  font-weight: 400;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
  position: relative;
  display: inline-block;
}

.counter::after {
  content: "+";
  font-size: 1.2rem;
  color: #4facfe;
  margin-left: 4px;
}

.divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #4facfe, #00f2fe);
  margin: 10px auto;
  border-radius: 5px;
}
