/* General Reset */

body {

  margin: 0;

  padding: 0;

  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}



/* Preloader */

.loader-wrapper {

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100vh;

  background: #000;

  display: flex;

  justify-content: center;

  align-items: center;

  z-index: 9999;

}



.loader-image {

  width: 400px;

  height: 400px;

  animation: pulse 2s infinite ease-in-out;

}



@keyframes pulse {

  0%, 100% {

    transform: scale(1.15);

    opacity: 0.8;

  }

  50% {

    transform: scale(1.1);

    opacity: 1;

  }

}



/* Fixed social icons */

.fixed-icons,

.fixed-whatsapp {

  position: fixed;

  right: 20px;

  display: flex;

  flex-direction: column;

  gap: 10px;

  z-index: 1000;

}

.fixed-icons {

  top: 40%;

}

.fixed-icons a,

.fixed-whatsapp a {

  font-size: 24px;

  color: #fff;

  background-color: #0307fd;

  padding: 10px;

  border-radius: 50%;

  text-align: center;

  transition: background 0.3s;

}

.fixed-icons a:hover,

.fixed-whatsapp a:hover {

  background-color: #023845;

}

@media (max-width: 768px) {

  .fixed-icons {

    top: 60%;

    right: 10px;

  }

  .fixed-icons a,

  .fixed-whatsapp a {

    font-size: 20px;

    padding: 8px;

  }

}

@media screen {
  
}



/* Hero section */

.hero .carousel-inner {

  height: 90vh;

}



.hero .carousel-caption {

  bottom: 15%;

  text-align: center;

}



.hero .carousel-caption h5 {

  font-size: 2.5rem;

  font-weight: bold;

  color: #fff;

}



.hero .carousel-caption p {

  font-size: 1.2rem;

  color: #f8f9fa;

}



.hero .carousel-caption button {

  margin-top: 10px;

}




.carousel-caption h5 {
  padding: 50px !important;
  font-size: 5rem !important;
  color: #f9f9f9 !important; /* Changed to white for better contrast with blue background */
  font-weight: bold;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
  text-shadow: 0 0 15px #050505;
  text-align: center;
  margin: 0 auto !important;
  max-width: 800px;
  letter-spacing: 0.2px;
  opacity: 0.8;
  perspective: 400px;

}
.carousel-caption p {
  font-size: 1.5rem !important;
  color: #22223b !important;
  font-weight: 500;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,1);
  text-shadow: 0 0 20px #ffffff;
  letter-spacing: 0.2px;
  line-height: 1.6;
  padding: 2px;
  z-index: 1200;
  margin: 32px auto 0 auto !important;
  max-width: 350px;
  opacity: 0.92;
  perspective: 400px;
  cursor: pointer;
}


@media (max-width: 768px) {

  .carousel-caption h5 {

    font-size: 2.3rem !important;

    padding: 50px !important;

  }
  .carousel-caption p {

    font-size: 1.5rem !important;

    margin: 40px !important;

  }

}

/* Book card */

.book-card {

  background-color: #f5f5f5;

  padding: 2rem;

  margin-top: 2rem;

}



.book-card-container h2 {

  font-size: 2rem;

  font-weight: bold;

  display: flex;

  justify-content: center;

}



.book-card-container p {

  font-size: 1.1rem;

  margin-top: 10px;

  display: flex;

  justify-content: center;

}



.col-md-6 .btn {

  display: flex;

  justify-content: center !important;

  align-items: center;

  text-align: center;

  margin-left: auto;

  margin-right: auto;

}



.book-card .btn {

  background-color: #007bff;

  color: #fff;

  padding: 14px 28px;

  display: flex;

  border-radius: 8px;

  border: none;

  margin-top: 1rem;

  transition: background 0.3s ease;

}



.book-card .btn:hover {

  background-color: #0056b3;

}



@media (max-width: 768px) {

  .book-card-container h2 {

    font-size: 1.5rem;

  }



  .book-card-container p {

    font-size: 1rem;

  }



  .book-card .btn {

    padding: 10px 20px;

  }



  .col-md-6 .btn {

    margin-left: auto;

    margin-right: auto;

  }

}



/* Swiper Package Section */

.popular-packages {

  margin-top: 3rem;

  text-align: center;

}



.popular-packages h2 {

  font-size: 2rem;

  margin-bottom: 1.5rem;

  font-weight: bold;

  color: #007bff;

  text-transform: uppercase;

  letter-spacing: 1px;

  position: relative;

  top: 10px;

}



.popular-packages h2::after {

  content: '';

  display: block;

  width: 50px;

  height: 3px;

  background-color: #0056b3;

  margin: 10px auto 0;

  border-radius: 2px;

}



