/*
Theme Name: Sneh Clinic Theme
Author: Yogesh
Version: 1.0
*/
        /* ===== SLIDER ROUND DOCTOR IMAGES ===== */
.slide-image{
width:320px;
height:320px;
object-fit:cover;
border-radius:50%;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
border:6px solid #ffffff;
transition:0.4s ease;
}

.slide-image:hover{
transform:scale(1.05);
}

/* MOBILE RESPONSIVE */
@media (max-width:768px){
.slide-image{
width:220px;
height:220px;
}
}
/* ===== HERO SLIDER COMPACT FIX ===== */
.hero-slider{
padding:0;
margin:0;
overflow:hidden;
}

/* dots ko slider ke andar overlay karo */
.slider-dots{
position:absolute;
left:0;
right:0;
bottom:20px;
text-align:center;
z-index:5;
}

/* slider container ko proper height do */
.slider-viewport{
position:relative;
}

/* har slide full height occupy kare */
.slide{
padding:127px 0 60px 0;
margin:0;
}

/* next section se extra gap remove */
.main > section:first-child{
margin-bottom:0;
padding-bottom:0;
}

.single-hero-image {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.single-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* floating badge */
.certification-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.95);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
  .single-hero-image {
    height: 260px;
  }
}

/* FORCE MOBILE SCROLL MENU */
@media (max-width: 991px){

  .navmenu {
    display: block !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 !important;
    background: #fff;
  }

  .navmenu ul {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    padding: 0 10px !important;
    margin: 0 !important;
  }

  .navmenu li {
    list-style: none !important;
    flex: 0 0 auto !important;
  }

  .navmenu li a {
    display: inline-block !important;
    padding: 8px 14px !important;
    background: #f2f2f2 !important;
    border-radius: 20px !important;
    white-space: nowrap !important;
    font-size: 14px !important;
  }

  .navmenu li a.active {
    background: #0ea5a4 !important;
    color: #fff !important;
  }

  /* HIDE HAMBURGER */
  .mobile-nav-toggle {
    display: none !important;
  }

}