.slider-img {
  height: 85vh;
  object-fit: cover;
}

/* Medium screens (tablets) */
@media (max-width: 991px) {
  .slider-img {
    height: 60vh;
  }
}

/* Small screens (phones) */
@media (max-width: 575px) {
  .slider-img {
    height: 45vh;
  }
}

.carousel-caption {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}

.about-section {
  background-color: #f8f9fa;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
}
/* Hover effect on cards */
.card:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease-in-out;
}

.card-body {
  padding: 20px;
}

.card-title {
  font-weight: bold;
  font-size: 1.2rem;
}

.card-text {
  font-size: 0.9rem;
  line-height: 1.5;
}
.about-banner {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-banner h1 {
  font-size: 3rem;
}

@media(max-width: 768px) {
  .about-banner h1 {
    font-size: 2rem;
  }
}
.contact-hero {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero h1 {
  font-size: 3rem;
}

@media(max-width: 768px) {
  .contact-hero h1 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .table th, .table td {
    font-size: 0.9rem;
  }
}
