:root {
  --primary: #4fc3f7;
  --accent: #a9dfbf;
  --cta: #2ecc71;
  --text-dark: #263238;
  --white: #ffffff;
  --btext: #0033cc;
  --wb : #25D366;
  --hover : rgba(0, 123, 255, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-padding-top: 60px; /* adjust based on your header height */
}

body {
  background: radial-gradient(circle at top left, #5dade2, #ffffff, #ffffff);
  color: var(--text-dark);
  scroll-behavior: smooth;
  gap: 60px;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

/* HEADER */
#main-header {
  position: sticky;
  top: 0;
  width: 90%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  border: 2px solid var(--primary);
  box-shadow: 0 0 10px rgba(93, 173, 226, 0.4);
  border-radius: 99px;
  margin: 10px auto;
  z-index: 999;
  transition: all 0.5s ease-in-out;
}

#main-header.scrolled {
  border-radius: 0;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 0px;
}

.nav-container {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 20px;
  vertical-align: middle;
}

.nav-container a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  transition: 0.3s;
  margin: auto;
  transition: transform 0.3s ease;
}

.nav-container a:hover {
  color: var(--btext);
  transform: scale(1.05);

}


/* HERO SECTION */
.hero {
  padding: 30px 20px 0px;
  background-color: #ffffff00;
  margin-bottom: 0%;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 10px auto;
  gap: 40px;
  background-color: transparent;
  margin-bottom: 0%;
}

.hero-text {
  flex: 1;
  color:  var(--accent);
  min-width: 280px;
}

.hero-text h1 {
  font-size: 4rem;
  margin-bottom: 15px;
  color: #333;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #333;
}

.hero-text a {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #333;
  text-decoration: none;
}

.hero-text button {
  background: #007BFF;
  color: var(--white);
  padding: 12px 25px;
  border-radius: 10px;
  border: 2px solid #007BFF;
  width:90%;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hero-text button:hover {
  transform: translateY(-5px);
  background: #ffffff;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.hero-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
  background-color: #ffffff00;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.0);
  background-color: transparent;
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
  }
}

/* SVG CURVE */
.curve {
  height: 80px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%23eaf6fb" fill-opacity="1" d="M0,160L40,176C80,192,160,224,240,218.7C320,213,400,171,480,170.7C560,171,640,213,720,234.7C800,256,880,256,960,224C1040,192,1120,128,1200,117.3C1280,107,1360,149,1400,170.7L1440,192L1440,320L1400,320C1360,320,1280,320,1200,320C1120,320,1040,320,960,320C880,320,800,320,720,320C640,320,560,320,480,320C400,320,320,320,240,320C160,320,80,320,40,320L0,320Z"></path></svg>') no-repeat center;
  background-size: cover;
}

/* SECTION LAYOUT */
section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0px auto;
  border-radius: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.00);
  background-color: transparent;
}

h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 30px;
}

/* CARDS */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  background-color: #007BFF;
  margin: 0px;
  height: 100%;
}

.why {
  width: 100%;
  height: fit-content;
  background-color: #1f8bff;
  padding: 20px;
  margin: 0px;
}
.why-us-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  width: 100%;
}

.why-us-card {
  flex: 1 1 calc(33.33% - 20px);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0);
  text-align: center;
  background: transparent;
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.why-us-card:hover {
  transform: scale(1.05);
}

.why-us-icon {
  height: 60px;
  margin-bottom: 16px;
}

.why-us-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.why-us-description {
  font-size: 0.95rem;
  color: white;
  line-height: 1.5;
}

/* Responsive for tablets and phones */
@media (max-width: 900px) {
  .why-us-card {
    flex: 1 1 45%;
  }
}

@media (max-width: 600px) {
  .why-us-card {
    flex: 1 1 100%;
  }
}


/* FADE ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s ease, transform 1.5s ease;
  width: 100%;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* SWIPER TESTIMONIALS */
.mySwiper {
  width: 90%;
  max-width: 1000px;
  padding: 10px 20px;
  margin: auto;
  background-color: transparent;
}

.mySwiper .swiper-slide {
  background: transparent;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  font-size: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.00);
  height: auto;
  aspect-ratio: fixed;
}

.mySwiper blockquote {
  color: var(--primary);
  margin-bottom: 1px;
}

.mySwiper footer {
  margin-top: 0px;
  font-weight: bold;
  color: var(--primary);
  background-color: #ffffff00;
  font-size: 1rem;
}

.swiper-button-next,
.swiper-button-prev {
  font-size: 5px;
  color: var(--accent);
  width: 20px;
  height: 20px;
}

.swiper-pagination-bullet {
  background: var(--accent);
}

