/* =========================
   GLOBAL RESET
========================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/* =========================
   GLOBAL RESET
========================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* =========================
  ANNOUNCEMENT BAR (Neon Blue)
  Desktop only (>=1024px)
  ✅ Hides on scroll down, shows on scroll up
========================= */
.announcement-bar-neon{
  background: linear-gradient(90deg, #00e5ff 0%, #0066ff 55%, #00e5ff 100%);
  color:#fff;
  padding: 10px 0;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  z-index: 10000;
  display:none;

  border-bottom: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 30px rgba(0, 229, 255, 0.25);
  
  /* ✅ Smooth transition for hiding/showing */
  transition: transform 0.3s ease;
}

/* ✅ Hide announcement bar on scroll */
.announcement-bar-neon.hide-on-scroll{
  transform: translateY(-100%);
}

.announcement-bar-neon::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:2px;
  background: rgba(0,229,255,0.85);
  filter: blur(0.5px);
}

.announcement-container-neon{
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 20px;
}

.announcement-left-neon{
  display:flex;
  gap: 32px;
  align-items:center;
  flex-wrap: wrap;
}

.announcement-item-neon{
  display:flex;
  align-items:center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.95;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.announcement-item-neon:hover{
  opacity: 1;
  transform: translateY(-1px);
}

.announcement-item-neon i{
  font-size: 16px;
  text-shadow: 0 0 12px rgba(0,229,255,0.75);
}

.announcement-item-neon a{
  color:#fff;
  text-decoration:none;
}
.announcement-item-neon a:hover{ text-decoration: underline; }

.social-icons-neon{
  display:flex;
  gap: 12px;
  align-items:center;
}

.social-icons-neon a{
  width: 38px;
  height: 38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  color:#fff;
  background: rgba(0,0,0,0.20);
  border: 1px solid rgba(255,255,255,0.22);
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
  text-decoration: none;
}

.social-icons-neon a:hover{
  transform: translateY(-2px) scale(1.06);
  background: rgba(255,255,255,0.18);
  box-shadow: 0 0 18px rgba(0,229,255,0.55);
  border-color: rgba(0,229,255,0.55);
}
.social-icons-neon i{ font-size: 18px; }

@media (min-width: 1024px){
  .announcement-bar-neon{ display:block; }
}
@media (max-width: 1023px){
  .announcement-bar-neon{ display:none; }
}

/* =========================
  SUB HEADER (NeuroDoc buttons)
  Desktop only (>=1024px)
  ✅ Sticks to top when announcement bar hides
========================= */
.announcement-subsection-header {
  background-color: #ffffff;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

  position: fixed;
  top: 44px;
  left: 0;
  width: 100%;
  z-index: 9998;

  transition: top 0.3s ease;
}

/* When announcement bar is hidden, move subheader to top */
.announcement-bar-neon.hide-on-scroll ~ .announcement-subsection-header {
  top: 0;
}

@media (min-width: 1024px) {
  .announcement-subsection-header { display: flex; }
}
@media (max-width: 1023px) {
  .announcement-subsection-header { display: none; }
}

/* ✅ Logo image styles */
.announcement-subsection-logo {
  display: flex;
  align-items: center;
}

.announcement-subsection-logo-img {
  height: 67px;        /* 45px se badha ke 65px kiya */
  width: auto;
  object-fit: contain;
  display: block;
}

.announcement-subsection-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.announcement-subsection-helpline-btn {
  background-color: #06b6d4;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}
.announcement-subsection-helpline-btn:hover { background-color: #0891b2; }

.announcement-subsection-appointment-btn {
  background-color: #ef4444;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
  display: inline-block;
}
.announcement-subsection-appointment-btn:hover { background-color: #dc2626; }
/* =========================
  MAIN NAV HEADER (Blue menu)
  ✅ Always sticky, adjusts position based on announcement bar
========================= */
/* ===============================================
   ☢️ NUCLEAR OPTION - MAXIMUM FORCE CENTER
   Sabse powerful CSS - kuch bhi override kar dega
=============================================== */

/* =========================
   HAMBURGER MENU FIX
   ✅ Mobile/Tablet pe properly show hoga
   ✅ Proper working animation
========================= */

:root{
  --nav-blue:#2f72c9;
  --nav-blue2:#1f5fb1;
  --nav-white:#ffffff;
  --nav-active:#e31717;
  --announcement-h: 44px;
  --subheader-h: 75px;
  --nav-h: 66px;
}

/* ========================================
   HEADER STRUCTURE
======================================== */
header.site-header{
  width: 100%;
  background: linear-gradient(180deg, var(--nav-blue), var(--nav-blue2));
  position: fixed;
  left: 0;
  z-index: 9997;
  transition: top 0.3s ease;
}

@media (min-width: 1024px){
  header.site-header{
    top: calc(var(--announcement-h) + var(--subheader-h));
  }
  
  .announcement-bar-neon.hide-on-scroll ~ .announcement-subsection-header ~ header.site-header{
    top: var(--subheader-h);
  }
}

@media (max-width: 1023px){
  header.site-header{
    top: 0;
  }
}

/* ========================================
   NAV WRAPPER
======================================== */
.nav-wrap{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 22px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* ========================================
   LOGO - NAV BAR (Mobile/Tablet)
======================================== */
.nav-logo-link{
  display: none; /* Desktop pe announcement header mein logo hai */
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
}

.nav-logo-img{
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 1023px){
  .nav-logo-link{
    display: flex; /* Mobile/Tablet pe navbar mein dikhega */
  }
}

/* ========================================
   DESKTOP NAV
======================================== */
.nav-desktop{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  white-space: nowrap;
  margin-left: auto;
  margin-right: auto;
}

.nav-link{
  position: relative;
  color: #ffffff !important;
  text-decoration: none;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 18px 12px;
  opacity: 1;
  transition: opacity 0.2s ease;
  display: inline-block;
}

.nav-link:hover{ 
  opacity: 0.85;
  color: #ffffff;
}

/* ========================================
   ACTIVE CLASS - DESKTOP
======================================== */
.nav-link.active::after,
.nav-link.is-active::after{
  content: '' !important;
  position: absolute !important;
  bottom: -8px !important;
  left: 0px !important;
  right: 12px !important;
  height: 4px !important;
  width: 100%;
  background: #ffffff !important;
  border-radius: 2px !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 10 !important;
}

.nav-link.active,
.nav-link.is-active{
  opacity: 1 !important;
  font-weight: 700 !important;
}

/* ========================================
   HAMBURGER BUTTON
======================================== */
.nav-toggle{
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 100;
  padding: 0;
  display: none;
}

.nav-toggle span{
  display: block;
  height: 3px;
  width: 24px;
  background: var(--nav-white);
  margin: 5px auto;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  position: relative;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1){
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2){
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}

/* ========================================
   MOBILE MENU
======================================== */
.nav-mobile{
  display: none;
  background: linear-gradient(180deg, var(--nav-blue), var(--nav-blue2));
  border-top: 1px solid rgba(255,255,255,.15);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.nav-mobile[aria-hidden="false"]{
  max-height: 600px; /* logo ke liye thoda badha diya */
}

/* ========================================
   MOBILE DRAWER LOGO
======================================== */
.nav-mobile-logo{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 16px 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 4px;
}

.nav-logo-img{
  height: 55px;   /* 42px se badha ke 55px kiya */
  width: auto;
  object-fit: contain;
  display: block;
}

/* ========================================
   MOBILE NAV INNER
======================================== */
.nav-mobile-inner{
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.m-link{
  color: #ffffff;
  text-decoration: none;
  padding: 12px 10px;
  border-radius: 10px;
  font: 600 16px/1.1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  opacity: 1;
  transition: background 0.2s ease, opacity 0.2s ease;
  position: relative;
  border-left: 3px solid transparent;
}

.m-link:hover{ 
  background: rgba(255,255,255,.10); 
  opacity: 0.85;
}

/* ========================================
   ACTIVE CLASS - MOBILE
======================================== */
.m-link.active,
.m-link.is-active{
  background: rgba(255,255,255,.15) !important;
  border-left-color: #ffffff !important;
  opacity: 1 !important;
  font-weight: 700 !important;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
======================================== */

/* DESKTOP (>= 1024px) */
@media (min-width: 1024px){
  .nav-desktop{ 
    display: inline-flex !important;
  }
  .nav-toggle{ 
    display: none !important;
  }
  .nav-mobile{ 
    display: none !important;
  }
  .nav-mobile-logo{
    display: none !important; /* Desktop pe drawer logo hide */
  }
}

/* TABLET/MOBILE (<= 1023px) */
@media (max-width: 1023px){
  .nav-desktop{ 
    display: none !important;
  }
  .nav-toggle{ 
    display: block !important;
  }
  .nav-mobile{ 
    display: block !important;
  }
  .nav-mobile[aria-hidden="true"]{ 
    max-height: 0 !important;
  }
  .nav-mobile[aria-hidden="false"]{ 
    max-height: 600px !important;
  }
}
/* ========================================
   BODY PADDING
======================================== */
@media (min-width: 1024px){
  body{
    padding-top: calc(var(--announcement-h) + var(--subheader-h) + var(--nav-h));
  }
}

@media (max-width: 1023px){
  body{
    padding-top: var(--nav-h);
  }
}

/* hero section  */
/* =========================
  HOME HERO (2 Slides Carousel)
  ✅ overlap fix (arrows vs content)
  ✅ smaller fonts (responsive)
  ✅ fully responsive (1024 / 768 / 520)
========================= */
:root{
  --hero-blue:#2f72c9;
  --hero-red:#e31717;
  --hero-text:#ffffff;
  --hero-max:1280px;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.hero{
  width:100%;
  position:relative;
  overflow:hidden;
  height: 100vh;
  min-height: 700px;
  margin-top: 30px;
  
}

.hero-slider{
  position:relative;
  width:100%;
  height: 100%;
  margin-top: 130px !important;
}

.hero-slide{
  position:absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--bg);
  background-size: cover;
  background-position: center 8%;
  background-repeat: no-repeat;
  transform: scale(1.03);
  opacity:0;
  pointer-events:none;
  transition: opacity 0.8s ease, transform 1.2s ease;
  z-index: 1;
}

.hero-slide.is-active{
  opacity:1;
  transform: scale(1);
  pointer-events:auto;
  z-index: 2;
}

.hero-overlay{
  position:absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(70% 80% at 20% 50%, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 35%, rgba(0,0,0,.20) 60%, rgba(0,0,0,.10) 100%),
    linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,.05) 100%);
}

.hero-container{
  position:relative;
  height:100%;
  max-width: var(--hero-max);
  margin:0 auto;
  padding: 0 80px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  z-index: 3;
}

.hero-content{
  width:min(780px, 100%);
  color: var(--hero-text);
  padding-left: 0;
}

.hero-content,
.hero-content *{
  color: #fff;
}

.hero-kicker{
  font: 700 clamp(11px, 1.1vw, 13px)/1.35 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: .8px;
  text-transform: uppercase;
  opacity:.95;
  margin-bottom: 14px;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
  margin-top: 30px;
}

.hero-title{
  font: 700 clamp(28px, 4vw, 48px)/1.15 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin: 0 0 18px;
  text-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.hero-subtitle{
  font: 600 clamp(14px, 1.8vw, 18px)/1.55 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  opacity:.95;
  max-width: 720px;
  margin-bottom: 28px;
  text-shadow: 0 18px 40px rgba(0,0,0,.25);
}

.hero-actions{
  display:flex;
  gap: 14px;
  align-items:center;
  flex-wrap:wrap;
}

.hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 170px;
  height: 52px;
  padding: 0 28px;
  border-radius: 10px;
  text-decoration:none;
  color:#fff;
  font: 800 16px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(135deg, #00f5ff 0%, #0066ff 100%);
  box-shadow: 0 14px 35px rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.22);
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
  cursor: pointer;
}

.hero-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.hero-nav{
  position:absolute;
  top:57%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  color:#fff;
  font-size: 28px;
  font-weight: 700;
  cursor:pointer;
  display:flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
  z-index: 10;
  user-select: none;
}

.hero-nav:hover{
  transform: translateY(-50%) scale(1.08);
  background: rgba(0,0,0,.5);
  border-color: rgba(255,255,255,.5);
}

.hero-nav:active{
  transform: translateY(-50%) scale(0.95);
}

.hero-prev{ left: 22px; }
.hero-next{ right: 22px; }

.hero-dots{
  position:absolute;
  left:50%;
  bottom: 32px;
  transform: translateX(-50%);
  display:flex;
  gap: 12px;
  z-index: 12;
}

.hero-dot{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6);
  background: rgba(255,255,255,.25);
  cursor:pointer;
  transition: all .3s ease;
  padding: 0;
}

.hero-dot:hover{
  transform: scale(1.1);
  background: rgba(255,255,255,.4);
}

.hero-dot.is-active{
  background: var(--hero-red);
  border-color: rgba(255,255,255,.9);
  transform: scale(1.2);
}

/* Large Desktop 1441px+ */
@media (min-width: 1441px){
  .hero{
    min-height: 800px;
    /*margin-top: 120px !important;*/
  }

  .hero-slide{
    background-position: center 8%;
  }

  .hero-container{
    padding: 0 90px;
  }
}

/* Desktop max 1280px */
@media (min-width: 1024px) and (max-width: 1280px){
  .hero{
    height: 100vh;
    min-height: 700px;
    max-height: none;
    /*margin-top: 115px !important;*/
  }

  .hero-slide{
    background-position: center 8%;
    background-size: cover;
    height: 100%;
    min-height: 100%;
  }

  .hero-content{
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    max-width: 100%;
    text-align: left;
    padding-top: 0;
  }

  .hero-container{
    justify-content: flex-start;
    align-items: center;
    padding: 0 80px;
    height: 100%;
  }

  .hero-actions{
    justify-content: flex-start;
  }

  .hero-nav{
    width: 44px;
    height: 44px;
    font-size: 26px;
  }

  .hero-prev{ left: 18px; }
  .hero-next{ right: 18px; }
}

/* Tablet 768px */
@media (max-width: 768px){
  .hero{
    height: 70vh;
    min-height: 650px;
    margin-top: 0;
  }

  .hero-slide{
    background-size: cover;
    background-position: center center;
  }

  .hero-prev,
  .hero-next{
    display: none;
  }

  .hero-content{
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    text-align: left;
  }

  .hero-container{
    padding: 0 30px;
    justify-content: flex-start;
    align-items: center;
  }

  .hero-actions{
    justify-content: flex-start;
  }

  .hero-dots{
    bottom: 24px;
  }

  .hero-kicker{
    font-size: clamp(10px, 2.5vw, 12px);
  }
}

/* Mobile 520px */
@media (max-width: 520px){
  .hero{
    height: 75vh;
    min-height: 550px;
    max-height: none;
  }

    .hero-slider {
        margin-top: 70px;
        height: 350px;
    }

  .hero-slide{
    background-size: cover;
    background-position: 65% center;
    background-attachment: scroll;
  }

  .hero-container{
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    height: 100%;
    display: flex;
  }

  .hero-content{
    padding-left: 0;
    width: 100%;
    max-width: 100%;
    text-align: left;
    margin: auto 0;
  }

  .hero-overlay{
    background:
      radial-gradient(circle at center, rgba(0,0,0,.55) 0%, rgba(0,0,0,.38) 40%, rgba(0,0,0,.25) 70%, rgba(0,0,0,.18) 100%),
      linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.48) 100%);
  }

  .hero-btn{
    width: 100%;
    min-width: unset;
    height: 48px;
  }

  .hero-dots{
    bottom: 20px;
    gap: 10px;
  }

  .hero-dot{
    width: 10px;
    height: 10px;
    border-width: 1.5px;
  }

  .hero-kicker{
    margin-bottom: 10px;
    font-size: clamp(9px, 2.5vw, 11px);
    line-height: 1.4;
  }

  .hero-title{
    margin-bottom: 12px;
    font-size: clamp(20px, 5vw, 26px);
    line-height: 1.2;
  }

  .hero-subtitle{
    margin-bottom: 18px;
    font-size: clamp(12px, 3.5vw, 14px);
    line-height: 1.5;
  }
}

/* Extra Small 375px */
@media (max-width: 375px){
  .hero{
    height: 70vh;
    min-height: 500px;
    max-height: none;
  }

  .hero-container{
    padding: 0 16px;
  }

  .hero-slide{
    background-size: cover;
    background-position: 68% center;
  }

  .hero-kicker{
    font-size: 9px;
    margin-bottom: 8px;
  }

  .hero-title{
    font-size: clamp(18px, 4.8vw, 22px);
    margin-bottom: 10px;
  }

  .hero-subtitle{
    font-size: clamp(11px, 3vw, 13px);
    margin-bottom: 16px;
  }
}

/* Very Small 320px */
@media (max-width: 320px){
  .hero{
    height: 68vh;
    min-height: 480px;
    max-height: none;
  }

  .hero-container{
    padding: 0 12px;
  }

  .hero-slide{
    background-size: cover;
    background-position: 70% center;
  }

  .hero-kicker{
    font-size: 8px;
    margin-bottom: 7px;
  }

  .hero-title{
    font-size: 16px;
    margin-bottom: 9px;
    line-height: 1.25;
  }

  .hero-subtitle{
    font-size: 10px;
    margin-bottom: 14px;
    line-height: 1.5;
  }

  .hero-btn{
    height: 44px;
    font-size: 14px;
    padding: 0 20px;
  }

  .hero-dots{
    bottom: 16px;
    gap: 8px;
  }

  .hero-dot{
    width: 8px;
    height: 8px;
  }
}
/* home about section */
/* =========================
  ABOUT US (Screenshot-like Layout)
  ✅ Tablet right-side extra space FIX
========================= */
:root {
  --ink: #0f172a;
  --muted: #475569;
  --blue: #2563eb;
  --red: #ef4444;
  --shadow: 0 18px 55px rgba(2, 8, 23, .12);
}
 
.aboutLike {
  background: #fff;
  padding: 46px 0 64px;
}
 
.aboutLike__wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: stretch;
}
 
/* LEFT */
.aboutLike__left {
  overflow-y: auto;
  padding-right: 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.aboutLike__left::-webkit-scrollbar { display: none; }
 
.aboutLike__sectionTitle {
  font: 900 40px/1.1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #0b1b3a;
  margin: 0 0 12px;
}
 
.aboutLike__mainTitle {
  font: 780 38px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #0b1b3a;
  margin: 0 0 18px;
}
 
.aboutLike__roles {
  margin: 0 0 18px;
}
 
.aboutLike__roles p {
  margin: 0 0 8px;
  color: #000000;
  font: 750 13px/1.35 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
 
.aboutLike__text {
  color: var(--muted);
  font: 500 18px/1.75 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin-top: 8px;
}
 
.aboutLike__text p {
  margin: 0 0 14px;
}
 
.aboutLike__bullets {
  margin-top: 14px;
}
 
.aboutLike__bulletsTitle {
  color: var(--muted);
  font: 600 15px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin: 0 0 12px;
}
 
.aboutLike__bullets ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
 
.aboutLike__bullets li {
  position: relative;
  padding-left: 18px;
  font: 500 18px/1.55 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
}
 
.aboutLike__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--ink);
}
 
.aboutLike__actions {
  margin-top: 26px;
}
 
.aboutLike__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  height: 56px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font: 900 16px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(135deg, #00f5ff 0%, #0066ff 100%);
  box-shadow: 0 14px 35px rgba(14, 165, 233, .22);
  transition: transform .2s ease, filter .2s ease;
}
 
.aboutLike__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}
 
/* RIGHT */
.aboutLike__right {
  display: flex;
  justify-content: flex-end;
  align-self: start;
  position: sticky;
  top: 46px;
}
 
.aboutLike__imageCard {
  width: min(520px, 100%);
  border-radius: 36px;
  overflow: hidden;
  background: #fff;
  border: 2px solid rgba(37, 99, 235, .45);
  box-shadow: var(--shadow);
}
 
.aboutLike__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
 
/* =========================
  Responsive
========================= */
 
/* Desktop: 1024px – 1441px — left scroll, right sticky */
@media (min-width: 1024px) and (max-width: 1441px) {
  .aboutLike__wrap {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
    gap: 40px;
  }
  .aboutLike__sectionTitle { font-size: 34px; }
  .aboutLike__mainTitle    { font-size: 30px; }
  .aboutLike__text,
  .aboutLike__bullets li   { font-size: 16px; }
}
 
/* Tablet: 768px – 1023px — image top, content below, NO scroll */
@media (min-width: 768px) and (max-width: 1023px) {
  .aboutLike__wrap {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 26px;
  }
  .aboutLike__left {
    height: auto !important;
    overflow-y: visible;
    padding-right: 0;
  }
  .aboutLike__right {
    order: -1;
    justify-content: center;
    position: static;
  }
  .aboutLike__imageCard {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    border-radius: 28px;
  }
  .aboutLike__sectionTitle { font-size: 30px; }
  .aboutLike__mainTitle    { font-size: 28px; }
  .aboutLike__roles p      { font-size: 15px; }
  .aboutLike__text,
  .aboutLike__bullets li   { font-size: 16px; }
  .aboutLike__bulletsTitle { font-size: 16px; }
}
 
/* Mobile: 320px – 767px — image top, content below, NO scroll */
@media (max-width: 767px) {
  .aboutLike {
    padding: 30px 0 40px;
  }
  .aboutLike__wrap {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
    padding: 0 16px;
  }
  .aboutLike__left {
    height: auto !important;
    overflow-y: visible;
    padding-right: 0;
  }
  .aboutLike__right {
    order: -1;
    justify-content: center;
    position: static;
  }
  .aboutLike__imageCard {
    width: 100%;
    border-radius: 24px;
  }
  .aboutLike__sectionTitle { font-size: 26px; }
  .aboutLike__mainTitle    { font-size: 24px; }
  .aboutLike__roles p      { font-size: 13px; }
  .aboutLike__text         { font-size: 16px; line-height: 1.7; }
  .aboutLike__bulletsTitle { font-size: 16px; }
  .aboutLike__bullets li   { font-size: 16px; }
  .aboutLike__btn          { width: 100%; }
}

 /* ====== WHY CHOOSE (Fixed BG + Responsive) ====== */
.why-choose{
    position: relative;
    isolation: isolate;
    padding: clamp(40px, 5vw, 80px) 16px;
    color: #eaf3ff;

    /* Replace with your background image */
    background-image: url("https://images.unsplash.com/photo-1551076805-e1869033e561?q=80&w=1600&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }

  .why-overlay{
    position:absolute; inset:0;
    background: radial-gradient(1200px 500px at 30% 10%, rgba(0,170,255,.20), transparent 60%),
                linear-gradient(180deg, rgba(7,18,38,.90), rgba(7,18,38,.75));
    z-index:-1;
  }

  .why-container{
    max-width: 1180px;
    margin: 0 auto;
  }

  .why-header{
    text-align: center;
    margin-bottom: clamp(22px, 3vw, 40px);
  }
  .why-header h2{
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: .2px;
  }
  .why-header h2 span{
    color: #2ee0ff;
  }
  .why-header p{
    margin: 0 0 18px;
    opacity: .9;
    font-size: clamp(14px, 1.4vw, 18px);
  }

  .why-note{
    max-width: 980px;
    margin: 0 auto;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 14px 16px;
    font-size: clamp(13px, 1.2vw, 16px);
    line-height: 1.65;
    color: rgba(234,243,255,.92);
    backdrop-filter: blur(8px);
  }

  .why-grid{
    margin-top: clamp(18px, 3vw, 34px);
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 18px;
    align-items: start;
  }

  .why-col{
    display: grid;
    gap: 18px;
  }

  .why-card{
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 18px 18px 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
  }

  .why-card.highlight{
    background: linear-gradient(180deg, rgba(46,224,255,.16), rgba(255,255,255,.08));
    border-color: rgba(46,224,255,.28);
  }

  .why-icn{
    width: 46px; height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(46,224,255,.14);
    border: 1px solid rgba(46,224,255,.22);
    margin-bottom: 12px;
    color: #2ee0ff;
  }
  .why-icn svg{ width: 24px; height: 24px; }

  .why-card h3{
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .2px;
  }
  .why-card p{
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(234,243,255,.88);
  }

  .why-center{
    display: grid;
    gap: 14px;
  }

  .why-image{
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 14px 40px rgba(0,0,0,.28);
    min-height: 220px;
  }
  .why-image img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .why-stats{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .stat{
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 14px 12px;
    text-align: center;
    backdrop-filter: blur(10px);
  }
  .stat-num{
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: #2ee0ff;
    letter-spacing: .3px;
  }
  .stat-label{
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: rgba(234,243,255,.85);
  }

  .why-cta{
    margin-top: 6px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    color: #04202a;
      background: linear-gradient(135deg, #00f5ff 0%, #0066ff 100%);
    box-shadow: 0 14px 40px rgba(0,0,0,.22);
    transition: transform 0.2s ease;
  }
  .why-cta:hover{ transform: translateY(-1px); }
  .why-cta:active{ transform: translateY(0px); }

  /* ====== Responsive ====== */
  @media (max-width: 992px){
    .why-grid{
      grid-template-columns: 1fr;
      gap: 16px;
    }
    .why-center{ order: 0; }
  }

  @media (max-width: 520px){
    .why-header h2{
      font-size: 21px;
    }
    .why-stats{ grid-template-columns: 1fr; }
    .why-card h3{ font-size: 16px; }
  }

  /* iOS fix: background-attachment: fixed can jitter */
  @supports (-webkit-touch-callout: none) {
    .why-choose{ background-attachment: scroll; }
  }

  /* rtms overview */
   .rtms-overview {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 5vw, 90px) 16px;
  background: #ffffff;            /* WHITE BG */
  color: #0f172a;                 /* visible text */
}

/* Soft light background accents (no black) */
.rtms-bg {
  position: absolute;
  inset: -2px;
  z-index: 0;
  background:
    radial-gradient(900px 480px at 12% 12%, rgba(14,165,233, .18), transparent 60%),
    radial-gradient(800px 420px at 90% 78%, rgba(34,197,94, .14), transparent 55%),
    linear-gradient(180deg, #ffffff, #f7fbff);
}

.rtms-wrap {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}

/* ====== LEFT CONTENT ====== */
.rtms-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(14,165,233, .10);
  border: 1px solid rgba(14,165,233, .22);
  color: #0ea5e9;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .2px;
  margin-bottom: 12px;
}

.rtms-title {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: .2px;
  color: #0f172a;
}

.rtms-title span {
  color: #0ea5e9;
}

.rtms-desc {
  margin: 0 0 18px;
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.75;
  color: #475569; /* visible on white */
}

.rtms-desc strong {
  color: #0f172a;
}

.rtms-points {
  display: grid;
  gap: 14px;
  margin: 0 0 22px;
}

.pt {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5eef5;
  box-shadow: 0 8px 26px rgba(15,23,42, .08);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  margin-top: 6px;
  background: linear-gradient(180deg, #0ea5e9, #22c55e);
  box-shadow: 0 0 0 6px rgba(14,165,233, .14);
}

.pt h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 950;
  color: #0f172a;
}

.pt p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #475569;
}

.rtms-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.rtms-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: .2px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  will-change: transform;
  user-select: none;
}

.rtms-btn.primary {
  color: #ffffff;
  background: linear-gradient(135deg, #00f5ff 0%, #0066ff 100%);
  box-shadow: 0 14px 34px rgba(14,165,233, .22);
}

.rtms-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(14,165,233, .28);
}

.rtms-btn.ghost {
  color: #0f172a;
  background: #ffffff;
  border: 1px solid #dbeafe;
  box-shadow: 0 10px 24px rgba(15,23,42, .06);
}

.rtms-btn.ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(14,165,233, .50);
}

/* ====== Mobile View (520px and below) ====== */
@media (max-width: 520px) {
  .rtms-title{
    font-size: 21px;
  }
  .rtms-actions {
    display: flex;
    justify-content: center; /* Center the buttons */
    align-items: center;
    gap: 12px; /* Space between buttons */
    flex-wrap: wrap; /* Allow buttons to wrap if needed */
  }

  .rtms-btn {
    margin: 8px 0; /* Add margin to give some space between buttons */
  }
}

  /* ====== RIGHT IMAGE + TRANSITION ====== */
  .rtms-media{ display: grid; }

  .img-card{
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5eef5;
    box-shadow: 0 18px 55px rgba(15,23,42,.18);
    transform: translateY(0);
    transition: transform .55s ease, box-shadow .55s ease;
    will-change: transform;
  }

  .img-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 26px 80px rgba(15,23,42,.22);
  }

  .img-card img{
    width: 100%;
    height: clamp(240px, 50vw, 420px);
    display: block;
    object-fit: cover;
    transform: scale(1.03);
    filter: saturate(1.05) contrast(1.04);
    transition: transform .75s ease, filter .75s ease;
    will-change: transform;
  }

  .img-card:hover img{
    transform: scale(1.10);
    filter: saturate(1.15) contrast(1.10);
  }

  /* Shine sweep */
  .shine{
    position: absolute;
    inset: -30%;
    background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.40) 50%, transparent 65%);
    transform: translateX(-35%) rotate(10deg);
    opacity: 0;
    pointer-events: none;
  }
  .img-card:hover .shine{
    opacity: 1;
    animation: sweep 1.25s ease forwards;
  }
  @keyframes sweep{
    from { transform: translateX(-35%) rotate(10deg); }
    to   { transform: translateX(35%) rotate(10deg); }
  }

  /* Mini chips bottom */
  .mini-info{
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .mini{
    border-radius: 16px;
    padding: 10px;
    background: rgba(255,255,255,.92);
    border: 1px solid #e5eef5;
    backdrop-filter: blur(10px);
    text-align: center;
  }

  .mini-num{
    display: block;
    font-weight: 950;
    color: #0ea5e9;
    font-size: 15px;
    line-height: 1.1;
  }

  .mini-lbl{
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: #475569;
  }

  /* ====== BREAKPOINTS (as you asked) ====== */
  /* Laptop <= 1024px */
  @media (max-width: 1024px){
    .rtms-wrap{
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }
  }

  /* Tablet <= 768px */
  @media (max-width: 768px){
    .rtms-wrap{
      grid-template-columns: 1fr;
      gap: 18px;
    }
    .rtms-media{ order: 0; }
    .rtms-content{ order: 1; }
  }

  /* Mobile <= 520px */
  /* ===== Mobile: mini cards image ke niche proper (no crop/tight) ===== */
@media (max-width: 520px){

  /* Image card look clean */
  .img-card{
    overflow: hidden;            /* image ke edges clean */
    border-radius: 22px;
  }

  /* image height thoda stable */
  .img-card img{
    height: 260px;               /* adjust if you want */
  }

  /* Mini cards ko image ke bahar proper block bana do */
  .mini-info{
    position: relative;          /* normal flow */
    inset: unset;
    left: unset;
    right: unset;
    bottom: unset;

    margin: 14px 0 0;            /* image ke niche gap */
    padding: 0 6px;              /* side breathing */
    display: grid;
    grid-template-columns: 1fr;  /* stack */
    gap: 12px;
  }

  .mini{
    background: #ffffff;
    border: 1px solid #e5eef5;
    border-radius: 18px;
    padding: 12px 12px;
    box-shadow: 0 10px 26px rgba(15,23,42,.08);
  }

  .mini-num{ font-size: 16px; }
  .mini-lbl{ font-size: 12px; }
}



/* ===========================
   Conditions Treated (rTMS)
   COMPLETE CSS (Copy-Paste)
   =========================== */

.rtms-conditions{
  padding: clamp(42px, 5vw, 90px) 16px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  color: #0f172a;
}

.cond-wrap{
  max-width: 1180px;
  margin: 0 auto;
}

.cond-head{
  text-align: center;
  max-width: 900px;
  margin: 0 auto 26px;
}

.cond-badge{
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(14,165,233,.10);
  border: 1px solid rgba(14,165,233,.22);
  color: #0ea5e9;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .2px;
  margin-bottom: 12px;
}

.cond-head h2{
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 950;
  line-height: 1.15;
}

.cond-head h2 span{
  color: #0ea5e9;
}

.cond-head p{
  margin: 0;
  color: #475569;
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.7;
}

.cond-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

.cond-card{
  background: #ffffff;
  border: 1px solid #e5eef5;
  border-radius: 18px;
  padding: 16px 16px 14px;
  box-shadow: 0 10px 28px rgba(15,23,42,.07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  height: 100%;
}

.cond-card:hover{
  transform: translateY(-3px);
  border-color: rgba(14,165,233,.35);
  box-shadow: 0 16px 40px rgba(15,23,42,.10);
}

.cond-icn{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(14,165,233,.10);
  border: 1px solid rgba(14,165,233,.20);
  color: #0ea5e9;
  margin-bottom: 12px;
}

.cond-icn svg{
  width: 24px;
  height: 24px;
}

.cond-card h3{
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 950;
  color: #0f172a;
}

.cond-card p{
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #475569;
}

/* ===== CTA Button below Conditions ===== */
.cond-cta{
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.cond-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: .2px;
  color: #ffffff;
  background: linear-gradient(135deg, #00f5ff 0%, #0066ff 100%);
  box-shadow: 0 14px 36px rgba(14,165,233,.22);
  transition: transform .22s ease, box-shadow .22s ease;
}

.cond-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(14,165,233,.28);
}

/* ===== Responsive Breakpoints ===== */
/* Laptop <= 1024px */
@media (max-width: 1024px){
  .cond-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet <= 768px */
@media (max-width: 768px){
  .cond-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile <= 520px */
@media (max-width: 520px){
  .cond-head h2{
    font-size: 21px;
  }
  .cond-grid{
    grid-template-columns: 1fr;
  }
  .cond-card{
    padding: 15px;
  }
  .cond-btn{
    width: 100%;
    max-width: 360px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce){
  .cond-card,
  .cond-btn{
    transition: none !important;
  }
}



  /* Certifications Gallery Section */
.gallery-section-1 {
    padding: 20px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Animated Background Circles */
.gallery-section-1::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(102, 126, 234, 0.03);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.gallery-section-1::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: rgba(118, 75, 162, 0.03);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.gallery-section-1-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Certifications Grid */
.gallery-section-1-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 0;
}

/* Certificate Card */
.gallery-section-1-cert-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;

    /* ✅ FIX: icon left + content right */
    display: grid;
    grid-template-columns: 90px 1fr;
    column-gap: 20px;
    align-items: start;
}

.gallery-section-1-cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.gallery-section-1-cert-card:hover::before {
    transform: scaleX(1);
}

.gallery-section-1-cert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.2);
}

/* Certificate Icon */
.gallery-section-1-cert-icon {
    width: 80px;
    height: 80px;
  background: linear-gradient(135deg, #00f5ff 0%, #0066ff 100%);

    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    animation: iconPulse 3s ease-in-out infinite;

    /* ✅ FIX: grid placement */
    grid-column: 1;
    grid-row: 1 / span 4;
    margin-bottom: 0; /* ✅ removed because icon is left now */
}

@keyframes iconPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
        transform: scale(1.05);
    }
}

.gallery-section-1-cert-icon::after {
    content: '✓';
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background: #5ee487;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    border: 3px solid #fff;
}

/* Certificate Content */
.gallery-section-1-cert-name {
    font-size: 18px;
    font-weight: 800;
    color: #1f2d3d;
    margin-bottom: 12px;
    line-height: 1.3;

    /* ✅ FIX: right column */
    grid-column: 2;
}

.gallery-section-1-cert-issuer {
    font-size: 15px;
    color: #667eea;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;

    /* ✅ FIX: right column */
    grid-column: 2;
}

.gallery-section-1-cert-issuer::before {
    content: '🎓';
    font-size: 18px;
}

.gallery-section-1-cert-description {
    font-size: 12px;
    color: #6b7c93;
    line-height: 1.7;
    margin-bottom: 20px;

    /* ✅ FIX: right column */
    grid-column: 2;
}

/* Certificate Meta Info */
.gallery-section-1-cert-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid #f0f2f5;

    /* ✅ FIX: right column */
    grid-column: 2;
    margin-top: 8px;
}

