.doctor-section{
 margin-top: 50px;
 margin-bottom: 20px;
}

.doctor-container{
  /* max-width:1300px; */
  /* margin:auto; */
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:40px;
}

/* CARD */
.doctor-card{
  border:2px solid #2e5b80;
  border-radius:25px;
  padding:20px 0px;
  box-shadow:0 6px 0 #2e5b80;
}

/* TITLE */
.doctor-card h2{
  text-align:center;
  color:#2e5b80;
  font-size:26px;
  font-weight:700;
  margin-bottom:30px;
}

/* GRID */
.doctor-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  text-align:center;
  gap:30px;
}

.doctor-grid.single{
  grid-template-columns:1fr;
}

/* DOCTOR NAME */
.doctor-grid h4{
  font-size:18px;
  font-weight:700;
  margin-bottom:6px;
  color:#000;
}

/* DEGREE */
.doctor-grid p{
  font-size:14px;
  font-weight:500;
  color:#000;
}
.wlc-s{
    margin-top: 100px;
}
 .wlc-p{
    font-size: 18px;
    font-weight: 600;
    color: #305673;
    text-align: center;
 }

  .wlc-h{
    font-size: 40px;
    font-weight: 700;
    color: #305673;
    text-align: center;
 }
/* RESPONSIVE */
@media(max-width:768px){
  .doctor-container{
    grid-template-columns:1fr;
  }
  .doctor-card{
    padding:20px 4px;
  }
}


/* WRAPPER */
.appointment-btn-wrap{
  background:#ffffff;
  padding:40px 0;
  text-align:center;
}

/* BUTTON */
.appointment-btn{
  display:inline-block;
  background:#2f5b7c;     /* same blue */
  color:#ffffff;
  padding:14px 38px;
  font-size:18px;
  font-weight:600;
  border-radius:40px;
  border:2px solid #2f5b7c;
  transition:all 0.3s ease;
}

/* HOVER EFFECT (exact requirement) */
.appointment-btn:hover{
  background:#ffffff;     /* white background */
  color:#2f5b7c;          /* blue text */
  border:2px solid #2f5b7c;
}

/* MOBILE */
@media(max-width:768px){
  .appointment-btn{
    font-size:16px;
    padding:12px 30px;
  }
}




/* SECTION */
.gallery-section{
  padding:80px 40px;
}

/* GRID */
.gallery-container{
  /* max-width:1400px; */
  /* margin:auto; */
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
}

/* CARD */
.gallery-card{
  border-radius:20px;
  overflow:hidden;
  background:#eee;
}

/* IMAGE */
.gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* RESPONSIVE */
@media(max-width:1024px){
  .gallery-container{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .gallery-container{
    grid-template-columns:1fr;
  }

  .gallery-section{
    padding:50px 20px;
  }
}


.coming-soon-images{
  margin-top: 100px;
  margin-bottom: 50px;
}













/* ===== GRID ===== */
.logo-gallery{
  padding:80px 40px;
}

.logo-grid{
  /* max-width:1500px; */
  /* margin:auto; */
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:50px 60px;
  align-items:center;
  justify-items:center;
}

.logo-grid img{
  width: 204px;
  height: 116px;
  cursor:pointer;
  transition:transform 0.3s;
}

.logo-grid img:hover{
  transform:scale(1.05);
}

/* ===== LIGHTBOX ===== */
.lightbox{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.85);
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.lightbox img{
  max-width:60%;
  background:#fff;
  padding:25px;
  border-radius:6px;
}

/* BUTTONS */
.close{
  position:absolute;
  top:20px;
  right:30px;
  font-size:30px;
  color:#fff;
  cursor:pointer;
}

.prev,
.next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  font-size:40px;
  color:#fff;
  cursor:pointer;
  padding:10px;
}

.prev{ left:40px; }
.next{ right:40px; }

/* COUNTER */
.counter{
  position:absolute;
  bottom:30px;
  color:#fff;
  font-size:16px;
}

/* RESPONSIVE */
@media(max-width:1200px){
  .logo-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media (max-width:768px){

  /* GRID → ONE BY ONE */
  .logo-grid{
    grid-template-columns:1fr;   /* 🔥 one image per row */
    gap:5px;                    /* spacing between logos */
    justify-items:center;        /* 🔥 horizontal center */
  }

  /* LOGO SIZE */
  .logo-grid img{
    max-width:180px;             /* control size */
    width:100%;
  }

  /* LIGHTBOX IMAGE */
  .lightbox img{
    max-width:90%;
  }
}




/* ===== CONTACT SECTION ===== */
.vm-contact-section{
  padding:80px 40px;
  background:#ffffff;
}

.vm-contact-card{
  max-width:1400px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  background:#fff;
  border-radius:14px;
  box-shadow:0 8px 25px rgba(0,0,0,0.12);
  overflow:hidden;
}

/* MAP */
.vm-map-box iframe{
  width:100%;
  height:100%;
  min-height:420px;
  border:0;
}

/* RIGHT CONTENT */
.vm-contact-info{
  padding:45px 45px;
}

.vm-title{
  font-size:32px;
  font-weight:700;
  color:#1f3f5b;
  margin-bottom:8px;
}

.vm-title-line{
  display:block;
  width:60px;
  height:4px;
  background:#1f3f5b;
  margin-bottom:30px;
}

/* INFO ROW */
.vm-info-row{
  display:flex;
  align-items:flex-start;
  gap:20px;
  margin:25px 0;
}

.vm-icon-circle{
  min-width:48px;
  height:48px;
  border:2px solid #1f3f5b;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#1f3f5b;
  font-size:20px;
}

.vm-info-row p{
  margin:0;
  font-size:16px;
  line-height:26px;
  color:#1f3f5b;
  font-weight:500;
}

.vm-info-row a{
  color:#1f3f5b;
  text-decoration:none;
}

.vm-contact-info hr{
  border:none;
  border-top:1px solid #000;
  opacity:0.6;
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px){
  .vm-contact-card{
    grid-template-columns:1fr;
  }

  .vm-map-box iframe{
    min-height:320px;
  }

  .vm-contact-info{
    padding:35px 25px;
  }
}
