/* Body and Fonts */
body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

/* Navbar */
.navbar {
  background: #009999 !important;
}
.navbar .navbar-brand {
  color: #FFC107 !important;
  font-weight: bold;
  font-size: 1.5rem;
}
.navbar .nav-link {
  color: #fff !important;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}
.navbar .nav-link:hover {
  color: #FFC107 !important;
}

/* Make slider images fully responsive and nicely cropped */
.slider-img {
  width: 100%;
  height: 60vh;           /* Height for desktop */
  object-fit: cover;      /* Crops image nicely */
}

@media (max-width: 768px) {
  .slider-img {
    height: 40vh;         /* Smaller height for tablets */
  }
}
@media (max-width: 576px) {
  .slider-img {
    height: 10vh;         /* Even smaller height for phones */
  }
}

#responsiveSlider img {
  width: 100%;
  height: auto;        /* Image will scale by its natural ratio */
  max-height: 80vh;    /* Optional: Limit height for big screens */
  object-fit: cover;
}

.hero-slider .carousel-item {
  position: relative;
}
.hero-slider .carousel-item::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.3); /* dark overlay */
}
.hero-slider .carousel-caption {
  bottom: 50%;
  transform: translateY(50%);
}
.hero-slider .carousel-caption h2 {
  font-size: 2rem; color: #fff; animation: fadeInDown 1s;
}
.hero-slider .carousel-caption p {
  color: #eee; animation: fadeInUp 1s;
}
/* Fade effect on slide transition */
.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity .8s ease;
}
.carousel-fade .carousel-item.active {
  opacity: 1;
}


/* Section Titles */
.section-title {
  color: #009999;
  font-size: 2.2rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 2rem;
  position: relative;
}
.section-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background: #FFC107;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Package Cards */
.package-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.package-card:hover {
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.package-card .card-body {
  background: #fff;
}
.package-card .btn {
  background: #009999;
  border: none;
  color: #fff;
  transition: background 0.3s ease;
}
.package-card .btn:hover {
  background: #006666;
}

/* Why Choose Us */
.why-choose-icon {
  color: #FFC107;
  font-size: 3rem;
}

/* Testimonials */
.testimonial {
  background: #ffffff;
  padding: 1.5rem;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  transition: transform 0.3s;
}
.testimonial:hover {
  transform: scale(1.02);
}
.testimonial p {
  font-style: italic;
  color: #555;
}
.testimonial small {
  color: #009999;
  font-weight: bold;
}

/* Footer/Contact */
.contact-map iframe {
  border: 2px solid #009999;
  border-radius: 8px;
}
#contact p {
  color: #444;
}
