/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #fafafa;
  line-height: 1.6;
  overflow-x: hidden; 
}

/* Top Bar */
.top-bar{display:flex;justify-content:space-between;align-items:center;padding:8px 5%;background:#f36c21;color:#fff;font-size:14px;flex-wrap:wrap}
.top-bar a{color:#fff;text-decoration:none;margin:0 8px;transition:0.3s}
.top-bar a:hover{text-decoration:underline}

/* Header */
.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 5%;
  flex-wrap: wrap;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  z-index: 10;
  transition: 0.3s;
}

.header-main.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.logo {
  display: flex;
  align-items: center;
  flex-grow: 1; 
}

.logo img {
  height: 65px;
  margin-right: 15px;
}

.clinic-text {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  text-align: center;
  flex-grow: 1;
}

.clinic-text small {
  display: block;
  font-size: 14px;
  color: #f36c21;
  margin-top: 4px;
}

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

nav ul li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  padding: 8px 12px;
  border-radius: 6px;
  transition: 0.3s;
  display: block;
}

nav ul li a:hover,
nav ul li a.active {
  background: #f36c21;
  color: #fff;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 26px;
  color: #f36c21;
}

/* --- Dropdown Styles (NEW METHOD) --- */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 10px 0;
  margin-top: 10px; /* Adds a small space */
  min-width: 200px;
  border-radius: 8px;
  z-index: 11;
  
  /* FIX: Hide using opacity and visibility for smooth transitions */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

/* yaha likha hai dropdown ko sahi karne k liye */

/* ✅ Dropdown Desktop Fix */
@media (min-width: 901px) {
  .dropdown-menu {
    left: 0;
    right: auto;       /* right ki jagah auto rakho */
    min-width: 220px;  /* ek fixed width */
    white-space: nowrap; /* ek line me rahe */
  }

  /* Hover par show karna desktop ke liye */
  .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}


/* yaha tak likha hai drowpdown ko sahi karne k liye */

/* FIX: Show the menu on hover */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  padding: 10px 20px;
  border-radius: 0;
}

/* --- Mobile Responsive --- */
@media (max-width: 900px) {
  .logo {
      flex-grow: 0;
  }
  
  nav ul {
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 75px;
    right: 0;
    width: 240px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
    align-items: flex-start;
    gap: 0;
  }

  nav ul.show {
    max-height: 500px;
  }

  .menu-toggle {
    display: block;
  }
  
  /* On mobile, reset dropdown to work with JavaScript */
  .dropdown-menu {
    position: static;
    box-shadow: none;
    min-width: 100%;
    padding: 0;
    padding-left: 20px;
    background: transparent;
    border-radius: 0;
    
    /* Mobile hide/show is handled by JS, so reset styles */
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 0;
    
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
  }

  .dropdown.open .dropdown-menu {
  max-height: 300px;              /* jitna chahiye */
  margin-top: 5px;
  overflow-y: auto;               /* 👈 scroll enable */
  -webkit-overflow-scrolling: touch; /* mobile me smooth scroll */
}

  
  .dropdown-menu li a {
    color: #555;
  }

  /* Disable the desktop hover effect on mobile */
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }
}
/* Hero Carousel */
/* 🔹 Hero Section */
.hero {
  width: 100%;
  /* height: 100vh; */
  overflow: hidden;
  position: relative;
}

/* 🔹 Carousel Wrapper */
.carousel {
  width: 100%;
  height: 100%;
  position: relative;
  /* overflow: hidden; */
}

/* 🔹 Slides */
.slides {
  display: flex;
  /* width: 100%;        ✅ full width */
  height: 100%;
  transition: trasform 0.6s ease-in-out;
}


/* नई और बेहतर CSS */
.slide {
  /* flex: 0 0 100%;   👈 Yeh ensure karega ki har slide 100% width le */
  height: 100vh;
  position: relative;
  overflow: hidden;
  min-width: 100%;
  
}


.slide img {
  width: 100%;
  height: 100%;
  background: cover;
  background-size: cover;
  object-position: top center; /* Ab image ka top hissa dikhega */
}


