
    /* ===== HERO SECTION ===== */
    .hero {
      position: relative;
      width: 100%;
      height: 450px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      text-align: center;
      color: #fff;
    }

    @media (min-width: 480px) {
      .hero { height: 500px; }
    }

    @media (min-width: 768px) {
      .hero { height: 600px; }
      .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.2);
        z-index: 2;
      }
    }
@media (max-width: 1100px) {

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
  }

}
    @media (min-width: 1024px) {
      .hero { height: 700px; }
    }

    @media (min-width: 1200px) {
      .hero { height: 100vh; }
    }

    .slider-container, .slider, .slide {
      width: 100%;
      height: 100%;
    }

    .slider-container {
      position: absolute;
      inset: 0;
      z-index: 1;
    }

    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      animation: slideAnimation 24s infinite;
    }

    .slide:nth-child(1) { animation-delay: 0s; }
    .slide:nth-child(2) { animation-delay: 8s; }
    .slide:nth-child(3) { animation-delay: 16s; }

    .slide img {
      width: 100%;
      height: 100%;
      /* object-fit: cover; */
      display: block;
    }

    @keyframes slideAnimation {
      0% { opacity: 0; }
      10% { opacity: 1; }
      33% { opacity: 1; }
      43% { opacity: 0; }
      100% { opacity: 0; }
    }

    .hero-content {
      position: relative;
      z-index: 3;
      max-width: 100%;
      padding: 20px;
      animation: fadeInUp 1.2s ease-out;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 15px;
      text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.2);
    }

    .hero .subtitle {
      font-size: 14px;
      margin-bottom: 20px;
      opacity: 0.95;
    }

    .cta-primary, .cta-secondary {
      display: inline-block;
      padding: 12px 24px;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 700;
      margin: 6px;
      border: 2px solid transparent;
      cursor: pointer;
      font-size: 11px;
      transition: all 0.3s ease;
    }

    .cta-primary {
      background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
      color: var(--white);
      box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
    }

    .cta-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(230, 57, 70, 0.4);
    }

    .cta-secondary {
      background: transparent;
      color: var(--white);
      border: 2px solid var(--white);
    }

    .cta-secondary:hover {
      background: var(--white);
      color: var(--primary-blue);
      transform: translateY(-3px);
    }

    .cta-buttons { margin-top: 20px; }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (min-width: 768px) {
      .hero-content { padding: 40px 30px; max-width: 750px; }
      .hero h1 { font-size: 44px; }
      .hero .subtitle { font-size: 16px; margin-bottom: 30px; }
      .cta-primary, .cta-secondary { padding: 14px 40px; font-size: 12px; }
    }

    @media (min-width: 1024px) {
      .hero-content { padding: 60px 40px; max-width: 850px; }
      .hero h1 { font-size: 52px; }
      .hero .subtitle { font-size: 18px; margin-bottom: 35px; }
      .cta-primary, .cta-secondary { padding: 16px 50px; font-size: 13px; }
    }

    /* ===== ABOUT SECTION ===== */
    .about-section {
      padding: 50px 15px;
    }

    .about-container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px;
      text-align: center;
    }

    .about-image {
      width: 100%;
      text-align: center;
    }

    .about-image img {
      width: 100%;
      max-width: 280px;
    }

    .content-section {
      width: 100%;
      padding: 25px 20px;
      background: #fff;
      border-radius: 12px;
      border-left: 6px solid #e63946;
      box-shadow: 0 10px 40px rgba(36, 62, 112, 0.12);
    }

    .about-text h2 {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      color: #243e70;
      margin-bottom: 15px;
    }

    .about-text h2::after {
      content: "";
      display: block;
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, #e63946, #ff7b00);
    }

    .about-text p {
      font-size: 14px;
      line-height: 1.8;
      color: #555;
      margin-bottom: 15px;
      text-align: left;
    }

    @media (min-width: 768px) {
      .about-section { padding: 70px 30px; }
      .about-container { flex-direction: row; gap: 40px; text-align: left; }
      .about-image { flex: 1; text-align: right; }
      .about-image img { max-width: 350px; }
      .content-section { flex: 1.5; padding: 35px 30px; }
      .about-text h2 { font-size: 36px; }
      .about-text p { font-size: 15px; }
    }

    @media (min-width: 1024px) {
      .about-section { padding: 0 40px 100px; }
      .about-container { gap: 60px; }
      .about-image img { max-width: 450px; }
      .content-section { flex: 2.9; max-width: 920px; padding: 40px; }
      .about-text h2 { font-size: 44px; margin-bottom: 25px; }
      .about-text p { font-size: 16px; line-height: 1.9; }
    }


