/* ===== FEATURE SECTION ===== */









/* ===== SLIDER SECTION ===== */


/* CAROUSEL INNER */
.carousel-inner {
  
  height: 400px;          /* Desktop height */
  position: relative;
  margin-top: 10px;
}

/* EACH SLIDE */
.carousel-item {
  
  height: 100%;
}

/* IMAGE */
.carousel-item img {
  
  height: 100%;
  object-fit: cover;     /* image stretch न होता fit */
  display: block;
}

/* ===== TABLET VIEW ===== */
@media (max-width: 992px) {
  .carousel-inner {
    height: 380px;
  }
}


/* ===== MOBILE VIEW ===== */
@media (max-width: 576px) {
  .carousel-inner {
    height: 240px;
  }

  .carousel-item img {
    object-fit: cover;
  }
}







.feature-section{
  padding:20px 30px;
  background:#ffffff;
}

.feature-container{
  /* max-width:1400px; */
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* CARD */
.feature-card{
  position:relative;
  background:#2f5672;
  color:#ffffff;
  height: 153px;
  padding:27px 30px 35px 90px;
  border-radius:12px;
}

/* ICON CIRCLE */
.icon-circle{
  position:absolute;
  left:-30px;
  top:50%;
  transform:translateY(-50%);
  width:70px;
  height:70px;
  background:#ffffff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.icon-circle i{
  font-size:30px;
  color:#2f5672;
}

/* TITLE */
.feature-card h3{
  font-size:22px;
  font-weight:700;
  margin-bottom:10px;
}

/* TEXT */
.feature-card p{
  font-size:16px;
  line-height:26px;
  margin:0;
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px){
  .feature-container{
    grid-template-columns:1fr;
  }

  .feature-card{
    padding:30px 25px 30px 85px;
  }

  .icon-circle{
    left:-25px;
  }
}

@media(max-width:576px){
  .feature-card{
    padding:7px 3px 25px 50px;
;
  }

  .feature-card h3{
    font-size:20px;
  }

  .feature-card p{
    font-size:15px;
  }
}


.vm-services-section{
  padding:23px 0;
  background:#fff;
}

.vm-section-sub{
  font-size:18px;
  font-weight:600;
  color:#305673;
}

.vm-section-title{
  font-size:28px;
  font-weight:700;
  color:#305673;
  margin-top:6px;
}

/* SLIDER */
.vm-slider-box{
  overflow:hidden;
}

.vm-slider-track{
  display:flex;
  gap:30px;
  transition:0.5s ease;
}

/* CARD */
.vm-service-card{
  flex:0 0 calc(33.333% - 20px);
  border-radius:16px;
  box-shadow:0 8px 25px rgba(0,0,0,0.12);
  border:none;
}

.vm-service-card .card-body{
  padding:25px;
}

/* IMAGE */
.vm-service-img{
  width:64px;
  margin-bottom:18px;
}

/* TITLE */
.vm-service-card h5{
  font-size:18px;
  font-weight:600;
  color:#305673;
  margin-bottom:12px;
}

/* TEXT */
.vm-service-card p{
  font-size:16px;
  line-height:26px;
  color: rgba(0,0,0);
  font-weight: 500;
  margin-bottom:22px;
}

/* BUTTON */
.vm-btn{
  background:#2f5672;
  color:#fff;
  padding:10px 22px;
  border-radius:8px;
  font-weight:500;
}

/* ARROWS */
.vm-nav-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:none;
  border:none;
  font-size:36px;
  color:#2f5672;
  cursor:pointer;
}

.vm-left{ left:-45px; }
.vm-right{ right:-45px; }

/* RESPONSIVE */
@media(max-width:992px){
  .vm-service-card{
    flex:0 0 calc(50% - 15px);
  }
}

@media(max-width:576px){
  .vm-service-card{
    flex:0 0 100%;
  }

  .vm-left{ left:0; }
  .vm-right{ right:0; }

  .vm-section-title{
    font-size:28px;
  }
}


/* ===== ABOUT HOSPITAL SECTION ===== */
.about-hospital{
  padding:40px 0;
  background:#fff;
}

/* GRID */
.about-grid{
  display:grid;
  grid-template-columns: 420px 1fr;
  grid-template-rows: auto auto;
  gap:0px 50px;
  align-items:start;
}

/* ===== LEFT IMAGE ===== */
.left-image{
padding-left: 13px;
}

