/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
}


.header-with-image {
  position: relative;
  width: 100%;
}

.header-with-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Navigation Styling */
.navbar {
  background-color: #696e71;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px 20px;
}

.logo img {
  height: 50px;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  width: 100%;
  transition: max-height 0.4s ease;
}

.nav-links,
.nav-contact {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links a,
.nav-contact a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-contact a:hover {
  color: #f2c94c;
}

.nav-contact i {
  margin-right: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
  }

  .nav-menu.active {
    max-height: 500px;
    padding: 10px 0;
  }

  .nav-links,
  .nav-contact {
    flex-direction: column;
    align-items: flex-start;
  }
}
.btn {
  background: #e63946;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
}


/* About Section */
.about {
  padding: 60px 20px;
  background: #f5f5f5;
}

.about h2 {
  text-align: center;
  margin-bottom: 30px;
}

.about-content {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.about-content img {
  width: 400px;
  border-radius: 10px;
}


.services-section {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
  background-color: #fff;
  border-radius: 12px;
  
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-group {
  flex: 1 1 450px;
  background-color: #f0f0f0;
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-group:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.service-group h3 {
  margin-bottom: 10px;
  color: #333;
  border-bottom: 2px solid #333;
  padding-bottom: 5px;
  font-size: 1.4rem;
}

.service-group p {
  color: #666;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.sub-group {
  margin-bottom: 15px;
}

.sub-group h4 {
  font-weight: bold;
  color: #444;
  margin-bottom: 5px;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

li {
  padding: 6px 0;
  color: #555;
  border-bottom: 1px solid #ddd;
  transition: color 0.3s ease;
}

li:hover {
  color: #000;
}

.book-btn {
  margin-top: 15px;
  background-color: #000;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.book-btn i {
  margin-right: 8px;
}

.book-btn:hover {
  background-color: #444;
}

@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
    align-items: center;
  }
}
/* Why Us */
.why {
  background: #fff;
  color: black;
  padding: 60px 20px;
  text-align: center;
}

.why-content {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.why-content img {
  width: 400px;
  border-radius: 10px;
}

.testimonials {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

.testimonial-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
}

.testimonial-track {
  display: flex;
  animation: scrollTestimonials 30s linear infinite;
}

.testimonial {
  background: white;
  flex: 0 0 300px;
  margin: 0 15px;
  padding: 20px;
  border-left: 5px solid #e63946;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border-radius: 8px;
}

@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial {
    flex: 0 0 80%;
    margin: 0 10px;
  }
}
.footer {
  background-color: #696e71;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-logo {
  width: 120px;
  margin-bottom: 10px;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 1.5rem;
  text-decoration: none;
}

.social-icons a:hover {
  color: #e63946;
}
/* Responsive */
@media (max-width: 768px) {
  .navbar nav ul {
    flex-direction: column;
    display: none;
    width: 100%;
    background: #111;
    padding: 10px 0;
  }

  #menu-toggle:checked + .menu-icon + nav ul {
    display: flex;
  }

  .menu-icon {
    display: block;
  }

  .about-content,
  .why-content,
  .cards,
  .testimonial-cards,
  .footer {
    flex-direction: column;
    align-items: center;
  }

  .about-content img,
  .why-content img {
    width: 100%;
    max-width: 400px;
  }
}

.whatsapp-float {



  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 2rem;
   padding: 10px 50px;
  border-radius: 30%;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.map-section {
  padding: 60px 20px;
  background: #f1f1f1;
  text-align: center;
}
.map-container iframe {
  border-radius: 10px;
}

.booking-float-btn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: #e63946;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: background 0.3s;
}

.booking-float-btn:hover {
  background-color: #d62828;
}
html {
  scroll-behavior: smooth;
}

