:root {
  --blue: #0B5CCB;
  --green: #63B32E;
  --bg-soft: #F4F9FF;
  --bg-gray: #F7F7F7;
  --text-dark: #1E1E1E;
  --white: #FFFFFF;
  --border: #E5E7EB;
  --blue-dark: #0847A8;
  --blue-light: #3b7fe0;
}

.for-mobile {
        display: none !important;
}

.for-desktop {
        display: block !important;
}



*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 { font-family: 'Poppins', sans-serif; }



.elc-hero-bg-text{position: absolute;
    top:35%;
    left: 30px;
}



.elc-hero-bg-img img{width:100%;
height:100%;}
/* ====== NAVBAR ====== */
/* =========================
       BUTTON WRAPPER
    ==========================*/
	/* Hover Dropdown */
.navbar .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.dropdown-menu {
  border: none;
  
  padding: 10px 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}


	

    .medilink-btn-wrap{
      display:flex;
      align-items:center;
      justify-content:center;
	  padding-left:30px;
    }

    /* =========================
       BUTTON DESIGN
    ==========================*/
	.medilink-emergency-btn {
    position: relative;
    width: 160px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 10px;
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    background-image: linear-gradient(135deg, #2563eb 0%, #7c3aed 45%, #ec4899 100%);
    background-size: 200% auto;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.35);
    animation: medilinkGradientMove 5s linear infinite;
}

    /* =========================
       SHINE EFFECT
    ==========================*/

    .medilink-emergency-btn::before{

      content:"";

      position:absolute;

      top:0;
      left:-120px;

      width:30px;
      height:100%;

      background:rgba(255,255,255,0.95);

      filter:blur(7px);

      transform:skewX(-20deg);

      animation:medilinkShine 2s linear infinite;
    }

    .medilink-emergency-btn::after{

      content:"";

      position:absolute;

      top:0;
      left:-160px;

      width:12px;
      height:100%;

      background:rgba(255,255,255,0.9);

      filter:blur(10px);

      transform:skewX(-20deg);

      animation:medilinkShine 2s linear infinite;
    }

    /* =========================
       HOVER EFFECT
    ==========================*/

    .medilink-emergency-btn:hover{

      transform:scale(1.03);

      box-shadow:
        0 18px 45px rgba(236,72,153,0.4);
    }

    /* =========================
       ICON
    ==========================*/

    .medilink-emergency-btn i{

      font-size:14px;

      position:relative;
      z-index:2;
    }

    /* =========================
       TEXT
    ==========================*/

    .medilink-emergency-btn span{

      position:relative;
      z-index:2;
    }

    /* =========================
       ANIMATIONS
    ==========================*/

    @keyframes medilinkShine{

      0%{
        transform:translateX(-120px) skewX(-20deg);
      }

      100%{
        transform:translateX(420px) skewX(-20deg);
      }

    }

    @keyframes medilinkGradientMove{

      0%{
        background-position:0% 50%;
      }

      50%{
        background-position:100% 50%;
      }

      100%{
        background-position:0% 50%;
      }

    }

 
	



.navbar-main {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(11,92,203,0.10);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
}

.top-bar {
  background: var(--blue);
  color: #fff;
  font-size: 0.78rem;
  padding: 6px 0;
  font-family: 'Inter', sans-serif;
}

.top-bar a { color: #c7dcff; text-decoration: none; }
.top-bar a:hover { color: #fff; }

.navbar-brand img { height: 54px; }

.nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-dark) !important;
  padding: 1rem 0.9rem !important;
  transition: color 0.2s;
}

.nav-link:hover, .nav-link.active { color: var(--blue) !important; }

.navbar-main .btn-appt {
  background: var(--blue);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 6px;
  padding: 8px 20px;
  border: none;
  transition: background 0.2s, transform 0.15s;
}

.navbar-main .btn-appt:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  color: #fff;
}







/* =========================
   POPUP OVERLAY
========================= */

.csComingSoonPopup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(10px);
    display:none;
    justify-content:center;
    align-items:center;
    padding:20px;
    z-index:99999;
}

/* =========================
   POPUP CARD
========================= */

.csComingSoonCard{
    position:relative;
    width:100%;
    max-width:500px;
    
    overflow:hidden;
    animation:csPopupAnimation .45s ease;
}

/* =========================
   IMAGE
========================= */

.csComingSoonImage{
    width:100%;
    display:block;
   
    box-shadow:0 25px 60px rgba(0,0,0,.45);
    animation:csFloating 3.5s ease-in-out infinite;
}

/* =========================
   CLOSE BUTTON
========================= */

.csClosePopupBtn{
    position:absolute;
    top:18px;
    right:18px;
    width:44px;
    height:44px;
    border-radius:50%;
    background:rgba(255,255,255,.18);
    backdrop-filter:blur(12px);
   
    font-size:26px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:5;
    transition:.35s ease;
}

.csClosePopupBtn:hover{
    background:#fff;
    color:#111827;
    transform:rotate(90deg);
}

/* =========================
   POPUP ANIMATION
========================= */

@keyframes csPopupAnimation{

    0%{
        opacity:0;
        transform:scale(.75) translateY(40px);
    }

    100%{
        opacity:1;
        transform:scale(1) translateY(0);
    }

}

/* =========================
   FLOATING EFFECT
========================= */

@keyframes csFloating{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .csComingSoonCard{
        max-width:95%;
    }

    .csClosePopupBtn{
        width:38px;
        height:38px;
        font-size:22px;
        top:12px;
        right:12px;
    }

}





