/* ========== ALL CLASSES WITH bidhan- PREFIX ========== */  
    * {  
      margin: 0;  
      padding: 0;  
      box-sizing: border-box;  
    }  
  
    .bidhan-body {  
      font-family: 'Inter', sans-serif;  
      background: #f6fafd;  
      color: #1e293b;  
      overflow-x: hidden;  
      scroll-behavior: smooth;  
    }  
  
    /* Medical Premium Color Palette */  
    :root {  
      --bidhan-primary: #0ea5e9;  
      --bidhan-primary-dark: #0284c7;  
      --bidhan-secondary: #14b8a6;  
      --bidhan-accent: #f59e0b;  
      --bidhan-dark: #0f172a;  
      --bidhan-light-bg: #f8fafc;  
      --bidhan-card-bg: #ffffff;  
      --bidhan-text-dark: #1e293b;  
      --bidhan-text-dim: #64748b;  
      --bidhan-border-light: #e2e8f0;  
      --bidhan-shadow-sm: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);  
      --bidhan-shadow-md: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.02);  
      --bidhan-transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);  
      --whatsapp-green: #25D366;  
    }  
  
    /* Scroll Progress Bar */  
    .bidhan-scroll-progress {  
      position: fixed;  
      top: 0;  
      left: 0;  
      height: 4px;  
      width: 0%;  
      background: linear-gradient(90deg, #0ea5e9, #14b8a6);  
      z-index: 99999;  
      transition: width 0.1s linear;  
    }  
  
    /* Floating Medical Icons Background */  
    .bidhan-floating-icons-bg {  
      position: fixed;  
      top: 0;  
      left: 0;  
      width: 100%;  
      height: 100%;  
      pointer-events: none;  
      z-index: 0;  
      overflow: hidden;  
    }  
    .bidhan-floating-icon {  
      position: absolute;  
      font-size: 2rem;  
      opacity: 0.06;  
      animation: bidhanFloatMedical 20s infinite ease-in-out;  
      color: var(--bidhan-primary);  
      will-change: transform;  
    }  
    @keyframes bidhanFloatMedical {  
      0% { transform: translateY(0) rotate(0deg); }  
      50% { transform: translateY(-30px) rotate(10deg); }  
      100% { transform: translateY(0) rotate(0deg); }  
    }  
    .bidhan-heart-beat-bg {  
      position: fixed;  
      bottom: 20px;  
      left: 20px;  
      font-size: 180px;  
      opacity: 0.025;  
      pointer-events: none;  
      animation: bidhanHeartbeatPulse 2s infinite;  
      z-index: 0;  
    }  
    @keyframes bidhanHeartbeatPulse {  
      0% { transform: scale(1); opacity: 0.025; }  
      50% { transform: scale(1.1); opacity: 0.05; }  
      100% { transform: scale(1); opacity: 0.025; }  
    }  
  
    /* Preloader */  
    .bidhan-preloader {  
      position: fixed;  
      top: 0;  
      left: 0;  
      width: 100%;  
      height: 100%;  
      background: linear-gradient(135deg, #f0f9ff, #e6f7ff);  
      display: flex;  
      justify-content: center;  
      align-items: center;  
      z-index: 10000;  
      transition: opacity 0.6s ease, visibility 0.6s ease;  
    }  
    .bidhan-preloader.bidhan-hide { opacity: 0; visibility: hidden; }  
    .bidhan-heartbeat-loader {  
      width: 80px;  
      height: 80px;  
      background: var(--bidhan-primary);  
      border-radius: 50%;  
      animation: bidhanPulseMed 1.2s ease infinite;  
      display: flex;  
      align-items: center;  
      justify-content: center;  
      color: white;  
      font-size: 36px;  
      box-shadow: 0 0 30px rgba(14,165,233,0.5);  
    }  
    @keyframes bidhanPulseMed { 0% { transform: scale(0.8); opacity: 0.6; } 100% { transform: scale(1.3); opacity: 0; } }  
  
    /* Glassmorphism */  
    .bidhan-glass-card {  
      background: rgba(255, 255, 255, 0.85);  
      backdrop-filter: blur(12px);  
      -webkit-backdrop-filter: blur(12px);  
      border: 1px solid rgba(255, 255, 255, 0.6);  
      border-radius: 2rem;  
      box-shadow: var(--bidhan-shadow-sm);  
      transition: .4s ease;  
    }  
    
    .bidhan-glass-card:hover{  
      transform: translateY(-6px);  
      box-shadow: 0 25px 60px rgba(0,0,0,.08);  
    }  
  
    .bidhan-container {  
      max-width: 1280px;  
      margin: 0 auto;  
      padding: 0 1.5rem;  
      position: relative;  
      z-index: 2;  
    }  
  
    .bidhan-section {  
      padding: 80px 0;  
      position: relative;  
      z-index: 2;  
      border-bottom: 1px solid rgba(148, 163, 184, 0.08);  
    }  
  
    /* Fade-up Animation */  
    .bidhan-fade-up {  
      opacity: 0;  
      transform: translateY(30px);  
      transition: opacity 0.7s ease, transform 0.7s ease;  
    }  
    .bidhan-fade-up.bidhan-show {  
      opacity: 1;  
      transform: translateY(0);  
    }  
  
    /* Buttons */  
    .bidhan-btn-primary {  
      background: linear-gradient(135deg, var(--bidhan-primary), var(--bidhan-primary-dark));  
      color: white;  
      padding: 0.8rem 1.8rem;  
      border-radius: 50px;  
      font-weight: 600;  
      border: none;  
      cursor: pointer;  
      transition: var(--bidhan-transition);  
      display: inline-flex;  
      align-items: center;  
      gap: 0.5rem;  
      box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);  
    }  
    .bidhan-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 25px -5px rgba(14, 165, 233, 0.4); }  
    .bidhan-btn-outline {  
      border: 1.5px solid var(--bidhan-primary);  
      background: transparent;  
      padding: 0.7rem 1.6rem;  
      border-radius: 50px;  
      font-weight: 600;  
      color: var(--bidhan-primary-dark);  
      transition: var(--bidhan-transition);  
    }  
    .bidhan-btn-outline:hover { background: rgba(14, 165, 233, 0.08); transform: translateY(-2px); }  
    .bidhan-btn-whatsapp {  
      background: var(--whatsapp-green);  
      color: white;  
      padding: 0.8rem 1.8rem;  
      border-radius: 50px;  
      font-weight: 600;  
      border: none;  
      cursor: pointer;  
      transition: var(--bidhan-transition);  
      display: inline-flex;  
      align-items: center;  
      gap: 0.5rem;  
      box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);  
    }  
    .bidhan-btn-whatsapp:hover { transform: translateY(-3px); background: #20b859; box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.4); }  
      
    /* Navbar Premium */  
    .bidhan-navbar {  
      position: sticky;  
      top: 0;  
      z-index: 999;  
      background: rgba(25, 255, 105, 0.3);  
      backdrop-filter: blur(16px);  
      border-bottom: 1px solid var(--bidhan-border-light);  
      padding: 1rem 0;  
      transition: all 0.3s ease;  
      box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);  
      width: 100%;  
    }  
    .bidhan-navbar.bidhan-scrolled {  
      padding: 0.7rem 0;  
      backdrop-filter: blur(20px);  
      background: rgba(255, 255, 255, 0.98);  
      box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);  
    }  
    .bidhan-nav-wrapper { display: flex; justify-content: space-between; align-items: center; }  
    .bidhan-logo { font-size: 1.8rem; font-weight: 800; background: linear-gradient(135deg, var(--bidhan-primary), var(--bidhan-secondary)); -webkit-background-clip: text; background-clip: text; color: transparent; cursor: pointer; }  
    .bidhan-nav-links { display: flex; gap: 2rem; align-items: center; }  
    .bidhan-nav-links a { text-decoration: none; font-weight: 500; color: var(--bidhan-text-dark); transition: 0.2s; position: relative; }  
    .bidhan-nav-links a::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--bidhan-primary), var(--bidhan-secondary)); transition: 0.3s; }  
    .bidhan-nav-links a:hover::after { width: 100%; }  
      
    .bidhan-nav-links a.bidhan-active{  
      color: var(--bidhan-primary);  
    }  
      
    /* ===== RECONSTRUCTED HAMBURGER MENU - FULL HEIGHT ===== */  
    .bidhan-menu-btn {   
      display: none;   
      flex-direction: column;   
      gap: 6px;   
      cursor: pointer;   
      z-index: 1001;   
      padding: 0;  
      margin: 0;  
    }  
    .bidhan-menu-btn span {   
      height: 3px;   
      border-radius: 50px;   
      background: linear-gradient(90deg, var(--bidhan-primary), var(--bidhan-secondary));   
      transition: 0.4s ease;   
      display: block;  
    }  
    .bidhan-menu-btn span:nth-child(1) { width: 28px; }  
    .bidhan-menu-btn span:nth-child(2) { width: 22px; margin-left: 6px; }  
    .bidhan-menu-btn span:nth-child(3) { width: 16px; margin-left: 12px; }  
    .bidhan-menu-btn.bidhan-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); width: 28px; margin-left: 0; }  
    .bidhan-menu-btn.bidhan-active span:nth-child(2) { opacity: 0; width: 28px; margin-left: 0; }  
    .bidhan-menu-btn.bidhan-active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); width: 28px; margin-left: 0; }  
  
    /* FULL HEIGHT MOBILE MENU - covers entire viewport height */  
    .bidhan-mobile-menu {  
      position: fixed;  
      top: 0;  
      right: 0;  
      transform: translateX(100%);  
      opacity: 0;  
      width: 40%;  
      height: 100vh;  
      height: 100dvh;  
      background: rgba(55, 255, 105, 0.5);  
      backdrop-filter: blur(20px);  
      padding: 5rem 2rem 2rem 2rem;  
      transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1), opacity 0.3s ease;  
      z-index: 1000;  
      border-left: none;  
      display: flex;  
      flex-direction: column;  
      gap: 2rem;  
      will-change: transform;  
      overflow-y: auto;  
    }  
    .bidhan-mobile-menu.bidhan-open {  
      transform: translateX(0);  
      opacity: 1;  
    }  
    .bidhan-mobile-menu a {   
      text-decoration: none;   
      color: var(--bidhan-text-dark);   
      font-weight: 600;   
      font-size: 1.4rem;   
      padding: 12px 0;   
      border-bottom: 1px solid var(--bidhan-border-light);  
      transition: 0.2s;  
      display: block;  
    }  
    .bidhan-mobile-menu a:hover {  
      color: var(--bidhan-primary);  
      padding-left: 10px;  
    }  
    .bidhan-menu-overlay {   
      position: fixed;   
      inset: 0;   
      background: rgba(0,0,0,0.4);   
      backdrop-filter: blur(4px);   
      opacity: 0;   
      visibility: hidden;   
      transition: 0.3s;   
      z-index: 998;   
    }  
    .bidhan-menu-overlay.bidhan-show {   
      opacity: 1;   
      visibility: visible;   
    }  
  
    /* Hero Section - Full Height */  
    .bidhan-hero {  
      min-height: 100vh;  
      display: flex;  
      align-items: center;  
      padding: 2rem 0;  
      background: linear-gradient(135deg, #eef2ff 0%, #ffffff 100%);  
      position: relative;  
      overflow: hidden;  
    }  
    .bidhan-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }  
    .bidhan-trust-badge { display: inline-flex; gap: 0.5rem; background: rgba(14, 165, 233, 0.1); padding: 0.4rem 1rem; border-radius: 40px; font-size: 0.85rem; margin-bottom: 1.5rem; color: var(--bidhan-primary-dark); }  
    .bidhan-hero h1 { font-size: 3.2rem; font-weight: 800; line-height: 1.2; margin-bottom: 1rem; }  
    .bidhan-hero-buttons-wrapper { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: flex-start; }  
    .bidhan-stats-row { display: flex; gap: 1.8rem; margin: 2rem 0; flex-wrap: wrap; }  
    .bidhan-stat-number { font-size: 1.8rem; font-weight: 800; color: var(--bidhan-primary); }  
    .bidhan-doctor-img { width: 100%; max-width: 450px; border-radius: 28px; box-shadow: var(--bidhan-shadow-md); object-fit: cover; animation: bidhanGentleFloat 4s ease-in-out infinite; }  
    @keyframes bidhanGentleFloat { 0% { transform: translateY(0); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0); } }  
    .bidhan-floating-card { background: white; border-radius: 24px; padding: 0.8rem 1.2rem; box-shadow: var(--bidhan-shadow-sm); display: inline-flex; align-items: center; gap: 0.8rem; margin-top: 1rem; }  
    .bidhan-trust-indicators { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 1.5rem; }  
    .bidhan-trust-indicators span { background: rgba(255,255,255,0.9); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.8rem; color: var(--bidhan-primary-dark); }  
    .bidhan-live-status { display: inline-flex; align-items: center; gap: 8px; background: #e0f2fe; padding: 0.3rem 1rem; border-radius: 50px; font-size: 0.8rem; margin-left: 1rem; }  
    .bidhan-green-dot { width: 8px; height: 8px; background: #10b981; border-radius: 50%; animation: bidhanPulseGreen 1.5s infinite; }  
    @keyframes bidhanPulseGreen { 0% { opacity: 0.5; } 50% { opacity: 1; } 100% { opacity: 0.5; } }  
  
    /* Specialization cards */  
    .bidhan-spec-card { background: linear-gradient(180deg, #ffffff, #f8fbff); padding: 1.8rem; border-radius: 1.8rem; text-align: center; transition: var(--bidhan-transition); border: 1px solid var(--bidhan-border-light); }  
    .bidhan-spec-card i { font-size: 2.5rem; color: var(--bidhan-primary); margin-bottom: 1rem; transition: 0.3s; }  
    .bidhan-spec-card:hover i { transform: scale(1.1); }  
    .bidhan-spec-card:hover { transform: translateY(-8px); border-color: var(--bidhan-primary); box-shadow: var(--bidhan-shadow-md); }  
  
    .bidhan-appointment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }  
    .bidhan-form-group { margin-bottom: 1.2rem; }  
    .bidhan-form-group input, .bidhan-form-group select { width: 100%; padding: 0.9rem 1rem; border-radius: 1.5rem; border: 1px solid var(--bidhan-border-light); font-family: inherit; background: white; transition: 0.3s; }  
    .bidhan-form-group input:focus, .bidhan-form-group select:focus { border-color: var(--bidhan-primary); outline: none; box-shadow: 0 0 0 3px rgba(14,165,233,0.1); }  
  
    .bidhan-testimonial-card { background: white; padding: 2rem; border-radius: 2rem; text-align: center; box-shadow: var(--bidhan-shadow-sm); transition: 0.3s; }  
      
    /* Gallery with hover overlay */  
    .bidhan-gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }  
    .bidhan-gallery-img {  
      width: 100%;  
      height: 200px;  
      object-fit: cover;  
      border-radius: 1.5rem;  
      transition: 0.4s;  
      cursor: pointer;  
      position: relative;  
      display: block;  
    }  
    .bidhan-gallery-wrapper {  
      position: relative;  
      overflow: hidden;  
      border-radius: 1.5rem;  
    }  
    .bidhan-gallery-wrapper::after {  
      content: 'View';  
      position: absolute;  
      inset: 0;  
      background: rgba(15, 23, 42, 0.65);  
      display: flex;  
      align-items: center;  
      justify-content: center;  
      color: white;  
      font-weight: 700;  
      font-size: 1.1rem;  
      opacity: 0;  
      transition: 0.3s ease;  
      border-radius: 1.5rem;  
      pointer-events: none;  
      z-index: 2;  
    }  
    .bidhan-gallery-wrapper:hover::after {  
      opacity: 1;  
    }  
    .bidhan-gallery-img:hover {  
      transform: scale(1.03);  
    }  
  
/* =========================  
   HEALTH ARTICLES SECTION  
========================= */  
  
.drbc-blog-section{  
    padding:90px 20px;  
    background:#f8fafc;  
    font-family:'Inter',sans-serif;  
}  
  
.drbc-blog-container{  
    max-width:1200px;  
    margin:auto;  
}  
  
/* Heading */  
  
.drbc-blog-heading{  
    text-align:center;  
    margin-bottom:60px;  
}  
  
.drbc-blog-badge{  
    display:inline-block;  
    padding:8px 18px;  
    background:#dbeafe;  
    color:#1d4ed8;  
    border-radius:50px;  
    font-size:14px;  
    font-weight:700;  
    margin-bottom:18px;  
}  
  
.drbc-blog-heading h2{  
    font-size:46px;  
    font-weight:800;  
    color:#0f172a;  
    margin-bottom:18px;  
    line-height:1.2;  
}  
  
.drbc-blog-heading p{  
    max-width:760px;  
    margin:auto;  
    font-size:18px;  
    line-height:1.8;  
    color:#64748b;  
}  
  
/* Grid */  
  
.drbc-blog-grid{  
    display:grid;  
    grid-template-columns:repeat(3,1fr);  
    gap:30px;  
}  
  
/* Card */  
  
.drbc-blog-card{  
    background:#fff;  
    border-radius:24px;  
    overflow:hidden;  
    box-shadow:0 12px 35px rgba(0,0,0,.08);  
    transition:all .35s ease;  
}  
  
.drbc-blog-card:hover{  
    transform:translateY(-8px);  
    box-shadow:0 20px 45px rgba(0,0,0,.12);  
}  
  
/* Image */  
  
.drbc-blog-card img{  
    width:100%;  
    height:230px;  
    object-fit:cover;  
    display:block;  
}  
  
/* Content */  
  
.drbc-blog-content{  
    padding:30px;  
}  
  
.drbc-blog-tag{  
    display:inline-block;  
    padding:7px 16px;  
    border-radius:50px;  
    font-size:13px;  
    font-weight:700;  
    margin-bottom:18px;  
}  
  
/* Tag Colors */  
  
.tag-blue{  
    background:#dbeafe;  
    color:#1d4ed8;  
}  
  
.tag-green{  
    background:#dcfce7;  
    color:#166534;  
}  
  
.tag-yellow{  
    background:#fef3c7;  
    color:#92400e;  
}  
  
.tag-red{  
    background:#fee2e2;  
    color:#b91c1c;  
}  
  
/* Title */  
  
.drbc-blog-content h3{  
    font-size:26px;  
    color:#0f172a;  
    margin-bottom:15px;  
    line-height:1.4;  
}  
  
/* Description */  
  
.drbc-blog-content p{  
    font-size:16px;  
    line-height:1.8;  
    color:#64748b;  
    margin-bottom:25px;  
}  
  
/* Button */  
  
.drbc-blog-btn{  
    display:inline-block;  
    padding:13px 26px;  
    background:#2563eb;  
    color:#fff;  
    text-decoration:none;  
    border-radius:12px;  
    font-weight:700;  
    transition:.3s;  
}  
  
.drbc-blog-btn:hover{  
    background:#1d4ed8;  
    color:#fff;  
}  
  
/* =========================  
   TABLET RESPONSIVE  
========================= */  
  
@media(max-width:992px){  
  
    .drbc-blog-grid{  
        grid-template-columns:repeat(2,1fr);  
    }  
  
    .drbc-blog-heading h2{  
        font-size:38px;  
    }  
  
}  
  
/* =========================  
   MOBILE RESPONSIVE  
========================= */  
  
@media(max-width:768px){  
  
    .drbc-blog-section{  
        padding:70px 16px;  
    }  
  
    .drbc-blog-grid{  
        grid-template-columns:1fr;  
        gap:25px;  
    }  
  
    .drbc-blog-heading{  
        margin-bottom:45px;  
    }  
  
    .drbc-blog-heading h2{  
        font-size:32px;  
    }  
  
    .drbc-blog-heading p{  
        font-size:16px;  
    }  
  
    .drbc-blog-content{  
        padding:24px;  
    }  
  
    .drbc-blog-content h3{  
        font-size:22px;  
    }  
  
    .drbc-blog-content p{  
        font-size:15px;  
    }  
  
    .drbc-blog-btn{  
        width:100%;  
        text-align:center;  
    }  
  
}  
  
/* =========================  
   SMALL MOBILE  
========================= */  
  
@media(max-width:480px){  
  
    .drbc-blog-heading h2{  
        font-size:28px;  
    }  
  
    .drbc-blog-badge{  
        font-size:12px;  
    }  
  
    .drbc-blog-card img{  
        height:210px;  
    }  
  
}  
  
    /* FAQ Section Styles */  
    .bidhan-faq-grid {  
      display: flex;  
      flex-direction: column;  
      gap: 1rem;  
      max-width: 900px;  
      margin: 2rem auto 0;  
    }  
    .bidhan-faq-item {  
      background: white;  
      border-radius: 1.2rem;  
      border: 1px solid var(--bidhan-border-light);  
      overflow: hidden;  
      transition: var(--bidhan-transition);  
    }  
    .bidhan-faq-question {  
      padding: 1.2rem 1.5rem;  
      display: flex;  
      justify-content: space-between;  
      align-items: center;  
      cursor: pointer;  
      font-weight: 600;  
      font-size: 1.05rem;  
      color: var(--bidhan-text-dark);  
      background: white;  
      transition: 0.2s;  
    }  
    .bidhan-faq-question:hover {  
      background: #f8fafc;  
    }  
    .bidhan-faq-question i {  
      color: var(--bidhan-primary);  
      transition: transform 0.3s;  
    }  
    .bidhan-faq-question.bidhan-active i {  
      transform: rotate(180deg);  
    }  
    .bidhan-faq-answer {  
      max-height: 0;  
      padding: 0 1.5rem;  
      overflow: hidden;  
      transition: max-height 0.4s ease, padding 0.3s ease;  
      color: var(--bidhan-text-dim);  
      line-height: 1.6;  
      border-top: 0px solid transparent;  
    }  
    .bidhan-faq-answer.bidhan-open {  
      max-height: 300px;  
      padding: 0 1.5rem 1.2rem 1.5rem;  
      border-top-width: 1px;  
      border-top-color: var(--bidhan-border-light);  
    }  
  
    /* Final CTA Section with Glow */  
    .bidhan-final-cta {  
      background: linear-gradient(135deg, var(--bidhan-primary), var(--bidhan-primary-dark));  
      color: white;  
      text-align: center;  
      border-radius: 2rem;  
      padding: 3rem;  
      margin: 2rem auto;  
      position: relative;  
      overflow: hidden;  
    }  
    .bidhan-final-cta::before {  
      content: '';  
      position: absolute;  
      width: 300px;  
      height: 300px;  
      background: rgba(255, 255, 255, 0.08);  
      border-radius: 50%;  
      top: -120px;  
      right: -80px;  
      pointer-events: none;  
    }  
    .bidhan-final-cta::after {  
      content: '';  
      position: absolute;  
      width: 200px;  
      height: 200px;  
      background: rgba(255, 255, 255, 0.05);  
      border-radius: 50%;  
      bottom: -80px;  
      left: -60px;  
      pointer-events: none;  
    }  
    .bidhan-final-cta h2 { font-size: 2rem; margin-bottom: 1rem; position: relative; z-index: 2; }  
    .bidhan-final-cta p { position: relative; z-index: 2; }  
    .bidhan-final-cta .bidhan-btn-primary { background: white; color: var(--bidhan-primary-dark); box-shadow: none; position: relative; z-index: 2; }  
    .bidhan-final-cta .bidhan-btn-primary:hover { transform: translateY(-3px); }  
  
    /* Footer Premium */  
    .bidhan-footer { background: #0f172a; color: #94a3b8; padding: 3rem 0 2rem; margin-top: 2rem; }  
    .bidhan-footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 2rem; }  
    .bidhan-footer a { color: #cbd5e1; text-decoration: none; transition: 0.3s; display: block; margin: 8px 0; }  
    .bidhan-footer a:hover { color: var(--bidhan-primary); transform: translateX(5px); }  
    .bidhan-hours-list { list-style: none; margin-top: 10px; }  
    .bidhan-hours-list li { margin: 5px 0; font-size: 0.9rem; display: flex; justify-content: space-between; }  
  
    /* WhatsApp Floating Button */  
    .bidhan-whatsapp-float {  
      position: fixed;  
      bottom: 1.5rem;  
      right: 1.5rem;  
      background: var(--whatsapp-green);  
      width: 60px;  
      height: 60px;  
      border-radius: 50%;  
      display: flex;  
      align-items: center;  
      justify-content: center;  
      cursor: pointer;  
      z-index: 99;  
      box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);  
      transition: 0.3s;  
      animation: bidhanPulseWhatsApp 2s infinite;  
      text-decoration: none;  
    }  
    .bidhan-whatsapp-float i {  
      font-size: 32px;  
      color: white;  
    }  
    .bidhan-whatsapp-float:hover {  
      transform: scale(1.1);  
      background: #20b859;  
    }  
    @keyframes bidhanPulseWhatsApp {  
      0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }  
      70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }  
      100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }  
    }  
  
    /* Sticky mobile bar */  
    .bidhan-sticky-bar {  
      position: fixed;  
      bottom: 0;  
      left: 0;  
      width: 100%;  
      background: rgba(40,253,120,0.7);  
      backdrop-filter: blur(16px);  
      display: none;  
      justify-content: space-around;  
      padding: 0.8rem;  
      z-index: 1000;  
      border-top: 1px solid var(--bidhan-border-light);  
      box-shadow: 0 -10px 30px rgba(0,0,0,0.08);  
      border-radius: 24px 24px 0 0;  
      transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1), opacity 0.3s ease;  
      will-change: transform;  
    }  
    .bidhan-sticky-bar.bidhan-sticky-hidden {  
      transform: translateY(100%);  
      opacity: 0;  
      pointer-events: none;  
    }  
    .bidhan-sticky-bar.bidhan-sticky-visible {  
      transform: translateY(0);  
      opacity: 1;  
      pointer-events: auto;  
    }  
  
    /* WhatsApp Popup */  