.gallery-section-1-cert-year {
    font-size: 13px;
    color: #8897aa;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gallery-section-1-cert-year::before {
    content: '📅';
    font-size: 16px;
}

.gallery-section-1-cert-badge-small {
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #667eea;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

/* Decorative Pattern */
.gallery-section-1-cert-pattern {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    opacity: 0.03;
    pointer-events: none;
}

.gallery-section-1-cert-pattern svg {
    width: 100%;
    height: 100%;
}

/* Doctor Info Card (Featured) */
.gallery-section-1-doctor-info-card {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 50px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.1);
    border: 3px solid rgba(102, 126, 234, 0.1);
}

.gallery-section-1-doctor-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
   background: linear-gradient(135deg, #00f5ff 0%, #0066ff 100%);

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #fff;
    font-weight: 900;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    position: relative;
}

.gallery-section-1-doctor-avatar::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 3px dashed rgba(102, 126, 234, 0.3);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.gallery-section-1-doctor-info-content h2 {
    font-size: 28px;
    font-weight: 900;
    color: #1f2d3d;
    margin-bottom: 10px;
    line-height: 1.2;
}

.gallery-section-1-doctor-info-content p {
    font-size: 13px;
    color: #6b7c93;
    line-height: 1.7;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-section-1 {
        padding: 20px 20px;
    }

    .gallery-section-1-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .gallery-section-1-doctor-info-card {
        padding: 40px 30px;
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .gallery-section-1 {
        padding: 20px 15px;
    }

    .gallery-section-1-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-section-1-doctor-info-card {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
        padding: 35px 25px;
    }

    .gallery-section-1-doctor-avatar {
        margin: 0 auto;
    }

    .gallery-section-1-cert-card {
        padding: 35px 25px;
    }
}

/* ✅ Mobile: icon back on top (better spacing) */
@media (max-width: 480px) {
    .gallery-section-1 {
        padding: 20px 15px;
    }

    .gallery-section-1-cert-card {
        grid-template-columns: 1fr;
    }

    .gallery-section-1-cert-icon {
        width: 70px;
        height: 70px;
        font-size: 35px;
        grid-column: 1;
        grid-row: auto;
        margin-bottom: 18px;
    }

    .gallery-section-1-cert-name {
        font-size: 13px;
        grid-column: 1;
    }

    .gallery-section-1-cert-issuer,
    .gallery-section-1-cert-description,
    .gallery-section-1-cert-meta {
        grid-column: 1;
    }

    .gallery-section-1-doctor-info-card {
        padding: 30px 20px;
    }

    .gallery-section-1-doctor-avatar {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }
}
/* ✅ View Certifications Button (Responsive) */
.gallery-section-1-btn-wrap{
  margin-top: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 0 12px; /* mobile side spacing */
}

.gallery-section-1-view-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  line-height: 1;

  text-decoration: none;
  color: #fff;

  background: linear-gradient(135deg, #00f5ff 0%, #0066ff 100%);
  border: 1px solid rgba(0, 245, 255, 0.35);
  box-shadow: 0 0 18px rgba(0, 245, 255, 0.45);

  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
  white-space: nowrap;
}

.gallery-section-1-view-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(0, 245, 255, 0.75);
  opacity: .96;
}

