:root {
  --primary: #d90d92;
  --dark: #3f0664;
}

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
}

/* Topbar */
.topbar {
  background: var(--primary);
  color: white;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  flex-wrap: wrap;
}
.topbar i {
  margin: 0 6px;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: white;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 60px;
}
.logo span {
  font-size: 20px;
  font-weight: bold;
  color: var(--dark);
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--dark);
}

.navbar {
  display: flex;
}
.navbar ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--dark);
}
.navbar li a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}
.navbar li a:hover {
  color: var(--primary);
}
.navbar .close-menu {
  display: none;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ddd;
  display: none;
  flex-direction: column;
  min-width: 180px;
  z-index: 100;
}
.submenu li {
  border-bottom: 1px solid #eee;
}
.submenu li:last-child {
  border-bottom: none;
}
.submenu li a {
  padding: 10px 15px;
  display: block;
  color: black;
  text-decoration: none;
}
.submenu li a:hover {
  background: var(--primary);
  color: white;
}
.dropdown:hover .submenu {
  display: flex;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    display: none;
    border-top: 1px solid #ddd;
    z-index: 99;
  }

  .navbar.active {
    display: flex;
  }

  .navbar ul {
    flex-direction: column;
    gap: 10px;
    padding: 20px;
  }

  .navbar .close-menu {
    display: block;
    text-align: right;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
  }

  .dropdown .submenu {
    position: static;
    display: none;
    border: none;
    background: none;
    padding-left: 15px;
  }

  .dropdown.active .submenu {
    display: flex;
  }

  .submenu li a {
    padding: 8px 0;
  }
}

/* DESKTOP: show submenu on hover */
@media (min-width: 769px) {
  .dropdown:hover .submenu {
    display: flex;
  }

  .dropdown .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    flex-direction: column;
    min-width: 180px;
    z-index: 100;
  }
}

/* MOBILE: submenu toggle by class */
@media (max-width: 768px) {
  .dropdown .submenu {
    display: none;
    flex-direction: column;
    padding-left: 15px;
  }

  .dropdown.active .submenu {
    display: flex;
  }
}

/*  */
.about-banner {
  background: url("image/image3.jpg") no-repeat center center/cover;
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-banner .overlay {
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-banner h1 {
  color: white;
  font-size: 42px;
  font-weight: bold;
  margin: 0;
}

/*  */

.booking-highlight {
  padding: 60px 20px;
  background: #fff;
}

.booking-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.booking-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.booking-image img {
  max-width: 100%;
  border-radius: 6px;
}

.booking-content {
  flex: 1;
  min-width: 300px;
}

.booking-content h2 {
  font-size: 32px;
  color: #111;
  margin-bottom: 20px;
}

.booking-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}

.booking-content .read-more {
  background: var(--dark);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}

/*  */
.book-call-section {
  background: url("image/image4.jpg") no-repeat center center/cover;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-call-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-call-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 0 30px;
  color: #fff;
  flex-wrap: wrap;
}

.text-block {
  flex: 2;
  min-width: 280px;
}

.text-block h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.text-block p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.cta-button {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  min-width: 220px;
}

.call-btn {
  background: var(--dark);
  color: #fff;
  padding: 14px 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  border-radius: 4px;
  white-space: nowrap;
}

.call-btn i {
  margin-left: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .book-call-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .cta-button {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .booking-highlight {
    padding: 40px 15px;
  }

  .booking-container {
    flex-direction: column;
    text-align: center;
  }

  .booking-content {
    padding: 0;
  }

  .booking-content h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .booking-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .read-more {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    margin-top: 20px;
  }

  .book-call-section {
    height: auto;
    padding: 40px 15px;
    background-position: center;
  }

  .book-call-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 0 10px;
  }

  .cta-button {
    justify-content: center;
    width: 100%;
  }

  .call-btn {
    width: 100%;
    padding: 12px;
    font-size: 15px;
  }
}

.testimonial-section {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

.sub-heading {
  color: #805000;
  font-weight: bold;
  margin-bottom: 5px;
}

.heading {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: bold;
}

.testimonial-card {
  background: white;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  margin: auto;
  text-align: left;
}

.testimonial-card .stars {
  color: gold;
  font-size: 18px;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.client {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.client span {
  font-weight: bold;
  font-size: 16px;
}

.swiper {
  padding-bottom: 40px;
}
/*  */
.testimonial-section {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.sub-heading {
  color: #805000;
  font-weight: bold;
  margin-bottom: 5px;
}

.heading {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: bold;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonial-wrapper {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 500%; /* for 5 slides */
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 30px 20px;
  box-sizing: border-box;
  background: #fafafa;
  min-height: 250px; /* ✅ Ensures slide has height */
  border-radius: 10px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.stars {
  color: gold;
  font-size: 18px;
  margin-bottom: 10px;
}

.testimonial-slide p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

.client {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.client span {
  font-weight: bold;
  font-size: 16px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .testimonial-slide {
    font-size: 14px;
    text-align: center;
  }

  .client {
    justify-content: center;
  }
}

/* Mobile fix */
@media (max-width: 768px) {
  .testimonial-slider {
    padding: 0 10px;
  }

  .testimonial-slide {
    font-size: 14px;
    text-align: center;
    min-height: 300px; /* ✅ Force some height */
  }

  .client {
    justify-content: center;
  }
}

/*  */
.footer {
  background-color: #3f0664;
  color: #fff;
  padding: 60px 20px 30px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 220px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 15px;
}

.footer-col h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
}

.footer-col p {
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  color: #ccc;
}

.footer-col ul li i {
  margin-right: 10px;
  color: #d90d92;
}

.footer-col a {
  color: #ccc;
  text-decoration: none;
}

.footer-col a:hover {
  color: #d90d92;
}

.social-icons a {
  color: #fff;
  margin-right: 10px;
  font-size: 16px;
}

.social-icons a:hover {
  color: #d90d92;
}

.footer-bottom {
  text-align: center;
  padding: 15px 0 0;
  border-top: 1px solid #663399;
  font-size: 13px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
}

.floating-cta {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.cta-btn {
  width: 50px;
  height: 50px;
  background-color: #25D366; /* WhatsApp green */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 22px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.cta-btn.call {
  background-color: #3f0664; /* dark purple - your brand color */
}

.cta-btn:hover {
  transform: scale(1.1);
}
