
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Tiro+Bangla:ital@0;1&display=swap');

/* media query start here for 320px mobile phone */






:root {
    --orange: #f47920; --red: #ed1c24; --anchor: #231f20; --charcoal: #434143;
    --teal: #1a7d7a; --gold: #c9952a; --green: #2a7d4f;
    --warm-cream: #faf3ec; --warm-50: #fef6ee; --warm-100: #fdecd8;
    --o10: #fef3e8; --o20: #fde0c2; --o80: #f58730; --o120: #d4670f;
    --n50: #faf9f9; --n100: #f2f0f0; --n200: #e0dcdd; --n300: #c4bfbf;
    --n400: #9d9899; --n500: #716d6e; --n600: #575354;
    --body: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
    --cond: 'Barlow Condensed', -apple-system, BlinkMacSystemFont, sans-serif;
  }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Barlow;
}

body {
  background: #ffffff;
  color: #023047;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  padding: 15px 40px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #023047;
}

/* HERO */

.hero .swiper-slide {
  height: 80vh;
  display: flex;
  align-items: center;
  padding-left: 80px;
  color: #fff;
}

.slide1 {
  background: linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.4)),
  url('../assets/images/slide1.jpg') center/cover;
}

.slide2 {
  background: linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.4)),
  url('../assets/images/slide2.jpg') center/cover;
}

.hero-content h1 {
  font-size: 48px;
  max-width: 600px;
}

/* SECTION */
.section {
  padding: 60px 80px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 20px;
  /* box-shadow: 0 0 10px rgba(0,0,0,0.1); */
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 2px 2px 10px rgba(0,0,0,.2);
  transition: .3s;
}

.card:hover {
  transform: translateY(-6px);
}

/* FAQ */
.faq-item {
  background: #fff;
  margin-top: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.2);
  padding-bottom: 15px;
}

.faq-question {
  padding: 18px;
  cursor: pointer;
  font-weight: 600;
  font-size: 20px;
}

.faq-answer {
  padding: 0px 18px 0px 18px;
  height: 0;
  overflow: hidden;
  transition: .3s;
  font-size: 17px;
}

/* CALLBACK */
.callback {
  background: #0077b6;
  color: #fff;
  padding: 60px;
  text-align: center;
}

.callback form {
  margin-top: 20px;
}

.callback input {
  padding: 12px;
  margin: 5px;
  border-radius: 6px;
  border: none;
}

.callback button {
  padding: 12px 25px;
  background: #ffd166;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}



.disease-section {
  background: #ffffff;
  border-radius: 20px;
}

.alphabet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(45px, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.alphabet-grid span {
  background: #eaf6fb;
  text-align: center;
  padding: 12px 0;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: .3s;
}

.alphabet-grid span:hover {
  background: #0077b6;
  color: #fff;
}

.stats-section {
  background: linear-gradient(135deg, #eaf6fb, #ffffff);
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 10px;
  margin-top: 10px;
}

.stat-box {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 3fr;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.stat-box div{
  text-align: left;
  /* border: 1px solid #f6fb; */
}
.stat-box h3 {
  font-size: 36px;
  color: #0077b6;
}

.hospital-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.hospital-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.hospital-card p {
  padding: 15px;
  font-weight: bold;
}

.patients {
  background: #f0f9ff;
}

.patient-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.patient-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.patient-card p {
  font-style: italic;
  margin-bottom: 10px;
}

.news-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.news-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-content {
  padding: 20px;
}

/* FOOTER */
/* footer {
  text-align: center;
  padding: 30px;
  background: #eaf6fb;
}

.mega-footer {
  background: #023047;
  color: #fff;
  padding: 60px 80px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 30px;
}

.mega-footer h4 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.mega-footer a {
  display: block;
  color: #d9f0ff;
  text-decoration: none;
  margin-bottom: 5px;
  font-size: 16px;
}

.mega-footer p {
  display: block;
  color: #d9f0ff;
  text-decoration: none;
  margin-bottom: 5px;
  font-size: 16px;
}

.footer-copy {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  opacity: .7;
} */

.hero-video {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
}

/* VIDEO */
.hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.01), rgba(0,100,200,0.25));
  z-index: -1;
  pointer-events: none;
}

/* NAVBAR */
.hero-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  font-weight: 500;
  
}

.hero-nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
}

