/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Navbar */
.navbar-brand {
  font-size: 1.5rem;
}

/* Hover effect for cards */
.hoverCard {
  transition: transform 0.3s, background-color 0.3s;
}
.hoverCard:hover {
  background-color: #f8f9fa;
  transform: translateY(-5px);
  cursor: pointer;
}

/* Carousel captions */
.carousel-caption h5 {
  font-size: 1.5rem;
  font-weight: 600;
}
.carousel-caption p {
  font-size: 1rem;
}

/* Responsive images */
.about_img {
  max-height: 300px;
  object-fit: cover;
}

/* Footer */
footer {
  font-size: 0.9rem;
}


/* Gallery */
#gallery img {
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
#gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
/* Contact Us */
#contact .card {
  border-radius: 15px;
}
#contact input, 
#contact textarea {
  border-radius: 10px;
  padding: 10px 15px;
}
#contact button {
  border-radius: 10px;
  padding: 10px 20px;
}
#contact .card.bg-primary {
  border-radius: 15px;
}