.gallery-section-1-view-btn:active{
  transform: translateY(0);
  box-shadow: 0 0 18px rgba(0, 245, 255, 0.55);
}

.gallery-section-1-view-btn:focus{
  outline: none;
}

.gallery-section-1-view-btn:focus-visible{
  outline: 3px solid rgba(0, 245, 255, 0.45);
  outline-offset: 4px;
}

/* ✅ Tablet */
@media (max-width: 768px){
  .gallery-section-1-btn-wrap{
    margin-top: 24px;
  }
  .gallery-section-1-view-btn{
    padding: 13px 24px;
    font-size: 14px;
  }
}

/* ✅ Mobile */
@media (max-width: 480px){
  .gallery-section-1-btn-wrap{
    margin-top: 20px;
    padding: 0 10px;
  }

  .gallery-section-1-view-btn{
    width: 100%;
    max-width: 340px;
    padding: 14px 18px;
    font-size: 14px;
  }
}


/* ================= TESTIMONIALS (RTL Infinite Carousel) ================= */
.home-section-testimonials-white {
  padding: 70px 16px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.home-section-testimonials-white-container {
  max-width: 1200px;
  margin: 0 auto;
}

.home-section-testimonials-white-head {
  text-align: center;
  margin-bottom: 28px;
}

.home-section-testimonials-white-title {
  font-size: 28px;
  font-weight: 900;
  color: #1f2d3d;
  margin: 0 0 8px;
}

.home-section-testimonials-white-subtitle {
  font-size: clamp(13px, 1.6vw, 16px);
  color: #6b7c93;
  margin: 0 auto;
  max-width: 680px;
  line-height: 1.6;
}

/* ---------- Carousel viewport ---------- */
.home-section-testimonials-white-carousel {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

/* subtle fade edges */
.home-section-testimonials-white-carousel::before,
.home-section-testimonials-white-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 90px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.home-section-testimonials-white-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0) 100%);
}
.home-section-testimonials-white-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, rgba(255,255,255,0) 100%);
}

