/* Hero Slider Styling */
/* === Hero Slider Fixed Premium Styling === */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}
.hero-slider {
    width: 100%;
    margin: 0 auto 16px auto;
    padding: 0;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

.hero-slider .swiper {
    width: 100%;
    max-height: 520px;
    border-radius: 10px;
    overflow: hidden;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image stays centered and scales */
.hero-slider .swiper-slide img {
    width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    
}


/* Section Headings shared style */
.scroll-row {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.scroll-row::-webkit-scrollbar {
    height: 8px;
}
.scroll-row::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}


.ticker-bar {
    overflow: hidden;
    position: relative;
    height: 45px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.motto-bar {
    background-color: #003366;  /* Deep professional blue */
    color: #ffffff;
}

.helpline-bar {
   color: #f4b400;  /* Professional gold */
  background-color: #212529;
}

.scrolling-text {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 15s linear infinite;
    padding-left: 100%;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Mobile adjustment */
@media (max-width: 576px) {
  .ticker-bar {
     height: 25px;
    font-size: 13px;
    padding: 6px 0;
  }

  .scrolling-text {
    font-size: 10px;
  }
}
@media (max-width: 576px) {
  .promo-ticker-section .ticker-bar {
    height: 18px;          /* was ~45px */
    padding: 2px 8px;      /* tighter */
    font-size: 12px;       /* smaller text */
    line-height: 20px;     /* keeps text centered vertically */
  }
  .promo-ticker-section .scrolling-text {
    padding-left: 60%;     /* reduce initial gap so it starts sooner */
  }
}



.card.specialization-card {
    flex: 0 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 20px;
    width: 160px;
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.section.specializations {
    margin: 60px auto;
    width: 90%;
    max-width: 1400px;
    text-align: center;
}

.section.specializations h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
    position: relative;
}

.section.specializations h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #3f51b5, #5c6bc0);
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.grid.specializations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
    justify-items: center;
}

.card.specialization-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 20px;
    width: 100%;
    max-width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.card.specialization-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.15);
}

.card.specialization-card img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
}

.card.specialization-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

@media (min-width: 1024px) {
    .grid.specializations-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 767px) {
    .grid.specializations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
  .card.specialization-card {
    max-width: 100px; /* 50% of the original */
    padding: 10px;
  }

  .card.specialization-card img {
    height: 60px;
  }

  .card.specialization-card h3 {
    font-size: 12px;
  }
}

/* promolae slidee */
.promoSwiper {
    padding: 10px 0;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}


.section.promotions {
    margin: 30px auto 20px; /* Reduced top & bottom margins */
    padding: 0;
    width: 90%;
    max-width: 1400px;
    text-align: center;
}

.section.promotions h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
    position: relative;
}

.section.promotions h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #3f51b5, #5c6bc0);
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.promoSwiper {
    width: 100%;
   padding: 0 0 10px; /* reduce bottom padding */
}

.promoSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.promoSwiper .swiper-slide img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

.live-health-survey {
  background: linear-gradient(to bottom right, #001A3F, #002E5D);
  color: #fff;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
}

.survey-widget {
  max-width: 680px;
  margin: auto;
  background: #ffffff;
  padding: 48px 32px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  color: #00203F;
  text-align: left;
}

.survey-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #002E5D;
  margin-bottom: 12px;
  text-align: center;
}

.survey-desc {
  font-size: 1rem;
  color: #666;
  margin-bottom: 32px;
  text-align: center;
}

.question-card {
  animation: fadeIn 0.3s ease-in-out;
}

.question-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #001E3C;
  margin-bottom: 20px;
}

