/* -------------------------
   GLOBAL
------------------------- */
html
{
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #2b2b2b;
  background: #fff;
}

.container {
  max-width: 1320px;
  margin: auto;
  padding: 0 20px;
}

.btn-100w {
  width: 110px;
}
 
.btn-150w {
  width: 160px;
}

.btn-200w {
  width: 210px;
}

.btn-readmore {
  display: inline-block;
  padding: 10px 22px;
  background: linear-gradient(90deg,#1565c0,#1e88e5);
  color: #fff;
  border-radius: 5px;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(30,136,229,0.35);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.btn-primary,.btn-secondary{ transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;}
.btn-readmore:hover,.btn-primary:hover,.btn-secondary:hover {  opacity: 0.8;} 

/* -------------------------
   TOP INFO BAR
------------------------- */
.top-bar {
  background: linear-gradient(90deg, #0d47a1, #1e88e5);
  color: #fff;
  font-size: 16px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 42px;
}

.top-left span {
  margin-right: 20px;
  opacity: 0.95;
}
.top-left .tel-icon {
    filter: invert(42%) sepia(93%) saturate(1352%) hue-rotate(87deg) brightness(119%) contrast(119%);
} 

.top-right a {
  color: #fff;
  text-decoration: none;
  margin-left: 12px;
  font-weight: 500;
}

.btn-appointment {
  background: #7cb342;
  padding: 6px 14px;
  border-radius: 4px;
  margin-left: 15px;
}

/* -------------------------
   HEADER
------------------------- */
.site-header {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #1565c0;
}

.menu-header {
  width: 100%;
  padding: 0 24px 20px;
  display: none;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.menu-title {
  font-size: 18px;
  font-weight: 600;
  padding-left: 20px;
}

.menu-close {
  font-size: 34px;
  cursor: pointer;
  line-height: 1;
   padding-right: 20px;
}

.main-menu a {
  margin: 0 12px;
  text-decoration: none;
  color: #444;
  font-weight: 600;
  padding-bottom: 4px;
  transition: border-color 1.3s ease, text-shadow 1.3s ease;
}

.main-menu a:hover,.main-menu a.active {
  color: #1565c0; 
  transition: border-color 1.3s ease, text-shadow 1.3s ease;
  border-bottom: 3px solid #1565c0; 
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #1565c0;
  margin: 4px 0;
  transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* -------------------------
   HERO SECTION
------------------------- */
.hero {
  background: linear-gradient(67deg, #fdfdfd 5%, #f4f7fd 80%);
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 9px 00px inset;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  min-height: 390px;
}

.hero-text h1 {
  font-size: 44px;
  line-height: 1.2;
  color: #0d47a1;
  margin-bottom: 15px;
}
.hero-text h1 span{color: #504c4c;}
.hero-text p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.hero-buttons a {
  display: inline-block;
  margin-right: 15px;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(90deg,#1565c0,#1e88e5);
  color: #fff;
  box-shadow: 0 6px 14px rgba(30,136,229,0.35);
}

.btn-secondary {
  background: #7cb342;
  color: #fff;
}

/* -------------------------
   HERO IMAGE
------------------------- */
.hero-image img {
  width: 100%;
  max-width: 580px;
  float: right;  
}

/* -------------------------
   ICON STRIP
------------------------- */
.hero-icons { 
  background: #fff;
  box-shadow: 0 0px 0px rgba(13, 71, 161, 0.15);
}

.icon-grid { 
  margin: auto; 
  display: flex;
  align-items: center;
  justify-content: space-between; 
  padding: 10px 10px; 
  box-shadow: 0 0px 0px rgba(13, 71, 161, 0.15);
}
.icon-line{
  padding: 6px 0px;
  white-space: nowrap;
  border-right: 2px solid rgba(13, 71, 161, 0.15);
  height: 28px;
} 
.icon-item {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 14px;
  font-weight: 600;
  color: #0d47a1;

  padding: 6px 14px;
  white-space: nowrap;
}

.icon-item::before {
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 10%;

  background: #0d47a1;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
}

.icon-item.beds::before {
  background-image: url("../images/icon-bed.svg");
}

.icon-item.icu::before {
  background-image: url("../images/icon-icu.svg");
}

.icon-item.diagnostics::before {
  background-image: url("../images/icon-diagnostics.svg");
}

.icon-item.specialists::before {
  background-image: url("../images/icon-doctor.svg");
}

.icon-item.affordable::before {
  background-image: url("../images/icon-care.svg");
}
 
/* -------------------------
   ABOUT SECTION
------------------------- */
.about-section {
  background: #fcfcfd;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 10px 24px 00px inset;
  padding: 70px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 50px;
  align-items: center;
}

.about-text h2 {
  font-size: 30px;
  color: #0d47a1;
  margin-bottom: 8px;
}

.about-text .subtitle {
  color: #607d8b;
  font-size: 18px;
  margin-bottom: 18px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.5;
  color: #555; 
}



.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}


.founder-cards {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px; 
}  

.founder-card {
  min-width: 200px;
  background: #ffffff; 
  box-shadow: 0 1px 10px rgba(0,0,0,0.08);
  text-align: center;
  scroll-snap-align: start;
}

.founder-card img {
  width: 100%;
  height: 180px; 
      outline: 4px solid #ffffff;
    outline-offset: -4px;
}

.founder-card h4 {
  font-size: 14px;
  margin: 6px 6px 4px;
  color: #4c4c4c;
}

.founder-card p {
  font-size: 15px;
  color: #444444;
  margin: 10px;
}

.founder-cards.trust-grid { 
  gap: 50px; 
  padding: 20px; 
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}  

.founder-cards.trust-grid  .founder-card {
  min-width: 240px;
}

.founder-cards.trust-grid  .founder-card img{
 max-height: 300px; 
     height: auto;
}

/* -------------------------
   SPECIALITIES & FACILITIES
------------------------- */
.spec-fac-section {
  padding: 60px 0 80px;
  background: #ffffff;
}

.spec-fac-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.4fr;
  gap: 40px;
}

.specialities-block h3,
.facilities-block h3 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #0d47a1;
}

/* SPECIALITY CARDS */
.speciality-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 25px;
     
}

.spec-card {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 30px 16px;
  border-radius: 10px;

  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.spec-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.spec-card:hover {
  transform: translateY(-4px);
}
 
.spec-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #1f2937;
}

.spec-text p {
  font-size: 16px;
  margin: 2px 0 0;
  color: #6b7280;
}

/* subtle color hint like image */
.spec-card.cardiology { background: #fdeaea; }
.spec-card.dialysis { background: #eef4fd; }
.spec-card.gynecology { background: #fff1f6; }
 

.btn-viewall {
  display: inline-block;
  padding: 10px 22px;
  background: #1565c0;
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
  text-decoration: none;
}

/* FACILITIES */
.facility-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.facility-card { 
  border-radius: 10px; 
   text-align: center;
}

.facility-card img {
  object-fit: contain;
  max-height: 206px;
}

.facility-card span {  
  width: 100%;
  padding: 10px;
  font-size: 16px; 
}


/* -------------------------
   DOCTORS + FACILITIES
------------------------- */
.doctor-facility-section {
  background: #f9fbfd;
  padding: 70px 0;
}

.doctor-facility-section .df-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.doctors-block h3,
.facilities-block h3 {
  font-size: 30px;
  color: #0d47a1;
  margin-bottom: 20px;
}

/* DOCTOR CARDS */
.doctor-cards {
   display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
  margin-bottom: 20px; 
}


 .doctor-cards.doctors-grid { 
   display: grid;
  gap: 50px; 
  padding: 20px;  
  grid-template-columns: repeat(4, 1fr);
} 



.doctors-carousel {
  scroll-snap-type: x mandatory;
}

.carousel-wrapper {
  position: relative; 
  margin: auto;
  max-width: 1300px; 
} 

.doctors-carousel::-webkit-scrollbar {
  display: none;
}

.doctor-card {
  min-width: 240px;
  background: #ffffff;
  border-radius: 8px;
  padding-bottom: 16px;
  box-shadow: 0 1px 10px rgba(0,0,0,0.08);
  text-align: center;
  scroll-snap-align: start;
}

 .doctor-cards.doctors-grid .doctor-card {
 min-width: 280px;
 }

.doctor-card img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  outline: 6px solid #ffffff;
    outline-offset: -6px;
}

.doctor-card h4 {
  font-size: 16px;
  margin: 12px 0 4px;
  color: #0d47a1;
}

.doctor-card p {
  font-size: 14px;
  color: #607d8b;
}

/* -------------------------
   TESTIMONIALS & NEWS
------------------------- */
.test-news-section {
  background: #ffffff;
  padding: 70px 0;
}

.tn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.testimonial-block h3,
.news-block h3 {
  font-size: 22px;
  color: #0d47a1;
  margin-bottom: 20px;
}

/* TESTIMONIAL */
.testimonial-card {
  background: #eef7ee;
  padding: 25px;
  border-radius: 10px;
  font-size: 16px;
  color: #333;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.testimonial-card span {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: #2e7d32;
  font-weight: 600;
}
 

/* -------------------------
   DONATION SECTION
------------------------- */
.donation-section {
  /*background: linear-gradient( 90deg,  #e8f5e9 0%,  #ffffff 55% );
  padding: 70px 0;*/

  background-image: url(../../assets/images/donate.png);
    min-height: 500px;
    background-size: cover;
    background-position: bottom;
}

.donation-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
      padding: 70px;
}

.donation-text h2 {
  font-size: 30px;
  color: #1b5e20;
  margin-bottom: 12px;
}

.donation-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 25px;
}

.btn-donate {
  display: inline-block;
  padding: 12px 26px;
  background: linear-gradient(90deg,#2e7d32,#43a047);
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(67,160,71,0.4);
}

.donation-image{display: none;}
.donation-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}


/**------------------
NEWS SECTION
--------------------*/
/* =========================
   Hospital News Section
========================= */

.news-section {
  background-color: #fcfcfd;
  padding: 80px 0;
  font-family: 'Poppins', 'Inter', sans-serif;
}

.news-section .section-header h2 {
  font-size: 38px;
  color: #0d47a1;
  font-weight: 600;
}

.news-section .section-header p {
  color: #6b7c93;
  font-size: 16px;
  margin-top: 8px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

/* Card */
.news-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(21, 101, 192, 0.08);
  transition: all 0.35s ease;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(21, 101, 192, 0.15);
}

/* Image */
.news-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

/* Content */
.news-content {
  padding: 24px;
}

.news-date {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #1565C0;
  background: rgba(21, 101, 192, 0.08);
  padding: 6px 12px;
  border-radius: 20px;
}

.news-content h3 {
  font-size: 20px;
  color: #0f2a44;
  margin: 14px 0 10px;
  line-height: 1.4;
}

.news-content p {
  font-size: 16px;
  color: #5f6f81;
  line-height: 1.65;
}

/* Read More */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 16px;
  font-weight: 600;
  color: #1565C0;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* -------------------------
    CAREERS FORM
------------------------- */

.career-section h3{
  font-size: 30px;
  color: #0d47a1;
  margin-bottom: 20px;
}

.career-box { 
  padding: 40px 80px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  max-width: 600px;
  margin: 40px auto;
}

.career-form input,
.career-form select,
.career-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
}

  .career-form select {
    width: 100%;
}

  .career-form textarea {
    height: 150px;
}

/* -------------------------
    CONTACT SECTION
------------------------- */
.contact-section h3{
  font-size: 30px;
  color: #0d47a1;
  margin-bottom: 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 60px auto; 
}

.contact-box {
  display: flex;
  flex-wrap: wrap; 
  width: 100%;
}

.contact-left {
  flex: 1;
  padding: 30px;
  min-width: 300px; 
}

.contact-left h2 {
  margin-bottom: 20px;
}

.contact-info p {
  margin: 10px 0;
  font-size: 18px;
}

.contact-right {
  flex: 1;
  min-height: 400px;
}

.contact-box .map-container
{
  border: 4px solid #d5e9ff;
  border-radius: 10px;
  padding: 5px;
  height: 100%;
}

.contact-right iframe {
  width: 100%;
  height: 100%;
  border: 0;
}       

/* -------------------------
    DONATION SECTION
------------------------- */
.donation-section h3{
  font-size: 30px;
  color: #0d47a1;
  margin-bottom: 20px;
}

.donation-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 60px auto; 
}

/* -------------------------
    DEPARTMENTS SECTION
------------------------- */
.departments-section h3{
  font-size: 30px;
  color: #0d47a1;
  margin-bottom: 20px;
}

.departments-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 60px auto; 
}
 
/* -------------------------
   FOOTER
------------------------- */
.site-footer {
  background: linear-gradient(135deg, #053f99, #174881);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-contact,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact .tel-icon {
    filter: invert(42%) sepia(93%) saturate(1352%) hue-rotate(87deg) brightness(119%) contrast(119%);
} 


.footer-contact .icon {
  font-size: 16px;
  color: #ffeb3b;
}

.footer-links li {
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-links.icons li {
  cursor: pointer;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-links a:hover,
.footer-links.icons li:hover {
  opacity: 0.75;
}


/* FOOTER BOTTOM */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  padding: 14px 10px;
  font-size: 13px;
  background: rgba(0,0,0,0.15);
}

#scrollTopBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 48px;
    height: 48px;
    border-radius: 12%;
    border: none;
    background-color: #1565C0; /* change as per theme */
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: none; /* hidden by default */
    z-index: 9999;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#scrollTopBtn:hover {
    background-color: #0D47A1;
    transform: translateY(-3px);
}

/********************************/
/* RESPONSIVE CSS */
/********************************/

/* Large Tablets & Small Laptops (≤1200px) */
@media (max-width: 1200px) {

  .hero-grid,
  .about-grid,
  .spec-fac-grid,
  .df-grid,
  .donation-grid,
  .tn-grid {
    grid-template-columns: 1fr 1fr;
  }

  .speciality-cards,
  .doctor-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .icon-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .founder-cards.trust-grid { 
  gap: 50px; 
  padding: 20px;  
  grid-template-columns: repeat(4, 1fr);
} 

  .doctor-facility-section .df-grid {
    display: flex; 
  }

    .donation-section{min-height: 400px;}
  .carousel-wrapper{max-width: 1024px;}

   .doctor-cards.doctors-grid { 
   display: grid;
  gap: 50px; 
  padding: 20px;  
  grid-template-columns: repeat(3, 1fr);
} 


}

/* Tablets (≤992px) */
@media (max-width: 992px) {

  /* Header */
  .header-flex { 
    height: 60px;
    padding: 15px 0;
  }

    .logo {
    flex: 1;
    text-align: left;
  }
   
  .menu-toggle {
    display: flex;
    flex-direction: column;
  }

  .menu-header {display: flex;}
  .main-menu {
    position: fixed;
    inset: 0;
    background: rgba(13, 71, 161, 0.97);
    z-index: 9999;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding-top: 30px;

    /* animation */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: all 0.35s ease;
  }

  .main-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-menu a {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 14px 0;
    text-decoration: none;
  }   

  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image img {
    float: none;
    margin: 30px auto 0;
  }

  .icon-grid { 
        display: grid;
    }
  .icon-item {padding: 10px 14px;}
  .icon-line{display: none;}
  

  /* Sections */
  .about-grid,
  .spec-fac-grid,
  .df-grid,
  .donation-grid,
  .tn-grid {
    grid-template-columns: 1fr;
  }

  .donation-section{min-height: 300px;}

  .facility-cards {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  } 

  .footer-contact li{font-size: 16px;}
  .footer-links li {font-size: 16px;}

}


/* Large Mobiles (≤768px) */

@media (max-width: 768px) {

  .container {
    padding: 0 20px;
  }

  .top-bar
  {
    font-size: 18px;

  }

  /* Top bar */
  .top-bar .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    padding: 10px 0;
    gap: 6px;
  }

  .top-bar .btn-appointment {
    margin: 8px 0 0;
  } 

  .top-left span {
    display: block;
    margin: 4px 0;
  }

  .top-right{display: none;}

  /* Typography */
  .hero-text h1 {
    font-size: 32px;
  }

  .about-section{padding: 30px 0;}
  .about-grid{display: block;}
  .about-image{margin-bottom: 20px;}
  .about-text h2,
  .donation-text h2 {
    font-size: 26px;
  }

  .founder-cards.trust-grid { 
  gap: 30px; 
  padding: 20px;  
  grid-template-columns: repeat(3, 1fr);
} 
  

  /* Cards */
  .speciality-cards,
  .doctor-cards,
  .news-cards {
    grid-template-columns: 1fr;
  }

  .facility-card img{max-height: inherit;max-width: 100%;}
  .facility-card span {font-size: 22px;}

  .carousel-wrapper {
        max-width: 728px;
    }

  .doctor-card {min-width: 228px;}

   .doctor-cards.doctors-grid { 
   display: grid;
  gap: 50px; 
  padding: 20px;  
  grid-template-columns: repeat(2, 1fr);
} 

.contact-box {
        flex-direction: column;
    }

    .contact-right {
        height: 300px;
    }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  footer-container{padding: 40px 40px;}

}


@media (max-width: 740px) {
 .carousel-wrapper {
        max-width: 100%;
    }

    .founder-cards.trust-grid { 
  gap: 20px; 
  padding: 10px;  
  grid-template-columns: repeat(2, 1fr);
} 

 .doctor-cards.doctors-grid {  
  gap: 0px; 
  padding: 20px;  
  grid-template-columns: repeat(1, 1fr);
} 

  }

/* Small Mobiles (≤576px) */
@media (max-width: 576px) {
 
  /* Buttons */
  .hero-buttons a {
    display: block;
    margin: 0 0 12px;
  } 

  /* Icon strip */
  .icon-item {
        padding: 10px 10px;
    }
  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .founder-cards{max-width: 250px;    margin: auto;         display: block;}
  .founder-card{margin-bottom: 20px;padding-bottom: 10px;}

   .founder-cards.trust-grid { 
  gap: 20px; 
  padding: 10px;  
  grid-template-columns: repeat(1, 1fr);
} 
 .facility-card span {font-size: 20px;}
  .carousel-wrapper {
        max-width: 241px;
    }

    #doctors .container {display: block;}
    .donation-section{min-height: 280px;background-position: -250px 0px;}

    
 .news-grid {
    grid-template-columns: 1fr;
  }
 

  /* Footer */
 .footer-container {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 375px) {

  .carousel-wrapper {
        max-width: 241px;
    }
  .facility-card img{max-width: 100%;}
      .icon-grid {
        grid-template-columns: repeat(1, 1fr);
    } 
}