
.site-logo{
  width: clamp(180px, 18vw, 280px); /* ðŸ‘ˆ noticeably bigger */
  height: auto;
  max-height: 90px;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 992px){
  .site-logo{
    width: 180px;
    max-height: 80px;
  }
}

/* Mobile */
@media (max-width: 576px){
  .site-logo{
    width: 120px;     /* mobile me bhi clear & readable */
    max-height: 70px;
  }
}


.image-wrapper {
 /* overflow: hidden;
  border-radius: 16px;*/
}

.carousel-item img {
  height: 100%;
  object-fit: cover;
}


.tech-section{padding:60px 0;}
.tech-tabs{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
  margin-bottom:22px;
}
.tech-tab{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:14px 16px;
  display:flex;
  gap:12px;
  align-items:center;
  text-align:left;
  cursor:pointer;
  transition:.25s;
}
.tech-tab i{
  width:46px;height:46px;border-radius:12px;
  display:grid;place-items:center;
  background:rgba(37,99,235,.08);
  color:var(--accent-color);
  font-size:22px;
}
.tech-tab strong{display:block;font-size:15px;color:#0f172a;}
.tech-tab small{display:block;font-size:12px;color:#6b7280;margin-top:2px;}
.tech-tab.active{
  background:linear-gradient(135deg,var(--accent-color),#0ea5e9);
  border-color:transparent;
  box-shadow:0 16px 40px rgba(37,99,235,.18);
}
.tech-tab.active i{background:rgba(255,255,255,.18);color:#fff;}
.tech-tab.active strong,.tech-tab.active small{color:#fff;}

.tech-card{
  background:#fff;
  border-radius:18px;
  padding:26px;
  box-shadow:0 18px 50px rgba(15,23,42,.08);
}
.tech-pane{display:none;}
.tech-pane.active{display:block;}

.tech-icon-lg{
  width:64px;height:64px;border-radius:18px;
  background:rgba(37,99,235,.10);
  color:var(--accent-color);
  display:grid;place-items:center;
  font-size:28px;
  margin-bottom:12px;
}
.tech-text{color:#4b5563;line-height:1.75;margin:10px 0 14px;}
.tech-points{list-style:none;padding:0;margin:0 0 18px;display:grid;gap:10px;}
.tech-points li{display:flex;gap:10px;align-items:flex-start;color:#111827;font-size:14px;}
.tech-points i{color:var(--accent-color);margin-top:2px;}

.tech-btn{
  display:inline-flex;gap:10px;align-items:center;
  background:var(--accent-color);
  color:#fff;text-decoration:none;
  padding:12px 18px;border-radius:999px;
  font-weight:600;
}
.tech-btn:hover{opacity:.92;color:#fff;}

.tech-image{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 18px 50px rgba(15,23,42,.12);
}
.tech-image img{width:100%;height:auto;display:block;object-fit:cover;}
.tech-badge{
  position:absolute;left:18px;bottom:18px;
  background:#fff;
  border-radius:14px;
  padding:12px 14px;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
}
.tech-badge small{display:block;color:#6b7280;font-size:11px;letter-spacing:.08em;}
.tech-badge b{display:block;color:#0f172a;font-size:14px;margin-top:2px;}

@media (max-width: 992px){
  .tech-tabs{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width: 576px){
  .tech-tabs{grid-template-columns:1fr;}
  .tech-card{padding:18px;}
}



.benefits-section{padding:70px 0;background:#f5f9ff;}
.section-head h2{font-size:34px;color:#0f172a;font-weight:800;}
.section-head h2 span{color:var(--accent-color);}
.section-head p{color:#6b7280;margin-top:8px;}

.benefit-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:22px;
  height:100%;
  transition:.25s;
}
.benefit-card i{
  width:52px;height:52px;border-radius:14px;
  display:grid;place-items:center;
  background:rgba(37,99,235,.10);
  color:var(--accent-color);
  font-size:24px;
  margin-bottom:12px;
}
.benefit-card h4{font-size:16px;font-weight:700;color:#0f172a;margin:0 0 6px;}
.benefit-card p{font-size:14px;color:#4b5563;line-height:1.7;margin:0;}
.benefit-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 40px rgba(15,23,42,.10);
  border-color:transparent;
}


/*.benefit-image-box{
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(15,23,42,.12);
  transition: all .4s ease;
}

.benefit-image-box img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform .6s ease;
}*/



.benefit-image-box{
  background: #fff;      /* blank space fill */
}

.benefit-image-box img{
  width: 100%;
  height: 320px;         /* same height maintain */
  object-fit: contain;   /* âœ… no crop */
  padding: 10px;         /* optional */
  display: block;
}


.benefit-image-box:hover img{
  transform: scale(1.03);   /* contain me small zoom better */
}



/* Hover effect */
.benefit-image-box:hover{
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(37,99,235,.25);
}

.benefit-image-box:hover img{
  transform: scale(1.08);
}

/* Mobile */
@media (max-width: 576px){
  .benefit-image-box img{
    height: 220px;
  }
}





/* summary */
.selected-summary{
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(37,99,235,.18);
  box-shadow: 0 10px 25px rgba(15,23,42,.06);
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.selected-summary .sum-item{display:flex;gap:8px;align-items:center;font-size:14px;}
.selected-summary .label{color:#6b7280;font-weight:700;}
.selected-summary .value{color:#0f172a;font-weight:900;}

/* dropdown toggle button */
.cal-toggle{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-weight: 800;
  color:#0f172a;
  transition:.25s;
}
.cal-toggle:hover{
  border-color: rgba(37,99,235,.25);
  box-shadow: 0 12px 26px rgba(15,23,42,.06);
}
.cal-toggle i{transition:.25s;}

/* dropdown panel */
.cal-dropdown{
  position: relative;
  display:none;
  margin-top:10px;
}
.cal-dropdown.open{display:block;}
.cal-toggle.open i{transform: rotate(180deg);}

/* calendar box (compact) */
.cal{
  background:#f8fbff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:14px;
  max-height: 520px;            /* âœ… big space avoid */
  overflow:auto;                /* âœ… scroll inside */
}

/* header */
.cal-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}
.cal-title{font-weight:900;color:#0f172a;}
.cal-btn{
  width:36px;height:36px;
  border-radius:10px;
  border:1px solid #e5e7eb;
  background:#fff;
  font-size:20px;
  transition:.25s;
}
.cal-btn:hover{
  background:rgba(37,99,235,.08);
  border-color:rgba(37,99,235,.25);
}

/* week + grid */
.cal-week{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:6px;
  font-size:12px;
  font-weight:800;
  color:#64748b;
  margin-bottom:8px;
}
.cal-grid{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:8px;
  min-height: 220px;
}
.cal-grid .day{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:12px;
  padding:10px 0;
  text-align:center;
  cursor:pointer;
  font-weight:900;
  color:#0f172a;
  transition:.2s;
}
.cal-grid .day:hover{transform:translateY(-2px);box-shadow:0 10px 20px rgba(0,0,0,.08);}
.cal-grid .day.selected{background:var(--accent-color);color:#fff;border-color:transparent;}
.cal-grid .day.disabled{opacity:.4;cursor:not-allowed;}
.cal-grid .empty{visibility:hidden;}

/* slots */
.slot-box{
  margin-top:12px;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:12px;
}
.slot-h{font-weight:900;color:#0f172a;font-size:13px;margin-bottom:10px;}
.slots{display:flex;flex-wrap:wrap;gap:10px;}
.slots .hint{color:#6b7280;font-size:13px;}
.slots .slot{
  border:1px solid #e5e7eb;
  background:#f8fafc;
  padding:8px 12px;
  border-radius:999px;
  cursor:pointer;
  font-weight:900;
  font-size:13px;
  transition:.25s;
}
.slots .slot:hover{background:rgba(37,99,235,.08);border-color:rgba(37,99,235,.25);}
.slots .slot.selected{background:var(--accent-color);color:#fff;border-color:transparent;}

/* dropdown footer */
.cal-actions{
  display:flex;
  justify-content:flex-end;
  margin-top:12px;
}
.cal-close{
  background: var(--accent-color);
  color:#fff;
  border:none;
  padding:10px 16px;
  border-radius:999px;
  font-weight:900;
}

/* mobile */
@media(max-width:576px){
  .cal{max-height: 520px;}
}



/* =========================
   THEME
========================= */
:root{
  --navy:#007ab3;
  --navy2:#0f3354;
  --yellow:#fff;
 
  
  --white:#fff;
  --muted:#6b7f93;
  --shadow:0 18px 44px rgba(0,0,0,.16);
  --shadow2:0 12px 30px rgba(0,0,0,.10);
  --radius:18px;
  --red:#c91d1d;
}

.wrap{width:min(1200px,100%);margin:auto}


/* =========================
   BRANCH SECTION
========================= */
.branch-hero{
  background:linear-gradient(180deg,var(--navy),var(--navy2));
  padding:44px 0 54px;
  color:#fff;
}

.branch-head{
  text-align:center;
  margin-bottom:22px;
}
.branch-head h2{
  margin:0;
  font-size:44px;
  letter-spacing:.3px;
  font-weight:1000;
  color:var(--yellow);
}
.branch-sub{
  margin-top:8px;
  font-weight:900;
  font-size:22px;
  letter-spacing:1px;
  text-transform:uppercase;
}
.branch-line{
  margin-top:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
}
.branch-line span{
  width:260px;
  height:4px;
  border-radius:999px;
  background:rgba(255,255,255,.85);
}
.branch-line i{font-size:18px;opacity:.95}

.branch-box{
  background:#fff;
  border-radius:22px;
  padding:26px;
  box-shadow:var(--shadow);
  color:#0a2233;
}
.branch-title{
  font-size:18px;
  font-weight:1000;
  margin-bottom:14px;
}
.branch-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.branch-card{
  border:1px solid rgba(20,60,90,.18);
  background:#fff;
  border-radius:16px;
  padding:16px;
  cursor:pointer;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  transition:.25s ease;
  box-shadow:0 10px 22px rgba(0,0,0,.06);
}
.branch-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 38px rgba(0,0,0,.12);
}
.branch-card.is-active{
  outline:3px solid rgba(255,214,51,.55);
  border-color:rgba(255,214,51,.7);
}
.branch-img{
  width:62px;height:62px;border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.12);
}
.branch-img img{width:100%;height:100%;object-fit:cover;display:block}
.branch-name{font-weight:1000;color:#1b2a3a}
.branch-note{margin-top:14px;color:var(--muted);font-weight:700}

/* =========================
   SECTION TITLE
========================= */
.sec-title{text-align:center;margin:44px 0 18px}
.sec-title h2{margin:0;font-size:34px;font-weight:1000;color:#0a2233}
.sec-title p{margin:8px 0 0;color:var(--muted);font-weight:700}



/* =========================
   GALLERY
========================= */
.gallery-wrap{padding:0 0 60px}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.gal-item{
  border:none;background:transparent;
  padding:0;cursor:pointer;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 28px rgba(0,0,0,.12);
  border:1px solid rgba(0,0,0,.10);
  transition:.25s ease;
}
.gal-item:hover{transform:translateY(-6px);box-shadow:0 22px 44px rgba(0,0,0,.16)}
.gal-item img{width:100%;height:180px;object-fit:cover;display:block}

/* Lightbox */
.lightbox{
  position:fixed;inset:0;
  background:rgba(0,0,0,.76);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}
.lightbox.open{display:flex}
.lightbox img{
  width:min(980px,92%);
  max-height:80vh;
  object-fit:contain;
  border-radius:18px;
  box-shadow:0 24px 70px rgba(0,0,0,.35);
  background:#000;
}
.lb-close{
  position:absolute;top:18px;right:18px;
  width:46px;height:46px;border-radius:14px;
  border:none;cursor:pointer;
  font-weight:1000;
}
.lb-nav{
  position:absolute;top:50%;
  transform:translateY(-50%);
  width:54px;height:54px;border-radius:16px;
  border:none;cursor:pointer;
  font-size:36px;
  background:rgba(255,255,255,.92);
}
.lb-nav.prev{left:18px}
.lb-nav.next{right:18px}
.lb-count{
  position:absolute;bottom:18px;left:50%;
  transform:translateX(-50%);
  background:rgba(255,255,255,.92);
  padding:8px 12px;border-radius:999px;
  font-weight:1000;color:#0a2233;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:980px){
  .branch-grid{grid-template-columns:1fr}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
  .branch-head h2{font-size:34px}
  .branch-line span{width:160px}
  .svc-points{grid-template-columns:1fr}
}
@media(max-width:520px){
  .services-grid{grid-template-columns:1fr}
  .gallery-grid{grid-template-columns:1fr}
  .gal-item img{height:160px}
}






.svc-half{
  width:42%;
/*  background:#f1f5f9;*/
}
.svc-half img{
  width:50%;
  height:50%;
  object-fit:cover;
  display:block;
}
.svc-content{
  width:100%;
  padding:16px 16px 18px;
}
.service-card .card-number span{
  display:inline-flex;
  width:44px;height:44px;
  border-radius:14px;
  align-items:center;justify-content:center;
  background: rgba(0,122,179,.12);
  color: var(--accent-color,#007ab3);
  font-weight:900;
}
.service-more span{
  display:inline-block;
  background: var(--accent-color,#007ab3);
  color:#fff;
  padding:9px 12px;
  border-radius:12px;
  font-weight:900;
}
.service-title a{color:var(--heading-color,#0f172a); text-decoration:none;}
.service-description{color:#475569; line-height:1.6; font-size:14px;}

@media(max-width:768px){
  .service-card.svc-card{flex-direction:column;}
  .svc-half,.svc-content{width:100%;}
  .svc-half{height:180px;}
}

/* ==== POPUP MODAL ==== */
.svc-modal{
  position:fixed; inset:0;
  background:rgba(2,6,23,.55);
  display:none;
  align-items:center;
  justify-content:center;
  padding:14px;
  z-index:9999;
}
.svc-modal.open{display:flex;}
.svc-modal-box{
  width:min(980px, 100%);
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 25px 90px rgba(0,0,0,.25);
}
.svc-modal-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 16px;
  background:#f1f5f9;
}
.svc-modal-h{font-weight:900;color:#0f172a;}
.svc-x{
  width:38px;height:38px;
  border-radius:12px;
  border:0;
  background:#fff;
  cursor:pointer;
  font-size:18px;
}
.svc-modal-body{
  display:grid;
  grid-template-columns: 1fr 1fr;
}
.svc-modal-img{
  background:#f8fafc;
  border-right:1px solid #e5e7eb;
  min-height:320px;
}
.svc-modal-img img{width:100%;height:100%;object-fit:cover;display:block;}
.svc-modal-content{padding:18px;}
.svc-modal-content h3{margin:0 0 10px;font-size:26px;}
.svc-modal-content p{margin:0;color:#334155;line-height:1.8;}
.svc-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px;}
.svc-a{padding:10px 14px;border-radius:12px;text-decoration:none;font-weight:900;display:inline-block;}
.svc-a.primary{background:var(--accent-color,#007ab3);color:#fff;}
.svc-a.outline{border:1px solid var(--accent-color,#007ab3);color:var(--accent-color,#007ab3);background:#fff;}

@media(max-width:800px){
  .svc-modal-body{grid-template-columns:1fr;}
  .svc-modal-img{border-right:0;border-bottom:1px solid #e5e7eb;min-height:220px;}
}


/* Front thumb (small) */
.services-grid .service-thumb{
  height: 120px;
}
.services-grid .service-thumb img{
  object-fit: cover;
}


/* Popup image (big) */
.service-modal-img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
@media(max-width:768px){
  .service-modal-img{ height: 220px; }
}



.branch-card{
  background:#fff;
  border:2px solid #eef2f6;
  border-radius:18px;
  padding:22px 22px 18px;
  text-align:center;
  transition:all .35s ease;
}

.branch-card:hover{
  border-color:#ffffff;
  box-shadow:0 14px 35px rgba(0,0,0,.12);
  transform:translateY(-6px);
}


.branch-card .info-icon{
  width:56px;
  height:56px;
  margin:0 auto 14px;
  border-radius:50%;
  background:#007ab3;
  display:flex;
  align-items:center;
  justify-content:center;
}

.branch-card .info-icon i{
  color:#fff;
  font-size:22px;
}

.branch-card .info-content p{
  margin:0 auto 16px;
  max-width:520px;
  font-size:15px;
  line-height:1.65;
  color:#222;
}

/*.call-box{
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:center;
}

.call-row{
  width:100%;
  max-width:340px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 12px;
  border-radius:12px;
  background:#f7f9fc;
  border:1px solid #e8eef5;
}

.call-row i{
  font-size:18px;
  color:#007ab3;
}

.call-row a{
  font-weight:700;
  font-size:16px;
  color:#007ab3;
  text-decoration:none;
}

.call-tag{
  margin-left:8px;
  font-size:12px;
  font-weight:700;
  padding:4px 8px;
  border-radius:999px;
  background:#fff2c6;
  color:#7a5a00;
  border:1px solid #f5c542;
}

/* Emergency row *

.call-row.emergency{
  background:#fff5f5;
  border-color:#ffd1d1;
}

.call-row.emergency i,
.call-row.emergency a{
  color:#c1121f;
}

.call-row.emergency .call-tag{
  background:#c1121f;
  border-color:#c1121f;
  color:#fff;
}*/


/* Hover icon invert */
.branch-card:hover .info-icon{
  background:#ffffff;
}
.branch-card:hover .info-icon i{
  color:#007ab3;
}




.call-line{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-top:16px;
  flex-wrap:wrap; /* mobile friendly */
}

.call-item{
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:30px;
  font-weight:700;
  font-size:15px;
  text-decoration:none;
}

/* OPD */
.call-item.opd{
  background:#f1f7ff;
  border:1px solid #d6e6ff;
  color:#007ab3;
}
.call-item.opd i,
.call-item.opd a{
  color:#007ab3;
}

/* Emergency */
.call-item.emergency{
  background:#fff0f0;
  border:1px solid #ffbdbd;
}
.call-item.emergency i,
.call-item.emergency a{
  color:#c1121f;
}

/* Number link */
.call-item a{
  text-decoration:none;
  font-weight:700;
}

/* Tag */
.call-item .tag{
  font-size:11px;
  padding:4px 10px;
  border-radius:999px;
  font-weight:800;
}

.call-item.opd .tag{
  background:#0b76b7;
  color:#ffffff;
}

.call-item.emergency .tag{
  background:#c1121f;
  color:#fff;
}

/* Divider */
.divider{
  width:1px;
  height:34px;
  background:#ddd;
}



.contact-image-card{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  min-height: 520px;
  background:#000;
}

.contact-image-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform: scale(1.02);
}

.contact-image-overlay{
  position:absolute;
  inset:auto 0 0 0;
  padding:18px 18px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.75) 100%);
  color:#fff;
}

.contact-image-overlay h3{ margin:0 0 6px; font-size:22px; }
.contact-image-overlay p{ margin:0; opacity:.9; font-size:14px; }



.thankyou-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.thankyou-popup{
  background:#fff;
  padding:30px 28px;
  border-radius:16px;
  text-align:center;
  max-width:380px;
  width:90%;
  animation:pop .3s ease;
}

.thankyou-popup .icon{
  width:60px;
  height:60px;
  margin:0 auto 14px;
  background:#22c55e;
  color:#fff;
  font-size:30px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.thankyou-popup h3{
  margin:0 0 8px;
}

.thankyou-popup p{
  font-size:15px;
  color:#555;
  margin-bottom:18px;
}

.btn-close{
  display:inline-block;
  padding:10px 24px;
  background:#007ab3;
  color:#fff;
  border-radius:999px;
  text-decoration:none;
}

@keyframes pop{
  from{transform:scale(.8);opacity:0}
  to{transform:scale(1);opacity:1}
}

.btn-close-ty{
  display:inline-block;
  padding:10px 26px;
  border:0;
  background:#007ab3;
  color:#fff;
  border-radius:999px;
  cursor:pointer;
}



.lead-overlay,.thank-overlay{
  position:fixed; inset:0; display:none; align-items:center; justify-content:center;
  background:rgba(0,0,0,.55); z-index:9999; padding:16px;
}
.lead-overlay.show,.thank-overlay.show{display:flex;}
.lead-modal{
  width:min(460px, 95vw); background:#fff; border-radius:16px; padding:18px 18px 14px;
  box-shadow:0 20px 60px rgba(0,0,0,.25); position:relative;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
}
.lead-close{
  position:absolute; right:12px; top:10px; width:36px; height:36px; border-radius:10px;
  border:none; background:#f3f4f6; cursor:pointer; font-size:22px; line-height:36px;
}
.lead-brand{text-align:center; margin-top:4px; margin-bottom:10px;}
.lead-logo{font-weight:800; letter-spacing:1px; color:#0b2a4a;}
.lead-sub{font-size:20px; font-weight:700; margin-top:6px;}
.lead-note{font-size:12px; color:#6b7280; margin-top:4px;}

.lead-form label{display:block; font-size:12px; color:#374151; margin:10px 0 6px;}
.lead-form input,.lead-form select,.lead-form textarea{
  width:100%; padding:12px 12px; border:1px solid #e5e7eb; border-radius:10px;
  outline:none; font-size:14px;
}
.lead-form textarea{resize:vertical; min-height:90px;}
.lead-form button[type="submit"]{
  width:100%; padding:12px; border:none; border-radius:12px;
  background:#0b76b7; color:#fff; font-weight:700; cursor:pointer; margin-top:12px;
}
.lead-form button[disabled]{opacity:.6; cursor:not-allowed;}
.lead-privacy{font-size:11px; color:#6b7280; text-align:center; margin-top:10px;}
.lead-call{display:flex; gap:8px; align-items:center; justify-content:center; margin-top:10px;}
.lead-phone{font-weight:800; color:#0b76b7; text-decoration:none; font-size:18px;}

.thank-modal{
  width:min(380px,95vw); background:#fff; border-radius:16px; padding:18px; position:relative;
  text-align:center; box-shadow:0 20px 60px rgba(0,0,0,.25);
}
.thank-close{
  position:absolute; right:12px; top:10px; width:34px; height:34px; border-radius:10px;
  border:none; background:#f3f4f6; cursor:pointer; font-size:18px;
}
.thank-icon{
  width:54px; height:54px; border-radius:50%; background:#16a34a; color:#fff;
  display:flex; align-items:center; justify-content:center; margin:8px auto 10px; font-size:28px;
}
.thank-btn{
  margin-top:12px; padding:10px 18px; border:none; border-radius:12px;
  background:#0b76b7; color:#fff; font-weight:700; cursor:pointer;
}



.lead-logo1{
  display: flex;
  justify-content: center;   /* horizontal center */
  align-items: center;       /* vertical center */
  width: 100%;
}

.lead-logo1 .logo{
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-logo{
  max-width: 100%;
  height: auto;
}



  .lead-form-wrap{padding:60px 0;background:linear-gradient(180deg,#f7fbff,#ffffff);}
  .lead-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
    align-items:stretch;
  }

  /* Left */
  .contact-image-card{
    position:relative;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(0,0,0,.10);
    background:#fff;
    min-height:520px;
  }
  .contact-image-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.02);
  }
  .contact-image-overlay{
    position:absolute;
    left:16px; right:16px; bottom:16px;
    padding:14px 14px;
    border-radius:14px;
    background:rgba(0,0,0,.55);
    color:#fff;
    backdrop-filter: blur(6px);
  }
  .contact-image-overlay h3{margin:0 0 6px;font-size:22px;font-weight:800;}
  .contact-image-overlay p{margin:0;opacity:.95;font-size:14px;}

  .trust-badges{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px;}
  .badge-item{
    background:#fff;
    border:1px solid #e8eef7;
    padding:10px 12px;
    border-radius:999px;
    font-size:13px;
    box-shadow:0 8px 18px rgba(0,0,0,.05);
  }

  /* Right */
  .lead-card{
    background:#fff;
    border-radius:18px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    padding:20px;
    border:1px solid #eef2f8;
  }
  .lead-title{margin:0 0 6px;font-weight:900;font-size:22px;}
  .lead-sub{margin:0 0 16px;color:#666;}

  .form-label{font-weight:600;font-size:13px;color:#333;margin-bottom:6px;}
  .form-control{
    border-radius:12px;
    padding:10px 12px;
    border:1px solid #dfe7f3;
    box-shadow:none!important;
  }
  .form-control:focus{
    border-color:#0b76b7;
    outline:none;
  }

  .radio-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:6px;}
  .radio-pill{
    border:1px solid #dfe7f3;
    padding:10px 12px;
    border-radius:12px;
    display:flex;
    align-items:center;
    gap:8px;
    cursor:pointer;
    background:#fff;
  }
  .radio-pill input{margin:0;}

  .btn-cta{
    padding:12px 14px;
    border-radius:14px;
    font-weight:800;
    letter-spacing:.2px;
  }

  /* Responsive */
  @media (max-width: 991px){
    .lead-grid{grid-template-columns:1fr;}
    .contact-image-card{min-height:320px;}
  }
  
  
    .img-wrapper{
  width: 100%;
  height: 420px;          /* 👈 aap apne layout ke hisaab se change kar sakte ho */
  overflow: hidden;
  border-radius: 16px;
}

.img-wrapper .carousel-inner,
.img-wrapper .carousel-item{
  height: 100%;
}

.img-wrapper .carousel-img{
  width: 100%;
  height: 100%;
  object-fit: cover;     /* 🔥 magic line */
  object-position: center;
}
  
  
  
  .map-wrap{
  width:100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  background:#fff;
}

.map-wrap iframe{
  width:100%;
  height: 340px;
  border:0;
  display:block;
}

.map-info h3{
  font-weight:700;
}

.map-points{
  padding-left: 18px;
  margin: 0;
}

.map-points li{
  margin-bottom: 8px;
  line-height: 1.4;
}


.btn-cta{
  background-color: #0b76b7;   /* blue */
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 8px;
  transition: all .3s ease;
}

.btn-cta:hover{
  background-color: #0b76b7;
  color: #fff;
}


