* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
}

/* Header container */
header {
  background-color: purple;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  padding: 20px 0;
}

/* Flex container */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Logo section */
.logodiv {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  border-radius: 50%;
  width: 120px;
}

/* Clinic title - hidden on desktop */
.clinic {
  display: none;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Desktop navbar */
.navbar {
  display: flex;
  gap: 10px;
}

.navbar a {
  font-weight: bold;
  font-size: 17px;
  color: white;
  text-decoration: none;
  padding: 5px 10px;
}

.navbar a.active,
.navbar a:hover {
  color: #00ff00;
  border-bottom: 2px solid #00ff00;
}

/* Call Button */
.call-btn {
  background-color: green;
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.2s ease;
}

.call-btn:hover,
.call-btn:active {
  background-color: black;
  color: white;
}

/* Hamburger menu icon group */
.barbtn {
  display: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
}

.barbtn i {
  display: none;
  font-size: 24px;
}

/* Mobile Nav */
.navdiv {
  position: absolute;
  top: 50px;
  right: 10px;
  width: 120px;
  background-color: green;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  display: none;
  z-index: 999;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.navdiv.active {
  display: block;
}


.navbar2 {
  display: flex;
  flex-direction: column;
  padding: 10px 10px 10px 10px;
}

.navbar2 a {
  margin: 10px 0;
  font-size: 1.1rem;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.navbar2 a:hover {
  text-decoration: underline;
}

@media (max-width: 480px){
  .logo{
    width: 90px;
  }
  .logodiv{
    padding-right: 10px;
  }
}
/* Responsive styles */
@media (max-width: 768px) {
  .navbar {
    display: none;
  }

  .call-now {
    display: none;
  }

  .clinic {
    display: block;
    font-size: 22px;
  }

  .barbtn {
    display: block;
    font-size: 22px;
  }

  .barbtn.show-menu .fa-bars {
    display: none;
  }

  .barbtn.show-close .fa-xmark {
    display: inline;
  }

  .barbtn.default .fa-bars {
    display: inline;
  }

  .navdiv.active {
    display: block;
  }
}

.spacer {
  height: 130px; /* same as the fixed header height */
}

.hero {
  background-image: url("./images/hero.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover; /* or use contain in small devices */
  min-height:100vh; /*new*/
  padding-top: 200px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}


.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 20px;
  max-width: 1100px;
  text-align: center;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.8rem;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-button {
  background-color: #1a8d1a;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.hero-button:hover {
  background-color: #007bff;
  color: white;
}

@media (max-width: 768px) {
  .hero-content {
    margin-top: 100px;
    padding: 10px;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .hero-button {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    align-items: baseline;
    min-height: auto;
    padding-top: 200px;
    padding-bottom: 40px;
  }

  .hero-content {
    margin-top: -120px;
  }

  .hero h1 {
    font-size: 1.4rem;
  }

  .hero p {
    display: none;
    /* font-size: 0.9rem; */
  }

  .hero-button {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}



/* Default Styles (Desktop) */
.about-page {
  padding: 100px 20px 50px 20px;
  background-color: #fff;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.about-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
}

.about-video {
  flex: 1;
  min-width: 300px;
}

.about-video iframe {
  width: 100%;
  height: 315px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Tablet Styles */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text h1 {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .about-video iframe {
    width: 100vw;
    max-width: 720px;
    height: 400px;
  }
}

/* Mobile Styles */
@media (max-width: 480px) {
  .about-page {
    padding: 80px 15px 40px 15px;
  }

  .about-text h1 {
    font-size: 1.5rem;
  }

  .about-text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .about-video iframe {
    width: 100%;
    height: 230px;
  }
}

/* Default Styles (Desktop) */
.services-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 20px 50px;
  text-align: center;
  background-color: #fff;
}

.services-section h1 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-family: Georgia, serif;
}

.card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1300px;
  gap: 30px;
  padding: 0 20px;
}

.service-card {
  width: 100%;
  max-width: 360px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.service-card h3 {
  font-size: 1.2rem;
  color: purple;
  margin: 15px 0;
  padding: 0 10px;
}

.service-card p {
  padding: 0 15px;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.center-readmore,
.center-discovermore {
  text-align: center;
  margin-top: 40px;
}

.readmore-button,
.discovermore-button {
  background-color: green;
  color: white;
  padding: 14px 30px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.readmore-button:hover,
.discovermore-button:hover {
  background-color: #007bff;
  cursor: pointer;
}

.gallery-container .service-card {
  width: 320px;
  background-color: transparent;
  box-shadow: none;
  border-radius: 10px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.gallery-container .service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.85);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}

.close:hover,
.close:focus {
  color: #f1f1f1;
  text-decoration: none;
}



/* Tablet Screens */
@media (max-width: 992px) {
  .card-container {
    gap: 20px;
  }

  .services-section h1 {
    font-size: 2rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.95rem;
  }
}

/* Mobile Screens */
@media (max-width: 600px) {
  .services-section {
    padding: 80px 15px 40px;
  }

  .services-section h1 {
    font-size: 1.6rem;
  }

  .card-container {
    flex-direction: column;
    gap: 20px;
  }

  .service-card {
    max-width: 100%;
  }

  .readmore-button,
  .discovermore-button {
    padding: 12px 20px;
    font-size: 15px;
  }
}


.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: #f6f6f9;
  padding: 80px 20px;
  gap: 40px;
}

.contact-left, .contact-right {
  flex: 1;
  min-width: 280px;
}

.contact-left {
  padding-right: 30px;
}

.contact-left h1 {
  font-size: 2.2rem;
  font-family: Georgia, serif;
  line-height: 1.4;
}

.contact-left p {
  font-size: 1rem;
  margin: 20px 0;
  color: #444;
  line-height: 1.6;
}

.contact-btn {
  display: inline-block;
  background-color: green;
  color: white;
  padding: 12px 30px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
}

.contact-btn:hover {
  background-color: blue;
}

.contact-right {
  text-align: center;
}

.contact-right img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ✅ Responsive for tablets and phones */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 15px;
  }

  .contact-left {
    padding-right: 0;
  }

  .contact-left h1 {
    font-size: 1.8rem;
  }

  .contact-btn {
    padding: 10px 25px;
    font-size: 1rem;
  }

  .contact-right img {
    max-width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .contact-left h1 {
    font-size: 1.5rem;
  }

  .contact-left p {
    font-size: 0.95rem;
  }

  .contact-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}


.reviews-section {
  padding: 80px 20px;
  background-color: #fdfdfd;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  margin-top: 100px;
}

.reviews-section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-family: Georgia, serif;
  line-height: 1.3;
}

.reviews-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.review-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 25px;
  width: 100%;
  max-width: 370px;
}

.review-card:hover {
  transform: translateY(-5px);
}

.stars {
  font-size: 20px;
  color: #FFD700; /* Gold stars */
  margin-bottom: 10px;
}

.review-text {
  font-size: 15px;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.5;
}

.review-author {
  font-weight: bold;
  color: #555;
  font-size: 14px;
}

/* ✅ Tablet Devices (768px and below) */
@media (max-width: 768px) {
  .reviews-section {
    padding: 60px 15px;
  }

  .reviews-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .review-card {
    padding: 20px;
  }
}

/* ✅ Mobile Devices (480px and below) */
@media (max-width: 480px) {
  .reviews-section h2 {
    font-size: 1.7rem;
  }

  .review-text {
    font-size: 14px;
  }

  .review-author {
    font-size: 13px;
  }
}

.site-footer {
  background-color: #222;
  color: white;
  padding: 50px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  flex: 1 1 250px;
  min-width: 250px;
}

.footer-logo img {
  border-radius: 50%;
  width: 120px;
  margin: -25px 0 10px 0;
}

.footer-logo p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
  max-width: 400px;
}

.footer-links,
.footer-contact,
.footer-address {
  flex: 1 1 180px;
  min-width: 180px;
}

.footer-links h3,
.footer-contact h3,
.footer-address h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-family: Georgia, serif;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  font-weight: 400;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

.footer-contact p,
.footer-address p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
}