.bidhan-wa-popup{  
  position:fixed;  
  left:50%;  
  top:50%;  
  
  transform:translate(-50%,-50%);  
  
  width:92%;  
  max-width:380px;  
  
  background:rgba(255,255,255,0.97);  
  backdrop-filter:blur(18px);  
  
  border-radius:26px;  
  padding:20px;  
  
  z-index:99999;  
  
  box-shadow:0 25px 70px rgba(0,0,0,0.18);  
  
  display:none;  
  box-shadow: 0 25px 70px rgba(0,0,0,.18);
  animation:bidhanPopup .4s ease;  
  
  max-height: 90vh; 
   overflow-y: auto;  
scrollbar-width: thin;
   scrollbar-color: rgba(0,0,0,0.01) transparent;
   
}  
  
/* Popup Animation */  
@keyframes bidhanPopup{  
  
  from{  
    opacity:0;  
    transform:translate(-50%,-40%);  
  }  
  
  to{  
    opacity:1;  
    transform:translate(-50%,-50%);  
  }  
  
}  
    .bidhan-wa-close{  
      position:absolute;  
      top:12px;  
      right:12px;  
      width:36px;  
      height:36px;  
      border:none;  
      border-radius:50%;  
      background:#f1f5f9;  
      cursor:pointer;  
    }  
    .bidhan-wa-header{  
      display:flex;  
      align-items:center;  
      gap:14px;  
      margin-bottom:22px;  
    }  
    .bidhan-wa-header i{  
      font-size:42px;  
      color:#25D366;  
    }  
    #bidhanWaForm{  
      display:flex;  
      flex-direction:column;  
      gap:12px;  
    }  
    #bidhanWaForm input, #bidhanWaForm select, #bidhanWaForm textarea{  
      width:100%;  
      padding:13px 14px;  
      border-radius:18px;  
      border:1px solid #dbeafe;  
      outline:none;  
      font-size:15px;  
      font-family:inherit;  
      resize:none;  
    }  
    #bidhanWaForm button{  
      background:#25D366;  
      color:white;  
      border:none;  
      padding:16px;  
      border-radius:20px;  
      font-size:16px;  
      font-weight:700;  
      cursor:pointer;  
      transition:.3s ease;  
    }  
    .bidhan-wa-note{  
      text-align:center;  
      margin-top:6px;  
      color:#16a34a;  
      font-size:13px;  
      font-weight:600;  
    }  
    .bidhan-query-bubble{  
      position:fixed;  
      right:90px;  
      bottom:28px;  
      background:white;  
      padding:12px 16px;  
      border-radius:18px;  
      box-shadow:0 10px 35px rgba(0,0,0,0.12);  
      z-index:9998;  
      cursor:pointer;  
      user-select:none;  
      opacity:0;  
      visibility:hidden;  
      transform:translateY(20px);  
      transition: opacity .4s ease, transform .4s ease, visibility .4s;  
    }  
    .bidhan-query-bubble.bidhan-show{  
      opacity:1;  
      visibility:visible;  
      transform:translateY(0);  
    }  
    .bidhan-query-text{  
      font-size:14px;  
      font-weight:700;  
      color:#0f172a;  
      line-height:1.4;  
    }  
    .bidhan-query-text span{  
      color:#25D366;  
    }  
    .bidhan-query-arrow{  
      position:absolute;  
      right:-8px;  
      bottom:18px;  
      width:18px;  
      height:18px;  
      background:white;  
      transform:rotate(45deg);  
    }  @media(max-width:768px){

  .bidhan-wa-popup{
    padding:18px;
    border-radius:22px;
  }

  .bidhan-wa-header i{
    font-size:34px;
  }

  #bidhanWaForm textarea{
    rows:3;
  }

}
  
    @media (max-width: 768px) {  
      .bidhan-hero-grid, .bidhan-appointment-grid { grid-template-columns: 1fr; text-align: center; }  
      .bidhan-nav-links { display: none; }  
      .bidhan-menu-btn { display: flex; }  
      .bidhan-sticky-bar { display: flex; }  
      .bidhan-hero h1 { font-size: 2.2rem; }  
      .bidhan-hero-buttons-wrapper { justify-content: center; }  
      .bidhan-stats-row { justify-content: center; }  
      .bidhan-trust-indicators { justify-content: center; }  
      .bidhan-final-cta { margin: 1rem; padding: 2rem; }  
      .bidhan-whatsapp-float { bottom: 5rem; right: 1rem; width: 50px; height: 50px; }  
      .bidhan-whatsapp-float i { font-size: 28px; }  
      .bidhan-query-bubble { right: 75px; bottom: 20px; padding: 10px 14px; }  
      .bidhan-mobile-menu a { font-size: 1.2rem; }  
    }