.option {
  display: block;
  margin-bottom: 14px;
  background: #F5F9FF;
  border: 1px solid #D0E3FF;
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 1rem;
  font-weight: 500;
  color: #002E5D;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}

.option:hover {
  background: #EAF3FF;
  border-color: #007BFF;
  transform: translateY(-1px);
}

.progress {
  margin-bottom: 20px;
}

.bar {
  background: #d8d8d8;
  height: 8px;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 6px;
}

.fill {
  height: 6px;
  background: linear-gradient(to right, #4CAF50, #81C784);
  transition: width 0.4s ease;
}


.btn-gradient {
  background: linear-gradient(to right, #FF3366, #FF4B2B);
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  width: 100%;
  margin-top: 30px;
  box-shadow: 0 8px 20px rgba(255, 51, 102, 0.2);
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}

.btn-gradient:hover {
  transform: scale(1.05);
  background: linear-gradient(to right, #FF4B2B, #FF3366);
  box-shadow: 0 10px 26px rgba(255, 51, 102, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid #FFD700;
  border-radius: 50px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1rem;
  color: #FFD700;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.btn-outline:hover {
  background: #FFD700;
  color: #002E5D;
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.3);
}

.complete h3 {
  color: #28a745;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}

.complete p {
  color: #444;
  font-size: 1rem;
  text-align: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .survey-widget {
    padding: 32px 20px;
  }

  .survey-title {
    font-size: 2rem;
  }

  .question-text {
    font-size: 1.1rem;
  }

  .btn-gradient {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .btn-outline {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}
.complete .action-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
  align-items: center;
}

@media (max-width: 768px) {
  .survey-widget {
    padding: 24px 16px;
  }

  .complete h3 {
    font-size: 1.4rem;
  }

  .btn-gradient,
  .btn-outline {
    width: 100%;
    font-size: 0.95rem;
    padding: 12px 20px;
  }

  .complete .action-buttons {
    width: 100%;
  }
}





/* dotor */
.section.top-doctors {
  padding: 60px 20px;
  background: #f8fbff;
  text-align: center;
}

.top-doctors .section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  text-shadow: 0 1px 1px rgba(0,0,0,0.05);
}

.top-doctors .section-title::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background: linear-gradient(to right, #3f51b5, #5c6bc0);
  border-radius: 2px;
}

.doctor-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* .doctor-scroll::-webkit-scrollbar {
  height: 8px;
}
.doctor-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
.doctor-scroll::-webkit-scrollbar { display: none; } */

.card.doctor-card {
  flex: 0 0 auto;
  width: 220px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  padding: 20px;
  text-align: center;
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

.card.doctor-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.card.doctor-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 6px;
}

.card.doctor-card p {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 8px;
}

.doctor-rating {
  margin-top: 8px;
  display: flex;
  justify-content: center;
}

.doctor-rating .stars {
  background:#002E5D;
  color: white;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
  transition: transform 0.2s ease;
}

.card.doctor-card:hover .doctor-rating .stars {
  transform: scale(1.05);
}



.scroll-doctor-list {
  padding: 60px 20px;
  background: #f5f9ff;
}

.scroll-doctor-list .section-title {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #002E5D;
  margin-bottom: 30px;
}

.doctor-scroll {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}

.doctor-card {
  flex: 0 0 auto;
  width: 280px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  padding: 20px;
  scroll-snap-align: start;
  text-align: center;
}

.doctor-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.doctor-card h4 {
  font-size: 1.0rem;
  margin: 8px 0 4px;
  font-weight: 700;
  color: #002E5D;
}

.doctor-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 12px;
}


@media (max-width: 576px) {
  .section.doctors {
    margin: 30px auto; /* reduce section spacing */
    padding: 0 10px;
  }

  .grid.doctors-grid {
    gap: 15px; /* tighter spacing between cards */
    grid-template-columns: repeat(2, 1fr); /* two cards per row */
  }

  .card.doctor-card {
    max-width: 130px;
    padding: 10px;
    margin: 0; /* remove extra outer margin */
  }

  .card.doctor-card img {
    height: 70px;
    border-radius: 8px;
    margin-bottom: 8px;
  }

  .card.doctor-card h3 {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .card.doctor-card p {
    font-size: 11px;
    margin: 0;
  }

  .doctor-rating {
    margin-top: 6px;
  }

  .doctor-rating .stars {
    font-size: 12px;
    padding: 4px 8px;
  }
}
/* Verified Badge beside name */
.doctor-name-verified {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 6px;
}

.doctor-name-verified img.verified-badge {
  height: 16px;
  width: auto;
  object-fit: contain;
  margin-top: 1px;
}

.card.doctor-card h3,
.card.doctor-card h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  white-space: nowrap;
}






.btns-whatsapp {
  background: #25D366;
  color: white;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.btns-whatsapp:hover {
  background: #1ebe5b;
}




/* blood-donor-searchn */
.blood-donor-search {
  background: linear-gradient(to bottom right, #002E5D, #001A3F);
  padding: 80px 20px;
  color: #fff;
  text-align: center;
  width: 100%;
  margin-bottom: 60px;
  box-sizing: border-box;
}

.blood-donor-search .inner-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.blood-donor-search .inner-box {
  background: rgba(255, 255, 255, 0.05); /* soft overlay */
  padding: 40px 30px;
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.section-subtitle {
  color: #FFD700;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
}

.main-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #fff;
}

.main-title .highlight {
  color: #FF3366;
}

.description {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 28px;
}

.search-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  color: #FFD700;
  margin-bottom: 6px;
}

.search-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: none;
  font-size: 1rem;
  background: #fff;
  color: #002E5D;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.btn-gradient {
  padding: 14px;
  font-size: 1rem;
  border-radius: 30px;
  border: none;
  background: linear-gradient(to right, #FF416C, #FF3366);
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(255, 51, 102, 0.3);
  transition: transform 0.2s ease;
}

.btn-gradient:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .blood-donor-search {
    padding: 60px 16px;
  }

  .blood-donor-search .inner-box {
    padding: 30px 20px;
    border-radius: 0;
  }

  .main-title {
    font-size: 1.8rem;
  }
}





/* qramed-stats-section */
.qramed-stats-section {
  background: linear-gradient(135deg, #002E5D, #001933);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.qramed-stats-section .section-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 40px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #FFD700;
  border-radius: 14px;
  padding: 30px 20px;
  width: 200px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.25);
}

.stat-box .icon {
  font-size: 40px;
  color: #FFD700;
  margin-bottom: 15px;
}

.stat-box h3 {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 6px;
}

.stat-box p {
  font-size: 15px;
  color: #eee;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-grid {
    flex-direction: column;
    align-items: center;
  }

  .stat-box {
    width: 90%;
    max-width: 320px;
  }

  .qramed-stats-section .section-heading {
    font-size: 2rem;
  }
}







/* Testimonial Section */
.testimonial-section {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.testimonial-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
}

/* Scrollable container */
.scroll-row {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
}

.scroll-row::-webkit-scrollbar {
    height: 8px;
}

.scroll-row::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

/* Testimonial Card Style */
.testimonial-card {
    flex: 0 0 auto;
    min-width: 280px;
    max-width: 300px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    scroll-snap-align: start;
}

.testimonial-photo img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #007bff;
    margin-bottom: 10px;
}

.testimonial-content h4 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.testimonial-content .subtitle {
    font-size: 14px;
    color: #888;
    margin: 5px 0;
}

.stars {
    color: #fbc02d;
    margin: 5px 0;
}

.testimonial-text {
    font-size: 15px;
    color: #555;
    margin-top: 10px;
}



.core-values-section {
  background: linear-gradient(to right, #001E3C, #002E5D);
  padding: 80px 20px;
  color: white;
  text-align: center;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #FFD700;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #d8d8d8;
  margin-bottom: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.core-values-scroll {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  padding: 20px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.core-values-scroll::-webkit-scrollbar {
  height: 8px;
}

.core-values-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.value-card {
  flex: 0 0 auto;
  width: 280px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  padding: 32px 24px;
  text-align: center;
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #002E5D;
}
.time-slot-btn {
  background: #f0f4f8;
  border: 2px solid #ccc;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  color: #002E5D;  /* your custom color */
  transition: all 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.time-slot-btn:hover {
  background-color: #e8f0ff;
  border-color: #002E5D;
}

.time-slot-btn.selected {
  background-color: #002E5D !important;
  color: #fff !important;
  border-color: #002E5D !important;
}


.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.value-card .icon {
  font-size: 42px;
  margin-bottom: 16px;
}

.icon.green { color: #27ae60; }   /* Trust */
.icon.blue { color: #2980b9; }    /* Care */
.icon.orange { color: #f39c12; }  /* Innovation */
.icon.pink { color: #e84393; }    /* Access */

.value-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #001E3C;
}

.value-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* Desktop padding */
@media (min-width: 1024px) {
  .core-values-scroll {
    padding-left: 40px;
    padding-right: 40px;
  }
}



/* review-box-section */

.review-box-section {
  padding: 60px 20px;
  text-align: center;
}

.review-box {
  background: #f4faff;
  border-radius: 16px;
  max-width: 400px;
  margin: auto;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.review-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #002E5D;
}

.review-box p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.review-box button {
  background: #0072ff;
  color: white;
  padding: 10px 24px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
}

.review-box button:hover {
  background: #005bcc;
}

/* Modal styles */
.review-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.review-modal-content {
  background: white;
  padding: 30px;
  max-width: 500px;
  margin: 100px auto;
  border-radius: 16px;
  position: relative;
}

.review-modal-content input,
.review-modal-content textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.review-modal-content button[type="submit"] {
  background: #FFD700;
  color: #002E5D;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.review-modal-content button:hover {
  background: #ffc107;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
}



#promoModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#promoModal .modal-content {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 0;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  animation: fadeInScale 0.3s ease-in-out;
  text-align: center;
}

#promoModal img.promo-img {
  width: 100%;
  display: block;
}

#promoModal .promo-details {
  padding: 16px;
}

#promoModal h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #003366;
}

#promoModal .promo-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #007bff;
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s ease;
}

#promoModal .promo-btn:hover {
  background: #0056b3;
}

#promoModal .close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 20px;
  padding: 4px 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

#scroll-section-loader {
  transition: opacity 0.3s ease;
}

/* Modal backdrop */
.popup-modal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Popup content */
.popup-content {
  background-color: #fff;
  padding: 30px 25px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  position: relative;
  animation: popupFade 0.3s ease-out;
}

/* Close button */
.popup-content .close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  color: #444;
  cursor: pointer;
}

/* Form inputs */
#popupDonorForm input[type="text"],
#popupDonorForm button {
  width: 100%;
  padding: 12px 14px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

/* Submit button */
#popupDonorForm button {
  background-color: #28a745;
  color: #fff;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#popupDonorForm button:hover {
  background-color: #218838;
}