/* ---------- Track ---------- */
.home-section-testimonials-white-track {
  display: flex;
  align-items: flex-start;   /* cards stay top-aligned; height is fixed */
  gap: 18px;
  width: max-content;
  will-change: transform;
  animation: testimonialsRtl 26s linear infinite;
}

/* Pause on hover */
.home-section-testimonials-white-carousel:hover .home-section-testimonials-white-track {
  animation-play-state: paused;
}

/* ---------- Card ---------- */
.home-section-testimonials-white-card {
  flex: 0 0 auto;
  width: 360px;

  /* ── EQUAL HEIGHT – all cards same size ── */
  height: 280px;               /* fixed height for uniformity            */

  background: #ffffff;
  border-radius: 22px;
  padding: 26px 22px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 16px 50px rgba(0,0,0,0.10);
  position: relative;
  overflow: hidden;            /* clip content when collapsed            */
  transition: transform .25s ease, box-shadow .25s ease,
              height .35s ease;  /* smooth expand animation              */
  display: flex;
  flex-direction: column;
}

/* When expanded (JS adds this class), remove fixed height */
.home-section-testimonials-white-card.is-expanded {
  height: auto;
  overflow: visible;
}

.home-section-testimonials-white-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 70px rgba(0,0,0,0.14);
}