.nav-center img {
  height: 40px;
}

/* HERO CONTENT */
.hero-content {
  position: absolute;
  bottom: 130px;
  left:0px;
  width: 100%;
  text-align: center;
  padding: 0 20px;
}

/* SEARCH */

.hero-search {
  max-width: 760px;
  height: 40px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 40px;
  /* padding: 4px; */
  box-sizing: border-box;
  /* border: 1px solid black; */
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 0 3px;
}

.hero-search input:focus, .hero-search:focus-within {
  background: #fffffffc;
  transition: 300ms;
}

/* INPUT */
.hero-search input {
  flex: 1;
  height: 100%;
  border: none;
  outline: none;
  padding: 0 22px;
  font-size: 16px;
  border-radius: 40px;
  box-sizing: border-box;
  box-shadow: 1px 1px 8px solid black;
  background: rgba(0, 0, 0, 0.01);
}

.hero-search input::placeholder {
    color: #5e5e5e; /* Change this to any color you like */
    opacity: 1;  /* Ensure full opacity */
    font-style: italic; /* Optional styling */
    font-weight: 500;
}


/* BUTTON */
.hero-search button {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  border: none;
  background: #0077b6;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  /* margin-left: -5px; */
  /* box-shadow: 5px 5px 5px black; */
}

/* REMOVE BROWSER FOCUS JUMP */
.hero-search input:focus,
.hero-search button:focus {
  outline: none;
  box-shadow: none;
}

.youtube-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -2;
}

.youtube-bg iframe {
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  transform: scale(1.25); /* hides black bars */
}


/* ACTION BUTTONS */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
  font-family: Barlow;
}

.action-btn {
  background: rgba(255, 255, 255, 0.9);
  color: #1a7d7a;
  padding: 14px 26px;
  /* border-radius: 30px; */
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: .3s;
}

.action-btn:nth-child(1) {
  border-radius: 30px 0 0 30px;
}

.action-btn:nth-child(4) {
  border-radius: 0 30px 30px 0;
}

.action-btn:hover {
  background: #f47920;
  color: #fff;
}

/* MOBILE */


/* BASE NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0px;
  width: 100%;
  padding: 22px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;  /* left | center-logo | right */
  align-items: center;
  z-index: 10000;
  transition: background .3s, box-shadow .3s, padding .3s;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.01));
  box-shadow: none;
}

.navbar a,
.navbar .call {
  color: #ffffff;
  text-decoration: none;
  margin: 0 8px;
  font-weight: 600;
  /* text-shadow: 0px 0px 1px rgba(0,0,0,1); */
}

/* SCROLLED STATE */
.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  padding: 14px 60px;
}

.navbar.scrolled a,
.navbar.scrolled .call {
  color: #023047;
}

.navbar.scrolled .nav-center img {

  height: 50px;
  margin: 0px 20px !important;
  content: url("assets/images/Umch2LinesWhiteLogo.png");
}

/* LOGO */
.nav-center img {
  height: 50px;
  transition: .3s;
  margin: 0 20px;
}

.navbar.scrolled .nav-center img {
height: 50px;
  margin: 0px 20px !important;
    content: url("../assets/images/Umch2LinesLogo.png");
}

/* NAV GROUP */
.nav-left {
  display: flex;
  gap: 22px;
}

/* NAV ITEM */
.nav-item {
  position: relative;
}

/* SUBMENU */
.submenu {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 0;
  box-shadow: 0 15px 40px rgba(0,0,0,.15);

  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .25s ease;

  z-index: 99999;   /* VERY IMPORTANT */
}

/* SUBMENU LINKS */
.submenu a {
  display: block;
  padding: 10px 15px;
  color: #023047;
  font-weight: 500;
  white-space: nowrap;
}

.submenu a:hover {
  background: #eaf6fb;
}

/* SHOW DROPDOWN */
.nav-item:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* SLIDER */
.slider{
  position:relative;
  width:100%;
  max-width:1980px;
  height:420px;
  background:#fff;border-radius:18px;overflow:hidden;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.15);
}

/* SLIDER TABS */
.slider-tabs{
  display:flex;
  justify-content:center;
  gap:5px;
  margin-bottom:20px;
  flex-wrap:wrap;
  
}