/* ====== HERO ====== */
.hero-section {
  min-height: 92vh;
  background: linear-gradient(135deg, #0B3C8A 0%, #0B5CCB 50%, #1A7FD4 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-block;
  background: rgba(99,179,46,0.20);
  border: 1px solid rgba(99,179,46,0.5);
  color: #9FE45A;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 2.0rem);
  font-weight: 800;
  color: #000;
  line-height: 1.18;
  margin-bottom: 16px;
}

.hero-title span { color: #63E040; }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: 400;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.hero-stat { text-align: center; }
.hero-stat .num { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat .lbl { font-size: 0.72rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.8px; margin-top: 3px; }

.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-hero-primary {
  background: #fff;
  color: var(--blue);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 8px;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-primary:hover {
  background: #e8f2ff;
  color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 26px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.55);
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.hero-img-wrap {
  position: relative;
  z-index: 2;
}

.hero-img-main {
  width: 100%;
  max-width: 600px;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  display: block;
  margin-left: auto;
}

.hero-floating-card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
}

.hero-floating-card.card-emergency {
  bottom: 40px;
  left: -20px;
  font-size: 0.8rem;
}

.hero-floating-card.card-nabh {
  top: 30px;
  right: -20px;
  font-size: 0.78rem;
}

.hero-floating-card .icon-wrap {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

.icon-red { background: #ffe0e0; color: #e00; }
.icon-green { background: #e0f7e9; color: var(--green); }

.hero-floating-card .fc-title { font-weight: 700; font-size: 0.82rem; color: var(--text-dark); }
.hero-floating-card .fc-sub { font-size: 0.68rem; color: #666; }

/* ====== TRUST STRIP ====== */
.trust-strip {
  background: var(--blue);
  padding: 18px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom:10px;
}

.trust-item i { color: #9FE45A; font-size: 1.1rem; }

.trust-divider {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.25);
}

/* ====== SECTION STYLES ====== */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.4rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-title span { color: var(--blue); }

.section-desc {
  color: #555;
  font-size: 1rem;
  line-height: 1.75;
  
}

/* ====== ABOUT SECTION ====== */
.about-section { padding: 50px 0; background: var(--white); }

.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
}

.about-img-grid img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  height: 200px;
}

.about-img-grid img:first-child {
  height: 260px;
  grid-column: 1/-1;
}

.about-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-soft);
  border: 1px solid #c5dbff;
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.feature-tick {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.feature-tick .tick-icon {
  width: 22px; height: 22px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-tick p { font-size: 0.92rem; color: #444; line-height: 1.5; margin: 0; }
.feature-tick strong { color: var(--text-dark); font-weight: 600; }

/* ====== INFRASTRUCTURE ====== */

.medix-stats-wrapper{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:20px;
  margin-bottom:50px;
}

.medix-stat-card{
 
  background: var(--bg-soft);
  border:1px solid rgba(255,255,255,0.08);
 
  padding:20px;
  
  color:#000;
  transition:0.3s ease;
}

.medix-stat-card:hover{
  transform:translateY(-6px);
}

.medix-stat-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:12px;
}

.medix-stat-icon{
  width:48px;
  height:48px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

.medix-stat-tag{
  padding:8px 15px;
  border-radius:50px;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.03);
  color:#000;
  font-size:14px;
}

.medix-stat-value{
  font-size:24px;
  font-weight:700;

}

.medix-stat-label{
  
      font-size: 0.8rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}



.medix-stat-tag{display:none;}


.infra-section { padding: 50px 0; background: var(--bg-soft); }

.infra-card {
  background: var(--white);
  border-radius: 14px;
  padding: 26px 22px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  height: 100%;
 
}

.infra-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(11,92,203,0.12);
  border-color: #b3d0ff;
}

.infra-icon {
  width: 52px; height: 52px;
  background: var(--bg-soft);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--blue);
  margin-bottom: 14px;
  transition: background 0.3s;
}

.infra-card:hover .infra-icon {
  background: var(--blue);
  color: #fff;
}

.infra-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.infra-card p {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* ====== SPECIALITIES ====== */
.specialities-section { padding: 50px 0; background: var(--white); }

.spec-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}

.spec-card img{width:100%;}

.spec-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(11,92,203,0.20); }

.spec-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.spec-card:hover .spec-card-bg { transform: scale(1.07); }

.spec-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,60,138,0.90) 0%, rgba(11,60,138,0.35) 55%, transparent 100%);
  transition: background 0.3s;
}

.spec-card:hover .spec-card-overlay {
  background: linear-gradient(to top, rgba(11,60,138,0.95) 0%, rgba(11,60,138,0.5) 60%, transparent 100%);
}

.spec-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 20px;
  color: #fff;
}

.spec-card-content h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}

.spec-card-content p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.80);
  margin: 0;
  line-height: 1.45;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.spec-card:hover .spec-card-content p { max-height: 60px; }

.spec-tag {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 6px;
}