/* ---------- Quote wrapper ---------- */
.home-section-testimonials-white-quote-wrap {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

/* ---------- Quote ---------- */
.home-section-testimonials-white-quote {
  margin: 0 0 4px;
  font-size: 14px;
  color: #4b5b70;
  line-height: 1.75;

  /* Clamp is applied by JS after measuring natural height */
  display: block;
  overflow: hidden;
}

/* ---------- ...more / less button ---------- */
.testimonial-toggle {
  display: inline-block;
  margin-top: 4px;
  margin-bottom: 8px;
  color: #667eea;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  user-select: none;
  flex-shrink: 0;
  line-height: 1;
}
.testimonial-toggle:hover {
  text-decoration: underline;
}

/* ---------- User row ---------- */
.home-section-testimonials-white-user {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-top: auto;      /* push user row to bottom of card */
  padding-top: 10px;
}

/* Avatar */
.home-section-testimonials-white-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
  border: 2px solid rgba(0,245,255,0.35);
  box-shadow: 0 8px 18px rgba(0,102,255,0.18);
}
.home-section-testimonials-white-avatar img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.home-section-testimonials-white-avatar svg {
  width: 100%; height: 100%;
  display: block; border-radius: 50%;
}

.home-section-testimonials-white-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.home-section-testimonials-white-name {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  color: #1f2d3d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-section-testimonials-white-role {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: #667eea;
}