.left-image img{
  width:368px;
      border: solid;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

/* EXPERIENCE BOX */
.experience-box{
     margin-top: 42px;

  background:#2f5672;
  color:#fff;
  padding:18px 26px;
  border-radius:12px;

  display:flex;
  align-items:center;
  gap:12px;
  box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

.experience-box span:first-child{
  font-size:34px;
  font-weight:700;
}

/* ===== RIGHT CONTENT ===== */
.right-content{
  grid-column:2;
}

.about-text{
  font-size:16px;
  line-height:26px;
  color:#000;
  font-weight: 500;
  margin-bottom:18px;
}

/* READ MORE BUTTON */
.read-more-btn{
  font-size: 16px;
  display:inline-block;
  background:#2f5672;
  color:#fff;
  padding:10px 24px;
  border-radius:8px;
  font-weight:500;
  text-decoration:none;
  margin-bottom:25px;
}

.read-more-btn:hover{
  background:#24475f;
}

/* FACILITY LIST */
.facility h4{
  font-size:20px;
  font-weight:700;
  color:#2f5672;
  margin-bottom:15px;
}

.facility ul{
  list-style:none;
  padding:0;
  margin:0;
}

.facility ul li{
  position:relative;
  padding-left:24px;
  margin-bottom:10px;
  line-height: 26px;
  font-size:16px;
  font-weight:600;
  color:#000;
}

.facility ul li::before{
  content:"›";
  position:absolute;
  left:0;
  color:#2f5672;
  font-size:22px;
  line-height:1;
}

/* ===== RIGHT BOTTOM IMAGE ===== */
.right-image{
  grid-column:2;
}

.right-image img{
  width:100%;
  border-radius:14px;
  border: solid ;
      margin-top: -170px;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
}
/* ===== MOBILE & TABLET FIX ===== */
@media (max-width: 992px){

  /* GRID RESET */
  .about-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  /* LEFT IMAGE */
  .left-image{
    padding-left:0;
    display:flex;
    justify-content:center;
  }

  .left-image img{
    width:100%;          /* 🔥 IMPORTANT */
    max-width:320px;     /* control size */
  }

  /* EXPERIENCE BOX */
  .experience-box{
    margin:20px auto 0;
    transform:none;
    left:auto;
    text-align:center;
  }

  /* RIGHT CONTENT */
  .right-content{
    grid-column:1;
    text-align:left;
  }

  /* RIGHT IMAGE */
  .right-image{
    grid-column:1;
  }

  .right-image img{
    margin-top:0;        /* 🔥 remove negative margin */
    width:100%;
  }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 576px){

  .about-hospital{
    padding:50px 0;
  }

  .about-text{
    font-size:15px;
    line-height:25px;
  }

  .facility ul li{
    font-size:15px;
    line-height:24px;
  }

  .experience-box{
    padding:12px 18px;
  }

  .experience-box span:first-child{
    font-size:26px;
  }
}
/* ===== MOBILE: IMAGE & EXPERIENCE ONE BY ONE ===== */
@media (max-width: 768px){

  /* GRID STACK */
  .about-grid{
    grid-template-columns: 1fr;
    gap:25px;
  }

  /* LEFT IMAGE CENTER */
  .left-image{
    padding-left:0;
    display:flex;
    flex-direction:column;   /* 🔥 important */
    align-items:center;
  }

  .left-image img{
    width:100%;
    max-width:300px;
  }

  /* EXPERIENCE BOX BELOW IMAGE */
  .experience-box{
    margin-top:15px;        /* image नंतर space */
    width:fit-content;
    text-align:center;
  }

  /* RIGHT CONTENT */
  .right-content{
    grid-column:1;
  }

  /* RIGHT IMAGE */
  .right-image{
    grid-column:1;
  }

  .right-image img{
    margin-top:0;
  }
}
.section-sub{
      font-size: 18px;
    font-weight: 600;
    color: rgb(48, 86, 115);
}
.section-titlee{
    font-size: 40px;
    font-weight: 700;
    color: rgb(48, 86, 115);
}










/* ================= WHY CHOOSE US ================= */
.why-choose-us{
  padding:20px 0;
  background:#ffffff;
  font-family:'Montserrat', sans-serif;
}

/* HEADING */
.section-sub{
  font-size:18px;
  font-weight:600;
  color:#2f5672;
  letter-spacing:1px;
}

.section-title{
  font-size:34px;
  font-weight:700;
  color:#2f5672;
  margin-bottom:30px;
}

/* ================= FACILITY GRID ================= */
.facility-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
  margin-top:29px;
}

/* CARD */
.facility-card{
  height: 79px;
  background:#ffffff;
  border-radius:14px;
  padding:22px 20px;
  text-align:center;
  font-size:18px;
  font-weight:600;
  color:#2f5672;
  box-shadow:0 6px 18px rgba(0,0,0,0.15);
  transition:all 0.3s ease;
}

.facility-card:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 26px rgba(0,0,0,0.2);
}

