*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* ------- ROOT ------- */
:root {
    --primary: #016080;
    --text-dark: #222;
    --text-light: #666;
    --bg-light: #f6f9fc;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --transition: .25s ease;
}
  :root{
    --bg:#0f1724;
    --accent:#0ea5a4;
    --muted:#94a3b8;
    --card:#0b1220;
  }

body{
    font-family: "Questrial", sans-serif !important;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

  /* NAVBAR */
  .navbar{
    display:flex;
    align-items:center;
    justify-content:space-around !important;
    gap:1rem;
    padding:1.5rem 1rem;
    position:sticky;
    top:0;
    z-index:40;
    /* backdrop-filter: blur(6px); */
    background-color: white;
    /* border-bottom:1px solid rgba(0,0,0,0.4); */
  }
  .brand{
    display:flex;
    align-items:center;
    gap:.6rem;
    text-decoration:none;
    color:inherit;
  }
  .logo {
    width:130px; 
    object-fit:cover;
    height: auto;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
  }
  .logo2{
    width: 100%;
    height: 38px;
    object-fit: contain;
  }
  .brand h1{font-size:1rem;margin:0}
  .nav-links{
    display:flex;gap:1rem;align-items:center;
  }
  .nav-links a{
    text-decoration:none !important;padding:.45rem .6rem;border-radius:6px;font-weight:600; color: #006080;
  }
  .nav-links a:hover{color:#fff;background:#006080;}
  .nav-btn button{background-color: green; padding: 10px 20px; border: none; color: #fff; border-radius: 30px; font-weight:600;}

  /* hamburger (mobile) */
  .burger{
    display:none;
    border:0;background:transparent;color:inherit;
    width:44px;height:44px;border-radius:8px;
    align-items:center;justify-content:center;
  }
  .burger:focus{outline:2px solid rgba(14,165,164,0.25)}

  /* sidebar */
  .sidebar{
    position:fixed;left:0;top:0;height:100vh;width:320px;
    max-width:85vw;transform:translateX(-110%);
    background:linear-gradient(180deg,var(--card), #06121a);
    z-index:60;padding:1rem;
    transition:transform .28s cubic-bezier(.2,.9,.2,1);
    box-shadow: 8px 0 30px rgba(2,6,23,0.6);
    display:flex;flex-direction:column;gap:1rem;
  }
  .sidebar.open{transform:translateX(0)}
  .sidebar header{display:flex;align-items:center;justify-content:space-between;gap:1rem}
  .sidebar h2{margin:0;font-size:1.05rem}
  .close-btn{border:0;background:transparent;color:inherit;width:36px;height:36px;border-radius:8px}
  .close-btn:focus{outline:2px solid rgba(14,165,164,0.25)}

  /* overlay */
  .overlay{
    position:fixed;inset:0;background:rgba(2,6,23,0.55);opacity:0;pointer-events:none;transition:opacity .25s;
    z-index:55;
  }
  .overlay.visible{opacity:1;pointer-events:auto}

  /* sidebar content */
  .sidebar nav{display:flex;flex-direction:column;gap:.4rem;margin-top:.5rem}
  .sidebar nav a{padding:.6rem .6rem;border-radius:6px;text-decoration:none;color:var(--muted);font-weight:600}
  .sidebar nav a:hover{background:rgba(255,255,255,0.03);color:#fff}

  .form-card{
    margin-top:0.75rem;padding:.8rem;border-radius:10px;background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border:1px solid rgba(255,255,255,0.02);
  }
  .form-card label{display:block;font-size:.82rem;margin-bottom:.35rem;color:var(--muted)}
  .form-card input, .form-card textarea {
    width:100%;padding:.6rem;border-radius:8px;border:1px solid rgba(255,255,255,0.04);
    background:transparent;color:inherit;font-size:.95rem;margin-bottom:.6rem;
  }
  .btn{
    display:inline-flex;align-items:center;gap:.5rem;padding:.55rem .8rem;border-radius:8px;border:0;background:var(--accent);color:#022;cursor:pointer;font-weight:700;
  }

  /* responsive: show burger on small screens */
  @media (max-width:880px){
    .nav-links{display:none}
    .burger{display:inline-flex}
    .nav-btn button{
        display: none;
    }

  }

  /* desktop layout tweaks */
  @media (min-width:881px){
    .sidebar{position:fixed;left:auto;right:auto;transform:none;top:auto;height:auto;width:auto;display:none}
    .overlay{display:none}
    
  }

  @media screen and (min-width:320px) and (max-width:768px)
{
        .navbar{
        justify-content:space-between !important ;
    }
}
/* FOOTER BASE */
.footer {
    background: #065a6c;
    padding: 40px 5%;
    color: #fff;
    font-family: Arial, sans-serif;
}

.footer-top h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
}

.footer-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.action-box {
    background: #fff;
    color: #333;
    padding: 20px;
    border-radius: 12px;
    flex: 1;
    min-width: 250px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
}

.action-box:hover > span{
    background-color: black;
    color: white;
    padding: 2px;
    border-radius: 20px;
    width: 30px;
    height: 30px;
    text-align: center;
    box-shadow: 0px 0px 3px blue;
}

.action-box .icon {
    font-size: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@media screen and (min-width:320px) and (max-width:768px){
    .action-box .icon{
        font-size: 18px;
        padding: 10px;
    }
    .action-box{
        font-size: 18px;
        padding: 10px;
    }
}

.footer-mid {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    border-top: 1px solid #fff3;
    padding-top: 30px;
}

.hospital-logo {
    width: 180px;
    border-radius: 6px;
}

.logo-text{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.logo-text p {
    margin: 0;
    line-height: 1.5;
}

.social-icons a {
    margin: 0 5px;
    font-size: 22px;
    text-decoration: none;
    color: white;
    /* background-color: gray; */
}

.social-icons img{
    width: 30px;
    /* margin: 10px; */
    /* background-color: gray; */
}


.footer-links {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-links .col {
    flex: 1;
    min-width: 200px;
}

.footer-links h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.footer-links a {
    display: block;
    color: #e9e9e9;
    text-decoration: none;
    padding: 3px 0;
    font-size: 15px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #fff3;
    padding-top: 20px;
    font-size: 14px;
}

.footer-bottom a {
    color: #fff;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .footer-actions {
        flex-direction: column;
    }
    .footer-mid {
        flex-direction: column;
        text-align: left;
    }
    .social-icons {
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        text-align: left;
    }
    .logo-text{
        justify-content: start;
    }

    .why1 img{
        width: 100%;
    }

    .why1{
        min-height: 500px !important;
    }

    .doctor-hero{
        justify-content: center;
        align-items: center;
    }

    .hero-image img{
        margin-bottom: -53px;
        width: 100% !important;
    }
}

/* main css */
/* Main Wrapper */
/* Main Wrapper */
.health-section-wrapper {
max-width: 1200px;
margin: auto;
padding: 60px 20px;
}


/* Breadcrumb */
.health-breadcrumb {
font-size: 14px;
color: #777;
margin-bottom: 16px;
}


.health-breadcrumb span {
color: #016080;
}


/* Layout */
.health-hero-layout {
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
gap: 50px;
}


/* Content Area */
.health-content-area h1 {
font-size: 48px;
font-weight: 700;
line-height: 1.2;
color: #111;
}


.health-content-area h1 span {
color: #016080;
}


.health-content-area p {
margin-top: 20px;
font-size: 16px;
line-height: 1.7;
color: #555;
max-width: 500px;
}


/* Image Box */
.health-image-box {
position: relative;
}


.health-image-box img {
width: 100%;
height: 360px;
border-radius: 24px;
object-position: top;
object-fit: cover;
box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}


.health-image-box::before {
content: "";
position: absolute;
top: -20px;
left: -20px;
width: 100%;
height: 100%;
border-radius: 28px;
background: rgba(108, 99, 255, 0.08);
z-index: -1;
}


/* Tablet */
@media (max-width: 991px) {
.health-hero-layout {
grid-template-columns: 1fr;
text-align: center;
}


.health-content-area h1 {
font-size: 40px;
}


.health-content-area p {
margin-left: auto;
margin-right: auto;
}
}


/* Mobile */
@media (max-width: 576px) {
.health-section-wrapper {
padding: 40px 16px;
}


.health-breadcrumb {
font-size: 13px;
text-align: center;
}


.health-content-area h1 {
font-size: 32px;
}


.health-content-area p {
font-size: 15px;
}


.health-image-box img {
border-radius: 18px;
}
}


/* SECTION WRAPPER */
/* SECTION WRAPPER */
.shifa-why-section{
max-width:1200px;
margin:auto;
padding:60px 20px;
}


/* HEADER */
.shifa-why-header h2{
font-size:42px;
font-weight:700;
color:#111;
}


.shifa-why-header p{
margin-top:10px;
color:#666;
font-size:16px;
}


/* LAYOUT */
.shifa-why-layout{
margin-top:40px;
display:grid;
grid-template-columns:1.2fr 1fr;
gap:50px;
align-items:center;
}


/* IMAGE CARD */
.shifa-why-image{
position:relative;
}


.shifa-why-image img{
width:100%;
height:400px;
border-radius:24px;
object-fit:cover;
box-shadow:0 25px 50px rgba(0,0,0,0.15);
}


/* FEATURES */
.shifa-features-box h3{
font-size:28px;
font-weight:600;
margin-bottom:25px;
color:#111;
}


.shifa-feature-item{
background:#fff;
border-radius:14px;
padding:16px 20px;
display:flex;
align-items:center;
gap:14px;
margin-bottom:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.06);
transition:0.3s ease;
}


.shifa-feature-item:hover{
transform:translateY(-4px);
}


.shifa-feature-icon{
width:34px;
height:34px;
border-radius:50%;
background:#016080;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:16px;
flex-shrink:0;
}


.shifa-feature-text{
font-size:15px;
color:#444;
font-weight:500;
}


/* TABLET */
@media(max-width:992px){
.shifa-why-layout{
grid-template-columns:1fr;
}


.shifa-why-header h2{
font-size:36px;
}
}


/* MOBILE */
@media(max-width:576px){
.shifa-why-section{
padding:40px 16px;
}


.shifa-why-header h2{
font-size:28px;
}


.shifa-features-box h3{
font-size:22px;
}
}


/* SECTION WRAPPER */
.shifa-trust-wrapper{
max-width:1200px;
margin:auto;
padding:70px 20px;
}


/* INTRO TEXT */
.shifa-trust-intro{
max-width:900px;
margin:0 auto 50px;
text-align:center;
font-size:18px;
line-height:1.7;
color:#666;
}


.shifa-trust-intro span{
color:#9b8cff;
font-style:italic;
font-weight:500;
}


/* CARD GRID */
.shifa-trust-grid{
display:grid;
grid-template-columns:1.5fr 1fr 1fr;
gap:24px;
align-items:stretch;
}


/* IMAGE CARD */
.shifa-trust-image-card{
position:relative;
border-radius:22px;
overflow:hidden;
}


.shifa-trust-image-card img{
width:100%;
height:100%;
object-fit:cover;
}


.shifa-trust-overlay{
position:absolute;
inset:0;
background:linear-gradient(120deg,rgba(0,0,0,0.5),rgba(0,0,0,0.1));
}


.shifa-trust-overlay-content{
position:absolute;
bottom:20px;
left:20px;
color:#fff;
}


.shifa-trust-overlay-content h2{
font-size:48px;
font-weight:700;
}


.shifa-trust-overlay-content p{
font-size:15px;
}

/* USER CARD */
/* USER CARD */
.shifa-user-card{
background:#fff57a;
border-radius:22px;
padding:28px;
display:flex;
flex-direction:column;
justify-content:space-between;
}


.shifa-user-card h3{
font-size:26px;
font-weight:700;
}


.shifa-user-card p{
margin-top:10px;
font-size:14px;
line-height:1.6;
color:#333;
}


.shifa-user-avatars{
display:flex;
align-items:center;
margin-top:20px;
}


.shifa-user-avatars img{
width:36px;
height:36px;
border-radius:50%;
border:2px solid #fff;
margin-left:-10px;
}


.shifa-user-avatars span{
width:36px;
height:36px;
background:#000;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
margin-left:-10px;
font-size:18px;
}

/* REVIEW CARD */
.shifa-review-card{
background:#111;
color:#fff;
border-radius:22px;
padding:28px;
display:flex;
flex-direction:column;
justify-content:space-between;
}


.shifa-review-stars{
color:#f9d923;
font-size:18px;
}


.shifa-review-text{
margin:16px 0;
font-size:14px;
line-height:1.6;
color:#eaeaea;
}


.shifa-review-author{
font-weight:600;
margin-bottom:20px;
}


.shifa-review-count{
font-size:26px;
font-weight:700;
}


/* TABLET */
@media(max-width:992px){
.shifa-trust-grid{
grid-template-columns:1fr;
}
}


/* MOBILE */
@media(max-width:576px){
.shifa-tr_toggle-grid{
grid-template-columns:1fr;
}


.shifa-trust-intro{
font-size:16px;
}


.shifa-trust-overlay-content h2{
font-size:36px;
}
}



/* expert */
.sh-experts-section {
transition: transform 0.3s ease, box-shadow 0.3s ease;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}

.sh-experts-title{
  font-size: 42px;
}

.sh-experts-header{
  width: 85%;
  display: flex;
  justify-content: center;
  align-items: start;
}

.sh-experts-grid{
  display: flex;
  justify-content: space-around;
  width: 85%;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.sh-expert-card{
  width: 32%;
  padding: 10px;
  border-radius: 10px;
  background-color: rgba(245, 245, 245, 0.548);
  border: 1px solid #00608060;
  text-align: center;
}

.sh-expert-card:hover {
transform: translateY(-8px);
box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}


.sh-expert-highlight {
background: linear-gradient(180deg, #0c8aff7e, #0c8aff7e);
}


.sh-expert-image {
width: 100%;
height: 400px;
object-fit: cover;
object-position: top;
border-radius: 2px;
margin-bottom: 16px;
}


.sh-expert-name {
font-size: 22px;
font-weight: 600;
color: #111827;
margin-bottom: 10px;
}

.sh-expert-highlight > .sh-expert-role{
background-color: #fff;
display: inline;
padding: 6px 12px;
border-radius: 12px;
}

.sh-expert-role {
font-size: 14px;
color: #6b7280;
margin-bottom: 16px;
}



/* ===== Mobile ===== */
@media (max-width: 768px) {
.sh-experts-header {
flex-direction: column;
align-items: flex-start;
gap: 12px;
}


.sh-experts-title {
font-size: 28px;
}
}

/* vision and mission */
.vision{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color:#006080;
  padding: 50px 0px;
  color: #fff;
  gap: 30px;
}

.sub-vision{
  width: 80%;
  display:flex;
  gap: 30px;
}

.sub-des{
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 26px;
  text-align: justify;
}

.sub-mission{
  width: 80%;
  display:flex;
  gap: 30px;
  margin-top: 2rem;
}

.sub-name{
  font-size: 18px;
  font-weight: 800;
  background-color: white;
  color: #000;
  display: inline;
  padding: 4px 12px;
  border-radius: 19px;
}

.mission-1{
  flex: 0 0 50%;
}

.mission-1 ul{
  margin-top: 30px;
}

.mission-1 li{
  margin-bottom: 16px;
  line-height: 24px;
}

.mission-2{
  flex: 0 0 50%;
}

.mission-2 img{
  width: 100%;
}

.mission-3{
  flex: 0 0 50%;
}

.mission-4{
  flex: 0 0 50%;
}

.mission-3 img{
  width: 100%;
}

.mission-3 img, .mission-2 img{
  border-radius: 8px;
}

@media screen and (min-width:320px) and (max-width:768px){
  .sub-vision{
    flex-direction: column-reverse;
  }
  .sub-mission{
    flex-direction: column;
  }

  .sub-mission ul{
    text-align: justify;
  }

  .sh-experts-grid{
    flex-direction: column;
    gap:30px;
  }

  .sh-expert-card{
    width: 100%;
  }
}


/* popup css start */

#did1{
    display: none;
    width:100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 90999999999999;
}

.did-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bclose img{
    width: 20px;
}

.app-head{
    font-size: 24px;
    font-weight: 700;
    color: #003f51;
}

hr{
    margin: 14px 0;
    opacity: 0.5;

}

 .form-container {
    /* background-color: #fff; */
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 32px;
    /* width: 800px; */
    /* max-width: 600px; */
    position: fixed;
    top: 20px;
  }

  .form-wrapper {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 0px 9px #0000009f;
  }

  .form-wrapper form{
    width: 300px;
  }

  .form-group {
    margin-bottom: 10px;
  }

  .form-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
  }

  .form-subtitle {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #3a3a3a;
  }

  .form-input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
    color: #555;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
  }

  .form-input:focus {
    border-color: #6a64f1;
    box-shadow: 0 0 8px rgba(106, 100, 241, 0.3);
  }

  .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .form-col {
    flex: 1;
    min-width: 48%;
  }

  .form-button {
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background-color: #068513;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s, transform 0.2s;
  }

  .form-button:hover {
    background-color: #068513;
    transform: scale(1.05);
  }

  .form-button:active {
    transform: scale(1);
  }

  @media screen and (min-width:320px) and (max-width:768px){
    .app-head{
        font-size: 18px;
    }

    .form-wrapper form{
        width: 280px;
    }
  }
