.video-highlight{
  position:relative;
  padding:100px 0;
  overflow:hidden;
}

/* background */
.bg-img{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  top:0;
  left:0;
  filter:blur(3px);
  transform:scale(1.05);
}

/* overlay */
.overlay{
  position:absolute;
  inset:0;
  background:rgba(17,74,140,0.35);
}

/* play button */
.play-circle{
  width:120px;
  height:120px;
  background:rgba(30,99,182,0.25);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#ff7a00;
  font-size:40px;
  cursor:pointer;
  transition:.3s;
}

.play-circle:hover{
  transform:scale(1.1);
  background:rgba(30,99,182,0.35);
}

/* info card */
.video-card{
  background:linear-gradient(135deg,#1e63b6,#3e86d4);
  color:#fff;
  padding:35px;
  border-radius:20px;
  max-width:520px;
}

.video-card h3{
  font-weight:700;
  margin-bottom:10px;
}

.video-card p{
  opacity:.95;
  line-height:1.6;
}

/* responsive */
@media(max-width:991px){
  .video-highlight{
    text-align:center;
    padding:70px 0;
  }

  .play-circle{
    margin:0 auto 30px;
  }

  .video-card{
    margin:auto;
  }
}
.video-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.7);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.video-modal-content{
    position: relative;
    width: 700px;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}
@media(max-width:768px){
  .video-modal-content{
    width: 100%;
  }
}
.video-modal-body{
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
}
.video-modal-overlay{
  position:absolute;
  inset:0;
  cursor:pointer;
  background: rgba(0, 0, 0, 0.171);
}

.video-modal iframe{
  width:100%;
  height:100%;
  border-radius:10px;
}

.close-video{
  position:absolute;
  top:-30px;
  right:0;
  color:#fff;
  font-size:30px;
  cursor:pointer;
}
/* hero section */
.service-hero{
  border-radius:18px;
  overflow:hidden;
}

.service-title{
  position:absolute;
  top:40px;
  left:40px;
  color:#1e63b6;
}

.service-title h1{
  font-weight:800;
  font-size:48px;
  margin:0;
  color:#2a6edc;
}

.service-title h3{
  color:#ff7a00;
  margin:0;
}

/* sidebar */
.explore-card{
  background:#fff;
}

.explore-item{
  display:flex;
  gap:12px;
  margin-bottom:18px;
  cursor:pointer;
  transition:.2s;
}

.explore-item img{
  width:50px;
  height:50px;
  object-fit:contain;
}

.explore-item h6{
  margin:0;
  font-weight:600;
}

.explore-item p{
  margin:0;
  font-size:13px;
  color:#6c757d;
}

.explore-item:hover h6{
  color:#1e63b6;
}

/* mobile */
@media(max-width:768px){

  .service-title{
    position:absolute;
    top:20px;
    left:20px;
  }

  .service-title h1{
    font-size:28px;
  }

  .service-title h3{
    font-size:18px;
  }

}
.section-title span{
  color:#888;
  font-weight:400;
}

/* card */
.doctor-card{
  position:relative;
}

/* circle background */
.doctor-image{
  position:relative;
  width:100%;
  margin:auto;
}