/* ===== SERVICES SECTION ===== */

.services {
  padding: 60px 15px;
  background: #f9fbf8;
  text-align: center;
}

.services h2 {
  font-size: 30px;
  color: #243e70;
  margin-bottom: 10px;
}

.services-intro {
  max-width: 650px;
  margin: 0 auto 30px;
  font-size: 14px;
  color: #555;
}

/* SLIDER */
.service-slider {
  overflow: hidden;
  position: relative;
}

/* TRACK */
.service-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollLoop 60s linear infinite;
}

/* CARD */
.service-card {
  min-width: 290px;
  max-width: 290px;
    height: 300px; /* 🔥 increase height */

  flex: 0 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  overflow: hidden;
  text-align: left;
  transition: 0.3s;
  
   display: flex;              /* 🔥 important */
  flex-direction: column;     /* 🔥 */
  justify-content: space-between; /* 🔥 spacing nice */
  
}

.service-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.service-img {
  height: 200px;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT */
.service-card h3 {
  font-size: 15px;
  color: #243e70;
  padding: 12px 12px 5px;
}

.service-card p {
  font-size: 13px;
  color: #666;
  padding: 0 12px 15px;
}

/* LOOP ANIMATION */
@keyframes scrollLoop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* PAUSE ON HOVER */
.service-slider:hover .service-track {
  animation-play-state: paused;
}

/* VIEW ALL BUTTON */
.view-all-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.view-all-btn {
  padding: 10px 22px;
  background: linear-gradient(135deg, #E63946, #F77F00);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s;
}

.view-all-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* MOBILE */
@media (max-width: 768px) {
  .service-card {
    min-width: 220px;
    max-width: 220px;
  }
}




/* ===========================
   Appointment Call Sectionbox
=========================== */

.call-section{
    background:#243e70;
    padding:70px 20px;
}

.call-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    flex-wrap:wrap;
}

.call-left{
    flex:1;
    min-width:280px;
}

.call-left h2{
    color:#fff;
    font-size:42px;
    margin-bottom:15px;
    font-weight:700;
}

.call-left p{
    color:#dce9ff;
    font-size:18px;
    line-height:1.7;
}

.call-right{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:20px;
    align-items:flex-end;
}

.call-btn{
    background:#fff;
    color:#243e70;
    text-decoration:none;
    padding:18px 35px;
    border-radius:12px;
    min-width:330px;
    text-align:center;
    font-weight:700;
    font-size:18px;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.call-btn i{
    margin-right:8px;
}

.call-btn span{
    display:block;
    margin-top:5px;
    font-size:28px;
    font-weight:800;
}

.call-btn:hover{
    background:#ff4d6d;
    color:#fff;
    transform:translateY(-4px);
}

@media(max-width:768px){

.call-container{
    flex-direction:column;
    text-align:center;
}

.call-right{
    width:100%;
    align-items:center;
}

.call-left h2{
    font-size:30px;
}

.call-btn{
    width:100%;
    min-width:unset;
}

.call-btn span{
    font-size:22px;
}

}






/* ===== STATS SECTION ===== */
.stats-section {
background: linear-gradient(135deg, #0d1f3f, #1a2f52);
padding: 50px 15px;
color: #ffffff;
}


.stats-container {
  display: flex;
  justify-content: center;   /* 🔥 center align */
  align-items: center;
  gap: 60px;                 /* space between */
  max-width: 900px;          /* reduce width for center look */
  margin: auto;
  text-align: center;
  flex-wrap: wrap;           /* mobile safe */
}


    .stat-box h2 {
      font-size: 24px;
      margin-bottom: 8px;
      font-weight: 700;
    }

    .stat-box p {
      font-size: 13px;
      opacity: 0.9;
    }

    .working-time h2 { font-size: 18px; margin-bottom: 10px; }
    .working-time p { font-size: 11px; margin: 3px 0; }

    @media (min-width: 768px) {
      .stats-section { padding: 60px 25px; }
      /* .stats-container { grid-template-columns: repeat(3, 1fr); gap: 25px; } */
      .stat-box h2 { font-size: 32px; }
    }
/* Mobile - 1 column */
@media (max-width: 767px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
}

/* Tablet - 2 columns */
@media (min-width: 768px) and (max-width: 1023px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop - 4 columns */
@media (min-width: 1024px) {
  .stats-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
    @media (min-width: 1024px) {
      .stats-section { padding: 70px 8%; }
      .stat-box h2 { font-size: 42px; }
      .stat-box p { font-size: 16px; }
    }











    
    /* ===== APPOINTMENT SECTION ===== */
  /* ===== APPOINTMENT SECTION ===== */

.appointment-section {
  padding: 80px 20px;
  background: #f9fbf8;
}

.appointment-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* LEFT */
.appointment-left {
  flex: 1;
}

.appointment-left h2 {
  font-size: 32px;
  color: #243e70;
  margin-bottom: 15px;
}

.appointment-left p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.appointment-left ul {
  padding-left: 20px;
}

.appointment-left li {
  margin-bottom: 8px;
}

/* RIGHT BOX */
.appointment-right {
  flex: 1;
}

.appointment-box {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.appointment-box h3 {
  color: #E63946;
  margin-bottom: 10px;
}

.appointment-box p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.appointment-box ul {
  padding-left: 18px;
  margin-bottom: 15px;
}

.appointment-box li {
  margin-bottom: 8px;
}

/* BUTTON */
.appointment-btn {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(135deg, #E63946, #F77F00);
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.appointment-btn:hover {
  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 768px) {
  .appointment-container {
    flex-direction: column;
  }
}
  

li i {
    margin-right: 8px;
    color: #1f3b68;
}





/* ============================= */
/* JOURNEY SECTION */
/* ============================= */

.journey-section{
  background: linear-gradient(135deg,#0a1f44,#123a72);
  padding: 100px 6%;
  color: #ffffff;
}

.journey-container{
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.journey-header{
  text-align: center;
  margin-bottom: 90px;
}

.journey-header h2{
  font-size: 38px;
  margin-bottom: 15px;
  font-weight: 600;
}

.journey-header p{
  font-size: 18px;
  opacity: 0.85;
  font-style: italic;
}

/* ROW LAYOUT */
.timeline-item{
  margin-bottom: 120px;
}

.row-layout{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.row-layout.reverse{
  flex-direction: row-reverse;
}

/* IMAGE CONTAINER */
.images{
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}

/* DEFAULT IMAGE STYLE */
.images img{
  border-radius: 5px;
  object-fit: cover;
  transition: 0.4s ease;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.images img:hover{
  transform: scale(1.05);
}

/* ============================= */
/* INDIVIDUAL IMAGE CONTROL */
/* ============================= */

/* 1994 */
.img-1994-1{
  width: 70%;
  height: 320px;
  margin-left: -120px;
}

.img-1994-2{
  width: 70%;
  height: 320px;
  margin-left: 50px;
}

/* 1998 */
.img-1998-1{
  width: 75%;
  height: 80%;
    margin-right: 10px;

}

.img-1998-2{
  width: 75%;
  height: 100%;
  margin-top: 20px;
      margin-left: 250px;

}

/* .img-1998-3{
  width: 100%;
  height: 300px;
} */

/* 2002 */
.img-2002-1{
  width: 48%;
  height: 100%;
}

.img-2002-2{
  width: 48%;
  height: 370px;
  margin-top: 40px;
}


/* CONTENT SIDE */
.content{
  flex: 1;
}

.content .year{
  font-size: 42px;
  font-weight: bold;
  color: #E63946;
  margin-bottom: 15px;
  display: block;
}

.content h3{
  font-size: 26px;
  margin-bottom: 15px;
}

.content p{
  font-size: 16px;
  line-height: 1.9;
  opacity: 0.9;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media(max-width: 992px){

  .row-layout{
    flex-direction: column !important;
    gap: 40px;
  }

  .images img{
    width: 100% !important;
    height: 100% !important;
    margin-top: 0 !important;
  }

  .journey-header h2{
    font-size: 30px;
  }
.img-1994-1{
  width: 68%;
  height: 260px;
  margin-left: 0px;
}
.img-1994-2{
  width: 68%;
  height: 260px;
  margin-left: 0px;
}
.img-1998-2{
  width: 75%;
  height: 100%;
  margin-top: 0px;
      margin-left: 0px;

}
.img-2002-1{
  width: 48%;
  height: 550px;
}

.img-2002-2{
  width: 48%;
  height: 370px;
  margin-top: 40px;
}
}








    /* ===== FAQ SECTION ===== */
    .faq-section {
      padding: 50px 15px;
      background: #f8f9fb;
    }

    .faq-container {
      display: flex;
      flex-direction: column;
      gap: 30px;
      max-width: 1200px;
      margin: auto;
    }

    .faq-image {
      width: 100%;
    }

    .faq-image img {
      width: 100%;
      border-radius: 5px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    .faq-content {
      width: 100%;
    }

    .faq-title {
      font-size: 28px;
      margin-bottom: 20px;
      color: #0a1f44;
    }

    .faq-tabs {
      display: flex;
      gap: 10px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .tab-btn {
      padding: 8px 16px;
      border: none;
      cursor: pointer;
      border-radius: 25px;
      background: #e4e8f0;
      color: #333;
      font-weight: 500;
      font-size: 12px;
    }

    .tab-btn.active {
      background: #2e7d32;
      color: #fff;
    }

    .tab-content {
      display: none;
    }

    .tab-content.active {
      display: block;
    }

    .faq-item {
      margin-bottom: 12px;
      border-bottom: 1px solid #ddd;
    }

    .faq-question {
      padding: 12px 0;
      cursor: pointer;
      font-weight: 500;
      display: flex;
      justify-content: space-between;
      font-size: 14px;
    }

    .faq-answer {
      display: none;
      padding-bottom: 12px;
      color: #555;
      line-height: 1.6;
      font-size: 13px;
    }

    @media (min-width: 768px) {
      .faq-section { padding: 70px 25px; }
      .faq-container { flex-direction: row; gap: 40px; }
      .faq-image { flex: 1; }
      .faq-content { flex: 1; }
      .faq-title { font-size: 32px; margin-bottom: 25px; }
    }

    @media (min-width: 1024px) {
      .faq-section { padding: 100px 6%; }
      .faq-title { font-size: 36px; }
    }

    /* ===== TESTIMONIALS SECTION ===== */
    .testimonial-section {
      padding: 50px 15px;
      background: #f8f9fc;
    }

    .section-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .section-header h2 {
      font-size: 26px;
      color: #0a1f44;
      margin-bottom: 8px;
    }

    .section-header p {
      color: #666;
      font-size: 14px;
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      max-width: 1200px;
      margin: auto;
    }

    .testimonial-card {
      background: #ffffff;
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .patient-info {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 15px;
    }

    .patient-icon {
      width: 50px;
      height: 50px;
      background: #0a1f44;
      color: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
    }

    .patient-info h4 {
      margin: 0;
      color: #0a1f44;
      font-size: 14px;
    }

    .stars {
      color: #f4b400;
      font-size: 12px;
      margin-top: 3px;
    }

    .testimonial-card p {
      color: #555;
      line-height: 1.6;
      font-size: 13px;
    }

    @media (min-width: 768px) {
      .testimonial-section { padding: 70px 25px; }
      .section-header h2 { font-size: 32px; }
      .testimonial-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
      .testimonial-card { padding: 25px; }
    }

    @media (min-width: 1024px) {
      .testimonial-section { padding: 100px 6%; }
      .section-header h2 { font-size: 36px; }
      .testimonial-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
      .testimonial-card { padding: 30px; }
    }

    /* ===== CONTACT SECTION ===== */
    .contact-section {
      padding: 50px 15px;
      background: linear-gradient(135deg, #0a1f44, #123a72);
      color: #fff;
    }

    .contact-container {
      display: flex;
      flex-direction: column;
      gap: 30px;
      max-width: 1200px;
      margin: auto;
    }

    .contact-info h2 {
      font-size: 26px;
      margin-bottom: 15px;
    }

    .contact-info p {
      margin-bottom: 20px;
      color: #ddd;
      line-height: 1.6;
      font-size: 14px;
    }

    .info-box {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
      font-size: 14px;
    }
.contact-phone {
  color: #ffffff;   /* contact section color */
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
}

.contact-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.contact-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-image img {
    max-width: 100%;
  }
}





/* ===== INTRO SECTION ===== */
/* ===== INTRO SECTION ===== */
.intro-section {
  padding: 60px 15px 0;
}

.intro-container {
  max-width: 1100px;
  margin: auto;
  text-align: left;   /* 🔥 LEFT ALIGN */
}

/* TITLE */
.intro-section h2 {
  font-size: 28px;
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

/* TEXT */
.intro-sub {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
  max-width: 700px;
}

/* BUTTON */
/* .intro-btn {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
} */

/* .intro-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
} */

/* CARDS */
/* .intro-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.intro-card {
  border: 2px solid #ddd;
  padding: 20px;
  border-radius: 15px;
  background: #fff;
  text-align: center;
  transition: 0.3s;
}

.intro-card:hover {
  border-color: var(--accent-red);
  transform: translateY(-5px);
}

.intro-card h3 {
  font-size: 22px;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.intro-card p {
  font-size: 14px;
  color: #555;
} */

/* RESPONSIVE */
@media (min-width: 600px) {
  .intro-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .intro-cards {
    grid-template-columns: repeat(4, 1fr);
  }

  .intro-section h2 {
    font-size: 36px;
  }

  .intro-sub {
    font-size: 17px;
  }
}







/* ===== DOCTORS SECTION ===== */
.doctors-section {
  padding: 70px 15px;
  background: #f9fbff;
}

.doctors-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 34px;
  color: #1e3a5f;
  margin-bottom: 40px;
}

/* GRID SAME WIDTH */
.doctor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD SAME HEIGHT */
.doctor-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* TOP CONTENT */
.card-top {
  text-align: center;
}

/* IMAGE FIX (FACE FOCUS) */
.doctor-card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top; /* 🔥 face visible */
  margin-bottom: 15px;
}

/* TEXT */
.doctor-card h3 {
  color: #1e3a5f;
  margin-bottom: 10px;
}

.doctor-info {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.languages {
  font-size: 13px;
  color: #c0392b;
  font-weight: 600;
}
/* STATS CONTAINER */
.doctor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 15px 0;
    justify-content: center;   /* 🔥 MAIN FIX */

}

/* EACH BOX */
.doctor-stats .stat {
  background: #f4f6fb;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  transition: 0.3s;
}
.doctor-stats {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

/* NUMBER */
.doctor-stats .stat h4 {
  font-size: 16px;
  color: #1e3a5f;
  margin-bottom: 3px;
  font-weight: 700;
}

/* TEXT */
.doctor-stats .stat span {
  font-size: 11px;
  color: #666;
}

/* HOVER EFFECT */
.doctor-stats .stat:hover {
  background: linear-gradient(135deg, #0d1f3f, #1a2f52);
  color: #fff;
}

.doctor-stats .stat:hover h4,
.doctor-stats .stat:hover span {
  color: #fff;
}
/* TIMING BOX */
.timing-box {
  background: #f4f6fb;
  border-radius: 12px;
  padding: 15px;
  margin-top: 20px;
}

/* SPLIT */
.timing-box.split {
  display: flex;
  gap: 15px;
}

/* COLUMN */
.timing-col {
  flex: 1;
  text-align: left;
  border-left: 3px solid #1e3a5f;
  padding-left: 10px;
}

.timing-col h4 {
  font-size: 14px;
  color: #1e3a5f;
  margin-bottom: 8px;
}

.timing-col p {
  font-size: 13px;
  margin: 2px 0;
  color: #444;
}

/* HOVER */
.doctor-card:hover {
  transform: translateY(-8px);
  transition: 0.3s;
}

/* MOBILE */
@media (max-width: 768px) {
  .doctor-grid {
    grid-template-columns: 1fr;
  }

  .timing-box.split {
    flex-direction: column;
  }
}