/* Speciality background colors (gradients as fallback) */
.spec-cardiology { background: linear-gradient(135deg, #1a3a6b, #2c6ec9); }
.spec-ivf { background: linear-gradient(135deg, #6b1a4a, #c92c8a); }
.spec-ortho { background: linear-gradient(135deg, #1a5b6b, #2c9ec9); }
.spec-gastro { background: linear-gradient(135deg, #3a6b1a, #6bc92c); }
.spec-neuro { background: linear-gradient(135deg, #4a1a6b, #8a2cc9); }
.spec-emergency { background: linear-gradient(135deg, #6b1a1a, #c92c2c); }
.spec-gynec { background: linear-gradient(135deg, #6b3a1a, #c97a2c); }
.spec-radiology { background: linear-gradient(135deg, #1a4a6b, #2c86c9); }

/* ====== DOCTORS ====== */
.doctors-section { padding: 50px 0; background: var(--bg-soft); }

.doctor-card {
  background: var(--white);
 
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border: 1px solid var(--border);
  height: 450px;
  position:relative;
}

.doctor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(11,92,203,0.15);
}

.doctor-img-wrap {
  height: 260px;
  overflow: hidden;
  background: var(--bg-soft);
  position: relative;
}

.doctor-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.doctor-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--blue);
  background: var(--bg-soft);
}

.card-area-mahendra img{width:100%;}

.adiyaimg img{width:100%;}
.doctor-card-body { padding: 20px; }

.doctor-card-body p{text-align:justify;}

.card-area-mahendra{text-align:center;}
.doctor-speciality {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 4px;
}

.doctor-card-body h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.doctor-qual {
  font-size: 11px;
  color: #666;
  margin-bottom: 12px;
}

.doctor-exp-badge {
  display: inline-block;
  background: var(--bg-soft);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid #c5dbff;
}

.btn-consult {
  background: var(--blue);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    padding: 8px 18px;
    /* border-radius: 6px; */
    border: none;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0px;
    width: 100%;
    left: 0;
}

.btn-consult:hover {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* ====== PATIENT STORIES ====== */
.stories-section { padding: 50px 0; background: var(--white); }

.story-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(11,92,203,0.10);
  border-color: #b3d0ff;
}

.story-quote-icon {
  font-size: 2.5rem;
  color: #d6e8ff;
  line-height: 1;
  margin-bottom: 12px;
}

.story-hindi-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 12px;
}

.story-text {
  font-size: 0.87rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 20px;
}

.story-patient {
  display: flex;
  align-items: center;
  gap: 12px;
}

.story-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--blue);
  flex-shrink: 0;
}

.story-patient-name { font-weight: 700; font-size: 0.85rem; color: var(--text-dark); }
.story-patient-loc { font-size: 0.75rem; color: #888; }

.story-stars { color: #f59e0b; font-size: 0.75rem; margin-bottom: 4px; }

/* ====== EMERGENCY BANNER ====== */
.heading-emergency{text-align:center;}

.emergency-section {		
 
   background-image: url("../img/emergency-banner.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
   padding: 60px 0;
  width: 100%;
height:100%;
  object-fit: cover;
}


.emergency-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.emergency-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #ff0000;
  margin-bottom: 10px;
}

.emergency-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
}

.btn-emergency-call {
  background: #fff;
  color: #ff0000;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
 font-size: 14px;
  padding: 10px 15px;
  border-radius: 8px;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.emergency-text-area{padding-left:30px;}

.btn-emergency-call:hover {
  background: #ffe0e0;
  transform: scale(1.03);
  color: #c0392b;
}

/* ====== STATS SECTION ====== */
.stats-section { padding: 70px 0; background: var(--blue); }

.stat-item { text-align: center; }
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

.stat-divider { width: 1px; background: rgba(255,255,255,0.2); align-self: stretch; }

/* ====== APPOINTMENT ====== */
.appointment-section {
  padding: 50px 0;
  background: var(--bg-soft);
}

.appt-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 50px rgba(11,92,203,0.10);
  border: 1px solid var(--border);
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 6px;
}

.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.88rem;
  padding: 10px 14px;
  color: var(--text-dark);
  transition: border-color 0.2s;
  margin-bottom:15px;
}

.form-control:focus, .form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(11,92,203,0.12);
  outline: none;
}

.btn-submit-appt {
  background: var(--blue);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px;
  border-radius: 8px;
  border: none;
  width: 100%;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-submit-appt:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(11,92,203,0.3);
}

.appt-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.appt-info-icon {
  width: 46px; height: 46px;
  background: var(--blue);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.appt-info-item h6 {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.appt-info-item p {
  font-size: 0.82rem;
  color: #666;
  margin: 0;
}

/* ====== FOOTER ====== */
.footer-main {
	    background: #004cae;
     
     
  color: rgba(255,255,255,0.80);
  padding: 70px 0 0;
}

.footer-logo img { height: 68px; margin-bottom: 6px; }

.footer-about {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}

.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  padding: 3px 0;
  transition: color 0.2s;
}

.footer-link:hover { color: #63B32E; }

.footer-social { display: flex; gap: 10px; margin-top: 16px; }

.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--green);
  color: #fff;
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 18px 0;
  margin-top: 50px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom a{color:white;text-decoration:none;}

/* ====== FLOATING BUTTONS ====== */
.float-btns {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: all 0.2s;
}

.float-btn:hover { transform: scale(1.1); }
.float-wa { background: #25D366; color: #fff; }
.float-call { background: var(--blue); color: #fff; }


/* ====== UTILITY ====== */
.section-separator {
  height: 3px;
  background: linear-gradient(to right, var(--blue), var(--green));
  width: 60px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.badge-nabh {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8f5e9;
  border: 1px solid #c3e6cb;
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #2e7d32;
  font-family: 'Poppins', sans-serif;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  margin-bottom:25px;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


	
.review-sec {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8fbff, #eef5ff);
    position: relative;
    overflow: hidden;
}






.team-truted-card {
    position: relative;
    overflow: hidden;
   
    background: #fff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.team-truted-card img {
    width: 100%;
    height:100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    
}

.team-truted-text {
    background: #fff;
    padding: 25px 22px;
    border-radius: 0 0 24px 24px;
 
    transition: all 0.4s ease;
}

.team-truted-text h2 {
    
	font-size: 0.95rem;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 14px;
    line-height: 1.4;
}

.team-truted-text p {
    font-size: 14px;
    color: #6c757d;
    
    margin: 0;
}







/*----------------DEPARTMENT-------------------- */
/*----------------DEPARTMENT-------------------- */





:root{
    
    --cardio-dark:#0B3C8A;
    --cardio-green:#63B32E;
    --cardio-soft:#E9EEF4;
}



/* Hero */

.cardio-hero-banner-area{position:relative;}



.cardio-hero-content{
    max-width:700px;
	position:absolute;
   top: 38%;
    right: 100px;
}




.cardio-hero-content-img img{width:100%;border-radius:5px;height:100%;}
/* Buttons */

.cardio-hero-content h1{font-weight:600;font-size:50px; color: var(--blue);}

.cardio-hero-content p{color:#fff;text-align:justify;}
.cardio-btn-outline{
    background:#fff;
    color:var(--cardio-blue);
    border:none;
    padding:14px 26px;
    border-radius:12px;
}

/* Section */

.cardio-section{
    padding:90px 0;
}

/* Statistics */

.cardio-stat-card{
    background:#fff;
    padding:10px;
    border-radius:5px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.09);
}
.cardio-stat-card p{color: var(--blue);font-weight:700;}

.cardio-btn-primary{background: var(--blue);}

.cardio-stat-card h2{
    color: #67a74a;
    font-weight:800;
}

/* About */

.cardio-about-image{
    width:100%;
    height:360px;
    object-fit:cover;
    border-radius:5px;
}

/* Infrastructure */

.cardio-infra-image{
    width:100%;
   
    object-fit:cover;
    border-radius:5px;
}

.cardio-infra-card{
    background:#fff;
    padding:30px;
    border-radius:22px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.cardio-infra-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.cardio-infra-item{	
	display: flex;
    gap: 14px;
    padding: 18px;
    border: 1px solid #e5edf8;
    border-radius: 16px;
    background: #f8fbff;
    align-items: center;
}

.cardio-infra-icon{
    width:50px;
    height:50px;
    border-radius:14px;
    background:#eaf2ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.cardio-infra-icon img{width:100%;}
.gi-infrastructure-sec{padding-bottom:50px;}
/* Procedure Cards */

.cardio-procedure-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.cardio-procedure-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.cardio-procedure-content{
    padding:20px;
}

/* Doctor Cards */

.cardio-doctor-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.cardio-doctor-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    object-position:top;
}

.cardio-doctor-content{
    padding:20px;
}

.cardio-doctor-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
}

.cardio-doctor-actions a{
    text-decoration:none;
    text-align:center;
    padding:14px;
    font-weight:600;
}

.cardio-btn-profile{
    background:#f4f7fa;
    color:#111;
}

.cardio-btn-book{
    background:var(--cardio-blue);
    color:#fff;
}

/* CTA */

.cardio-cta-section{
    background:
        linear-gradient(
            135deg,
            var(--cardio-dark),
            var(--cardio-blue)
        );
    color:#fff;
    padding:80px 0;
    text-align:center;
}


/*----------------doctor-detail-------------------- */
/*----------------doctor-detail-------------------- */



:root{
    --psh-drp-blue:#0B5CCB;
    --psh-drp-dark:#0B3C8A;
    --psh-drp-green:#63B32E;
    --psh-drp-soft:#E9EEF4;
}



/* Hero Section */

.psh-drp-hero-banner{
    background:linear-gradient(
        135deg,
        var(--psh-drp-dark),
        var(--psh-drp-blue)
    );
    padding:60px 0;
    color:#fff;
}

.psh-drp-breadcrumb-nav{
    opacity:.85;
    font-size:14px;
}

/* Profile Header */

.psh-drp-profile-wrapper{
    background:#fff;
    border-radius:24px;
    padding:30px;
    margin-top:-35px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.psh-drp-profile-photo{
    width:220px;
    height:220px;
    border-radius:20px;
    object-fit:cover;
    object-position:top;
}

.psh-drp-speciality-tag{
    display:inline-block;
    background:#eaf2ff;
    color:var(--psh-drp-blue);
    padding:8px 14px;
    border-radius:999px;
    font-weight:700;
    font-size:14px;
}

/* Statistics */

.psh-drp-metric-card{
    background:#f7faff;
    border:1px solid #e4edf8;
    border-radius:16px;
    padding:16px;
    text-align:center;
}

.psh-drp-metric-card h4{
    margin-bottom:5px;
    color:var(--psh-drp-blue);
    font-weight:800;
}

/* Content Cards */

.psh-drp-info-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    margin-bottom:20px;
}

.psh-drp-info-card h4{
    margin-bottom:18px;
    font-weight:800;
}

/* Booking Panel */

.psh-drp-booking-panel{
    position:sticky;
    top:20px;
}

/* Days */

.psh-drp-schedule-day{
    display:inline-block;
    padding:12px 14px;
    margin:4px;
    border-radius:12px;
    background:#f4f7fb;
    min-width:78px;
    text-align:center;
    font-weight:600;
    cursor:pointer;
}

.psh-drp-schedule-day-active{
    background:var(--psh-drp-blue);
    color:#fff;
}

/* Time Slots */

.psh-drp-time-slot{
    display:inline-block;
    padding:10px 12px;
    margin:4px;
    border-radius:10px;
    background:#eef4ff;
    color:var(--psh-drp-blue);
    font-weight:700;
    cursor:pointer;
}

/* Buttons */

.psh-drp-book-btn,
.psh-drp-callback-btn{
    width:100%;
    padding:14px;
    border:none;
    border-radius:12px;
    font-weight:700;
    transition:.3s;
}

.psh-drp-book-btn{
    background:var(--psh-drp-blue);
    color:#fff;
}

.psh-drp-callback-btn{
    background:var(--psh-drp-green);
    color:#fff;
}

.psh-drp-book-btn:hover,
.psh-drp-callback-btn:hover{
    transform:translateY(-2px);
}

/* Typography */

.psh-drp-page-title,
.psh-drp-doctor-name,
.psh-drp-info-card h4,
.psh-drp-booking-title{
    font-weight:800;
}




/*------------------Doctor-direcory------------------------ */



:root{
    --mvx-blue:#0B5CCB;
    --mvx-blue-dark:#0B3C8A;
    --mvx-green:#63B32E;
    --mvx-bg:#F7FBFF;
}



/* Hero */

.mvx-directory-hero-banner{
    background:linear-gradient(
        135deg,
        var(--mvx-blue-dark),
        var(--mvx-blue)
    );
    padding:70px 0;
    color:#fff;
}

.mvx-directory-hero-banner h1{
    font-weight:800;
}

/* Search Panel */

.mvx-directory-search-console{
    background:#fff;
    padding:25px;
    border-radius:18px;
    margin-top:-35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

/* Doctor Card */

.mvx-directory-provider-card{
    background:#fff;
    border-radius:16px;
    height:100%;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.mvx-directory-provider-card:hover{
    transform:translateY(-6px);
}

.mvx-directory-provider-header{
    display:flex;
    gap:15px;
    padding:20px;
}

.mvx-directory-provider-avatar{
    width:95px;
    height:95px;
    border-radius:50%;
    overflow:hidden;
    border:3px solid #eaf2ff;
    flex-shrink:0;
}

.mvx-directory-provider-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:top;
}

.mvx-directory-provider-name{
    font-size:1.3rem;
    font-weight:700;
}

.mvx-directory-provider-speciality{
    font-size:.95rem;
    color:#666;
}

.mvx-directory-department-badge{
    display:inline-block;
    margin-top:8px;
    padding:6px 10px;
    border-radius:20px;
    background:#eaf2ff;
    color:var(--mvx-blue);
    font-size:.75rem;
    font-weight:700;
}

.mvx-directory-provider-content{
    padding:0 20px 20px;
}

.mvx-directory-provider-experience{
    margin:10px 0;
    font-weight:700;
}

.mvx-directory-provider-tags span{
    display:inline-block;
    background:#f3f4f6;
    padding:5px 9px;
    border-radius:12px;
    font-size:.75rem;
    margin:2px;
}

/* Buttons */

.mvx-directory-provider-actions{
    display:grid;
    
	
	/* grid-template-columns:1fr 1fr; */
}

.mvx-directory-provider-actions a{
    text-decoration:none;
    text-align:center;
    padding:14px;
    font-weight:700;
}

.mvx-directory-profile-button{
    background:#eaf2ff;
    color:#222;
}

.mvx-directory-consult-button{
    background:var(--mvx-blue);
    color:#fff;
}

.mvx-directory-consult-button:hover{
    background:var(--mvx-blue-dark);
    color:#fff;
}
















/* ===== FILTER WRAPPER ===== */
.job-filter-wrapper {
      background: #ffffff;
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.09);
   
    margin: 30px 0px;

}

/* ===== FORM LAYOUT ===== */
.job-filter-form {
    display: flex;
    align-items: center;
    
}

/* ===== INPUT & SELECT ===== */
.job-filter-form input,
.job-filter-form select {
    flex: 1;
    height: 56px;
    border-radius: 16px;
    border: 1px solid #dbe3f0;
    padding: 0 20px;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

.job-filter-form input::placeholder {
    color: #94a3b8;
}

.job-filter-form input:focus,
.job-filter-form select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37,99,235,0.15);
}

/* ===== SEARCH BUTTON ===== */
.btn-search {
       background: var(--blue);
    color: #ffffff;
    border: none;
    height: 46px;
    padding: 0 52px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}



/* ===== RESET ===== */
.btn-reset {
    font-size: 14px;
    color: #2563eb;
    text-decoration: none;
    margin-left: 5px;
}

.btn-reset:hover {
    text-decoration: underline;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .job-filter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-search {
        width: 100%;
    }
}

/* ================= FILTER BAR ================= */


form .form-control {
    height: 54px;
    border-radius: 14px;
    border: 1px solid #dbe3f0;
    padding: 0 18px;
   
}



/* ================= JOB CARD ================= */
.career-2-box {
    border-radius: 22px;
    padding: 22px;
    margin-bottom: 22px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.35s ease;
    border-left: 10px solid #d5ffed;
}

.career-2-box:hover {
    transform: translateY(-2px);
 
}

.career-2 {padding-top:50px;}
.career-2 h2{text-align:center;}

/* ================= LAYOUT ================= */
.career-2-box-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

/* ================= TEXT ================= */
.career-2-box-txt-profileName {
    font-size: 22px;
   
}

.career-2-box-txt-profileTitle {
    
    color: #6da546;
   
	
	
}

.career-2-box-txt-profiletxt {

    color: #64748b;
    line-height: 1.6;
    margin-top: 8px;
}

/* ================= BUTTON ================= */
.career-2-box-btn a {
	    background: var(--blue);
    margin: 0px;
   padding:10px;
   text-decoration:none;
   color:#fff;
   
}


/* ================= EMPTY STATE ================= */
.alert-warning {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    text-align: center;
    color: #64748b;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .career-2-box-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .career-2-box-btn {
        width: 100%;
    }

    .career-2-box-btn a {
        width: 100%;
        text-align: center;
    }

    .career-2-box-txt-profileName {
        font-size: 24px;
    }
}

.pbh-talent-journey-vx9-section{
    padding:70px 0;
    background:#eef4fb;
    overflow:hidden;
}

.pbh-talent-journey-vx9-header{
    text-align:center;
    margin-bottom:50px;
}



/* Timeline */

.pbh-talent-journey-vx9-track{
    position:relative;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
}

/* Base Line */

.pbh-talent-journey-vx9-track::before{
    content:"";
    position:absolute;
    top:45px;
    left:10%;
    width:80%;
    height:8px;
    border-radius:50px;
    background:#d8e6fb;
}

/* Animated Line */

.pbh-talent-journey-vx9-progress{
    position:absolute;
    top:45px;
    left:10%;
    width:0;
    height:8px;
    border-radius:50px;

    background:linear-gradient(
        90deg,
        #0046c7,
        #0f67ff,
        #63a8ff
    );

    box-shadow:
        0 0 25px rgba(15,103,255,.4),
        0 0 40px rgba(15,103,255,.2);

    animation:pbhTalentJourneyLineFill 5s ease forwards;
}

/* Step */

.pbh-talent-journey-vx9-step{
    width:20%;
    text-align:center;
    position:relative;
    z-index:5;

    opacity:0;
    transform:translateY(60px);

    animation:pbhTalentJourneyStepAppear .8s forwards;
}

/* Delays */

.pbh-talent-journey-vx9-step:nth-child(2){
    animation-delay:.5s;
}

.pbh-talent-journey-vx9-step:nth-child(3){
    animation-delay:1.5s;
}

.pbh-talent-journey-vx9-step:nth-child(4){
    animation-delay:2.5s;
}

.pbh-talent-journey-vx9-step:nth-child(5){
    animation-delay:3.5s;
}

.pbh-talent-journey-vx9-step:nth-child(6){
    animation-delay:4.5s;
}

/* Circle */

.pbh-talent-journey-vx9-node{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#fff;

    border:5px solid #1565d8;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 30px;

    position:relative;

    transform:scale(.4);
    opacity:0;

    animation:pbhTalentJourneyNodePop .8s forwards;
}

/* Circle Delays */

.pbh-talent-journey-vx9-step:nth-child(2) .pbh-talent-journey-vx9-node{
    animation-delay:.5s;
}

.pbh-talent-journey-vx9-step:nth-child(3) .pbh-talent-journey-vx9-node{
    animation-delay:1.5s;
}

.pbh-talent-journey-vx9-step:nth-child(4) .pbh-talent-journey-vx9-node{
    animation-delay:2.5s;
}

.pbh-talent-journey-vx9-step:nth-child(5) .pbh-talent-journey-vx9-node{
    animation-delay:3.5s;
}

.pbh-talent-journey-vx9-step:nth-child(6) .pbh-talent-journey-vx9-node{
    animation-delay:4.5s;
}

/* Ripple */

.pbh-talent-journey-vx9-node::before{
    content:"";
    position:absolute;
    inset:-5px;
    border-radius:50%;
    border:2px solid #1565d8;

    animation:pbhTalentJourneyRipple 2.5s infinite;
}

/* Icon */

.pbh-talent-journey-vx9-node i{
    font-size:30px;
    color:#1565d8;
    transition:.4s;
}

/* Text */

.pbh-talent-journey-vx9-step h4{
    font-size:22px;
    font-weight:600;
    
    margin-bottom:10px;
}

.pbh-talent-journey-vx9-step p{
    margin:0;
}

/* Hover */

.pbh-talent-journey-vx9-step:hover .pbh-talent-journey-vx9-node{
    transform:translateY(-10px) scale(1.08);

    box-shadow:
        0 15px 35px rgba(21,101,216,.25),
        0 0 30px rgba(21,101,216,.2);
}

.pbh-talent-journey-vx9-step:hover i{
    transform:rotate(8deg) scale(1.15);
}

/* Keyframes */

@keyframes pbhTalentJourneyLineFill{
    from{
        width:0%;
    }
    to{
        width:80%;
    }
}

@keyframes pbhTalentJourneyStepAppear{
    from{
        opacity:0;
        transform:translateY(60px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes pbhTalentJourneyNodePop{
    0%{
        transform:scale(.4);
        opacity:0;
    }

    70%{
        transform:scale(1.15);
    }

    100%{
        transform:scale(1);
        opacity:1;
    }
}

@keyframes pbhTalentJourneyRipple{
    0%{
        transform:scale(.8);
        opacity:.8;
    }

    100%{
        transform:scale(1.6);
        opacity:0;
    }
}

/* Responsive */

@media(max-width:991px){

    .pbh-talent-journey-vx9-track{
        flex-direction:column;
        gap:40px;
    }

    .pbh-talent-journey-vx9-track::before,
    .pbh-talent-journey-vx9-progress{
        display:none;
    }

    .pbh-talent-journey-vx9-step{
        width:100%;
    }

    .pbh-talent-journey-vx9-node{
        width:90px;
        height:90px;
    }

    .pbh-talent-journey-vx9-node i{
        font-size:30px;
    }

    .pbh-talent-journey-vx9-step h4{
        font-size:24px;
    }

    .pbh-talent-journey-vx9-step p{
        font-size:16px;
    }
}


.prabha-career-section {
    padding: 80px 0;
}

.prabha-career-box {
    background: #fff;
    border-radius: 35px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.prabha-career-img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 28px;
}

.prabha-career-title {
    font-size: 26px;
    font-weight: 700;
   
    margin-bottom: 40px;
}

.prabha-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}

.prabha-icon-box {
       width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 50%;
    background: #edf3ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prabha-icon-box i {
    color: #1565d8;
    font-size: 28px;
}

.prabha-benefit-item h5 {
    font-size: 22px;
    font-weight: 500;
   
    margin-bottom: 8px;
}

.prabha-benefit-item p {
    margin: 0;
  
    line-height: 1.6;
}

@media (max-width: 991px) {
    .prabha-career-box {
        padding: 25px;
    }

    .prabha-career-img {
        height: auto;
    }

    .prabha-career-title {
        font-size: 32px;
    }

    .prabha-benefit-item h5 {
        font-size: 22px;
    }

    .prabha-icon-box {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
}




















/* ==========================
   PRABHA ORIGIN SECTION ABOUT PAGE
========================== */


.team-truted-card-Decision img{height:50px;
width:50px;}

.btn-brand {
    color: #ffffff;
  background: #004cae;
   padding:15px;
    text-align:center;
	    box-shadow: rgba(13, 110, 253, 0.08) 0px 15px 35px;
    cursor: pointer;
	  border-radius: 10px;
}

.cta-band {
	    border-radius: 10px;
      position: relative;
      overflow: hidden;
      padding: 44px;
      color: #ffffff;
      background:#3f68ff;
	  margin-bottom:50px;
     
    }   
    .cta-band h2 {
      margin: 0;
      color: #ffffff;
      font-size:25px;
      font-weight: 600;
	  
    }

    .cta-band p {
      max-width: 570px;
      margin: 12px 0 0;
      color: rgba(255, 255, 255, 0.78);
      line-height: 1.7;
    }

    .site-footer {
      color: rgba(255, 255, 255, 0.82);
      background: #061B3C;
    }

 
 .team-truted-card-Decision{text-align:center;background:#fff;padding-top:20px;border-radius:none;}

.prbha-origin-section{
   padding:50px 0;
    background:#ffffff;
    position:relative;
}

.prbha-origin-media-wrap{
    overflow:hidden;
    border-radius:28px;
}

.prbha-origin-media-image{
    width:100%;
    display:block;
    border-radius:28px;
    transition:all .5s ease;
    box-shadow:0 30px 60px rgba(0,0,0,.12);
}

.prbha-origin-media-image:hover{
    transform:scale(1.04);
}

.prbha-origin-content-panel{
    padding-left:50px;
}

.prbha-origin-label-chip{
    display:inline-flex;
    align-items:center;
    padding:10px 22px;
    background:#edf6ff;
    color:#0d6efd;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    letter-spacing:.5px;
    margin-bottom:22px;
}



.prbha-origin-description-text{
    font-size:17px;
    line-height:1.9;
    color:#667085;
    margin-bottom:16px;
}

.prbha-origin-quote-container{
    margin-top:35px;
    padding:28px;
    background:#f8fbff;
    border-radius:18px;
    border-left:6px solid #0d6efd;
    box-shadow:0 15px 35px rgba(13,110,253,.08);
}

.prbha-origin-quote-message{
    margin:0;
    font-size:20px;
    font-weight:600;
    color:#092540;
    line-height:1.7;
}

/* Responsive */

@media(max-width:991px){

    .prbha-origin-content-panel{
        padding-left:0;
        margin-top:40px;
    }

  
}

@media(max-width:767px){

    .prbha-origin-section{
        padding:70px 0;
    }

   

    .prbha-origin-quote-message{
        font-size:18px;
    }
}




/* ====================================
   PRABHA CARE COMPASS SECTION
==================================== */

.prbha-carecompass-section{
    padding:50px 0;
    background:#f8fbff;
}


.prbha-carecompass-tagline{
    display:inline-block;
    padding:10px 22px;
    background:#e9f3ff;
    color:#0d6efd;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}




.prbha-carecompass-cardbox{
    background:#ffffff;
    padding:45px;
    border-radius:28px;
    text-align:center;
    height:100%;
    transition:.4s;
    box-shadow:0 20px 40px rgba(0,0,0,.06);
}

.prbha-carecompass-cardbox:hover{
    transform:translateY(-12px);
    box-shadow:0 30px 60px rgba(13,110,253,.12);
}
.prbha-carecompass-iconwrap img{width:100%;padding:20px;}
.prbha-carecompass-iconwrap{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#edf6ff;
    font-size:42px;
}

.prbha-carecompass-cardtitle{
    font-size:28px;
    font-weight:700;
    color:#0a2540;
    margin-bottom:15px;
}

.prbha-carecompass-cardtext{
    font-size:16px;
    line-height:1.9;
    color:#667085;
}

/* Responsive */

@media(max-width:991px){

 
}

@media(max-width:767px){

    .prbha-carecompass-section{
        padding:70px 0;
    }

 

    .prbha-carecompass-cardbox{
        padding:30px;
    }
}

/* ===================================
   PRABHA CARE PILLAR SECTION
=================================== */

.prbha-carepillar-section{
 padding:50px 0;
    background:#ffffff;
}








/* Responsive */

@media(max-width:767px){

    .prbha-carepillar-section{
        padding:70px 0;
    }

   

   
}



/* ====================================
   PRABHA GUIDE STAR VALUES SECTION
==================================== */

.prbha-guidestar-section{
    padding:50px 0;
    background:#f8fbff;
}



@media(max-width:767px){

    .prbha-guidestar-section{
        padding:70px 0;
    }

 


}



/* ====================================
   PRABHA GUIDE Gastrointestinal
==================================== */



/* Section Styling */
.international-treatment-detail-sec1 {
    padding: 90px 0;
    background: linear-gradient(135deg, #f5fbff 0%, #ffffff 100%);
    overflow: hidden;
}

/* Content Alignment */
.liver-global-main {
    position: relative;
}

/* Text Content */
.global-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.short-heading_content {
    font-size: 16px;
    font-weight: 600;
    color: #0d6efd;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.heading_content {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 25px;
}


.global-text p {
    margin-bottom: 18px;
    font-size: 14px;
    text-align: justify;
}


/* Image Section */
.liver-global-img {
    position: relative;
    text-align: center;
}

.liver-global-img img {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.liver-global-img img:hover {
    transform: scale(1.03);
}

/* Decorative Background Circle */
.liver-global-img::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(13, 110, 253, 0.08);
    border-radius: 50%;
    top: -40px;
    right: -40px;
    z-index: -1;
}

/* Animation */
.global-text,
.liver-global-img {
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .international-treatment-detail-sec1 {
        padding: 70px 0;
        text-align: center;
    }

    .heading_content {
        font-size: 34px;
    }

    .global-text {
        margin-bottom: 40px;
    }

    .book-primary-btn {
        margin: 20px auto 0;
    }
}

@media (max-width: 767px) {
    .heading_content {
        font-size: 28px;
    }

    .global-text p {
        font-size: 15px;
        line-height: 1.8;
    }

    .liver-global-img img {
        max-width: 320px;
    }
}





/* ====================================
   PRABHA GUIDE Gynecology
==================================== */

.akx-medical-drprofile-wrapper{
    background:#ffffff;
}



.akx-medical-drprofile-image img{
    width:300px;
    min-width:300px;

    display:block;
}

.akx-medical-drprofile-degree p{color:#de1c7ced;}

.akx-medical-drprofile-staticon i{color:#de1c7ced;}

.akx-medical-drprofile-expertise-item h5{color:#de1c7ced;}

.akx-medical-drprofile-degree{
   
    font-size:14px;
    font-weight:500;
    margin-bottom:8px;
}

.akx-medical-drprofile-fellowship{
   
    font-size:14px;
    font-weight:600;
}

.akx-medical-drprofile-statcard{
    background:#fff;
    border-radius:14px;
    padding:18px;
    display:flex;
    gap:12px;
    align-items:flex-start;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
    height:100%;
}

.akx-medical-drprofile-staticon{

    font-size:20px;
    min-width:24px;
}

.akx-medical-drprofile-statcard h6{
    font-size:15px;
    font-weight:700;
    margin-bottom:5px;
    color:#000;
}

.akx-medical-drprofile-statcard p{
    font-size:13px;
    line-height:1.5;
    color:#666;
    margin:0;
}

.akx-medical-drprofile-tagline{
     font-size:14px;
    font-weight:700;
    font-weight:700;
    line-height:1.5;
}

.akx-medical-drprofile-expertise{
    border-left:2px dashed #000;
    padding-left:40px;
}

.akx-medical-drprofile-expertise-heading{
    font-size:14px;
    font-weight:700;
    
    margin-bottom:25px;
}
.akx-medical-drprofile-expertise p{text-align:justify;}
.akx-medical-drprofile-expertise-item{
    margin-bottom:20px;
}

.akx-medical-drprofile-expertise-item h5{
   
    font-size:14px;
    font-weight:600;
    margin-bottom:10px;
}

.akx-medical-drprofile-expertise-item ul{
    padding-left:20px;
    margin-bottom:0;
}

.akx-medical-drprofile-expertise-item li{
    
    line-height:1.8;
    font-size:14px;
}

.akx-medical-drprofile-expertise-item li::marker{
    color:#000;
}

@media(max-width:991px){

    .akx-medical-drprofile-expertise{
        border-left:none;
        border-top:2px dashed #efc6d8;
        padding-left:0;
        padding-top:30px;
        margin-top:10px;
    }

    .akx-medical-drprofile-image{
        text-align:center;
        margin-bottom:20px;
    }
}

@media(max-width:767px){

    .akx-medical-drprofile-card{
        padding:20px;
    }

   
    .akx-medical-drprofile-tagline{
        font-size:20px;
    }

    .akx-medical-drprofile-image img{
        width:220px;
        margin:auto;
    }

    .akx-medical-drprofile-expertise-heading{
        font-size:24px;
    }
}

.medproc-section {
    padding: 50px 0;
    background: #fff;
}





.medproc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.medproc-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    padding: 18px 22px;
    min-height: 95px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.medproc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.medproc-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
  
    display: flex;
    align-items: center;
    justify-content: center;
}

.medproc-icon img {
    width: 33px;
    height: 33px;
    object-fit: contain;
}

.medproc-card h3 {
        margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

/* Tablet */
@media (max-width: 991px) {
    .medproc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .medproc-grid {
        grid-template-columns: 1fr;
    }

  

    .medproc-card {
        padding: 16px;
    }

   
}