

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: Arial, sans-serif; color: #333; background-color: #fff; line-height: 1.6; }

 /* Container */
.container { width: 90%; max-width: 1200px; margin: auto; }

 /* Buttons */
.btn { display: inline-block; padding: 0.85rem 2rem; border-radius: 25px; text-decoration: none; font-weight: 600; transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease; cursor: pointer; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); }
.primary-btn { background-color: #FFCE00; color: #2E314B; border: none; }
.primary-btn:hover { background-color: #e6b800; }
.secondary-btn { background-color: #2E314B; color: #fff; border: none; }
.secondary-btn:hover { background-color: #1f2238; }

/* Offer */
.offer-scroller { background-color: #FF9B00; position: sticky; top: 0; z-index: 1100; color: #2E314B; padding: 10px 0; overflow: hidden; white-space: nowrap; font-weight: 700; }
.marquee-content { display: inline-block; animation: marquee 20s linear infinite; }
.marquee-content span { padding: 0 40px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }


/* Navbar */
        .navbar { background-color: #ffffff; position: relative; z-index: 100; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); }
        .navbar-content { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; }
        .logo img { height: 50px; width: auto; }
        .navmenu ul { display: none; position: absolute; z-index: 1200; top: 100%; left: 0; right: 0; background-color: #ffffff; padding: 1rem; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); list-style: none; flex-direction: column; transform: translateY(-10px); opacity: 0; transition: transform 0.3s ease, opacity 0.3s ease; }
        .navmenu.active ul { display: flex; transform: translateY(0); opacity: 1; }
        .navmenu a { color: #2E314B; display: block; padding: 0.75rem 1rem; font-size: 1rem; text-transform: uppercase; text-decoration: none; transition: color 0.3s ease; }
        .navmenu a:hover, .navmenu .active { color: #FFCE00; }
        .mobile-nav-toggle { display: block; cursor: pointer; width: 30px; height: 20px; position: relative; }
        .mobile-nav-toggle span { background-color: #2E314B; height: 3px; width: 100%; position: absolute; left: 0; transition: transform 0.3s ease, opacity 0.3s ease; }
        .mobile-nav-toggle span:nth-child(1) { top: 0; }
        .mobile-nav-toggle span:nth-child(2) { top: 8px; }
        .mobile-nav-toggle span:nth-child(3) { top: 16px; }
        .navmenu.active .mobile-nav-toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .navmenu.active .mobile-nav-toggle span:nth-child(2) { opacity: 0; }
        .navmenu.active .mobile-nav-toggle span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }
        @media (min-width: 992px) { .topbar { display: block; } .navbar-content { padding: 0.5rem 0; } .navmenu ul { display: flex; position: static; flex-direction: row; background: none; box-shadow: none; padding: 0; transform: none; opacity: 1; } .navmenu a { font-size: 0.9rem; padding: 0.5rem 1rem; } .mobile-nav-toggle { display: none; } }
        @media (max-width: 991px) { .topbar { display: none; } }
        @media (max-width: 576px) { .navbar-content { padding: 0.75rem 0; } .cta-btn { padding: 0.5rem 1rem; font-size: 0.9rem; } .logo img { height: 40px; } }

       /* Hero Section */
.hero-section { position: relative; width: 100%; height: 80vh; text-align: center; overflow: hidden; }
.hero-slides { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; transition: transform 1s ease-in-out; }
.hero-slide { flex: 0 0 100%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero-slide:nth-child(1) { background-image: url('/mumbai/assets/images/hero/hero-bg-desktop1.webp'); }
.hero-slide:nth-child(2) { background-image: url('/mumbai/assets/images/hero/hero-bg-desktop2.webp'); }
.hero-slide:nth-child(3) { background-image: url('/mumbai/assets/images/hero/hero-bg-desktop3.webp'); }
.hero-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #fff; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); }
.hero-content h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.hero-content p { font-size: 1.2rem; }
@media (max-width: 768px) { .hero-section { height: auto; }
.hero-slides { position: relative; height: auto; }
.hero-slide { height: 0; padding-bottom: 130%; background-size: cover; background-position: center; }
.hero-slide:nth-child(1) { background-image: url('/mumbai/assets/images/hero/hero-bg-mobile1.webp'); }
.hero-slide:nth-child(2) { background-image: url('/mumbai/assets/images/hero/hero-bg-mobile2.webp'); }
.hero-slide:nth-child(3) { background-image: url('/mumbai/assets/images/hero/hero-bg-mobile3.webp'); }
.hero-content h1 { font-size: 1.8rem; }
.hero-content p { font-size: 1rem; }
}

/* Hero Form Layout Improvements */
.hero-contact { padding: 60px 0; background-color: #f9f9f9; text-align: left; }
.hero-flex-container { display: flex; align-items: center; gap: 50px; flex-wrap: wrap; }
.hero-text-side { flex: 1.2; min-width: 320px; }
.hero-text-side .badge { background: #FFCE00; color: #2E314B; padding: 5px 15px; border-radius: 20px; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; display: inline-block; margin-bottom: 20px; }
.hero-text-side h1 { font-size: 2.8rem; color: #2E314B; line-height: 1.2; margin-bottom: 20px; }
.hero-text-side p { font-size: 1.1rem; color: #555; margin-bottom: 25px; max-width: 500px; }
.hero-features { list-style: none; padding: 0; }
.hero-features li { font-weight: 600; margin-bottom: 12px; color: #2E314B; }
.hero-form-side { flex: 1; min-width: 320px; }
.form-box { background: #fff; padding: 30px; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
.form-box h2 { font-size: 1.8rem; margin-bottom: 20px; color: #2E314B; }
/* Adjust existing form to be vertical in the side box */
.hero-contact form { display: flex; flex-direction: column; gap: 15px; max-width: 100%; }
.hero-contact input, 
.hero-contact select, 
.hero-contact textarea { width: 100%; padding: 12px 16px; border: 1.5px solid #e1e1e1; border-radius: 10px; font-size: 16px; background-color: #fff; transition: all 0.3s ease; color: #2E314B; outline: none; }
/* Focus State: Adds a subtle shadow and changes border color */
.hero-contact input:focus, 
.hero-contact select:focus, 
.hero-contact textarea:focus { border-color: #FFCE00; box-shadow: 0 0 0 4px rgba(255, 206, 0, 0.15); background-color: #fff; }

@media (max-width: 991px) { .hero-flex-container { flex-direction: column; text-align: center; }
    .hero-text-side h1 { font-size: 2.2rem; }
    .hero-text-side p { margin: 0 auto 25px auto; }
    .hero-features { display: inline-block; text-align: left; margin-bottom: 30px; }}
    
@media (max-width: 768px) { .hero-contact { padding: 40px 0; }
    .hero-text-side .badge, 
    .hero-text-side .hero-features { display: none !important; }
    .hero-text-side h1 { font-size: 1.8rem; margin-bottom: 10px; line-height: 1.3; }
    .hero-text-side p {font-size: 0.95rem;margin-bottom: 20px;opacity: 0.9;}
    .form-box { padding: 20px; border-radius: 15px;}
    .form-box h2 { font-size: 1.5rem; margin-bottom: 15px; text-align: center; }
    .baldness-grid { gap: 8px; padding: 10px; }
    .baldness-item { width: 75px; }
}

.baldness-grid { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; background: #f8f9fa; padding: 25px; border-radius: 20px; }
.baldness-item { position: relative; width: 90px; cursor: pointer; text-align: center; }
.img-box { width: 100%; aspect-ratio: 1/1; background: #fff; border: 2px solid #eee; border-radius: 15px; padding: 10px; display: flex; align-items: center; justify-content: center; overflow: hidden; transition: all 0.3s ease; }
.img-box img { max-width: 100%; max-height: 100%; object-fit: contain; }
.baldness-label { display: block; margin-top: 10px; font-size: 11px; font-weight: 800; color: #888; text-transform: uppercase; letter-spacing: 0.5px; }
.baldness-item.selected .img-box { border-color: #FFCE00; background-color: #fdfae6; transform: translateY(-3px); }
.baldness-item.selected .baldness-label { color: #2E314B; }
.check-mark { position: absolute; top: -8px; right: -8px; background: #FFCE00; color: #2E314B; width: 22px; height: 22px; border-radius: 50%; font-size: 12px; display: none; align-items: center; justify-content: center; box-shadow: 0 4px 8px rgba(0,0,0,0.1); z-index: 2; }
.baldness-item.selected .check-mark { display: flex; }
@media (max-width: 768px) { .baldness-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; }
.baldness-item { width: auto; }
}
select { width: 100%; padding: 0.9rem; border: 1px solid #ccc; border-radius: 8px; font-size: 1rem; background-color: #fff; color: #333; appearance: none; background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%232E314B%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'); background-repeat: no-repeat; background-position: right 1rem center; background-size: 0.65rem auto; cursor: pointer; }
select:focus { border-color: #FFCE00; outline: none; }



/* Media Coverage Section */
.media-coverage { padding: 50px 0; background-color: #fff; overflow: hidden; }
.media-coverage h2 { font-size: 1.5rem; color: #2E314B; margin-bottom: 30px; opacity: 0.7; text-align: center; }
.logo-ticker { width: 100%; overflow: hidden; position: relative; padding: 10px 0; }
.logo-track { display: flex; width: calc(250px * 16); animation: scrollTicker 40s linear infinite; gap: 60px; align-items: center; }
.logo-track img { height: 45px; width: auto; filter: grayscale(0); transition: all 0.3s ease; }
.logo-track img:hover { filter: grayscale(0); opacity: 1; transform: scale(1.1); }
@keyframes scrollTicker { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-250px * 8)); } }
.logo-ticker:hover .logo-track { animation-play-state: paused; }
@media (max-width: 768px) { .media-coverage { padding: 30px 0; }
.logo-track img { height: 35px; }
.logo-track { animation-duration: 25s; }
}


/* Award Section */
.awards-section { padding: 60px 0; background: #fff; text-align: center; }
.awards-slider-container { position: relative; width: 100%; max-width: 1100px; margin: 0 auto; overflow: hidden; border-radius: 25px; padding: 15px; background: #fdfdfd; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.awards-track { display: flex; transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.award-slide { min-width: 100%; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; overflow: hidden; border-radius: 15px; box-sizing: border-box; }
.award-slide img { width: 100%; height: 100%; object-fit: cover; padding: 0 5px; }
.award-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); background: #2E314B; color: #FFCE00; border: none; width: 45px; height: 45px; border-radius: 50%; cursor: pointer; z-index: 20; font-size: 20px; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.award-nav-btn:hover { background: #FFCE00; color: #2E314B; transform: translateY(-50%) scale(1.1); }
.award-nav-btn.prev { left: 25px; }
.award-nav-btn.next { right: 25px; }
@media (max-width: 768px) {
  .awards-slider-container { border-radius: 15px; padding: 10px; }
  .award-nav-btn { width: 35px; height: 35px; font-size: 16px; }
  .award-nav-btn.prev { left: 15px; }
  .award-nav-btn.next { right: 15px; }
}


/* Treatment Protocols Section */

.treatment-protocols { padding: 4rem 0; background-color: #f9f9f9; text-align: center; }
.treatment-protocols h2 { color: #2E314B; font-size: 2.2rem; margin-bottom: 1rem; }
.treatment-protocols .hint { font-size: 1.1rem; color: #666; margin-bottom: 2rem; }
.protocol-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px; margin-top: 50px; }
.protocol-card { background: #fff; padding: 30px; border-radius: 15px; text-align: left; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border-bottom: 4px solid #f0f0f0; transition: all 0.3s ease; }
.protocol-card:hover { border-bottom-color: #FFCE00; transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.protocol-icon { width: 50px; height: 50px; background-color: #fdf5d7; border-radius: 12px; margin-bottom: 20px; background-size: 24px; background-repeat: no-repeat; background-position: center; }
.protocol-icon.team { background-image: url('/mumbai/assets/images/icons/team.svg'); }
.protocol-icon.diagnostic { background-image: url('/mumbai/assets/images/icons/hair-loss.svg'); }
.protocol-icon.sapphire { background-image: url('/mumbai/assets/images/icons/sapphire.webp'); }
.protocol-card h3 { font-size: 1.2rem; color: #2E314B; margin-bottom: 12px; font-weight: 700; }
.protocol-card p { font-size: 0.95rem; color: #666; margin-bottom: 20px; line-height: 1.5; }
.learn-more { color: #2E314B; text-decoration: none; font-weight: 700; font-size: 0.9rem; transition: color 0.3s ease; }
.learn-more:hover { color: #FFCE00; }
@media (max-width: 768px) { .protocol-grid { grid-template-columns: 1fr; }
}

/* --- Protocol Carousel Styles --- */
.protocol-slider-container { position: relative; width: 100%; overflow: hidden; margin-top: 50px; padding: 10px 0; }
.protocol-track { display: flex; transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); gap: 20px; }
.protocol-card { min-width: calc(33.333% - 14px); background: #fff; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); text-align: left; transition: transform 0.3s ease; }
.protocol-image { width: 100%; aspect-ratio: 4/2; overflow: hidden; background: #eee; }
.protocol-image img { width: 100%; height: 100%; object-fit: cover; }
.protocol-info { padding: 20px; }
.protocol-info h3 { font-size: 1.2rem; color: #2E314B; margin-bottom: 10px; }
.protocol-info p { font-size: 0.95rem; color: #666; margin-bottom: 15px; line-height: 1.5; }
.slider-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,206,0,0.9); border: none; width: 45px; height: 45px; border-radius: 50%; cursor: pointer; font-size: 20px; z-index: 10; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.slider-nav-btn.prev { left: 10px; }
.slider-nav-btn.next { right: 10px; }

@media (max-width: 991px) {
  .protocol-card { min-width: calc(50% - 10px); }
}
@media (max-width: 768px) {
  .protocol-card { min-width: 100%; }
  .slider-nav-btn { width: 35px; height: 35px; font-size: 16px; }
}


/* Why Choose Us Section */
.why-choose-us { background-color: #2E314B; color: #fff; padding: 100px 0; }
.why-choose-us h2 { color: #FFCE00; margin-bottom: 15px; }
.why-choose-us .section-subtitle { color: rgba(255,255,255,0.7); margin-bottom: 60px; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 30px; }
.why-card { background: rgba(255,255,255,0.05); padding: 40px 30px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); text-align: center; transition: all 0.4s ease; }
.why-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-10px); border-color: #FFCE00; }
.pillar-stat { font-size: 3.5rem; font-weight: 800; color: #FFCE00; line-height: 1; margin-bottom: 20px; }
.why-card h3 { font-size: 1.3rem; margin-bottom: 15px; font-weight: 700; color: #fff; }
.why-card p { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.6; }

@media (max-width: 768px) {
  .why-choose-us { padding: 40px 0; text-align: center; }
  .why-choose-us .section-subtitle { margin-bottom: 30px; font-size: 0.9rem; padding: 0 15px; }
  .why-grid { grid-template-columns: repeat(2,1fr); gap: 12px; padding: 0 5px; }
  .why-card { padding: 20px 10px; border-radius: 12px; }
  .pillar-stat { font-size: 1.8rem; margin-bottom: 10px; }
  .why-card h3 { font-size: 0.9rem; margin-bottom: 8px; }
  .why-card p { font-size: 0.75rem; line-height: 1.3; }
}






.results-gallery { padding: 10px 0; background-color: #f8f9fa; }
.category-group { margin-bottom: 60px; }
.gallery-category-title { font-size: 1.8rem; margin-bottom: 15px; border-left: 5px solid #FFCE00; padding-left: 15px; color: #2E314B; }
@media (min-width: 1024px) { 
.results-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 20px; width: 100%; }
.category-group { margin-bottom: 20px; }
.gallery-category-title { grid-column: 1 / -1; text-align: center; margin-bottom: 20px; font-size: 2rem; }
.patient-grid { display: grid; grid-template-columns: 1fr; gap: 20px; width: 100%; }
.patient-card { min-width: 0; flex-shrink: 1; }
.patient-slider { image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; }
}
.patient-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: transform 0.4s ease; }
.patient-card:hover { transform: translateY(-5px); }
.patient-slider { position: relative; width: 100%; aspect-ratio: 4 / 2; overflow: hidden; background: #000; border-radius: 20px 20px 0 0; image-rendering: -webkit-optimize-contrast; }
.slider-track { display: flex; transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); height: 100%; }
.slide { min-width: 100%; position: relative; height: 100%; overflow: hidden; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.view-label { position: absolute; bottom: 15px; right: 15px; background: rgba(0,0,0,0.6); color: #fff; padding: 4px 12px; border-radius: 20px; font-size: 11px; backdrop-filter: blur(4px); }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.8); border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; z-index: 5; transition: 0.3s; }
.slider-btn:hover { background: #fff; scale: 1.1; }
.prev { left: 10px; }
.next { right: 10px; }
.slider-dots { position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; }
.dot { width: 6px; height: 6px; background: rgba(255,255,255,0.5); border-radius: 50%; transition: 0.3s; }
.dot.active { background: #fff; width: 14px; border-radius: 10px; }
.patient-details { padding: 20px; }
.result-tag { display: inline-block; background: #2E314B; color: #FFCE00; padding: 3px 12px; border-radius: 15px; font-size: 12px; font-weight: 700; margin-bottom: 8px; }
@media (max-width: 1023px) { 
.results-container { display: block; }
.category-group { margin-bottom: 50px; }
.gallery-category-title { font-size: 1.6rem; padding-left: 5px; text-align: left; }
.patient-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 16px; padding: 0 20px 20px 20px; margin: 0; width: 100%; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.patient-grid::-webkit-scrollbar { display: none; }
.patient-card { min-width: calc(100vw - 80px); max-width: calc(100vw - 80px); flex-shrink: 0; scroll-snap-align: center; border-radius: 16px; overflow: hidden; }
.patient-slider { aspect-ratio: 4 / 2; border-radius: 16px 16px 0 0; }
.patient-details { padding: 16px; }
.result-tag { font-size: 11px; padding: 4px 10px; }
}
@media (max-width: 768px) { 
.gallery-category-title { font-size: 1.4rem; padding-left: 10px; }
.patient-grid { gap: 15px; }
}
@media (max-width: 480px) { 
.patient-card { min-width: calc(100vw - 40px); max-width: calc(100vw - 40px); }
.patient-grid { padding: 0 10px 20px 10px; gap: 12px; }
}









.video-gallery { padding: 80px 0; background-color: #fff; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 10px; margin-top: 10px; }
.video-card { background: #f9f9f9; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.video-card:hover { transform: translateY(-5px); }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-info { padding: 20px; }
.video-info h3 { font-size: 1.2rem; color: #2E314B; margin-bottom: 10px; }
.video-info p { font-size: 0.9rem; color: #666; line-height: 1.5; }
@media (max-width: 768px) { .video-grid { grid-template-columns: 1fr; padding: 0 10px; }
}

.treatments { padding: 2rem 0; background-color: #fff; text-align: center; }
.treatments h2 { color: #2E314B; font-size: 2.2rem; margin-bottom: 2.5rem; }
.treatment-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.treatment-item { background-color: #f9f9f9; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease; text-align: left; }
.treatment-item:hover { transform: translateY(-5px); }
.treatment-item h3 { color: #2E314B; font-size: 1.3rem; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.75rem; }
.treatment-item h3::before { display: inline-block; width: 24px; height: 24px; background-size: cover; background-color: #FFCE00; border-radius: 50%; content: ''; background-image: url('/mumbai/assets/images/icons/default-icon.webp'); }
.treatment-item.hair-loss h3::before { background-image: url('/mumbai/assets/images/icons/hair-loss.webp'); }
.treatment-item.hair-transplant h3::before { background-image: url('/assets/images/icons/hair-transplant.webp'); }
.treatment-item.sapphire h3::before { background-image: url('/mumbai/assets/images/icons/sapphire.webp'); }
.treatment-item.beard h3::before { background-image: url('/mumbai/assets/images/icons/beard.webp'); }
.treatment-item.eyebrow h3::before { background-image: url('/mumbai/assets/images/icons/eyebrow.webp'); }
.treatment-item.male-hair-transplant h3::before { background-image: url('/mumbai/assets/images/icons/male_pattern_baldness.webp'); }
.treatment-item.female-hair-transplant h3::before { background-image: url('/mumbai/assets/images/icons/female_pattern_baldness.webp'); }
.treatment-item p { font-size: 0.95rem; color: #666; }


.testimonials { padding: 2rem 0; background-color: #f9f9f9; text-align: center; }
.testimonials h2 { color: #2E314B; font-size: 2.2rem; margin-bottom: 2rem; }
.testimonial-carousel { position: relative; max-width: 900px; margin: auto; overflow: hidden; }
.testimonial-slides { display: flex; transition: transform 0.5s ease; }
.testimonial-item { flex: 0 0 100%; padding: 2rem; background-color: #fff; border-radius: 12px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); display: flex; gap: 2rem; align-items: center; }
.testimonial-content { flex: 1; text-align: left; }
.testimonial-content p.quote { font-size: 1.1rem; color: #333; margin-bottom: 1rem; line-height: 1.5; }
.testimonial-content .rating { display: flex; flex-direction: column; align-items: flex-start; gap: 0.2rem; margin-bottom: 1rem; }
.testimonial-content .rating span { color: #FFD700; font-size: 1.2rem; }
.testimonial-content .stars { display: flex; gap: 0.2rem; }
.testimonial-content .rating-text { font-size: 0.9rem; color: #666; }
.testimonial-content .details { font-size: 0.9rem; color: #666; margin-bottom: 0.5rem; }
.testimonial-content .author { font-weight: 600; color: #2E314B; font-size: 1.1rem; background-color: #2E314B; color: #fff; padding: 0.5rem 1rem; border-radius: 25px; display: inline-block; }
.testimonial-images { position: relative; flex: 0 0 40%; display: flex; justify-content: center; align-items: center; }
.testimonial-images img.testimonial-image { width: 350px; height: auto; border-radius: 12px; object-fit: cover; border: 4px solid #fff; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); }
.carousel-controls { position: absolute; top: 50%; width: 100%; display: flex; justify-content: space-between; transform: translateY(-50%); }
.carousel-controls button { background-color: #ccc; color: #fff; border: none; padding: 0.5rem; cursor: pointer; border-radius: 50%; width: 40px; height: 40px; font-size: 1rem; transition: background-color 0.3s ease; }
.carousel-controls button:hover { background-color: #2E314B; }
@media (max-width: 768px) { .testimonial-content .rating { flex-direction: column; align-items: flex-start; }
.testimonial-images img.testimonial-image { width: 100%; height: auto; border-radius: 12px; }
.testimonial-item { flex-direction: column; text-align: center; }
.testimonial-content { text-align: center; }
.testimonial-content .rating { align-items: center; }
}
.expert-section { padding: 100px 0; background-color: #fff; }
.expert-flex { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }
.expert-image-container { flex: 1; min-width: 300px; position: relative; max-width: 450px; }
.expert-main-img { width: 100%; border-radius: 30px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); display: block; }
.exp-badge { position: absolute; bottom: -20px; right: -20px; background: #FFCE00; padding: 20px; border-radius: 20px; text-align: center; box-shadow: 0 10px 20px rgba(255, 206, 0, 0.3); color: #2E314B; }
.exp-years { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.exp-text { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }
.expert-bio { flex: 1.2; min-width: 350px; text-align: left; }
.bio-label { color: #FFCE00; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; }
.expert-bio h2 { font-size: 2.8rem; color: #2E314B; margin: 10px 0; }
.expert-degrees { font-size: 1.1rem; font-weight: 600; color: #666; margin-bottom: 5px; }
.expert-role { color: #FFCE00; font-weight: 700; font-size: 1.1rem; margin-bottom: 25px; }
.bio-description { font-size: 1.05rem; color: #444; line-height: 1.7; margin-bottom: 30px; }
.expertise-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 40px; }
.expertise-list li { font-weight: 600; color: #2E314B; display: flex; align-items: center; gap: 10px; }
.expertise-list span { color: #FFCE00; font-weight: 900; }
@media (max-width: 991px) { .expert-flex { flex-direction: column; text-align: center; }
.expert-bio { text-align: center; }
.expertise-list { justify-items: center; }
.expert-image-container { margin: auto; }
}

/* Surgery Action Slider */
.surgery-action { padding: 80px 0 20px 0; background-color: #fdfdfd; }
.surgery-slider-container { position: relative; max-width: 900px; margin: 40px auto; overflow: hidden; border-radius: 25px; box-shadow: 0 15px 50px rgba(0,0,0,0.1); }
.surgery-track { display: flex; transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); }
.surgery-slide { min-width: 100%; position: relative; aspect-ratio: 16 / 9; }
.surgery-slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: #fff; text-align: left; }
.slide-caption h4 { color: #FFCE00; margin-bottom: 5px; font-size: 1.2rem; }
.surgery-controls .s-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.9); border: none; width: 45px; height: 45px; border-radius: 50%; cursor: pointer; font-size: 20px; z-index: 10; }
.prev { left: 20px; }
.next { right: 20px; }
@media (max-width: 768px) { .surgery-controls .s-btn { width: 35px; height: 35px; font-size: 16px; top: 40%; }
@media (max-width: 768px) {
    .surgery-action {
        padding: 40px 0 10px 0; /* Even tighter spacing for mobile */
    }
    .form-section {
        padding: 10px 0 40px 0;
    }
}
.prev { left: 10px; }
.next { right: 10px; }
.slide-caption { padding: 15px 20px; background: linear-gradient(transparent, rgba(0,0,0,0.9)); }
.slide-caption h4 { font-size: 1rem; margin-bottom: 2px; }
.slide-caption p { font-size: 0.85rem; line-height: 1.3; }
}


/* Map Section */
.map-section { padding: 4rem 0; text-align: center; background-color: #f9f9f9; }
.map-section h2 { color: #2E314B; font-size: 2.2rem; margin-bottom: 2.5rem; }
.map { margin-bottom: 2rem; }
.map iframe { width: 100%; height: 450px; border: none; border-radius: 12px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); }
.faq-section { padding: 4rem 0; background-color: #fff; text-align: center; }
.faq-section h2 { color: #2E314B; font-size: 2.2rem; margin-bottom: 2rem; }
.faq-list { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 600px; margin: auto; }
.faq-item { background-color: #f9f9f9; border-radius: 12px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); text-align: left; overflow: hidden; }
.faq-item input { display: none; }
.faq-item label { display: block; padding: 1.5rem; color: #2E314B; font-size: 1.3rem; font-weight: 600; cursor: pointer; position: relative; }
.faq-item label::after { content: "▼"; position: absolute; right: 1.5rem; font-size: 1.2rem; color: #FFCE00; transition: transform 0.3s ease; }
.faq-item input:checked ~ label::after { transform: rotate(180deg); }
.faq-item .faq-content { max-height: 0; overflow: hidden; padding: 0 1.5rem; transition: max-height 0.3s ease, padding 0.3s ease; background-color: #fff; }
.faq-item input:checked ~ .faq-content { max-height: 200px; padding: 1rem 1.5rem; }
.faq-item .faq-content p { font-size: 0.95rem; color: #666; }
.faq-cta { text-align: center; margin-top: 2rem; }
.form-section { padding: 4rem 0; background-color: #fff; text-align: center; }
.form-section h2 { color: #2E314B; font-size: 2.2rem; margin-bottom: 1rem; }
.form-section p.urgency { font-size: 1.2rem; color: #FFCE00; margin-bottom: 2rem; }
.lead-form { max-width: 600px; margin: auto; display: flex; flex-direction: column; gap: 1.25rem; background-color: #f9f9f9; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); }
.lead-form input, .lead-form textarea { padding: 0.9rem; border: 1px solid #ccc; border-radius: 8px; font-size: 1rem; transition: border-color 0.3s ease; }
.lead-form input:focus, .lead-form textarea:focus { border-color: #FFCE00; outline: none; }
.lead-form textarea { resize: vertical; min-height: 120px; }
.whatsapp-float, .call-float { position: fixed; right: 30px; z-index: 100; }
.whatsapp-float { bottom: 150px; }
.call-float { bottom: 80px; fill: red; }
.whatsapp-float img, .call-float img { width: 60px; height: 60px; transition: transform 0.3s ease; }
.whatsapp-float img:hover, .call-float img:hover { transform: scale(1.1); }
.call-float img { background-color: #e63946; border-radius: 50%; padding: 5px; }
.footer { padding: 4rem 0; background-color: #2E314B; color: #fff; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; }
.footer h3 { font-size: 1.3rem; margin-bottom: 1.25rem; color: #FFCE00; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.75rem; }
.footer ul li a { color: #fff; text-decoration: none; font-size: 0.95rem; transition: color 0.3s ease; }
.footer ul li a:hover { color: #FFCE00; }
.footer .contact-info p { font-size: 0.95rem; margin-bottom: 0.75rem; }
.footer .contact-info a { color: #FFCE00; text-decoration: none; }
.site-footer { background-color: #1f2238; color: #fff; text-align: center; padding: 1.5rem 0; font-size: 0.9rem; }
.custom-link { color: #FFCE00; text-decoration: none; font-weight: bold; }
.custom-link:hover { color: #e63900; }
.cta-container { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.location-text { background-color: #e6fff9; color: #2E314B; font-size: 0.9rem; font-weight: 600; padding: 0.3rem 0.8rem; border-radius: 15px; text-align: center; white-space: nowrap; }
@media (max-width: 576px) { .location-text { font-size: 0.8rem; padding: 0.25rem 0.6rem; }
}
.top-bar { background-color: #FFCE00; color: #2E314B; padding: 10px 0; text-align: center; font-size: 14px; font-weight: 600; position: sticky; top: 0; z-index: 1001; }
.top-bar-link { color: #2E314B; text-decoration: underline; margin-left: 10px; font-weight: 700; }
.live-icon { display: inline-block; width: 8px; height: 8px; background-color: #e63946; border-radius: 50%; margin-right: 8px; animation: blink 1.5s infinite; }
@keyframes blink { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }
@media (max-width: 768px) { .top-bar { font-size: 12px; padding: 8px 5%; }
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.video-container iframe, .video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 206, 0, 0.9);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: transform 0.3s;
}

.video-container:hover .play-button {
    transform: scale(1.1);
}

.protocol-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.protocol-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.protocol-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid #FFCE00;
}

.step-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(0,0,0,0.05);
}

.protocol-icon img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 2px solid #FFCE00;
}

.protocol-card h3 {
    font-size: 1.3rem;
    color: #2E314B;
    margin-bottom: 15px;
}

.testimonial-slider {
    overflow: hidden;
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-item {
    min-width: 100%;
    padding: 40px;
    text-align: center;
    background: #fdfdfd;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
}

.quote-icon {
    font-size: 5rem;
    color: #FFCE00;
    line-height: 0;
    margin-bottom: 20px;
    opacity: 0.3;
}

.review-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    margin-bottom: 30px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.reviewer-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFCE00;
}

.stars { color: #FFCE00; letter-spacing: 2px; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active { background: #FFCE00; width: 25px; border-radius: 10px; }


.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.treatment-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: #FFCE00;
}

.treatment-icon {
    width: 80px;
    height: 80px;
    background: #fff9e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.treatment-icon img {
    width: 45px;
    height: 45px;
}

.treatment-card h3 {
    margin-bottom: 15px;
    color: #2E314B;
}

.treatment-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.learn-more {
    color: #2E314B;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.learn-more .arrow {
    transition: margin-left 0.3s;
}

.learn-more:hover .arrow {
    margin-left: 8px;
    color: #FFCE00;
}

.award-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.award-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    align-items: center;
}

.award-card {
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.award-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.award-img-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

/* Optional: Add a subtle gold glow on hover */
.award-card:hover {
    outline: 2px solid #FFCE00;
}

.surgery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.surgery-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.surgery-item:hover {
    transform: translateY(-5px);
}

.surgery-img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.surgery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.surgery-item:hover .surgery-img-box img {
    transform: scale(1.1);
}

.img-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(46, 49, 75, 0.8);
    color: #FFCE00;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.surgery-content {
    padding: 25px;
}

.surgery-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #2E314B;
}

.surgery-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.map-container {
    width: 100%;
    height: 450px;
    background: #eee;
    margin-bottom: -50px; /* Overlap effect */
    position: relative;
    z-index: 1;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
    margin-top: -50px;
}

.detail-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.detail-card h4 {
    margin: 15px 0 10px;
    color: #2E314B;
}

.detail-card p {
    font-size: 0.9rem;
    color: #666;
}

/* Desktop: Floating Bubbles on the right */
.floating-contact-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.whatsapp-btn { background-color: #25D366; }
.call-btn { background-color: #2E314B; border: 1px solid #FFCE00; }

.floating-btn img {
    width: 24px;
    height: 24px;
}

.floating-btn:hover {
    transform: scale(1.1);
}

/* Mobile: Fixed Bottom Bar */
@media (max-width: 768px) {
    .floating-contact-wrap {
        bottom: 0;
        right: 0;
        left: 0;
        flex-direction: row;
        gap: 0;
    }

    .floating-btn {
        flex: 1;
        border-radius: 0;
        justify-content: center;
        padding: 15px;
        box-shadow: none;
    }
    
    .btn-text { font-size: 0.9rem; }
}