 .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
.service-box {
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  transition:all .45s ease;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.service-box:hover {
  transform:translateY(-12px);
  box-shadow:0 25px 45px rgba(4,90,176,0.25);
}

.img-wrap {
  height:210px;
  overflow:hidden;
}

.img-wrap img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
}

.service-box:hover img {
  transform:scale(1.12);
}

.content {
  padding:22px;
  text-align:center;
}

.content h6 {
  font-weight:600;
  margin-bottom:8px;
}

.content p {
  font-size:14px;
  color:#6c757d;
  margin-bottom:0;
}

.doctor-card{
  background:#fff;
  padding:25px 20px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.35s ease;
}

.doctor-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 45px rgba(4,90,176,0.25);
}

.doctor-img{
  width:160px;
  height:160px;
  margin:0 auto;
  border-radius:50%;
  overflow:hidden;
}

.doctor-img img{
  width:100%;
  height:100%;
  object-fit:cover;   /* 🔥 IMAGE SAME SIZE MAGIC */
}

.product-card{
  padding:20px;
  transition:0.3s ease;
}

.product-card:hover{
  transform:translateY(-8px);
}

.product-img{
  width:100%;
  height:160px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.product-img img{
  max-width:100%;
  max-height:100%;
  object-fit:contain; /* 🔥 kisi bhi size ki image ho, sab equal */
  transition:0.3s ease;
}

.product-card:hover img{
  transform:scale(1.08);
}

/* Glaucoma image equal size */
.glaucoma-img-box{
  width:100%;
  height:340px;
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}

.glaucoma-img-box img{
  width:100%;
  height:100%;
  object-fit:cover; /* 🔥 kisi bhi size ki image ho, same size */
}

/* 412px mobile optimization */
@media (max-width:412px){
  .glaucoma-img-box{
    height:220px;
  }

  section h2{
    font-size:22px;
  }

  section p{
    font-size:14px;
  }
}

.empanelled-section {
  padding: 60px 0;
  background: #ffffff;
}

.empanelled-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
  color: #045ab0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
}

.insurance-item {
  text-align: center;
}

.logo-box {
  width: 140px;
  height: 140px;
  margin: 0 auto 12px;
  border-radius: 50%;
  border: 2px dashed #045ab0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7fbff;
}

.logo-box img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}

.insurance-item p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #045ab0;
}

/* Mobile */
@media (max-width: 576px) {
  .logo-box {
    width: 110px;
    height: 110px;
  }
}

.appointment-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #f7fbff, #ffffff);
}

.appointment-wrapper {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
}

.appointment-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(4, 90, 176, 0.12);
}

.appointment-form h2 {
  color: #045ab0;
  font-weight: 700;
  margin-bottom: 5px;
}

.appointment-form p {
  color: #666;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #dbe7f5;
  outline: none;
  font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #045ab0;
}

.appointment-form button {
  width: 100%;
  background: #045ab0;
  color: #ffffff;
  border: none;
  padding: 13px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
}

.appointment-info {
  background: #045ab0;
  color: #ffffff;
  padding: 40px 35px;
  border-radius: 14px;
}

.appointment-info h3 {
  margin-bottom: 25px;
  font-weight: 700;
}

.info-box {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.info-box span {
  font-size: 22px;
}

.info-box p {
  margin: 4px 0 0;
  font-size: 14px;
  opacity: 0.95;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .appointment-wrapper {
    grid-template-columns: 1fr;
  }

  .appointment-form,
  .appointment-info {
    padding: 30px;
  }
}

.carousel-item {
    transition: opacity 5.5s ease-in-out !important; /* 👈 yahan 1.5s ko apni marzi se badhao/kam karo */
  }