/* ================= APPOINTMENT BOX ================= */
.appointment-box{
  margin:20px auto 0;
  max-width:800px;
  background:#ffffff;
  border-radius:16px;
  padding:40px 20px;
  text-align:center;
  box-shadow:0 8px 25px rgba(0,0,0,0.15);
}

/* BUTTON */
.appointment-btn{
  background:#2f5672;
  color:#ffffff;
  border:none;
  padding:14px 40px;
  font-size:20px;
  font-weight:500;
  border-radius:35px;
  cursor:pointer;
  transition:0.3s;
}

.appointment-btn:hover{
  background:#24475f;
}

/* TIME TEXT */
.appointment-time{
  margin-top:18px;
  font-size:16px;
  font-weight:900;
  color:#000000;
}

/* ================= TABLET ================= */
@media (max-width: 992px){

  .section-title{
    font-size:30px;
  }

  .facility-grid{
    grid-template-columns:repeat(2, 1fr);
    gap:22px;
  }

  .facility-card{
    font-size:16px;
    padding:20px 16px;
  }

  .appointment-btn{
    font-size:17px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 576px){

  .why-choose-us{
    padding:60px 0;
  }

  .section-title{
    font-size:24px;
    line-height:30px;
  }

  .facility-grid{
    grid-template-columns:1fr;
    gap:18px;
    padding:0 12px;
  }

  .facility-card{
    font-size:15px;
    padding:18px 14px;
  }

  .appointment-box{
    margin-top:40px;
    padding:30px 15px;
  }

  .appointment-btn{
    width:100%;
    font-size:16px;
    padding:12px;
  }

  .appointment-time{
    font-size:15px;
    line-height:22px;
  }
}








.help-section{
  margin-top: 40px;
  position:relative;
  padding-top:77px;      /* stats + content space */
  padding-bottom:104px;   /* video-faq overlap space */
  background-image:url("../images/content.jpg");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}



.stats-box{
  position:absolute;
  top:-80px;
  left:50%;
  transform:translateX(-50%);
  width:92%;
  /* max-width:1150px; */

  background:#ffffff;
  border-radius:18px;
  padding:26px 100px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  box-shadow:0 12px 35px rgba(0,0,0,0.25);
  z-index:10;
}

.stat{
  /* flex:1; */
  text-align:center;
}

.stat h2{
  font-size:44px;
  font-weight:700;
  color:#2f5672;
  margin-bottom:6px;
}

.stat p{
  font-size:16px;
  font-weight:600;
  color:#000;
}

.stats-box .divider{
  width:1px;
  height:60px;
  background:#2f5672;
}

.help-content{
      display: flex;
    align-items: center;
    justify-content: space-evenly;
}


.help-text small{
  color:#ffffff;
  font-size:22px;
  font-weight:500;
}

.help-text h2{
  color:#ffffff;
  font-size:43px;
  font-weight:700;
  max-width:650px;
  line-height:56px;
}

.help-btn{
  background:#ffffff;
  color:#2f5672;
  padding:14px 36px;
  border-radius:6px;
  font-weight:600;
  text-decoration:none;
  white-space:nowrap;
}
.video-faq{
  position:relative;
  z-index:20;

  /* max-width:1150px; */
  margin:-100px auto 30px;   /* 🔥 overlap control */

  background:#ffffff;
  border-radius:18px;
  padding:30px;

  display:grid;
  grid-template-columns:1.1fr 1fr;
  /* gap:40px; */

  box-shadow:0 12px 35px rgba(0,0,0,0.25);
}


.video-box img{
  width:80%;
  border-radius:12px;
}

.faq-box h3{
  font-size:26px;
  font-weight:700;
  color:#2f5672;
  margin-bottom:20px;
}

.help-section{
  margin-top:98px;
  position:relative;
  padding-top:77px;
  padding-bottom:104px;
  background-image:url("../images/content.jpg");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.help-content{
  display:flex;
  align-items:center;
  justify-content:space-evenly;
}


@media (max-width: 576px){

  .help-section{
    padding:46px 0 100px;
  }

  .stats-box{
    padding:9px 15px;
    border-radius:14px;
  }

  .stat h2{
    font-size:20px;
  }

  .stat p{
    font-size:14px;
  }

  .help-content{
    padding:30px 15px;
  }

  .help-text small{
    font-size:18px;
  }

  .help-text h2{
    font-size:24px;
    line-height:32px;
  }

  .help-btn{
    width:100%;
    text-align:center;
    padding:14px 0;
  }

  .video-faq{
    display: flex;              
    flex-direction: column;     /* ONE BY ONE */
    gap: 25px;

    margin: -95px 7px 50px;
    padding: 25px 15px;
  }

  .video-box,
  .faq-box{
    width: 100%;
  }
    
  .video-box img{
    width: 100%;
    height: auto;
    border-radius: 12px;
  }
}












/* ===== TESTIMONIAL SECTION ===== */
.mononials-section{

  background:#fff;
  font-family: 'Montserrat', sans-serif;
}

/* ===== LEFT SUMMARY ===== */
.mononials-summary{
  text-align:center;
}

.mononials-summary h3{
  font-size:28px;
  font-weight:700;
  margin-bottom:10px;
}

.mononials-summary p{
  font-size:15px;
  color:#555;
}

.mononials-google-logo{
  width:120px;
  margin-top:10px;
}

.mononials-stars{
  color:#fbbc04;
  font-size:26px;
  margin:10px 0;
}

/* ===== SLIDER WRAPPER ===== */
.mononials-slider-wrapper{
  position:relative;
  overflow:hidden;
}

/* ===== SLIDER ===== */
.mononials-slider{
  display:flex;
  gap:20px;
  transition:transform 0.5s ease;
}

/* ===== CARD ===== */
.mononials-card{
  min-width:32%;
  background:#fff;
  border-radius:8px;
  border:1px solid #e2e2e2;
  padding:20px;
}

/* ===== USER ROW ===== */
.mononials-user{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}

.mononials-avatar{
  width:42px;
  height:42px;
  border-radius:50%;
  background:#90a4ae;
  color:#fff;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
}

.mononials-avatar.purple{
  background:#7b1fa2;
}

.mononials-user h4{
  font-size:15px;
  font-weight:600;
  margin:0;
}

.mononials-user span{
  font-size:12px;
  color:#888;
}

.mononials-g-icon{
  margin-left:auto;
  width:18px;
}

/* ===== TEXT ===== */
.mononials-card p{
  font-size:14px;
  color:#444;
  line-height:22px;
}

/* ===== ARROWS ===== */
.mononials-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:#fff;
  border:1px solid #ccc;
  width:38px;
  height:38px;
  border-radius:50%;
  cursor:pointer;
  z-index:5;
}

.mononials-prev{ left:-18px; }
.mononials-next{ right:-18px; }

/* ===== RESPONSIVE ===== */

/* Tablet */
@media(max-width:992px){
  .mononials-card{
    min-width:48%;
  }
}

/* Mobile */
@media(max-width:576px){
  .mononials-card{
    min-width:100%;
  }

  .mononials-summary{
    margin-bottom:30px;
  }
}


/* ===== GALLERY SECTION ===== */
.monogallery-section{
  padding:30px 0;
  background:#fff;
}

.monogallery-section h3{
  font-size:28px;
  font-weight:700;
  color:#305673;
}

/* ===== WRAPPER ===== */
.monogallery-wrapper{
  position:relative;
  overflow:hidden;
}

/* ===== SLIDER ===== */
.monogallery-slider{
  display:flex;
  gap:25px;
  transition:transform 0.5s ease;
}

/* ===== ITEM ===== */
.monogallery-item{
  min-width:32%;
}

.monogallery-item img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:14px;
  border:2px solid #000;
}