.home-section-testimonials-white-stars {
  margin-top: 2px;
  font-size: 14px;
  letter-spacing: 1px;
  color: #f5b301;
}

/* ---------- Animation ---------- */
@keyframes testimonialsRtl {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (min-width: 1280px) {
  .home-section-testimonials-white-track { gap: 20px; animation-duration: 28s; }
  .home-section-testimonials-white-card  { width: 380px; }
}

@media (max-width: 1024px) {
  .home-section-testimonials-white       { padding: 60px 14px; }
  .home-section-testimonials-white-card  { width: 320px; padding: 24px 20px; height: 270px; }
  .home-section-testimonials-white-track { animation-duration: 24s; }
}

@media (max-width: 768px) {
  .home-section-testimonials-white                         { padding: 55px 12px; }
  .home-section-testimonials-white-carousel::before,
  .home-section-testimonials-white-carousel::after         { width: 55px; }
  .home-section-testimonials-white-card                    { width: 280px; padding: 22px 18px; height: 260px; }
  .home-section-testimonials-white-track                   { gap: 14px; animation-duration: 22s; }
}

@media (max-width: 480px) {
  .home-section-testimonials-white-title { font-size: 21px; }
  .home-section-testimonials-white       { padding: 45px 10px; }
  .home-section-testimonials-white-card  { width: 245px; padding: 20px 16px; border-radius: 18px; height: 250px; }
  .home-section-testimonials-white-quote { font-size: 13px; }
  .home-section-testimonials-white-avatar{ width: 48px; height: 48px; }
  .home-section-testimonials-white-track { animation-duration: 20s; }
}

@media (prefers-reduced-motion: reduce) {
  .home-section-testimonials-white-track { animation: none; }
}

    /* Custom Styles */
       /* General footer styling */
/* General footer styling */
/* ===== FOOTER STYLES - COMPLETE & FULLY RESPONSIVE ===== */

.footer {
    background: #003366;
    color: #ffffff;
    padding: 60px 0 20px;
    font-family: 'Arial', sans-serif;
    position: relative;
    overflow: hidden;
}

.footer * {
    box-sizing: border-box;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.footer .col-12 {
    width: 100%;
}

/* ── ALL 4 COLUMNS EQUAL WIDTH ── */
.footer .col-md-3 {
    padding: 0 15px;
    width: 25%;          /* sab columns equal */
    flex-shrink: 0;
    flex-grow: 0;
}

/* ===== LOGO SECTION ===== */
.footer .logo-section {
    text-align: left;
    margin-bottom: 30px;
}

.footer .logo-section img {
    width: 150px;
    height: auto;
    max-width: 100%;
    display: block;
    margin-bottom: 20px;
}

.footer .clinic-description {
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 15px;
}

/* ===== SOCIAL ICONS ===== */
.footer .social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .social-icons a:hover {
    background: #00b8ff;
    color: #ffffff;
    transform: translateY(-3px) scale(1.1);
}

/* ===== HEADINGS ===== */
.footer h5 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, #00f5ff 0%, #0066ff 100%);
}

/* ===== PARAGRAPHS ===== */
.footer p {
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 10px;
}

/* ===== LINKS ===== */
.footer a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #00b8ff;
    padding-left: 5px;
}