.call-btn {
  display: inline-block;
  background-color: green;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin: 30px auto 0;
  display: block;
  text-align: center;
  max-width: 300px;
  transition: background-color 0.3s ease;
}

.call-btn:hover {
  background-color: #007bff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #444;
  font-size: 0.9rem;
  color: #aaa;
}

/* Responsive: Mobile-first approach */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo,
  .footer-links,
  .footer-contact,
  .footer-address {
    width: 100%;
    max-width: 100%;
  }

  .footer-logo p {
    max-width: 100%;
  }
}



/* form */
.plan-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.plan-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.plan-form .form-group {
  margin-bottom: 1.5rem;
}

.plan-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.plan-form input,
.plan-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
}

.plan-form textarea {
  resize: vertical;
  min-height: 100px;
}

.plan-form button {
  background-color: green;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.plan-form button:hover {
  background-color: #084298;
}



.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column; /* Stack vertically for better UX on mobile */
  gap: 15px;
  z-index: 9999;
}

.floating-buttons a {
  width: 55px;
  height: 55px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.floating-buttons a:hover {
  transform: scale(1.1);
}

.floating-buttons .phone-btn {
  background-color: #1abc9c;
}

.floating-buttons .whatsapp-btn {
  background-color: #25D366;
}

/* Responsive adjustments for small devices */
@media (max-width: 600px) {
  .floating-buttons a {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .floating-buttons {
    bottom: 15px;
    right: 15px;
    gap: 12px;
  }
}
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column; /* Stack vertically for better UX on mobile */
  gap: 15px;
  z-index: 9999;
}

.floating-buttons a {
  width: 55px;
  height: 55px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.floating-buttons a:hover {
  transform: scale(1.1);
}

.floating-buttons .phone-btn {
  background-color: #1abc9c;
}

.floating-buttons .whatsapp-btn {
  background-color: #25D366;
}

/* Responsive adjustments for small devices */
@media (max-width: 600px) {
  .floating-buttons a {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .floating-buttons {
    bottom: 15px;
    right: 15px;
    gap: 12px;
  }
}

.map{
  width: 100%;
}