.circle-bg{
  width:100%;
  height:100%;
  background: linear-gradient(transparent, #006dcc66);
  position:absolute;
  visibility: hidden;
  opacity: 0;
  transition:.3s;
}
.doctor-card:hover .circle-bg{
  visibility: visible;
  opacity: 1;
}
.doctor-image img{
    transform:scale(0.95);
    max-width:100%;
    transition:.3s;
}
.doctor-card:hover .doctor-image img{
    transform:scale(1);
    transition:.3s;
}

/* badge */
.doctor-badge{
  margin-top:-15px;
  display:inline-block;
  background:#eaf2ff;
  color:#1e63b6;
  border-radius:12px;
  padding:6px 12px;
  font-size:14px;
  border:2px solid #cfe0ff;
}

/* name */
.doctor-card h5{
  margin-top:15px;
  font-weight:600;
}

.doctor-card p{
  color:#666;
  font-size:12px;
}
.blog-section{
    background:#f8fafc;
}

/* sidebar */
.sidebar .card{
    border-radius:12px;
    border:1px solid #e5e7eb;
}

/* language toggle */
.lang-toggle{
    display:flex;
    background:#0d6efd;
    border-radius:20px;
    padding:2px;
}

.lang-toggle span{
    font-size:12px;
    padding:3px 10px;
    border-radius:20px;
    color:#fff;
}

.lang-toggle span.active{
    background:#fff;
    color:#0d6efd;
}

/* categories */
.category-list{
    list-style:none;
    padding:0;
    margin:0;
}

.category-list li{
    padding:8px 10px;
    border-radius:8px;
    cursor:pointer;
    font-size:14px;
}

.category-list li.active{
    background:#e7f1ff;
    color:#0d6efd;
    font-weight:600;
}

.category-list li:hover{
    background:#f1f5f9;
}

/* search */
.search-box{
    position:relative;
}

.search-box input{
    width:100%;
    padding:12px 45px 12px 15px;
    border-radius:10px;
    border:1px solid #d1d5db;
}

.search-box button{
    position:absolute;
    right:5px;
    top:5px;
    bottom:5px;
    border:none;
    background:#0d6efd;
    color:#fff;
    padding:0 18px;
    border-radius:8px;
}

/* blog card */
.blog-card{
    display:flex;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:14px;
    overflow:hidden;
    margin-bottom:20px;
    transition:.3s;
}

.blog-card:hover{
    border-color:#d1d5db;
    transform:translateY(-2px);
}

.blog-image{
    width:260px;
    position:relative;
}

.blog-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.badge-category{
    position:absolute;
    top:10px;
    left:10px;
    background:#fff;
    padding:3px 8px;
    font-size:12px;
    border-radius:6px;
}

.blog-content{
    padding:20px;
    flex:1;
}

.blog-content .date{
    color:#6b7280;
    font-size:14px;
}

.blog-content h4{
    margin:8px 0;
    font-size:20px;
    font-weight:600;
}

.blog-content p{
    color:#6b7280;
}

.read-more{
    color:#0d6efd;
    font-weight:600;
    text-decoration:none;
}

.read-more:hover{
    text-decoration:underline;
}

/* responsive */
@media(max-width:768px){
    .blog-card{
        flex-direction:column;
    }

    .blog-image{
        width:100%;
        height:200px;
    }
}
.about-section{
  background:#f8fafc;
}

/* image layout */
.about-image-wrapper{
  position:relative;
  border-radius:20px;
}

.main-img{
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

/* floating card */
.floating-card{
  position:absolute;
  bottom:-40px;
  right:30px;
  background: linear-gradient(295deg, #738186, #b1d0eb);
  padding:12px;
  border-radius:16px;
  box-shadow:0 15px 35px rgba(0,0,0,0.12);
  width:65%;
  border: 4px solid white;
}

.floating-card img{
  border-radius:12px;
}

/* sparkle */
.sparkle{
  position:absolute;
  bottom:-30px;
  left:20px;
  width:60px;
  height:60px;
  background: radial-gradient(circle, #3b82f6 20%, transparent 20%);
  opacity:.25;
}

/* tag */
.section-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:600;
  color:#0d6efd;
  letter-spacing:1px;
  margin-bottom:15px;
}

/* title */
.about-title{
  font-size:42px;
  font-weight:700;
  line-height:1.2;
}
/* Get in Touch cards (contact page) */
.get-in-touch .section-heading{
  font-size:28px;
  font-weight:700;
  margin-bottom:6px;
}
.get-in-touch .section-heading span{
  font-size:28px;
}
.contact-card{
  background:#fff;
  border-radius:12px;
  padding:26px;
  border:1px solid #eef3f8;
  transition:transform .25s ease, box-shadow .25s ease;
}
.contact-card:hover{ transform:translateY(-6px); box-shadow:0 18px 40px rgba(31,93,163,0.08); }
.contact-icon{
  width:56px;
  height:56px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#eaf4ff;
  color:#0d6efd;
  font-size:20px;
}
.contact-title{ margin-top:6px; font-weight:700; margin-bottom:6px; }
.contact-text{ color:#6b7280; font-size:14px; line-height:1.6; }
.hours-badges{ max-width:220px; }
.hours-row{ display:flex; justify-content:space-between; align-items:center; padding:8px 10px; background:#f7fbff; border-radius:8px; border:1px solid #eef6ff; }
.hours-row .label{ font-size:12px; color:#6b7280; font-weight:600; }
.hours-row .time{ font-size:13px; font-weight:700; color:#2b3a4a; }
.hours-row.closed{ background:#fff0f0; border-color:#ffe6e6; }
.hours-row.closed .time{ color:#e74c3c; }

@media(max-width:767px){
  .get-in-touch .section-heading{ font-size:22px; }
  .contact-card{ padding:18px; }
  .contact-icon{ width:48px; height:48px; }
}

.about-title span{
  color:#0d6efd;
  font-size:42px;
  font-weight:700;
  line-height:1.2;
}

/* text */
.about-text{
  color:#6b7280;
  line-height:1.7;
}

/* features */
.feature-box{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px;
  border:1px solid #e5e7eb;
  border-radius:12px;
  background:#fff;
  font-weight:600;
  transition:.3s;
}

.feature-box i{
  color:#0d6efd;
  font-size:18px;
}

.feature-box:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

/* responsive */
@media(max-width:992px){
  .floating-card{
    margin-top:20px;
    width:80%;
    right: 0;
  }

  .sparkle{
    display:none;
  }

  .about-title{
    font-size:32px;
  }
  .about-title span{
    font-size:32px;
  }
}

/* Commit hero (Inserted for about page) */
.commit-hero{
  background: #ffffff;
  padding:40px 0;
}
.commit-hero .commit-title{
  font-size:25px;
  font-weight:600;
  margin:0;
  color:#1e63b6;
}
.commit-hero .commit-title .text-primary{ color:#0d6efd; }
.commit-subtitle{
  color:#6b7280;
  font-size:15px;
  line-height:1.7;
  margin-top:0.75rem;
}
@media(min-width:768px){
  .commit-hero .commit-title{ font-size:40px; line-height:50px; }
  .commit-subtitle{ font-size:16px; }
}
.map-section{
  padding:60px 0;
  background:#f7f9fc;
}

.map-title{
  font-size:26px;
  font-weight:600;
  color:#222;
  margin-bottom:25px;
}

/* map container */
.map-wrapper{
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  border:1px solid #e5e7eb;
}

/* responsive iframe */
.map-wrapper iframe{
  width:100%;
  height:450px;
  border:0;
}
@media (max-width:768px){
  .map-wrapper iframe{
    height:320px;
  }
}


/* CONTACT CARD */
.contact-card{
  padding:35px;
  border-radius:18px;
}
.contact-card_info{
  background:#a9c1d6;
  color:#fff;
}
.contact-card h3 span{
  color:#1e63b6;
}

.contact-sub{
  color:#eef5fb;
  margin-bottom:20px;
}

/* phone input */
.phone-input{
  display:flex;
  align-items:center;
  background:#fff;
  border-radius:8px;
  padding:10px;
}

.phone-input span{
  margin-right:8px;
  color:#333;
}

.phone-input input{
  border:none;
  outline:none;
  width:100%;
}

/* sparkle */
.sparkle{
  position:absolute;
  left:-20px;
  bottom:-20px;
  width:40px;
  height:40px;
  background:radial-gradient(circle,#1e63b6 10%,transparent 60%);
  opacity:0.4;
}