/* ===== LISTS ===== */
.footer .list-unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .list-unstyled li {
    margin-bottom: 10px;
}

.footer .list-unstyled li a {
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer .list-unstyled li a::before {
    content: '→';
    margin-right: 8px;
    transition: margin-right 0.3s ease;
}

.footer .list-unstyled li a:hover::before {
    margin-right: 12px;
}

/* ===== NEWSLETTER SECTION ===== */
.footer input[type="email"] {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.9);
    color: #003366;
    font-size: 14px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.footer input[type="email"]:focus {
    outline: none;
    background: #ffffff;
    box-shadow: 0 0 15px rgba(0, 184, 255, 0.3);
}

.footer input[type="email"]::placeholder {
    color: #666;
}

.footer .btn-custom {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #00f5ff 0%, #0066ff 100%);
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer .btn-custom:hover {
    background: linear-gradient(135deg, #0066ff 0%, #00f5ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 184, 255, 0.4);
}

.footer .btn-custom:active {
    transform: translateY(0);
}

/* ===== FOOTER BOTTOM ===== */
.footer .footer-bottom {
    width: 100%;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center !important;
    clear: both;
}

.footer .footer-bottom p {
    font-size: 13px;
    color: #b0b0b0;
    margin: 0 auto 5px;
    text-align: center !important;
    width: 100%;
    display: block;
}

/* ===== DEVELOPER LINK ===== */
.footer .footer-bottom .developer-link {
    color: #00f5ff;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding: 0;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer .footer-bottom .developer-link:hover {
    color: #ffffff;
    padding-left: 0;
    transform: translateY(-2px);
}

.footer .footer-bottom .developer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(135deg, #00f5ff 0%, #0066ff 100%);
    transition: width 0.3s ease;
}

.footer .footer-bottom .developer-link:hover::after {
    width: 100%;
}

.footer .footer-bottom .developer-link:hover {
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */

/* Desktop Large (1200px+) */
@media (min-width: 1200px) {
    .footer .col-md-3 {
        width: 25%;
    }
    .footer .footer-bottom {
        text-align: center !important;
    }
    .footer .footer-bottom p {
        text-align: center !important;
    }
}

/* Desktop & Laptop (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .footer .col-md-3 {
        width: 25%;
    }
    .footer {
        padding: 50px 0 20px;
    }
    .footer .footer-bottom {
        text-align: center !important;
        display: block;
        width: 100%;
    }
    .footer .footer-bottom p {
        text-align: center !important;
        margin: 0 auto 5px;
        width: 100%;
    }
}

/* Desktop (992px - 1023px) */
@media (min-width: 992px) and (max-width: 1023px) {
    .footer .col-md-3 {
        width: 25%;
    }
    .footer {
        padding: 50px 0 20px;
    }
    .footer .footer-bottom {
        text-align: center !important;
    }
    .footer .footer-bottom p {
        text-align: center !important;
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .footer .col-md-3 {
        width: 50%;
        margin-bottom: 30px;
    }
    .footer {
        padding: 40px 0 20px;
    }
    .footer h5::after {
        left: 0;
    }
    .footer .footer-bottom {
        text-align: center !important;
    }
    .footer .footer-bottom p {
        text-align: center !important;
    }
}

/* Mobile Large (521px - 767px) */
@media (min-width: 521px) and (max-width: 767px) {
    .footer .col-md-3 {
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
    }
    .footer .logo-section {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer .logo-section img {
        margin-left: auto;
        margin-right: auto;
    }
    .footer .clinic-description {
        text-align: center;
    }
    .footer .social-icons {
        justify-content: center;
    }
    .footer h5 {
        text-align: center;
    }
    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer .list-unstyled {
        text-align: center;
    }
    .footer .list-unstyled li a::before {
        content: '';
        margin-right: 0;
    }
    .footer .footer-bottom {
        text-align: center !important;
    }
    .footer .footer-bottom p {
        text-align: center !important;
    }
}

/* Mobile Small (320px - 520px) */
@media (max-width: 520px) {
    .footer {
        padding: 30px 0 15px;
    }
    .footer .container {
        padding: 0 20px;
    }
    .footer .col-md-3 {
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
        padding: 0;
    }
    .footer .logo-section {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 15px;
    }
    .footer .logo-section img {
        width: 130px;
        display: block;
        margin: 0 auto 15px;
    }
    .footer .clinic-description {
        text-align: center;
        font-size: 13px;
        max-width: 100%;
    }
    .footer .social-icons {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 15px;
    }
    .footer .social-icons a {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    .footer h5 {
        font-size: 16px;
        text-align: center;
        margin-bottom: 15px;
    }
    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer p {
        font-size: 13px;
        text-align: center;
    }
    .footer .list-unstyled {
        text-align: center;
    }
    .footer .list-unstyled li {
        margin-bottom: 8px;
    }
    .footer .list-unstyled li a::before {
        content: '';
        margin-right: 0;
    }
    .footer .list-unstyled li a:hover {
        padding-left: 0;
    }
    .footer input[type="email"] {
        font-size: 13px;
        padding: 10px 15px;
    }
    .footer .btn-custom {
        font-size: 14px;
        padding: 10px 15px;
    }
    .footer .footer-bottom {
        margin-top: 30px;
        padding-top: 20px;
        text-align: center !important;
    }
    .footer .footer-bottom p {
        font-size: 12px;
        text-align: center !important;
    }
    .footer .footer-bottom .developer-link {
        font-size: 12px;
    }
}

/* Extra Small Mobile (below 375px) */
@media (max-width: 374px) {
    .footer .logo-section img {
        width: 110px;
    }
    .footer .clinic-description {
        font-size: 12px;
    }
    .footer h5 {
        font-size: 15px;
    }
    .footer p,
    .footer a {
        font-size: 12px;
    }
    .footer .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    .footer .footer-bottom p {
        text-align: center !important;
    }
}

/* Utility Classes */
.footer .text-center {
    text-align: center !important;
}
.footer .text-white {
    color: #ffffff;
}
.footer .mb-2 {
    margin-bottom: 0.5rem;
}
.footer .mb-3 {
    margin-bottom: 1rem;
}
.footer .mb-4 {
    margin-bottom: 1.5rem;
}
.footer .mt-3 {
    margin-top: 1rem;
}
.footer .mt-4 {
    margin-top: 1.5rem;
}
.footer .me-3 {
    margin-right: 1rem;
}
.footer .w-100 {
    width: 100%;
}
.footer .img-fluid {
    max-width: 100%;
    height: auto;
}

/* Animation on Scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer .col-md-3 {
    animation: fadeInUp 0.6s ease-out;
}
.footer .col-md-3:nth-child(1) {
    animation-delay: 0.1s;
}
.footer .col-md-3:nth-child(2) {
    animation-delay: 0.2s;
}
.footer .col-md-3:nth-child(3) {
    animation-delay: 0.3s;
}
.footer .col-md-3:nth-child(4) {
    animation-delay: 0.4s;
}

   /* Floating Icons Container */
       .floating-icons {
    position: fixed;
    z-index: 9999;
}

/* WhatsApp Icon (Left Side) */
.whatsapp-float {
    left: 20px;
    bottom: 40px;
    animation: slideInLeft 0.6s ease-out, float 3s ease-in-out infinite;
}

/* Call Icon (Right Side) */
.call-float {
    right: 20px;
    bottom: 40px;
    animation: slideInRight 0.6s ease-out, float 3s ease-in-out infinite 1.5s;
}

/* Icon Button Styling */
.icon-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.icon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.icon-btn:hover::before {
    transform: scale(1);
}

/* WhatsApp Styling */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.whatsapp-btn:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* Call Button Styling */
.call-btn {
    background: linear-gradient(135deg, #FF6B6B 0%, #C92A2A 100%);
}

.call-btn:hover {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 6px 30px rgba(255, 107, 107, 0.5);
}

/* SVG Icons */
.icon-btn svg {
    width: 32px;
    height: 32px;
    fill: white;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.icon-btn:hover svg {
    transform: scale(1.1);
}

/* Tooltip */
.tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10000;
}

.whatsapp-float .tooltip {
    left: 70px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
}

.call-float .tooltip {
    right: 70px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
}

.icon-btn:hover + .tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    }
}

.whatsapp-btn {
    animation: pulse 2s ease-in-out infinite;
}

.call-btn {
    animation: pulse 2s ease-in-out infinite 1s;
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Slide In Animations */
@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .icon-btn {
        width: 50px;
        height: 50px;
    }

    .icon-btn svg {
        width: 26px;
        height: 26px;
    }

    .whatsapp-float {
        left: 15px;
        bottom: 30px;
    }

    .call-float {
        right: 15px;
        bottom: 30px;
    }

    .tooltip {
        font-size: 12px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .icon-btn {
        width: 45px;
        height: 45px;
    }

    .icon-btn svg {
        width: 24px;
        height: 24px;
    }

    .whatsapp-float {
        left: 10px;
        bottom: 25px;
    }

    .call-float {
        right: 10px;
        bottom: 25px;
    }

    .tooltip {
        display: none;
    }
}

/* Click Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}