/* WHATSAPP BUTTON */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--wb);
  color: white;
  border-radius: 50px;
  padding: 12px;
  display: flex;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: width 0.3s ease, padding 0.3s ease;
  overflow: hidden;
  white-space: nowrap;
  width: 50px;
  z-index: 1000;
}

.floating-whatsapp img {
  height: 24px;
  width: 24px;
  transition: transform 0.3s ease;
  margin: 0px;
}

.floating-whatsapp span {
  opacity: 0;
  margin-left: 10px;
  font-weight: 600;
  color: white;
  transition: opacity 0.3s ease;
}

.floating-whatsapp:hover {
  width: 180px;
  padding: 12px 20px;
}

.floating-whatsapp:hover span {
  opacity: 1;
}

/* MAP */
.map-container iframe {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  border: none;
}

/* FOOTER */
footer {
  background: var(--accent);
  color: white;
  text-align: center;
  padding: 25px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  margin-top: 50px;
  font-size: 0.7rem;
}

.spotlight-background {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.flipped {
    transform: rotate(180deg);
    margin: 0px;
    width: 100%;
  }

.course-container1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 0px;
  padding-bottom: 0%;
}

.course-card1 {
  display: flex;
  align-items: center;
  background: white;
  padding: 10px;
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  max-width: 400px;
  overflow: hidden;
  width: 45%;
  transition: all 0.3s ease;
}

.course-card1:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 123, 255, 0.2);
}

.course-card1 h3 {
  color: #0056b3;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.course-card1 img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 0px;
}

.course-card1 .text {
  padding: 1.5rem;
  color: var(--text-dark);
}

.course-card1 p {
  margin-top: 0.5rem;
  font-size: 1rem;}

.course-button1 {
  margin-top: 20px;
  background: #007BFF;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease;
}

.course-button1:hover {
  background: #0056b3;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .course-card1{
    flex-direction: column;
    text-align: center;
  }

  .course-card1 {
    width: 100%;
    height: auto;
    border-radius: 2rem 2rem 0 0;
  }

  .course-card1 .text {
    padding: 1rem;
  }
}

.course-container { 
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
  justify-content: center;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
  background-color: transparent;
}

.course-card {
  background: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  width: fit-content;
  flex: 1 1 300px;
  transition: all 0.3s ease;
  justify-self: center;
  margin-bottom: 0%;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 123, 255, 0.2);
}

.course-card h3 {
  color: #0056b3;
  font-size: 1.3rem;
  margin-bottom: 20px;
  justify-self: center;
}

.course-card p {
  justify-self: center;
}

.course-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 0 2rem 2rem 0;
}

.course-button {
  margin-top: 20px;
  background: #007BFF;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease;
}

.course-button:hover {
  background: #0056b3;
  transform: scale(1.05);
}

.course-more {
  display: none;
  margin-top: 10px;
}

.toggle-btn {
  margin-top: 12px;
  background-color: #007BFF;
  color: white;
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-btn:hover {
  background-color: #0056b3;
}

@media (max-width: 900px) {
  .course-card {
    flex: 1 1 calc(50% - 40px); /* 2 cards per row on tablets */
  }
}

@media (max-width: 600px) {
  .course-card {
    flex: 1 1 100%; /* 1 card per row on mobile */
  }
}


/* Hide nav-links and show hamburger on mobile */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-links a {
    margin-left: 0%;
  }

  .nav-links.show {
    display: flex;
  }
}
.map-button {
  display: inline-flex;
  align-items: center;  /* vertical centering */
  gap: 10px;             /* space between icon and text */
  padding: 12px 24px;
  background-color: #3498db;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.map-button:hover {
  background-color: #2e86c1;
  transform: scale(1.05);
}

.map-button img {
  vertical-align: middle;
  height: 24px;
  width: 24px;
}

.contact-section {
  padding: 10px 20px;
  background: transparent;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  vertical-align: top;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: center;
  justify-content: center;
  vertical-align: top;
}

.contact-box {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  border-radius: 30px;
  padding: 40px;
  flex: 1;
  min-width: 280px;
  max-width: 30%;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-box h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 20px 0;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 16px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-btn img {
  height: 20px;
  width: 20px;
}

.call-btn {
  background-color: #007bff;
  transition: all 0.3s ease;
}

.call-btn:hover {
  background-color: #0062cc;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.whatsapp-btn {
  background-color: #25d366;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-numbers {
  margin-top: 20px;
  font-size: 14px;
  color: #333;
}

.map-embed iframe {
  width: 100%;
  height: 350px;
  border-radius: 30px;
  border: none;
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.about-container {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-button {
  margin-top: 20px;
  background: #007BFF;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease;
}

.about-button:hover {
  background: #0056b3;
  transform: scale(1.05);
}
.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.about-text p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  justify-self: left;
}

.about-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  align-self: center;
}

.about-image img:hover {
  transform: scale(1.03);
}

@media (max-width: 600px) {
  .about-image  {
    width: 100%; 
  }
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Why Us Section */
#why-us {
  padding: 0px 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: var(--white);
}

.section-subtitle {
  margin: 0 auto 40px;
  max-width: 900px;
  color: var(--white);
}

.why-us-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  justify-items: center;
  gap: 60px;
}