/* 🔹 Controls */
.carousel-controls {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-controls button {
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 0rem;
  margin: 0 10px;
  padding: 5px 15px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
}

.carousel-controls button:hover {
  background: rgba(0,0,0,0.8);
}

/* 🔹 Dots */
.dots {
  display: flex;
  gap: 8px;
}

.dots span {
  width: 0px;
  height: 0px;
  background: #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dots span.active {
  background: #333;
}

/* 🔹 Responsive */
@media (max-width: 1024px) {
  .slide {
    height: 70vh;
  }
}

@media (max-width: 768px) {
  .slide {
    height: 60vh;
  }

  .carousel-controls button {
    font-size: 1.5rem;
    padding: 4px 12px;
  }
}

@media (max-width: 480px) {
  .slide {
    height: 50vh;
  }

  .carousel-controls button {
    font-size: 1.2rem;
    padding: 3px 10px;
  }

  .dots span {
    width: 1px;
    height: 1px;
  }
}


/* Stats Section */
.stats-section{padding:50px 20px;background:#f9f9f9;text-align:center}
.intro-text h2{font-size:26px;color:#222;margin-bottom:12px}
.intro-text p{font-size:15px;color:#555;margin:5px 0}
.stats-boxes{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px;max-width:1000px;margin:40px auto 0}
.stat-box{background:#fff;padding:30px 20px;border-radius:12px;box-shadow:0 4px 12px rgba(0,0,0,0.1);transition:0.3s}
.stat-box:hover{transform:translateY(-5px);box-shadow:0 6px 15px rgba(0,0,0,0.18)}
.stat-box h3{font-size:28px;font-weight:bold;color:#0077cc;margin-bottom:10px}
.stat-box p{font-size:14px;color:#444}



/* Gallery */
/* Main section wrapper */
.our-services-section {
  padding: 0px 20px;
  background-color: #f9fafb; /* Optional: light background color */
  
}

/* Heading styling */
.gallery-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1f3e72;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

/* Decorative line under the heading */
.gallery-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #458ff6;
  border-radius: 2px;
}

/* Gallery grid styling (Your provided code) */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto; /* Centering the grid container */
}

/* Gallery item styling (Your provided code) */
.gallery-item {
  text-align: center;
  
}

.gallery-item h3 {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

.img-box {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.img-box img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.5s ease; /* Smoother transition */
}

.img-box:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease; /* Smoother transition */
  text-align: center;
  border-radius: 15px;
}

.overlay p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0; /* Removing default paragraph margin */
}

.img-box:hover .overlay {
  opacity: 1;
}

/*  OUR CLINIC S SECTION */


.clinics-section{
  display:flex;
  flex-wrap:wrap;
  gap:30px;
  padding:50px 5%;
  background:linear-gradient(135deg,#ff9966,#ff5e62);
  color:#fff;
}

/* Clinics */
.clinics{flex:1 1 55%}
.clinics h2{margin-bottom:20px;font-size:28px}
.clinic-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:20px}
.clinic-card{background:rgba(255,255,255,0.1);padding:15px;border-radius:12px;transition:0.3s}
.clinic-card:hover{background:rgba(255,255,255,0.2);transform:translateY(-5px)}
.clinic-card img{width:100%;height:160px;object-fit:cover;border-radius:10px;margin-bottom:10px}
.clinic-card h3{font-size:18px;margin-bottom:6px;color:#fff}
.clinic-card p{font-size:14px;line-height:1.4;color:#f2f2f2}

/* Appointment Form */
.appointment-form{flex:1 1 35%;background:#fff;color:#333;padding:25px;border-radius:12px;box-shadow:0 5px 15px rgba(0,0,0,0.2)}
.appointment-form h2{color:#f36c21;margin-bottom:5px}
.sub-text{font-size:16px;color:#444;margin-bottom:15px}
#whatsappForm input,#whatsappForm select{width:100%;padding:12px;margin-bottom:12px;border:1px solid #ccc;border-radius:8px;font-size:14px}
#whatsappForm .btn-submit{width:100%;padding:14px;background:#f36c21;color:#fff;font-weight:600;border:none;border-radius:8px;font-size:16px;cursor:pointer;transition:0.3s}
#whatsappForm .btn-submit:hover{background:#d45610}
.confidential-text{display:block;margin-top:10px;font-size:13px;color:#666}

/*  OUR CLINIC S SECTION */

/* our team css */


.our-team {
  text-align: center;
  padding: 50px 20px;
  background: #f9f9f9;
  
}

.our-team h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
  position: relative;
  display: inline-block;
}

.our-team h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #007bff;
  display: block;
  margin: 8px auto 0;
  border-radius: 3px;
}

.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;  /* gap kam kar diya */
  justify-items: center;
}

.team-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  max-width: 280px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 22px rgba(0,0,0,0.15);
}

.team-card img {
  width: 100%;
  height: 220px; /* double size images k liye  */
  border-radius: 8px; /* ab image in box  */
  object-fit: cover;
  margin-bottom: 15px;
}

.team-card h3 {
  font-size: 1.2rem;
  margin: 8px 0 5px;
  color: #222;
}

.team-card p {
  font-size: 0.95rem;
  color: #555;
}


/* our team css */
/* enquiry section */

.inquiry-section {
  height: 4in; /* 4 inch height */
  width: 100%;
  background: aqua;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.inquiry-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.animated-text {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 20px;
  animation: fadeZoom 2s infinite alternate;
}

/* Animation for text */
@keyframes fadeZoom {
  0% {
    opacity: 0.5;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.inquiry-btn {
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: #007bff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.inquiry-btn:hover {
  background: #0056b3;
  transform: scale(1.05);
}


/* enquiry section */
/* what we do section */
.features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px;
  padding: 30px;
  margin-top: 50px;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  max-width: 600px;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

.feature-box img {
  width: 200px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.feature-box:hover img {
  transform: scale(1.05);
}

.feature-text h2 {
  font-size: 22px;
  margin-bottom: 10px;
  border-bottom: 2px solid #a00;
  display: inline-block;
  padding-bottom: 5px;
}

.feature-text ul {
  list-style-type: disc;
  padding-left: 20px;
}

.feature-text li {
  margin: 8px 0;
  font-size: 16px;
}
/* yaha tak what we do section hai  */

/* yaha se artices ka section */



/* Section */
.articles {
  max-width: 1200px;
  margin: auto;
  margin-top: 50px;
}

.page-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
}

/* Container */
.container {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect on full container */
.container:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Video Section */
.video {
  flex: 2;                /* video ko double space milega (2/3) */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;       /* extra part clipped if scale kare */
  transition: transform 0.3s ease;
}

/* video element sizing */
.video video {
  width: 80%;
  height: 100%;
  max-height: 500px;      /* optional cap — change as needed */
  aspect-ratio: 14 / 8;   /* maintain 16:9 ratio */
  object-fit: cover;      /* cover the area without distortion */
  border-radius: 8px;
  transition: transform 0.35s ease;
}

.video:hover {
  transform: scale(1.03);
}

/* Text Section */
.text {
  flex: 1;  /* text ko normal space milega */
}

.text h2 {
  margin: 0 0 15px;
  transition: color 0.3s ease;
}

.text h2:hover {
  color: #007bff;
}

.text p {
  margin: 0 0 20px;
  line-height: 1.6;
  color: #444;
}

/* Button Styling */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.3s ease;
  
  
}
.text .btn {
  margin-left: 200px;  /* jitna px chahiye utna increase/decrease karein */
}


.btn:hover {
  background: #0056b3;
  transform: scale(1.05);
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .video, .text {
    flex: unset;
    width: 100%;
  }
}

/* yaha se artices ka section */

/* WhatsApp and Phone icons */
/* Fixed Buttons Container */
.fixed-buttons {
  position: fixed;
  bottom: 20px;     /* distance from bottom */
  right: 20px;      /* distance from right */
  
  flex-direction: column;
  flex-wrap: wrap;
  gap: 12px;        /* space between icons */
  z-index: 9999;    /* always on top */
  margin-bottom: 0px;

}

/* Button styles */
.fixed-buttons a {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: #25D366; /* default green for WhatsApp */
  border-radius: 50%;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
  
}

.fixed-buttons a img {
  width: 28px;
  height: 28px;
  border-radius: 50%;

}

/* Phone button custom color */
.fixed-buttons .phone-btn {
  background: #007bff; /* blue for phone */
}

/* Hover effect */
.fixed-buttons a:hover {
  transform: scale(1.1);
}

/* ✅ Responsive for smaller screens */
@media (max-width: 768px) {
  .fixed-buttons {
    bottom: 15px;
    right: 15px;
    flex-direction: row;   /* side by side on mobile */
    gap: 15px;
  }

  .fixed-buttons a {
    width: 50px;
    height: 50px;
  }

  .fixed-buttons a img {
    width: 24px;
    height: 24px;
  }
}

/* yaha se customer review ka section  */


.testimonial-section {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  
}

.testimonial-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
  position: relative;
  display: inline-block;
}

.testimonial-slider {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}
.testimonial-box {
  background: #f1f1f1;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  padding: 40px;
  margin: 15px;
  flex: 0 0 48%;             /* 2 box ek sath laptop/desktop */
  transition: background 0.3s ease, transform 0.3s ease;
  min-height: 320px;
  box-sizing: border-box;
}

.testimonial-box:hover {
  background: #e3f2fd;
  transform: translateY(-8px);
}

.testimonial-box p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 25px;
  text-align: left;
  line-height: 1.7;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 18px;
}

.user-info img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #28a745;
}

.user-info h4 {
  margin: 0;
  font-size: 1.3rem;
  color: #222;
}

.user-info span {
  font-size: 1rem;
  color: #666;
}

/* ✅ Responsive Fix */
@media (max-width: 992px) {
  .testimonial-box {
    flex: 0 0 100%;   /* Tablet/Mobile me ek hi box ek row me */
    min-height: auto;
    padding: 25px;
  }

  .testimonial-box p {
    font-size: 1.1rem;
  }

  .user-info img {
    width: 65px;
    height: 65px;
  }

  .user-info h4 {
    font-size: 1.1rem;
  }
}


/* yaha tak customer revire ka section */

/* yaha se clinic ka address ka section with pic */


/* --- मुख्य सेक्शन (बैकग्राउंड इमेज वाला) --- */

/* Section with Background Image */
.clinic-locations-section {
    /* !! REPLACE WITH YOUR IMAGE URL !! */
    background-image: url('images/footer picture.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates a nice parallax effect */
    padding: 80px 20px;
    min-height: 100vh;
    box-sizing: border-box;
}

.section-title {
    text-align: center;
    margin-bottom: 200px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
    
}

/* Container for the boxes */
.locations-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px; /* Space between boxes */
    color: white;
}

/* Styling for each location box */
.location-box {
    /* Frosted Glass Effect */
    background: rgba(0, 0, 0, 0.25); /* Semi-transparent background */
    backdrop-filter: blur(10px); /* This creates the blur effect */
    -webkit-backdrop-filter: blur(10px); /* For Safari */
    
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    padding: 30px;
    width: 280px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-box:hover {
    transform: translateY(-10px); /* Lifts the box on hover */
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
}

.location-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.location-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.4rem;
}

.location-box p {
    margin: 5px 0;
    font-weight: 600;
    line-height: 2.8;
    font-size:15px;
}

.location-box .contact {
    font-weight: 600;
    margin-top: 5px;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .clinic-locations-section {
        padding: 40px 15px;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}


/* ab yaha se footer  ka start */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

.site-footer {
  width: 100%;
  background: #f8f9fa;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.footer-container {
  width: 100%;
  padding: 20px 40px;
  box-sizing: border-box;
}

/* Top Section */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.footer-logo img {
  width: 190px;   /* logo thoda bada */
  height: auto;
}

.diseases {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.diseases-title {
  font-weight: 600;
  margin-right: 15px;
  font-size: 18px;   /* bigger */
}

.diseases-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.diseases-list a {
  color: #555;
  font-size: 16px;   /* bigger */
  transition: color 0.3s;
}

.diseases-list a:hover {
  color: #f96816;
}

/* Middle Section */
.footer-middle {
  text-align: center;
  padding: 18px 0;
  border-bottom: 1px solid #ddd;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
 
}

.footer-nav a {
  color: #444;
  font-size: 17px;   /* bigger */
  font-weight: 500;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #f96816;
}

/* Social & Copyright */
.footer-dark {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding: 22px 0;
}

.social-media a img {
  width: 40px;
  height: 40px;
  margin: 0 10px;
  border-radius: 50%;
  transition: transform 0.3s;
}

.social-media a:hover img {
  transform: scale(1.1);
}

.copyright-info {
  font-size: 15px;   /* bigger */
  text-align: right;
}

.copyright-info p {
  margin: 6px 0;
  font-size: 16px;   /* bigger */
}

.developer a {
  color: #007bff;
  font-weight: 600;
  font-size: 16px;   /* bigger */
}

.developer a:hover {
  text-decoration: underline;
}

/* Bottom Bar */
.footer-bottom {
  background: #f96816;
  text-align: center;
  padding: 14px 0;
}

.phone-number {
  color: #fff;
  font-size: 20px;   /* bigger */
  font-weight: bold;
}

.phone-number i {
  margin-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  .diseases {
    margin-top: 10px;
    justify-content: center;
  }
  .footer-dark {
    flex-direction: column;
    text-align: center;
  }
  .copyright-info {
    text-align: center;
    margin-top: 12px;
  }
}


/* yaha tak footer  */

/* yaha se about us ka section */
/* All styles are wrapped in .health-priority-container to avoid conflicts */
.health-priority-container {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    padding: 60px 20px;
    overflow: hidden; /* Contains decorative elements */
    color: #333;
    min-height: 100vh; /* Ensure it takes full viewport height for demo */
    display: flex; /* Centering content vertically */
    align-items: center; /* Centering content vertically */
    justify-content: center; /* Centering content horizontally */
    
}

.health-priority-container .hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    width: 100%; /* Ensure content takes available width */
}

/* Left side text content */
.health-priority-container .hero-text {
    flex: 1;
    max-width: 520px;
    z-index: 5; /* Keep text above background elements */
}

.health-priority-container .hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1f3e72; /* Dark blue heading */
    line-height: 1.25;
    margin-bottom: 20px;
}

.health-priority-container .hero-text p {
    font-size: 16px;
    color: #7d7987; /* Light grey paragraph */
    line-height: 1.6;
    margin-bottom:35px;
}

.health-priority-container .hero-button {
    display: inline-block;
    background-color: #458ff6; /* Bright blue button */
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 50px; /* Fully rounded button */
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 8px 15px rgba(69, 143, 246, 0.3);
}

.health-priority-container .hero-button:hover {
    background-color: #3a7bd5;
    transform: translateY(-3px);
}

/* Right side image area */
.health-priority-container .hero-image-area {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px; /* Minimum height for the image area */
}


.health-priority-container .doctor-image {
    position: relative;
    z-index: 3;
    max-width: 600px; /* Control image size */
    height: auto;
    /* Removed drop-shadow to avoid conflict if image itself has shadows or to simplify transparent bg */
    /* If you still want a shadow, apply it carefully or directly to the image if it's not interfering */
}

/* Floating Decorative Icons */
.health-priority-container .icon {
    position: absolute;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    z-index: 4;
}



.health-priority-container .icon-bag svg {
    width: 30px;
    height: 30px;
}


.health-priority-container .confetti {
    position: absolute;
    z-index: 2;
    width: 15px;
    height: 15px;
    border-radius: 4px;
}



/* Responsive Design for smaller screens */
@media (max-width: 992px) {
    .health-priority-container .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 0 20px; /* Add horizontal padding for smaller screens */
    }
    .health-priority-container .hero-text {
        max-width: 100%; /* Allow text to take full width */
    }
    .health-priority-container .hero-image-area {
        margin-top: 10px;
        min-height: 350px; /* Adjust height for smaller screens */
        width: 100%;
    }
    .health-priority-container .doctor-image {
        max-width: 80%; /* Adjust doctor image size for smaller screens */
    }
    .health-priority-container .hero-text h1 {
        font-size: 38px;
    }
    .health-priority-container .icon-bag {
        top: 5%;
        left: 5%;
    }
    .health-priority-container .icon-pill {
        bottom: 10%;
        left: 5%;
    }
    .health-priority-container .confetti-1 {
        top: 8%;
        right: 8%;
    }
    .health-priority-container .confetti-2 {
        top: 15%;
        right: 5%;
    }
}

/* yaha se media doctor imag k liye  */
@media (max-width: 992px) {
    /* ... (other styles) ... */
    .health-priority-container .doctor-image {
        max-width: 100%; /* Adjust doctor image size for smaller screens */
        height: auto;
        display: block; /* Ensure it behaves as a block element */
    }
    /* ... (other styles) ... */
}

/*  yaha tak media quesy doctor image k liye */