/* Success message */
#popupSuccessMsg {
  margin-top: 12px;
  font-size: 16px;
  text-align: center;
}

/* Fade animation */
@keyframes popupFade {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
                                            
.scroll-doctor-list {
    padding: 40px 20px;
    background-color: #ffffff;
    margin-top: 40px;
    border-top: 2px solid #e2e8f0;
}
.scroll-doctor-list .section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}
.doctor-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}
.doctor-scroll::-webkit-scrollbar {
    height: 8px;
}
.doctor-scroll::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}
.scroll-doctor-list .doctor-card {
    min-width: 220px;
    max-width: 240px;
    flex-shrink: 0;
    background: #f9fafc;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    scroll-snap-align: start;
    transition: transform 0.2s;
}
.scroll-doctor-list .doctor-card:hover {
    transform: translateY(-5px);
}
.scroll-doctor-list .doctor-card img {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 3px solid #e0e0e0;
}
.scroll-doctor-list .doctor-card h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: #111827;
}
.scroll-doctor-list .doctor-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}
.btns-whatsapp {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease;
}
.btns-whatsapp:hover {
    background-color: #1ebe5d;
}
  .verified-badge {
  width: 78px;
  height: 38px;
  margin-left: 1px;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .verified-badge {
    width: 62px;
    height: 39px;
    margin-left: 0px;
  }
}