.slider-tabs .tab{
  padding:10px 15px;
  border-radius:30px;
  border:1px solid rgba(0,0,0,0.2);
  background:#fff;
  color:#023047;
  font-size:13px;
  font-weight: 500;
  cursor:pointer;
  transition:all .35s ease;
}

.slider-tabs .tab:hover{
  background:#e8f4f8;
}

.slider-tabs .tab.active{
  /* background:linear-gradient(135deg,#219ebc,#126782); */
  background: #f47920;
  color:#fff;
  border-color:transparent;
  box-shadow:0 8px 20px rgba(33,158,188,.35);
}


/* SLIDES */
.slide{position:absolute;inset:0;display:flex;opacity:0;pointer-events:none;transition:.6s}
.slide.active{opacity:1;pointer-events:auto}

/* LEFT CONTENT */
.content{width:50%;padding:60px;display:flex;flex-direction:column;justify-content:center}
.content h1,.content p,.content button{opacity:0}
/* .content h1{font-size:34px;color:#023047;margin-bottom:16px} */
.content h2{font-size:20px; font-weight:700; color:#023047;margin-bottom:10px;}
.content p{font-size:15px;color:#3f3f3f;line-height:1.2;margin-bottom:15px;}
.content p ul{padding-left: 100px;}
.content button{
  align-self:flex-start;padding:12px 26px;border:0;border-radius:30px;
  background:linear-gradient(135deg,#219ebc,#126782);
  color:#fff;font-size:15px;cursor:pointer
}

/* TEXT ANIMATION */
@keyframes textIn{
  from{opacity:0;transform:translateY(25px)}
  to{opacity:1;transform:translateY(0)}
}

/* IMAGE */
.image-box{width:50%;overflow:hidden}
.image-track{width:200%;height:100%;display:flex;will-change: transform;}
.image-track img{width:50%;object-fit:cover}

/* ARROWS */
.arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:46px;height:46px;border-radius:50%;
  background:rgba(0,0,0,.10);color:#fff;
  display:flex;justify-content:center;align-items:center;
  cursor:pointer;font-size:22px;z-index:20
}
.arrow:hover{background:rgba(0,0,0,.45)}
.arrow.prev{left:20px}.arrow.next{right:20px}

/* DOTS */
.dots{
  position:absolute;bottom:20px;left:50%;
  transform:translateX(-50%);display:flex;gap:12px;z-index:20
}
.dot{
  width:12px;height:12px;border-radius:50%;
  background:rgba(0,0,0,.25);cursor:pointer;transition:.35s
}
.dot.active{
  width:28px;border-radius:20px;
  /* background:linear-gradient(135deg,#219ebc,#126782) */
  background:linear-gradient(to right,#f47920,#ed1c24)
}

.floating-actions {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 9999;
}

.fab {
  background: #ffffff;
  color: rgb(0, 152, 129);
  text-decoration: none;
  border-radius: 50px;
  width: 45px;
  height: 45px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  transition: width .3s ease;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.6);
  font-family: Arial, Helvetica, sans-serif;
}

.fab span {
  font-size: 18px;
}

.fab em {
  white-space: nowrap;
  opacity: 0;
  transition: opacity .2s ease;
}

.fab:hover {
  width: 250px;
}

.fab:hover em {
  opacity: 1;
}







/* ===== SLIDER ===== */
.speakslider{
    width:100%;
    overflow:hidden;
    padding:20px 0;
}

.slide-track{
    display:flex;
    width:max-content;
    animation:scroll 30s linear infinite;
}

.speakslider:hover .slide-track{
    animation-play-state:paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
/* ===== CARD STYLE ===== */
.card{
    width:400px;
    margin:5px;
    background:#fff;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    overflow:hidden;
    flex-shrink:0;
}

/* ===== VIDEO CARD ===== */
.video-card{
    position:relative;
    /* height:300px; */
    cursor:pointer;
}

.video-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    font-size:50px;
    color:#fff;
    background:rgba(0,0,0,0.6);
    width:80px;
    height:80px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* ===== IMAGE CONTENT CARD ===== */
.image-card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.card-body{
    padding:20px 0 0 0;
    margin: 0;
}

.card-body h3{
    font-size:18px;
    margin-bottom:10px;
    color:#1a2b4c;
}

.card-body p{
    font-size:14px;
    color:#555;
    margin-bottom:5px;
}

.card-body a{
    display:inline-block;
    padding:8px 16px;
    background:#0d6efd;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    font-size:14px;
}

/* ===== MODAL ===== */
.modal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.8);
    display:none;
    align-items:center;
    justify-content:center;
}

.modal-content{
    width:80%;
    max-width:800px;
}

.modal iframe{
    width:100%;
    height:450px;
}

.close{
    position:absolute;
    top:100px;
    right:200px;
    color:#fff;
    font-size:30px;
    cursor:pointer;
}







  /* ══════════════════════════════════════════════════════════════════════════
     TRUST SECTION (Warm Authority - Transition)
     ══════════════════════════════════════════════════════════════════════════ */
  
  .trust-section {
    background: #faf3ec;
    padding: 88px 48px;
    border-top: 2px solid var(--o20);
  }
  
  .trust-inner { max-width: 1200px; margin: 0 auto; }
  .trust-header { text-align: center; margin-bottom: 64px; }
  
  .trust-header h2 {
    font-family: var(--cond); font-size: clamp(28px, 5vw, 38px);
    font-weight: 700; text-transform: uppercase; color: var(--anchor);
    line-height: 1.2;
  }
  
  .trust-header .script-word {
    font-family: 'Blacksword', cursive; font-size: clamp(32px, 5vw, 42px);
    color: var(--orange); text-transform: none; display: inline-block;
    margin-right: 8px;
  }
  
  .stats-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px; margin-bottom: 32px;
  }
  
  .stat-card {
    background: #fff; border: 1px solid var(--o20); border-radius: 16px;
    padding: 32px 24px; text-align: center;
    transition: transform .2s, box-shadow .2s;
  }
  
  .stat-card:hover {
    transform: translateY(-5px); box-shadow: 0 12px 32px rgba(244,121,32,.12);
  }
  
  .stat-icon { font-size: 48px; margin-bottom: 20px; }
  
  .stat-number {
    font-family: var(--cond); font-size: 42px; font-weight: 800;
    color: var(--orange); line-height: 1; margin-bottom: 8px;
  }
  
  .stat-label {
    font-family: var(--body); font-size: 12px; font-weight: 700;
    letter-spacing: .15em; text-transform: uppercase; color: var(--anchor);
    margin-bottom: 6px;
  }
  
  .stat-desc {
    font-size: 13px; font-weight: 300; color: var(--n600); line-height: 1.5;
  }
  




  /* ══════════════════════════════════════════════════════════════════════════
     NETWORK SECTION
     ══════════════════════════════════════════════════════════════════════════ */
  
  .network-section { background: #fff; padding: 88px 48px; }
  .network-inner { max-width: 1200px; margin: 0 auto; }
  .network-header { text-align: center; margin-bottom: 48px; }
  
  .network-header h2 {
    font-family: var(--cond); font-size: clamp(28px, 5vw, 38px);
    font-weight: 700; text-transform: uppercase; color: var(--anchor);
    line-height: 1.1; margin-bottom: 16px;
  }
  
  .network-header p {
    font-size: 15px; font-weight: 300; color: var(--n600);
    max-width: 750px; margin: 0 auto; line-height: 1.7;
  }
  
  .facility-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  }
  
  .facility-card {
    background: var(--warm-50); border: 1px solid var(--o20);
    border-radius: 16px; overflow: hidden;
    transition: transform .2s, box-shadow .2s;
  }
  
  .facility-card:hover {
    transform: translateY(-8px); box-shadow: 0 16px 48px rgba(244,121,32,.15);
  }
  
  .facility-image {
    background: var(--n200); display: flex;
    align-items: center; justify-content: center; color: var(--n400);
    font-size: 12px;
  }
  
  .facility-image img { width: 100%; height: 100%; object-fit: cover; }
  .facility-body { padding: 28px; }
  
  .facility-name {
    font-family: var(--body); font-size: 20px; font-weight: 700;
    text-transform: uppercase; color: var(--anchor); margin-bottom: 8px;
  }
  
  .facility-beds {
    font-family: var(--body); font-size: 12px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase; color: var(--orange);
    margin-bottom: 12px;
  }
  
  .facility-desc {
    font-size: 14px; font-weight: 300; color: var(--n600); line-height: 1.7;
  }








  /* ══════════════════════════════════════════════════════════════════════════
     CONTACT SECTION
     ══════════════════════════════════════════════════════════════════════════ */
  
  .contact-section {
    background: #faf3ec;
    padding: 88px 48px;
  }
  
  .contact-inner { max-width: 1000px; margin: 0 auto; }
  .contact-content { text-align: center; margin-bottom: 48px; }
  
  .contact-content h2 {
    font-family: var(--cond); font-size: clamp(32px, 5vw, 42px);
    font-weight: 700; text-transform: uppercase; color: var(--anchor);
    margin-bottom: 16px; line-height: 1.1;
  }
  
  .contact-content p {
    font-size: 16px; font-weight: 300; color: var(--n600);
    line-height: 1.7; max-width: 700px; margin: 0 auto;
  }
  
  .contact-form {
    background: #fff; padding: 40px; border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0,0,0,.2); max-width: 700px; margin: 0 auto;
  }
  
  .form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px;
  }
  
  .form-group { margin-bottom: 16px; }
  
  .form-group label {
    font-family: var(--body); font-size: 12px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase; color: var(--charcoal);
    display: block; margin-bottom: 8px;
  }
  
  .form-group input,
  .form-group select {
    width: 100%; padding: 14px 16px; border: 1px solid var(--n200);
    border-radius: 8px; font-size: 15px; font-family: var(--body);
    font-weight: 400; color: var(--anchor); outline: none;
    transition: border-color .2s; min-height: 44px;
  }
  
  .form-group input:focus,
  .form-group select:focus { border-color: var(--orange); }
  
  .form-submit {
    width: 100%; font-family: var(--body); font-size: 14px;
    font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    background: var(--orange); color: #fff; padding: 16px;
    border: none; border-radius: 8px; cursor: pointer;
    transition: background .2s; min-height: 44px;
  }
  
  .form-submit:hover { background: var(--o120); }
  
  .form-note {
    font-size: 12px; font-weight: 300; color: var(--n500);
    text-align: center; margin-top: 16px; line-height: 1.6;
  }







  .footer {
    background: var(--anchor); color: rgba(255,255,255,.7); padding: 64px 48px 32px;
  }
  
  .footer-inner { max-width: 1400px; margin: 0 auto; }
  
  .footer-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; margin-bottom: 48px;
  }
  
  .footer-col h4 {
    font-family: var(--body); font-size: 12px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 20px;
  }
  
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 12px; }
  
  .footer-col a {
    font-size: 14px; font-weight: 300; color: rgba(255,255,255,.7);
    transition: color .2s; text-decoration: none;
  }
  
  .footer-col a:hover { color: var(--orange); }
  
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1); padding-top: 32px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 24px;
  }
  
  .footer-left { display: flex; flex-direction: column; gap: 12px; }

  
  
  .footer-tagline {
    font-family: 'Blacksword', cursive; font-size: 22px;
    color: var(--orange); line-height: 1;



  }


  
  .footer-legal-row {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,.05);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .footer-legal-row a {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,.4);
    transition: color .2s;
  }
  
  .footer-legal-row a:hover {
    color: var(--orange);
  }
  
  .legal-separator {
    color: rgba(255,255,255,.2);
    font-size: 12px;
  }
  
  .footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
  
  .footer-legal a {
    font-size: 13px; font-weight: 300; color: rgba(255,255,255,.5);
  }
  
  .footer-legal a:hover { color: var(--orange); }
  
  .footer-copyright {
    font-size: 13px; font-weight: 300; color: rgba(255,255,255,.5);
  }
  
  .footer-social { display: flex; gap: 16px; }
  
  .social-icon {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.1); display: flex;
    align-items: center; justify-content: center; color: #fff;
    font-size: 16px; transition: background .2s; min-width: 36px; min-height: 36px;
  }
  
  .social-icon a{
      text-decoration: none;
  }
  .social-icon:hover { background: var(--orange); }
  
  /* ══════════════════════════════════════════════════════════════════════════
     WHATSAPP FLOATING BUTTON (Bangladesh Market)
     ══════════════════════════════════════════════════════════════════════════ */
  
  .whatsapp-float {
    position: fixed; bottom: 24px; left: 24px; width: 56px; height: 56px;
    background: #25D366; border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,.4); z-index: 999;
    transition: transform .2s, box-shadow .2s; color: #fff; font-size: 28px;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.5);
  }

  /* ============================= */