.packages-container {

  display: flex;

  justify-content: center;

  align-items: center;

  flex-wrap: wrap;

  background-color: #cee2fa;

  gap: 0.5rem !important;

  padding: 1rem;

  border-radius: 10px;

  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

  border-radius: 20px;

}



.popular-card {

  background-color: #fff;

  border-radius: 10px;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

  text-align: center;

  padding: 20px;

}



.popular-card .img img {

  width: 100%;

  height: 300px;

  object-fit: cover;

  border-radius: 8px;

}



.popular-card h3 {

  font-size: 1.3rem;

  margin: 10px 0;

}



.popular-card p {

  font-size: 1rem;

  margin-bottom: 10px;

}



.popular-card .btn {

  background-color: #007bff;

  color: #fff;

  padding: 10px 20px;

  border-radius: 5px;

  border: none;

  cursor: pointer;

}



.popular-card .btn:hover {

  background-color: #0056b3;

}



@media (max-width: 768px) {

  .popular-packages h2 {

    font-size: 1.5rem;

  }



  .packages-container {

    padding: 0.5rem;

    gap: 0.3rem !important;

  }



  .popular-card {

    padding: 15px;

  }



  .popular-card .img img {

    height: 150px;

  }



  .popular-card h3 {

    font-size: 1.1rem;

  }



  .popular-card p {

    font-size: 0.9rem;

  }



  .popular-card .btn {

    padding: 8px 16px;

  }

}



/* Featured Packages */

.section-title {

  text-align: center;

  font-size: 2rem;

  margin: 3rem 0 1rem 0;

}



.packages {

  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 2rem;

  padding: 0 2rem 3rem;

}



.card {

  background-color: #a0d9f3 !important;

  width: 300px;

  border-radius: 10px;

  overflow: hidden;

  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);

  height: 450px !important;

}



.card img {

  width: 100%;

  height: 310px !important;

  object-fit: cover;

}



.card-content {

  padding: 15px;

  text-align: center;

}



.card-content h3 {

  font-size: 1.2rem;

  margin-bottom: 10px;

}



.card-content .info {

  font-size: 0.9rem;

  color: #555;

}



.card-content .price {

  color: #28a745;

  font-weight: bold;

  margin: 10px 0;

}



.card-content .stars {

  color: #f4c150;

  margin-bottom: 15px;

}



.card-content .book-btn {

  display: inline-block;

  padding: 10px 20px;

  background-color: #007bff;

  color: white;

  border-radius: 5px;

  text-decoration: none;

  transition: background-color 0.3s ease;

}



.card-content .book-btn:hover {

  background-color: #0056b3;

}



/* Swiper overrides */

.swiper {

  padding: 2rem 0;

}



.swiper-button-next,

.swiper-button-prev {

  color: #007bff;

}



/* Testimonials */

.testimonials {

  text-align: center;

  padding: 60px 20px;

  background: #f8f8f8;

}

.testimonial-container {

  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;

  margin-top: 30px;

}

.testimonial-card {

  background: #fff;

  padding: 20px;

  border-radius: 20px;

  width: 320px;

  box-shadow: 0 4px 8px rgba(0,0,0,0.1);

  text-align: center;

}

.testimonial-card img {

  width: 80px;

  height: 90px;

  border-radius: 50%;

  object-fit: cover;

  margin-bottom: 15px;

}

.stars {

  color: #ffc107;

  margin-bottom: 10px;

}



/* Blog Preview */

.blog-preview {

  text-align: center;

  padding: 60px 20px;

}

.blog-container {

  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;

  margin-top: 30px;

}

.blog-card {

  background: #fff;

  padding: 20px;

  border-radius: 15px;

  width: 300px;

  box-shadow: 0 4px 8px rgba(0,0,0,0.1);

  text-align: left;

}

.blog-card img {

  width: 100%;

  height: 200px;

  border-radius: 10px;

  object-fit: cover;

  margin-bottom: 15px;

}

.read-more {

  display: inline-block;

  margin-top: 10px;

  color: #007bff;

  text-decoration: none;

}

.read-more:hover {

  text-decoration: underline;

}



/* Newsletter */

.newsletter {

  background: rgb(115, 183, 251);

  color: white;

  padding: 30px 10px;

  text-align: center;

}

.newsletter-form {

  margin-top: 20px;

}

.newsletter-form input[type="email"] {

  padding: 5px;

  width: 250px;

  border: none;

  border-radius: 5px;

  margin-right: 10px;

}

.newsletter-form button {

  padding: 5px 10px;

  border: none;

  background: #ffc107;

  color: #333;

  font-weight: bold;

  border-radius: 5px;

  cursor: pointer;

}

.newsletter-form button:hover {

  background: #e0a800;

}



@media (max-width: 768px) {

  .newsletter-form input[type="email"] {

    width: 200px;

    margin-right: 5px;

  }

  .newsletter-form button {

    padding: 5px 8px;

  }

}