.why-card {
  background: rgba(255, 255, 255, 0.0);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  max-width: 1000px;
  width: 300px;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.0);
}

.why-card img {
  width: 60px;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--white);
}

.about-section {
  padding: 60px 20px;
  background: transparent;
  text-align: center;
}

.section-title {
  font-size: 28px;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.about-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
}

.about-card {
  flex: 1 1 30%;
  display: flex;
  align-items: center;
  min-width: 250px;
  gap: 15px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.0);
}


.about-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.about-card .text h3 {
  margin: 0;
  font-size: 18px;
  color: var(--text-dark);
}

.about-card .text p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #555;
}

.divider {
  width: 1px;
  background-color: #ccc;
}

.about-photo-section {
  padding: 60px 20px;
  background: transparent;
}

.about-photo-container {
  display: flex;
  align-items:flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.about-photo-container img {
  width: 350px;
  max-width: 100%;
  border-radius: 999px;
  object-fit: cover;
  position: sticky;
  top: 0;
  padding-top: 80px;
}

@media (max-width: 700px) {
  .about-photo-container img  {
    position: relative;
  }
}

.about-text {
  flex: 1;
  min-width: 250px;
}

.about-text h2 {
  font-size: 35px;
  margin-bottom: 16px;
  color: var(--text-dark);
  justify-self: left;
}

.about-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}
/* Wrapper ensures centering and horizontal scroll on small screens */
.slider-wrapper {
  width: 100%;
  overflow-x: auto;
  text-align: center;
  padding: 1rem;
}

/* Main slider container */
.clinic-slider {
  position: relative;
  display: inline-block; /* shrink to fit content */
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Slides layout */
.slides {
  display: flex;
  transition: transform 0.6s ease;
}

/* Individual slide */
.slide {
  flex-shrink: 0;
  width: 100%;
  height: 400px; /* Uniform height */
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

/* Image settings */
.slide img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* Dots */
.dots {
  text-align: center;
  margin-top: 10px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 6px 4px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active,
.dot:hover {
  background-color: #2ecc71;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  color: var(--btext);
  font-size: 24px;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
  transition: color 0.3s;
}

.arrow.prev {
  left: 16px;
}

.arrow.next {
  right: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .slide {
    height: 250px;
  }

  .arrow {
    font-size: 18px;
    padding: 8px;
  }
}


.image-scroll-section {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  min-height: 200vh; /* Ensures the section is scrollable */
}

.sticky-image-wrapper {
  flex: 1;
  position: relative;
}

.sticky-image {
  position: sticky;
  top: 0;
  width: 100%;
  height: auto;
  max-height: 100vh;
  object-fit: cover;
  border-radius: 1rem;
}

.section-content {
  flex: 2;
}

/* --- Card Layout --- */
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.info-card {
  background: white;
  border-radius: 12px;
  padding: 1rem 1rem 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: fit-content;
  position: relative;
}

.info-card:hover {  
  transform: translateY(-8px);
  box-shadow: 0 6px 12px var(--hover)
}

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: start;
  position: relative;
}

.card-icon {
  font-size: 24px;
  margin-right: 0.5rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.card-icon img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 0px;
}

.card-title {
  flex: 1;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  margin-right: 24px; /* spacing to simulate true centering */
}

/* Know More Button in Bottom Right */
.know-more-btn {
  align-self: flex-end;
  margin-top: 0px;
  margin-right: 0;
  background-color: transparent;
  color: var(--btext);
  border: none;
  padding: 8px 14px;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.know-more-btn:hover {
  text-decoration: underline;;
}


/* --- Modal Popup --- */
.popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background-color: white;
  padding: 20px 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  position: relative;
}

.popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.popup-header img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.popup-header h2 {
  font-size: 20px;
  margin: 0;
}

.popup-content p {
  margin: 1rem 0;
}

.book-btn {
  background-color: #2ecc71;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.book-btn:hover {
  background-color: #27ae60;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

/* Modal Base */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

/* Modal Content */
.modal-content {
  background: var(--background, #fff);
  border-radius: 20px;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
}

.modal-content h2 {
  margin-bottom: 15px;
  color: var(--btext);
  text-align: center;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  color: #333;
  cursor: pointer;
}

/* Form Styles */
#whatsappForm input,
#whatsappForm select,
#whatsappForm button {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #ccc;
  outline: none;
}

#whatsappForm button {
  background: var(--primary, #2ecc71);
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
  margin-top: 20px;
}
