* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 1000;

}
.logo img {
  height: 45px;
}
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-menu a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

/* Dropdown */
.dropdown {
  position: relative;
}
.dropdown-toggle {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  cursor: pointer;
}


.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background: #fff;
  padding: 8px 0;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  display: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}

.dropdown-menu a:hover {
  background: #009688;
  color: #fff;
  border-radius: 6px;
}

/* Desktop Hover */
@media (min-width: 993px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }

}
.navbar {
  background-color: #fff;
  box-shadow: 0 0.125rem 0.25rem rgb(0, 0, 0, 0.1); /* 2px 4px */
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 100px;
}

/* Right Section */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone {
  color: #00a884;
  font-weight: 600;
  text-decoration: none;
}

.appointment {
  background: linear-gradient(135deg, #00a884, #00c896);
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
}

/* ================== MOBILE ================== */
@media (max-width: 992px) {
    .dropdown-menu a {
  display: block;
  padding: 10px 18px;
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}

.dropdown-menu a:hover {
  background-color: #009688;
  color: #fff;
  border-radius: 6px;
}
  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
  }

  .hamburger {
    display: block;
    
  }

  .nav-menu {
    position: absolute;
    top: 100%;             
    left: 0;
    width: 100%;
    background: #fff;      
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 15px;
    display: none;
    z-index: 999;        
    border-bottom: 1px solid #eee;
  }

  .nav-menu.active {
    display: flex;
  }

  .dropdown-menu {
    box-shadow: none;
    margin-top: 8px;
  }

  .nav-right {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
  }
}



/* HERO SLIDER */
.slider{
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slides{
    position: relative;
}

.slide{
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: none;
}

.active{
    display: block;
}

.arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    background: rgba(0,0,0,0.4);
    color: white;
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
}

.left{ left: 15px; }
.right{ right: 15px; }


@media(max-width: 500px){
    .slide{
        height: 300px;
    }
}
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: 30px;
  margin: 20px;
}

.about-image img {

    width: 350px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.about-content {
  width: 100%;
}

.section-title {
    color: #00a595;
    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: 60px 20px;
    position: relative;
    font-family: "Segoe UI", sans-serif;
}

.subtitle {
    color: #00b6ac;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.main-title {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 50px;
}

/* Decorative images */
.left-decor,
.right-decor {
    position: absolute;
    width: 180px;
    opacity: 0.9;
}

.left-decor {
    left: 0;
    top: 40%;
    transform: translateY(-50%);
}

.right-decor {
    right: 0;
    bottom: 0;
    transform: translateY(40%);
}

/* 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: #555;
}

.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;
    }
}
.doctor-section {
    text-align: center;
    padding: 50px 20px;
}

.sub-heading {
    color: #14c7c7;      /* Turquoise color */
    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: #444;
  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: 50px 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: #444;
    line-height: 1.6;
}

.facility-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.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: #00b8d9;
    font-weight: 600;
    text-decoration: none;
}
/* Section */
.treatment-section {
    text-align: center;
    padding: 50px 20px;
}

/* Heading */
.title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.subtitle {
    color: #444;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}


.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 {
    padding: 70px 40px;
    text-align: center;
}

.heading h3 {
    color: #22b39c;
    font-size: 22px;
    letter-spacing: 2px;
}

.heading h1 {
    font-size: 60px;
    font-weight: 600;
    margin-top: 10px;
}

.news-container {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.news-card {
    width: 350px;
    background: white;
    border-radius: 25px;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.15);
    overflow: hidden;
    transition: 0.3s;
}

.news-card:hover {
    transform: translateY(-8px);
}

.img-box {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    padding: 25px;
}

.content h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.content p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

@media(max-width: 900px) {
    .heading h1 {
        font-size: 45px;
    }
}

@media(max-width: 600px) {
    .news-container {
        flex-direction: column;
        align-items: center;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #f8f8f8;
}

/* HEADINGS */
.events {
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

.headings h3 {
    color: #22b39c;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.headings h1 {
    font-size: 55px;
    font-weight: 700;
}

/* BACKGROUND CALENDAR ICON */
.calendar-bg {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.calendar-bg img {
    width: 350px;
    opacity: 0.8;
}

/* EVENT CARD */
.event-card {
    width: 650px;
    margin: -100px auto 0; /* brings card upward */
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.event-img img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 15px;
}

/* CONTENT BOX WITH GRADIENT */
.event-content {
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.7),
        rgba(230, 240, 250, 0.9)
    );
    padding: 30px 25px;
    margin-top: -50px;
    border-radius: 20px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.15);
}

.event-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    display: inline-block;
    background-color: #fff;
}

.event-content p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

/* RESPONSIVE */
@media (max-width: 750px) {
    .event-card {
        width: 95%;
    }

    .headings h1 {
        font-size: 40px;
    }

    .calendar-bg img {
        width: 250px;
    }
}
.health-info {
    text-align: center;
    padding: 80px 40px;
}

.sub-title {
    color: #10b39c;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.main-title {
    font-size: 60px;
    font-weight: 700;
    margin-top: 10px;
}

.subtitle {
    margin-top: 10px;
    font-size: 18px;
    color: #555;
}

/* CARDS WRAPPER */
.hi-container {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* CARD */
.hi-card {
    width: 350px;
    background: linear-gradient(to bottom, #edfdfd, #dff5f7);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.12);
}

/* SPECIAL CENTER CARD */
.center-card {
    width: 380px;
    padding: 20px;
}

/* IMAGE */
.hi-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* CONTENT */
.hi-content {
    padding: 25px;
    text-align: left;
}

.hi-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.hi-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: #0ca59b;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .main-title {
        font-size: 45px;
    }
}

@media (max-width: 750px) {
    .hi-container {
        flex-direction: column;
        align-items: center;
    }

    .hi-card {
        width: 90%;
    }
}
.stats-section {
    width: 100%;
    padding: 60px 20px;
    background: linear-gradient(135deg, #e3fafb, #f5ffff);
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);

    /* CENTER the content */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Centered numbers row */
.stats-container {
    display: flex;
    gap: 120px;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.icon {
    font-size: 55px;
    margin-bottom: 12px;
}

.stat-item h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 18px;
    color: #444;
}

/* 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: 60px 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: 60px 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;
}

.phone {
    margin-top: 10px;
    font-weight: 600;
    color: #008b85;
}

/* 📱 RESPONSIVE */
@media(max-width: 900px) {
    .locations-container {
        flex-direction: column;
        align-items: center;
    }
}

.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;
    min-width: 300px;
    padding: 30px;
    border-radius: 18px;
    background: linear-gradient(135deg, #e6fafb, #f8ffff);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.enquiry-box h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

.enquiry-box input,
.enquiry-box select,
.enquiry-box textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 16px;
}

.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: 17px;
    margin-top: 20px;
    border-radius: 30px;
    border: none;
    color: #fff;
    background: linear-gradient(145deg, #007d76, #00615b);
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
}

/* 📱 RESPONSIVE */
@media(max-width: 900px) {
    .contact-section {
        flex-direction: column;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.footer-section {
    background: linear-gradient(135deg, #dff7f6, #ffffff);
    padding: 30px;
    border-radius: 15px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px;
}

/* LEFT SECTION */
.footer-left {
    width: 250px;
    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: #000;
}

/* FOOTER BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    font-size: 18px;
    color: #333;
}

/* 📱 RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .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: #16c2c2; /* Turquoise color */
  letter-spacing: 1px;
  margin: 0;
}

.main-heading {
  font-size: 60px;
  font-weight: 800;
  color: #111;
  font-family: "Georgia", serif;
  margin-top: 10px;
}