/* RESPONSIVE FIX START */
/* ============================= */

/* Tablets (≤1024px) */
@media (max-width: 1024px) {

  /* General spacing */
  section {
    padding: 40px 40px !important;
  }

  /* Slider */
  .content {
    padding: 30px;
  }

  .slider {
    height: auto;
    display: none;
  }
  
  .slider-tabs {
    gap: 8px;
    display: none;
  }

  /* Facility grid */
  .facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Stats grid */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact form */
  .form-row {
    grid-template-columns: 1fr;
  }
}



/* Mobile (≤768px) */
@media (max-width: 768px) {

    

  /* Section padding fix */
  section {
    padding: 10px 20px !important;
  }
  .card{
    padding: 7px;
    width: 250px;
    
  }

  /* Headings */
  h2 {
    font-size: 22px !important;
  }

  h3 {
    font-size: 18px !important;
  }

  p {
    font-size: 14px !important;
  }

  /* Slider tabs */
  .slider-tabs {
    gap: 8px;
    display: none;
  }

  .slider-tabs .tab {
    font-size: 12px;
    padding: 8px 10px;
  }

  /* SLIDER STACK */
  .slide {
    flex-direction: column;
  }

  .content {
    width: 100%;
    padding: 20px;
  }

  .image-box {
    width: 100%;
    height: 200px;
  }

  .image-track img {
    height: 200px;
  }
  
  .network-inner{
      padding-top: 30px;
  }

  /* TABLE FIX */
  table {
    width: 100%;
    display: block;
    overflow-x: auto;
  }

  /* Facility grid */
  .facility-grid {
    grid-template-columns: repeat(2fr,1);
  }

  /* Stats grid */
  .stats-grid {
    grid-template-columns: repeat(2fr,1);
  }

  /* Cards (patient stories) */
  .card {
    width: 260px;
  }

  /* FAQ */
  .faq {
    margin: 30px 10px !important;
    padding: 20px !important;
  }

  .faq-question {
    font-size: 16px;
  }

  /* Contact form */
  .contact-form {
    padding: 20px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
 .action-btn{
  padding: 7px 7px;
  width: 150px;
 }
 /* for stat card padding adjust*/

 .stat-card{
  padding: 15px 5px!important;
}
/* trust header */
.trust-header{
  margin-bottom: 10px!important;
}

.network-header{
  margin-bottom: 10px;
}


/* added new*/
.hero-nav {
    flex-direction: column;
    gap: 15px;
  }

  .hero-content {
    bottom: 50px;
    padding: 15px 15px;
  }

  .action-btn:nth-child(4) {
    padding: 10px 14px;
    border-radius: 0px;
     width: 150px;
    border-radius: 3px;
  }
   .action-btn:nth-child(1) {
    padding: 10px 14px;
    border-radius: 0px;
    width:150px;
     border-radius: 3px;

  }


}


/* Small mobile (≤480px) */
@media (max-width: 480px) {



  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 10px!important;
    margin-bottom: -12px!important;
  }


  .hero-content {
    bottom: 20px;
  }

  .hero-search {
    height: 35px;
  }

  .hero-search input {
    font-size: 14px;
  }

  .hero-video{
    height: 70vw;
    width: 100%;
  }

  .action-btn {
    font-size: 13px;
    padding: 10px 14px;
       width: 150px;
       position: relative;
       border-radius: 3px;

  }

 .action-btn:nth-child(1) {
    padding: 10px 14px;
    border-radius: 0px;
       width:150px;
         border-radius: 3px;

}
.action-btn:nth-child(4) {
    padding: 10px 14px;
    border-radius: 0px;
       width: 150px;
  border-radius: 3px;

}


.fa-regular, .far {
  position: absolute;
  right: 0px;
}


  /* Facility grid */
  .facility-grid {
    grid-template-columns: 1fr;
  }
.card{
  padding: 7px;
}

/*stat-card*/

.stat-card{
  padding: 5px 5px!important;
}


  #main{
    width: 100%;

}

/*network section */
.network-section{
  margin-top: 5px;
}


#belowherosection{
        padding: 10px 5px!important;
    }

    .cardfont{
      font-size: 35px!important;
    }


  #patientstory{
     margin: 30px 0px!important;
  }


  /* For Hospital description none*/

  .facility-desc{
    display: none;
  }

}

/* ============================= */
/* RESPONSIVE FIX END */
/* ============================= */

