*,
*::before,
*::after {
  box-sizing: border-box;
  margin:0;
  padding:0;
}

body{
  overflow-x:hidden;
}

section{
  display:block;
}
.container{
  max-width:1200px;
  margin:auto;
  padding:20px;
}
/* GLOBAL SPACING FIX */
h1,h2,h3,h4,h5,h6{
  margin-top:0;
  margin-bottom:12px;
}

p{
  margin-top:0;
  margin-bottom:12px;
}

section{
  padding:40px 0;
}




.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 25px;
  background: #ffffff;
  position: relative;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: relative;   /* or fixed / sticky if you want */
  z-index: 1000;
  background: #fff;
}
@media (max-width: 768px) {

  .nav-left img {
    height: 70px;
  }

  .navbar {
    padding: 12px 18px;
  }

}
.nav-left img {
  height: 70px;   /* Bigger & clearly visible */
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-menu a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  padding: 12px 10px;
  display: inline-block;
}

.nav-right {
  display: flex;
  gap: 15px;
  align-items: center;
}

.phone {
  color: #007bff;
  font-weight: 600;
}

/* Premium Book Appointment Button */
.appointment {
  display: inline-block;           
  text-align: center;              
  margin: 20px auto;               
  background: linear-gradient(135deg, #00c7c7, #007b7b); /* Modern gradient */
  color: #fff;                     
  font-size: 20px;                 
  font-weight: 700;                
  padding: 18px 40px;              
  border-radius: 50px;             
  border: none;                    
  cursor: pointer;                 
  box-shadow: 0 10px 25px rgba(0,0,0,0.2); 
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
  position: relative;              /* Needed for glowing effect */
  z-index: 1;
}

/* Glowing hover effect */
.appointment::after {
  content: "";
  position: absolute;
  top: -5px; left: -5px; right: -5px; bottom: -5px;
  border-radius: 50px;
  background: linear-gradient(45deg, #00f0ff, #00c7c7, #007b7b, #00f0ff);
  filter: blur(15px);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.appointment:hover {
  transform: scale(1.05);  
  opacity: 1;
}

.appointment:hover::after {
  opacity: 1;   /* Show glow on hover */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .appointment {
    width: 90%;           
    font-size: 18px;      
    padding: 16px 0;      
  }
}

/* Bounce Animation */
@keyframes bounceIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  60% {
    transform: scale(1.15);
    opacity: 1;
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

/* Apply animation on page load */
.appointment {
  animation: bounceIn 0.8s ease forwards; /* 0.8 seconds, smooth */
}


/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  font-weight: 500;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  background: #fff;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 100;
}
.dropdown-menu.show {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Tablet & Mobile */
@media (max-width: 992px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 20px;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-right {
    flex-direction: column;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
  }
}


.health-info {
  width: 100%;
  max-width: 100%;
  padding: 40px 16px;
}
.hi-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  margin: 0 auto;  padding: 14px;
  text-align: center;
  justify-content: center;

}

.hi-card {
  width: 100%;
  max-width: 300px;      /* 🔥 THIS makes cards smaller */
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}


/* Tablet */
@media (min-width: 600px) {
  .hi-card {
    width: calc(50% - 8px);
  }
}
.events{
  display: none;
}

/* Desktop */
@media (min-width: 1024px) {
  .hi-card {
    width: calc(33.333% - 11px);
  }
}
.hi-img img {
  width: 100%;
  height: 160px;         /* 🔥 smaller image */
  object-fit: cover;
  display: block;
}



/* HERO SLIDER */
/* SLIDER */

/* slides container */
.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

/* slide images */
/* SLIDER */
.slider {
  position: relative;
  width: 100%;
  height: 65vh;
  min-height: 300px;
  max-height: 650px;
  overflow: hidden;
}

/* SLIDES WRAPPER */


/* SLIDE IMAGE */
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity .4s ease;
  will-change: opacity;
}

.slide.active {
  opacity: 1;
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
}


.slider img {
  height: 100%;
}


.arrow.left { left: 12px; }
.arrow.right { right: 12px; }

@media (max-width: 768px) {
  .slider {
    height: 42vh;
    min-height: 260px;
  }

  .slide {
    object-fit: cover;
  }
}


body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #e8f7fb;
}

.service-section {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 50px 20px;
    flex-wrap: wrap;
}

.card {
    background: white;
    width: 260px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: left;
    position: relative;
    border-top: 6px solid transparent;
    background-image: linear-gradient(#b4edf2, #ffffff);
}

.card h3 {
    margin-top: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.card p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #333;
}

.icon {
    font-size: 48px;
    margin-top: 10px;
    text-align: right;
}
.about-section {
  display: flex;
  gap: 25px;
  padding: 30px 15px;   /* changed from margin to padding */
  max-width: 1200px;
  margin: 0 auto;
}

.about-image img {

    width: 350px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.about-content {
  width: 100%;
}
@media (max-width: 992px) {
  .about-section {
    flex-direction: column;
    gap: 30px;
  }

  .about-image img {
    max-height: 420px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .about-section {
    margin: 50px auto;
  }

  .about-content p {
    font-size: 14px;
  }

  .about-content ul {
    padding-left: 16px;
  }

  .about-content li {
    font-size: 14px;
  }

  /* Fix large inline heading text */
  .about-content p[style*="font-size: 2em"] {
    font-size: 1.5em !important;
  }

  .about-content p[style*="font-size: 1.5em"] {
    font-size: 1.25em !important;
  }
}

.section-title {
    color: #004f4f;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px;
}

.about-content h1 {
    font-size: 46px;
    color: #111;
    margin: 0 0 20px;
    font-weight: 700;
}

.about-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 18px;
}

.about-content strong {
    font-weight: 700;
}
.testimonial-section {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    font-family: "Segoe UI", sans-serif;
}



.main-title {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 50px;
}

/* Decorative images */
.left-decor,
.right-decor {
    position: absolute;
    width: 80px;
    height: auto;
    opacity: 0.6;
}
.left-decor {
    left: 80px;
    top: 40%;
    transform: translateY(-50%);
}

.right-decor {
    right: 80px;
    bottom: 20%;
    transform: translateY(-30%);
}

/* TESTIMONIAL CARD */
.testimonial-card {
    margin: 0 auto;
    max-width: 1100px;
    background: linear-gradient(90deg, #e4f8f8, #f8ffff);
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    text-align: left;
    position: relative;
    z-index: 10;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.user-name {
    font-size: 22px;
    margin: 0;
    font-weight: 700;
}

.stars {
    color: #fbc02d;
    margin-top: 5px;
    font-size: 18px;
}

.role {
    margin-top: 5px;
    color: #333;
}

.testimonial-text {
    margin-top: 30px;
    font-size: 20px;
}

/* BUTTON */
.all-stories-btn {
    margin-top: 40px;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    background: linear-gradient(90deg, #009b8c, #006f62);
    color: white;
    border: none;
    border-radius: 40px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    transition: 0.2s;
}

.all-stories-btn:hover {
    transform: translateY(-2px);
}

/* -----------------
   RESPONSIVE
-------------------*/

/* Tablet */
@media (max-width: 992px) {
    .main-title {
        font-size: 38px;
    }
    .left-decor,
    .right-decor {
        width: 130px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 25px;
    }
    .user-name {
        font-size: 20px;
    }
    .left-decor,
    .right-decor {
        display: none; /* hide on small mobile for clarity */
    }
    .main-title {
        font-size: 32px;
    }
}


.sub-heading {
    color: #006d66;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

.main-heading {
    font-size: 60px;
    font-weight: 700;
    font-family: "Georgia", serif;  /* similar fancy serif look */
    margin-top: 10px;
    margin-bottom: 0;
}
.doctor-section {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 40px;
}

.doctor-card {
  width: 340px;
  background: linear-gradient(to bottom, #e8f8ff, #d0f0f9);
  border-radius: 20px;
  overflow: hidden;
  padding-bottom: 20px;
  position: relative;
  box-shadow: 0px 6px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.doctor-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.doctor-content {
  padding: 15px;
}

.doctor-content h3 {
  margin: 10px 0;
  font-size: 22px;
  font-weight: 700;
}

.doctor-content p {
  font-size: 15px;
  color: #222;
  line-height: 1.5;
}

.arrow-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #00c4cc;
  border: none;
  color: white;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
}
.facilities {
    text-align: center;
    padding: 40px 20px;
    font-family: "Poppins", sans-serif;
}

.facilities h2 {
    font-size: 42px;
    font-weight: 700;
}

.subtitle {
    max-width: 850px;
    margin: 10px auto 40px;
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

.facility-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* force 4 in one row */
    gap: 25px;
}
@media (max-width: 992px) {
  .facility-container {
    grid-template-columns: repeat(2, 1fr); /* tablet: 2 per row */
  }
}

@media (max-width: 576px) {
  .facility-container {
    grid-template-columns: 1fr; /* mobile: 1 per row */
  }
}

.facility-card {
    background: linear-gradient(to bottom, #e9f6ff, #f7fdfc);
    border-radius: 20px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.facility-card .icon {
    width: 120px;
    display: block;
    margin: 0 auto 20px;
}

.facility-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.facility-card ul {
    padding-left: 20px;
    color: #333;
}

.facility-card ul li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.view-more {
    display: inline-block;
    margin-top: 15px;
    color: #006d8a;
    font-weight: 600;
    text-decoration: none;
}
/* Section */
.treatment-section {
    text-align: center;
    padding: 35px 20px;
}

/* Heading */
.title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}


.treatment-wrapper {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}


.treatment-card {
    width: 380px;
    background: linear-gradient(to right, #e8fdfd, #cff4f4);
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0px 5px 25px rgba(0,0,0,0.12);
}

.treatment-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Details Button */
.details-btn {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-radius: 30px;
    background: linear-gradient(to right, #00c7c7, #007b7b);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.details-btn:hover {
    opacity: 0.85;
}

/* View all button */
.view-btn-box {
    margin-top: 40px;
}

.view-all-btn {
    padding: 16px 35px;
    background: linear-gradient(to right, #00b8b8, #008f8f);
    border: none;
    border-radius: 35px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.view-all-btn:hover {
    opacity: 0.85;
}
/* ================= NEWS SECTION ================= */
.news-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

/* HEADINGS */
.news-section .heading {
  text-align: center;
  margin-bottom: 40px;
}

.news-section .heading p:first-child {
  color: #006d66;
  letter-spacing: 1px;
}

/* NEWS GRID */
.news-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* NEWS CARD */
.news-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.img-box img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* CONTENT */
.news-card .content {
  padding: 22px;
}

.news-card .content p:first-child {
  font-size: 18px !important;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.news-card .content p:last-child {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .news-container {
    grid-template-columns: 1fr;
  }

  .img-box img {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .news-section {
    margin: 60px auto;
  }

  .news-card .content p:first-child {
    font-size: 16px !important;
  }

  .news-card .content p:last-child {
    font-size: 13.5px;
  }
}

@media(max-width: 900px) {
    .heading h1 {
        font-size: 45px;
    }
}

@media(max-width: 600px) {
    .news-container {
        flex-direction: column;
        align-items: center;
    }
}
/* ================= EVENTS SECTION ================= */
.events {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.headings {
  margin-bottom: 30px;
}

/* EVENT CARD */
.event-card {
  display: flex;
  background: #eaf7f6;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  gap: 20px;
}

.event-img img {
  width: 380px;
  height: 100%;
  object-fit: cover;
}

.event-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.event-content p:last-child {
  color: #006d66;
  font-weight: 600;
  cursor: pointer;
}


/* Main Section */
.stats-section {
  padding: 40px 20px;
  text-align: center;
}

/* Stats container */
.stats-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 30px;
  flex-wrap: wrap;
}

/* Individual stat */
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;   /* centers emoji + text horizontally */
  text-align: center;
}

.stat-item .icon {
  font-size: 40px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* Text */
.stat-item p {
  margin: 5px 0;
  color: #333;
}



/* Button */


.feedback-btn:hover {
  background: #1e40af;
  transform: translateY(-2px);
}

/* 📱 Mobile view */
@media (max-width: 600px) {
  .stats-container {
    gap: 20px;
  }

  .stat-item {
    max-width: 100%;
  }

  .feedback-btn {
    width: 100%;
    max-width: 300px;
  }
}


/* Center text */
.tagline {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
}

/* Button */
.feedback-btn {
    background: linear-gradient(to right, #0bbba4, #0c9784);
    padding: 14px 38px;
    border-radius: 40px;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

.feedback-btn:hover {
    transform: scale(1.07);
}
.video-gallery-section {
    text-align: center;
    padding: 40px 20px;
}

.vg-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Gallery layout */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
}

/* Video card */
.video-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #d2f2f4, #f4ffff);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    overflow: hidden;
    height: 200px;
}

/* Text */
.video-text {
    width: 50%;
    font-size: 20px;
    font-weight: 600;
    padding: 0 20px;
    text-align: left;
}

/* Thumbnail */
.video-card img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Button */
.vg-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 40px;
    border-radius: 40px;
    background: linear-gradient(to right, #0bbba4, #0c9784);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.vg-btn:hover {
    transform: scale(1.07);
}

/* Responsive */
@media (max-width: 900px) {
    .video-gallery {
        grid-template-columns: 1fr;
    }
    
    .video-card {
        flex-direction: column;
        height: auto;
        text-align: center;
    }

    .video-text, .video-card img {
        width: 100%;
        padding: 10px 0;
    }
}
.gallery-section {
  padding: 40px 20px;
  background: #f9f9f9;
}

.gallery-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 40px;
  font-weight: 700;
}

/* GRID */
.gallery-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.gallery-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.gallery-card img {
  width: 45%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.gallery-card p {
  font-size: 16px;
  line-height: 1.5;
  color: #222;
}

/* BUTTON */
.gallery-btn {
  text-align: center;
  margin-top: 40px;
}

.gallery-btn button {
  background: #009688;
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-size: 15px;
  border-radius: 30px;
  cursor: pointer;
}

.gallery-btn button:hover {
  background: #00796b;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card {
    flex-direction: column;
    text-align: center;
  }

  .gallery-card img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .gallery-title {
    font-size: 28px;
  }

  .gallery-card p {
    font-size: 14px;
  }
}

.btn-wrapper {
    margin-top: 40px;
}

.view-btn {
    padding: 12px 30px;
    background: linear-gradient(90deg, #00b8b8, #007e7e);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s ease;
}

.view-btn:hover {
    transform: scale(1.05);
}
.locations-section {
    text-align: center;
    padding: 40px 20px;
}

.locations-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
}

.locations-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.location-card {
    width: 330px;
    padding: 25px;
    border-radius: 18px;
    background: linear-gradient(135deg, #e2f7f7, #ffffff);
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.15);
    text-align: left;
    position: relative;
}

.direction-btn {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 25px;
    background: linear-gradient(145deg, #008b85, #00645f);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.location-card h2 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

.location-card p {
    margin: 8px 0;
    font-size: 15px;
    line-height: 1.5;
}

.location-card h3 {
    margin-top: 15px;
    font-size: 17px;
    font-weight: 700;
}

.contact-section {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 50px;
    flex-wrap: wrap;
}

/* LEFT CONTENT */
.left-content {
    flex: 1;
    min-width: 300px;
}

.left-content h1 {
    font-size: 42px;
    font-weight: 700;
}

.left-content p {
    margin: 15px 0;
    font-size: 16px;
    line-height: 1.6;
}

.btn-group {
    margin: 20px 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-group button {
    padding: 12px 30px;
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    background: linear-gradient(145deg, #007d76, #00615b);
    cursor: pointer;
    transition: 0.3s;
}

.btn-group button:hover {
    opacity: 0.8;
}

.left-content h2 {
    font-size: 35px;
    margin-top: 20px;
}

.hours-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.hour-box {
    background: linear-gradient(135deg, #e9f9fb, #ffffff);
    padding: 18px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hour-box h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

/* RIGHT ENQUIRY FORM */
.enquiry-box {
    flex:1;
    padding:35px;
    border-radius:20px;
    background:#ffffff;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
    border:1px solid #eef2f5;
}

.enquiry-box h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

.enquiry-box input,
.enquiry-box select,
.enquiry-box textarea {
    width: 100%;
    padding: 14px 16px;
    margin: 12px 0;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    font-size: 15px;
    background:#f9fbfc;
    transition: all 0.25s ease;
}

/* Premium focus effect */
.enquiry-box input:focus,
.enquiry-box textarea:focus,
.enquiry-box select:focus{
    border-color:#00a8a8;
    background:#ffffff;
    box-shadow:0 0 0 3px rgba(0,168,168,0.15);
    outline:none;
}
.enquiry-box textarea {
    height: 120px;
    resize: none;
}

.attach {
    width: 100%;
    padding: 15px;
    font-weight: bold;
    margin-top: 10px;
    border-radius: 10px;
    border: none;
    background: #ffffff;
    cursor: pointer;
}

.send-btn {
    width:100%;
    padding:16px;
    margin-top:18px;
    border:none;
    border-radius:40px;
    background:linear-gradient(135deg,#00c7c7,#007b7b);
    color:#fff;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
    transition:all 0.3s ease;
    box-shadow:0 6px 18px rgba(0,0,0,0.15);
}

.send-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
}


/* CENTER LEFT-CONTENT (LET'S CONNECT) – MOBILE */
@media (max-width: 768px) {

  .contact-section {
    flex-direction: column;   /* VERY IMPORTANT */
    padding: 20px 15px;
  }

  .left-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

}


.footer-section {
    background: linear-gradient(135deg, #dff7f6, #ffffff);
    padding: 30px;
    border-radius: 15px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
    gap: 40px;
    padding: 20px;
    align-items: flex-start;
}

/* LEFT SECTION */
.footer-left {
    width: 100%;
    text-align: center;
}

.footer-logo {
    width: 130px;
    height: 130px;
    border-radius: 18px;
    margin-bottom: 10px;
}

.rating-badge {
    width: 200px;
    margin-top: 20px;
}

/* USEFUL LINKS */
.footer-links {
    min-width: 200px;
}

.footer-links h2 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-links ul li {
    list-style: none;
    font-size: 18px;
    margin: 8px 0;
    position: relative;
    padding-left: 20px;
}

.footer-links ul li::before {
    position: absolute;
    left: 0;
    top: 0;
    color: teal;
    font-size: 22px;
}

/* UPDATES SECTION */
.footer-updates h2 {
    font-size: 22px;
    font-weight: 700;
}

/* CONTACT SECTION */
.footer-contact h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-contact h3 {
    font-size: 20px;
    margin-top: 15px;
}

.footer-contact p {
    margin-top: 5px;
    font-size: 18px;
    color: #006c3b;
}
.footer-updates  ul li{
    list-style: none;
    font-size: 18px;
    margin: 8px 0;
    position: relative;
    padding-left: 20px;
    text-decoration: none;

}
a{
  color:#0a58ca;
  text-decoration:underline;
  font-weight:500;
}

a:hover{
  text-decoration:none;
}

/* FOOTER BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    font-size: 18px;
    color: #333;
}

/* 📱 RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-links,
    .footer-updates,
    .footer-contact {
        margin-top: 30px;
    }
}

.doctors-section {
  text-align: center;
  padding: 40px 20px;
}

.sub-heading {
  font-size: 20px;
  font-weight: 700;
  color: #0a6b6b; /* Turquoise color */
  letter-spacing: 1px;
  margin: 0;
}

.main-heading {
  font-size: 60px;
  font-weight: 800;
  color: #111;
  font-family: "Georgia", serif;
  margin-top: 10px;
}

@media (max-width: 576px) {

  section {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .about-content p {
    font-size: 15px;
    line-height: 1.6;
  }

  h1 {
    font-size: 28px !important;
  }

  h2 {
    font-size: 22px !important;
  }

}

/* ===== Treatment Section Fix ===== */

.treatment-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.treatment-card {
  width: 300px;
}

@media (max-width: 768px) {
  .treatment-card {
    width: 100%;
  }
}


.hero-heading {
  position: absolute;
  top: 35%;
  left: 8%;
  color: #fff;
  max-width: 600px;
  z-index: 5;
}

.hero-heading h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtext {
  font-size: 20px;
  margin-top: 15px;
}

@media (max-width: 768px) {
  .hero-heading {
    top: 25%;
    left: 5%;
    right: 5%;
  }

  .hero-heading h1 {
    font-size: 24px;
  }

  .hero-subtext {
    font-size: 16px;
  }
}
/* PERFORMANCE IMPROVEMENT */

img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  contain: layout style;
}
/* ACCESSIBILITY FIX - TOUCH TARGET SIZE */

button,
.nav-menu a,
.arrow-btn,
.view-all-btn,
.details-btn,
.feedback-btn,
.vg-btn,
.gallery-btn button,
.direction-btn {
  min-height: 48px;
  min-width: 48px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* KEYBOARD ACCESSIBILITY */

a:focus,
button:focus,
input:focus,
textarea:focus {
  outline:3px solid #1d4ed8;
  outline-offset:3px;
}
/* SEO INTRO SECTION */

.seo-intro {
  padding: 10px 10px;
  text-align: center;
}

.seo-intro .container {
  max-width: 1100px;
  margin: 0 auto;
}

.seo-intro h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}

.seo-intro p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}
/* FAQ SECTION */

.faq-section {
  max-width: 900px;
  margin: 30px auto;
  padding: 0 20px;
  text-align: center;
}

.faq-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.faq-section h3 {
  font-size: 20px;
  margin-top: 25px;
  color: #006d66;
}

.faq-section p {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  max-width: 750px;
  margin: 10px auto;
}
/* ================= Fixed Bottom CTA ================= */
.fixed-cta {
  position: fixed;
  bottom: 20px;          /* distance from bottom */
  left: 50%;             /* center horizontally */
  transform: translateX(-50%);
  background: linear-gradient(135deg, #008b8b, #005e5e); /* premium colorful gradient */
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  text-decoration: none;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: bounceCTA 1.2s infinite; /* bounce effect */
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover effect */
.fixed-cta:hover {
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* Bounce animation */
@keyframes bounceCTA {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .fixed-cta {
    font-size: 18px;
    padding: 14px 30px;
  }
}
.map-title{
font-size:22px;
font-weight:600;
margin-bottom:15px;
display:flex;
align-items:center;
gap:8px;
justify-content:center;
}
/* GLOBAL CONTENT CENTER FIX */

section,
.doctor-author,
.doctor-education,
.doctor-conference,
.doctor-publications,
.why-choose,
.top-services,
.latest-blogs,
.faq-section,
.google-reviews,
.medical-disclaimer,
.reviewed-by {

    max-width:1100px;
    margin-left:auto;
    margin-right:auto;
    padding:40px 20px;
}

ul{
    padding-left:20px;
}

.section-title,
.main-title,
.main-heading,
.sub-heading{
text-align:center;
}

p{
text-align:left;
max-width:900px;
margin-left:auto;
margin-right:auto;
line-height:1.7;
font-size:17px;
}

section ul{
    text-align:left;
    max-width:800px;
    margin:auto;
}
/* FLOATING ANIMATION IMAGES */

.floating-left,
.floating-right{
    position:fixed;
    width:60px;
    z-index:1;
    animation:bounce 3s infinite ease-in-out;
}

.floating-left{
    left:10px;
    top:40%;
}

.floating-right{
    right:10px;
    top:60%;
}

@keyframes bounce{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-20px);}
}

@media(max-width:768px){
.floating-left,
.floating-right{
width:40px;
opacity:0.7;
}
}
.orthopedic-content{
max-width:1200px;
margin:auto;
padding:40px 20px;
text-align:center;
}

.orthopedic-content ul{
max-width:700px;
margin:20px auto;
text-align:left;
}
.why-trust{
  max-width:1100px;
  margin:40px auto;
  padding:0 20px;
  text-align:center;
}