/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;

}

/* Navbar */
.navbar {
  position:absolute;
  top: 0;
  width: 100%;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  z-index: 1000;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 150px;
  height: 100px;
}

.navbar h1 {
  font-size:larger;
  letter-spacing: 2px;
  font-weight: 700;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ff4c60;
}
/* Basic styles */
.navbar {
  list-style: none;
  padding: 0;
  margin: 0;
  
}

.navbar li {
  position: relative;
  display: inline-block;
}

.navbar a {
  color: white;
  padding: 10px 16px;
  display: block;
  text-decoration: none;
}

/* Dropdown hidden by default */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 1;
  border: 1px solid #ccc;
  font-size: small;
}

/* Dropdown item links */
.dropdown-content li a {
  color: black;
  padding: 10px;
  text-decoration: none;
  display: block;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Hero Section */
.hero {
  position:relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px; /* navbar height */
  font-size: x-large;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  animation: slideAnimation 20s infinite;
}

.slide {
  flex: 1 0 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
}

/* Animation for sliding backgrounds */
@keyframes slideAnimation {
  0%   { transform: translateX(0%); }
  25%  { transform: translateX(-100%); }
  50%  { transform: translateX(-200%); }
  75%  { transform: translateX(-300%); }
  100% { transform: translateX(0%); }
}

/* Hero content - centered */
.hero-content {
  position: relative;
  z-index: 10;
  color: white;
  text-align: center;
  max-width: 90%;
  padding: 20px;
  background: rgba(0,0,0,0.35);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  letter-spacing: 4px;
  font-weight: 900;
}

.hero-content .brand {
  color: #ff4c60;
  font-family: 'Brush Script MT', cursive;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

/* Hero button */
.btn {
  display: inline-block;
  background: #ff4c60;
  color: white;
  padding: 12px 30px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  background: #e63b4c;
}
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #25D366;
  color: white;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Section base styling */
.section {
  padding: 80px 20px 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: center;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #222;
  border-bottom: 3px solid black;
  display: inline-block;
  padding-bottom: 6px;
}

.section h2 i {
  margin-right: 10px;
  color: red;
}

/* Cards container */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 10px;
}



.section {
  max-width: 1000px;
  margin: auto;
  text-align: center;
  padding: 30px 20px;
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #e60023;
}

/* Card container */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Services Section */
#services {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

#services h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
  display:flexbox;
  padding-bottom: 6px;
}
#services h2 i{
  margin-right: 10px;
  color: red;
}

#services .cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

#services .card {
  background-color: white;
  border-radius: 2px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 25px 20px;
  width: 50px;
  margin: 0, auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

#services .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

#services .card i {
  font-size: 3rem;
  color: #007bff;
  margin-bottom: 15px;
}

#services .card p {
  font-size: 1.1rem;
  color: #555;
  margin: 0 ;
  font-weight: 100;
}



/* Packages Section */
#packages {
  max-width: 1200px;    /* limit the width */
  margin: 0 auto;       /* center horizontally */
  padding: 60px 20px;
  background: #f5f5f5;
  text-align: center;   
  font-size:larger;
}

.packages-container {
  display: flex;
  justify-content: center; /* center the cards container inline */
  gap: 20px;
  flex-wrap: wrap;
}
#packages h2{
  font-size:2 rem;
}
#packages h2 i{
  margin-right: 10px;
  color: red;
}


.package-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  width: 350px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: translateY(-8px);
}

.package-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.package-content {
  padding: 20px;
}

.package-content h4 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.package-content p {
  font-size: 14px;
  color: #555;
}
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.card {
  width: 300px;
  height: 250px;
  background: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  cursor: pointer;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}



/* Optional: separate styling for the duration (bold) */
.card p strong {
  color: #ff5a5f;
  font-weight: 700;
  font-size: 16px;
}
#blog .cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

#blog .card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 300px;
  padding: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

#blog .card:hover {
  transform: translateY(-10px);
}

#blog .card img {
  width: 100%;
  height: 180px;
  border-radius: 6px;
  object-fit: cover;
  margin-bottom: 12px;
}

#blog .card h3 {
  margin: 10px 0 8px;
  font-size: 1.2rem;
  color: #333;
}

#blog .card p {
  font-size: 0.95rem;
  color: #666;
  flex-grow: 1;
}

#blog .read-more {
  margin-top: 12px;
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  align-self: flex-start;
}

#blog .read-more:hover {
  text-decoration: underline;
}


body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  margin: 0;
  padding: 40px 20px;
  color: #333;
}

.testimonial-section {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #e63946;
  font-weight: 700;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.carousel-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-padding-left: 20px;
  scroll-padding-right: 20px;
  gap: 20px;
  padding: 10px 0;
  width: 100%;
  scrollbar-width: none; /* Firefox */
}

.carousel-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.testimonial-card {
  flex: 0 0 300px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  padding: 20px;
  scroll-snap-align: start;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-style: italic;
  color: #555;
  flex-grow: 1;
  margin-bottom: 15px;
}

.testimonial-card h3 {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.testimonial-card small {
  color: #888;
  font-size: 0.9rem;
}

.carousel-btn {
  background: #e63946;
  border: none;
  color: white;
  font-size: 1.8rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(230, 57, 70, 0.5);
  transition: background-color 0.3s ease;
}

.carousel-btn:hover {
  background: #b92c38;
}



/* Enquiry form */
form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input, form textarea {
  padding: 12px 15px;
  font-size: 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  resize: vertical;
  transition: border-color 0.3s ease;
}

form input:focus, form textarea:focus {
  border-color: #ff4c60;
  outline: none;
}

form button {
  background: #ff4c60;
  color: white;
  font-size: 1.1rem;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: #e63b4c;
}

/* Footer */
footer {
  background: #222;
  color: #ddd;
  padding: 30px 20px 50px 20px;
  text-align: center;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-info p {
  margin: 8px 0;
  font-size: 0.95rem;
}

.footer-info strong {
  color: #fff;
}

.footer-info a {
  color: #ff4c60;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-info a:hover {
  color: #ff8196;
}

.social-icons {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  color: #ddd;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ff4c60;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    padding: 10px 20px;
  }
  .nav-links {
    gap: 15px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .testimonial-cards {
    flex-direction: row;
    align-items: center;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Make each card take about 1/3rd minus the gap */
.card {
  flex: 0 0 calc((100% / 3) - 13.33px); /* 3 cards per row with gaps */
  max-width: calc((100% / 3) - 13.33px);
  height: 360px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  text-decoration: none;
  color: #000;
  transition: transform 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-text {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-text h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.card-text p {
  color: #555;
  font-size: 15px;
  line-height: 1.4;
}

/* Responsive: stack cards on smaller screens */
@media (max-width: 900px) {
  .card {
    flex: 0 0 45%;   /* 2 cards per row */
    max-width: 45%;
  }
}

@media (max-width: 600px) {
  .card {
    flex: 0 0 90%;   /* 1 card per row */
    max-width: 90%;
  }
}

/* Card text container */
.card-text {
  padding: 15px;
  flex-grow: 1;              /* Fill remaining vertical space */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-text h2 {
  margin: 0 0 10px 0;
  font-size: 22px;
}

.card-text p {
  color: #555;
  font-size: 15px;
  line-height: 1.4;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .card-container {
    justify-content: center;
    gap: 15px;
  }
  
  .card {
    width: 90%;             /* Full width on mobile */
    height: auto;           /* Let height adjust */
  }

  .card img {
    height: 200px;
  }
}