/* ===== BUTTONS ===== */
.monogallery-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:#fff;
  border:none;
  font-size:28px;
  cursor:pointer;
  width:42px;
  height:42px;
  border-radius:50%;
  box-shadow:0 4px 12px rgba(0,0,0,0.25);
  z-index:5;
}

.monogallery-prev{ left:-20px; }
.monogallery-next{ right:-20px; }

/* ===== RESPONSIVE ===== */
@media(max-width:992px){
  .monogallery-item{
    min-width:48%;
  }
}

@media(max-width:576px){
  .monogallery-item{
    min-width:100%;
  }

  .monogallery-btn{
    display:none;
  }
}




*{
  box-sizing: border-box;
}

html, body{
  width:100%;
  overflow-x:hidden;
  margin:0;
  padding:0;
}

/* Remove container side gap on mobile */
@media (max-width:576px){
  .container{
    max-width:100% !important;
    padding-left:10px !important;
    padding-right:10px !important;
  }
}
@media(max-width:576px){

  .monogallery-btn{
    display:flex;              /* SHOW buttons */
    align-items:center;
    justify-content:center;

    width:36px;
    height:36px;
    font-size:22px;

    background:#fff;
    border-radius:50%;
    box-shadow:0 4px 10px rgba(0,0,0,0.25);
  }

  .monogallery-prev{ left:5px; }
  .monogallery-next{ right:5px; }
}




.about-hospital{
  position: relative;
  padding:40px 0;
  background:
    linear-gradient(
      to right,
      rgba(255, 252, 252, 0.05) 0%,
      rgba(255, 252, 252, 0.05) 50%,
      transparent 90%
    ),
    url("../images/pattern-2.png");

  background-repeat: no-repeat;
  background-size: 32% 80%;   /* LEFT 50% only */
  background-position: left top;
}
