/* ============================================================
   OPTIMIZED COMBINED CSS — All 11-12 pages
   Deduplicated & cleaned by Claude
   ============================================================ */

/* ── CSS Variables ── */
:root {
    --primary-green: #2d5016;
    --secondary-green: #4a7c2c;
    --accent-gold: #d4af37;
    --light-cream: #f5f1e8;
    --dark-brown: #3e2723;
    --sage-green: #87a96b;
    --highlight: #1b5e20;
    --light-green-bg: #f1f8e9;

    /* Page-specific accent overrides (set per-page via body class) */
    --neuro-blue: #1976d2;
    /* default blue; overridden per page */
    --light-blue: #e3f2fd;
}

/* ── Reset ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ── Base ── */
body,
html {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden !important;
    position: relative;
    max-width: 100%;
    color: var(--dark-brown);
    background: var(--light-cream);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
}


section {
    overflow-x: hidden;
}

/* ── Animations ── */
@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }
}

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
    background: #eafff2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
    height: 100px;
    max-width: 100%;
    width: 100%;
    left: 0;
    right: 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .2);
}

.nav-logo {
    width: 85px;
    transition: all .3s ease;
}

.navbar-nav .nav-link {
    color: var(--accent-gold) !important;
    margin: 0 15px;
    font-weight: 700;
    transition: all .3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-gold) !important;
    transform: translateY(-2px);
}

/* Transparent navbar uses gold links */
.navbar.transparent .navbar-nav .nav-link {
    color: var(--accent-gold) !important;
    font-weight: 700;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Google Translate */
#google_translate_element select {
    border-radius: 20px;
    padding: 4px 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    }

    .navbar-collapse .navbar-nav .nav-link {
        color: var(--secondary-green) !important;
        font-weight: 900;
    }

    #google_translate_element {
        margin-top: 10px;
    }
}

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
    background:
        linear-gradient(135deg, rgba(27, 94, 32, .92), rgba(74, 124, 44, .88)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 300"><rect fill="%232d5016" width="1200" height="300"/><circle fill="%23d4af37" cx="100" cy="80" r="40" opacity="0.1"/><circle fill="%23d4af37" cx="1100" cy="220" r="60" opacity="0.08"/><circle fill="%23fff" cx="600" cy="150" r="200" opacity="0.03"/></svg>');
    background-size: cover;
    padding: 150px 0 100px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, .12) 0%, transparent 70%);
    animation: pulse 6s infinite;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, .3);
    position: relative;
    z-index: 2;
}

.page-title span {
    color: var(--accent-gold);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: .9;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
}

.breadcrumb-custom {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.breadcrumb-custom a {
    color: #fff;
    text-decoration: none;
    transition: all .3s ease;
}

.breadcrumb-custom a:hover {
    color: var(--accent-gold);
}

.breadcrumb-custom span {
    color: var(--accent-gold);
    margin: 0 10px;
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--light-green-bg) line-height: 1.8;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-custom {
    background: var(--accent-gold) !important;
    color: var(--dark-brown);
    margin-top: 10px !important;
    padding: 15px 40px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all .3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, .3);
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background: #f0c74f !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, .5);
    color: var(--dark-brown);
}

.btn-outline-custom {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    margin-top: 10px !important;
    padding: 15px 40px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    font-weight: 600;
    transition: all .3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    margin-left: 15px;
}

.btn-outline-custom:hover {
    background: #fff;
    color: var(--primary-green);
    transform: translateY(-3px);
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    color: var(--dark-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all .3s ease;
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
}

.scroll-top:hover {
    background: var(--primary-green);
    color: var(--accent-gold);
    transform: translateY(-5px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #eafff2;
    color: black;
    padding: 60px 0 30px;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--accent-gold);
}

.footer-links {
    color: black;
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: black;
    text-decoration: none;
    transition: all .3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    transition: all .3s ease;
    text-decoration: none;
    font-size: 1.2rem;
}

.social-icon:hover {
    color: #fff;
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 40px;
    padding-top: 30px;
    text-align: center;
    color: black;

}

/* ============================================================
   HERO SECTION (Homepage)
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #000;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: cover;
    z-index: 0;
    opacity: 0.8;
    transform: none !important;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, .3);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--light-cream);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons .btn {
    margin: 0 10px;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all .3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons .btn-outline-custom {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.95), rgba(74, 124, 44, .95));
    font-weight: 700;
    color: #fff;
}

.hero-buttons .btn-outline-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(45, 80, 22, 0.95);
}

.hero-image {
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    max-width: 100%;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, .3));
}

.heading-design {
    background: linear-gradient(135deg, #FFEB3B, #233b15);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* ============================================================
   ABOUT / WELCOME SECTION
   ============================================================ */
.welcome-section,
.about-section,
.overview-section {
    padding: 80px 0;
    background: #fff;
}

.welcome-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--accent-gold);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.welcome-text,
.overview-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 30px;
}

.about-content {
    padding-left: 50px;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .15);
}

.about-image img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

/* ── Stat boxes ── */
.stat-box {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    color: #fff;
    transition: all .4s ease;
    box-shadow: 0 10px 30px rgba(45, 80, 22, .25);
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(45, 80, 22, .35);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
}

.stat-label {
    font-size: .9rem;
    opacity: .9;
    margin-top: 5px;
}

/* About page inline stats */
.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item .stat-number {
    font-size: 2rem;
}

.stat-item .stat-label {
    color: var(--primary-green);
    font-weight: 600;
    margin-top: 10px;
}

/* ── Hospital image placeholder ── */
.hospital-img-box {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

.hospital-img-placeholder {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.hospital-img-placeholder::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(212, 175, 55, .1);
    border-radius: 50%;
    animation: float 5s ease-in-out infinite;
}

.hospital-img-placeholder p {
    font-size: 1rem;
    color: rgba(255, 255, 255, .8);
    margin-top: 15px;
    position: relative;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
}

/* ============================================================
   INFO / HIGHLIGHT / ALERT BOXES
   ============================================================ */
.highlight-box {
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    margin-top: 30px;
}

/* Green variant (default) */
.highlight-box.green {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: #fff;
}

.highlight-box.green h4 {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* Cream variant */
.highlight-box.cream {
    background: linear-gradient(135deg, var(--light-cream), #fff);
    border-left: 5px solid var(--accent-gold);
}

.highlight-box.cream h4 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
}

.highlight-box ul li {
    padding: 10px 0;
    color: #666;
    position: relative;
    padding-left: 35px;
    line-height: 1.6;
}

.highlight-box.green ul li {
    color: inherit;
}

/* Generic info/alert box */
.info-box,
.alert-box,
.stats-box {
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    margin-top: 25px;
    border-left-width: 5px;
    border-left-style: solid;
}

.info-box {
    background: linear-gradient(135deg, var(--light-blue, #e3f2fd), #fff);
    border-left-color: var(--neuro-blue);
}

.alert-box {
    background: linear-gradient(135deg, #ffebee, #fff);
    border-left-color: #d32f2f;
}

.stats-box {
    background: linear-gradient(135deg, #fce4ec, #fff);
    border-left-color: #e91e63;
}

.info-box h5,
.alert-box h5,
.stats-box h5 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
}

.info-box h5 {
    color: var(--neuro-blue);
}

.alert-box h5 {
    color: #d32f2f;
}

.stats-box h5 {
    color: #e91e63;
}

.info-box p,
.alert-box p,
.stats-box p {
    color: #666;
    margin: 0;
    line-height: 1.7;
}

/* ============================================================
   IMAGE PLACEHOLDER (treatment / service pages)
   ============================================================ */
.treatment-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .15);
    height: 100%;
}

.treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.treatment-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, .3), rgba(74, 124, 44, .3));
    opacity: 0;
    transition: all .4s ease;
}

.treatment-image:hover::before {
    opacity: 1;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(212, 175, 55, .1);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
}

/* ============================================================
   FEATURES / WHY CHOOSE US SECTION
   ============================================================ */
.features-section {
    padding: 90px 0;
    margin-top: 0;
    position: relative;
    z-index: 10;
    background: #fff;
}

.why-section {
    padding: 90px 0;
    background: var(--light-cream);
}

.feature-card,
.why-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all .4s ease;
    border: 2px solid transparent;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    margin-bottom: 25px;
}

.feature-card:hover,
.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, .2);
}

.why-card {
    background: var(--light-cream);
}

.why-card:hover {
    background: #fff;
    border-color: var(--primary-green);
    box-shadow: 0 15px 40px rgba(45, 80, 22, .15);
}

.feature-icon,
.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.9rem;
    color: var(--accent-gold);
    transition: all .4s ease;
}

.feature-card:hover .feature-icon,
.why-card:hover .why-icon {
    transform: rotate(360deg) scale(1.1);
}

.why-icon {
    width: 75px;
    height: 75px;
}

.feature-title,
.why-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.feature-text,
.why-text {
    color: #666;
    line-height: 1.8;
    font-size: .95rem;
}

.feature-title {
    font-size: 1.5rem;
}

/* ============================================================
   MISSION / VISION SECTION
   ============================================================ */
.mv-section {
    padding: 90px 0;
    background: var(--light-cream);
    position: relative;
    overflow: hidden;
}

.mv-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(45, 80, 22, .05);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.mv-card {
    border-radius: 25px;
    padding: 45px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .12);
    transition: all .4s ease;
    height: 100%;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .18);
}

.mv-card.mission {
    background: linear-gradient(145deg, var(--primary-green), var(--secondary-green));
    color: #fff;
    border: 3px solid rgba(212, 175, 55, .4);
}

.mv-card.vision {
    background: #fff;
    border: 3px solid var(--primary-green);
}

.mv-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.mission .mv-icon-wrap {
    background: rgba(212, 175, 55, .2);
    color: var(--accent-gold);
}

.vision .mv-icon-wrap {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--accent-gold);
}

.mv-label {
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.mission .mv-label {
    background: rgba(212, 175, 55, .2);
    color: var(--accent-gold);
}

.vision .mv-label {
    background: var(--primary-green);
    color: var(--accent-gold);
}

.mv-heading {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.mission .mv-heading {
    color: var(--accent-gold);
}

.vision .mv-heading {
    color: var(--primary-green);
}

.mv-hindi,
.mv-english {
    font-size: 1rem;
    line-height: 1.9;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.mission .mv-hindi {
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .85);
    border-left: 4px solid var(--accent-gold);
    font-style: italic;
}

.vision .mv-hindi {
    background: var(--light-green-bg);
    color: var(--primary-green);
    border-left: 4px solid var(--primary-green);
    font-style: italic;
}

.mission .mv-english {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border-left: 4px solid var(--accent-gold);
    font-size: 1.1rem;
}

.vision .mv-english {
    background: var(--light-green-bg);
    color: #444;
    border-left: 4px solid var(--secondary-green);
    font-size: 1.1rem;
}

.mv-quote-icon {
    font-size: 4rem;
    position: absolute;
    top: 20px;
    right: 30px;
    opacity: .08;
}

.mission .mv-quote-icon {
    color: #fff;
}

.vision .mv-quote-icon {
    color: var(--primary-green);
}

/* ============================================================
   OUR STORY TIMELINE
   ============================================================ */
.story-section {
    padding: 90px 0;
    background: var(--light-cream);
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-green), var(--secondary-green), var(--accent-gold));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 22px;
    height: 22px;
    background: var(--accent-gold);
    border: 4px solid var(--primary-green);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content {
    background: #fff;
    border-radius: 18px;
    padding: 30px 35px;
    width: 44%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
    transition: all .4s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 56%;
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--accent-gold);
    padding: 5px 18px;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.timeline-text {
    color: #666;
    line-height: 1.7;
    font-size: .95rem;
}

/* ============================================================
   TEAM / DOCTORS SECTION
   ============================================================ */
.team-section {
    padding: 90px 0;
    background: #fff;
}

.doctor-card {
    background: var(--light-cream);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
    transition: all .4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.doctor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold), var(--secondary-green));
    transform: scaleX(0);
    transition: all .4s ease;
}

.doctor-card:hover::before {
    transform: scaleX(1);
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .14);
    border-color: var(--primary-green);
    background: #fff;
}

.doctor-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 3rem;
    color: var(--accent-gold);
    border: 5px solid var(--accent-gold);
    box-shadow: 0 8px 25px rgba(45, 80, 22, .3);
}

.doctor-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.doctor-degree {
    color: var(--secondary-green);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: .95rem;
}

.doctor-spec {
    display: inline-block;
    background: var(--primary-green);
    color: var(--accent-gold);
    padding: 5px 18px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.doctor-bio {
    color: #666;
    font-size: .92rem;
    line-height: 1.7;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: #fff;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(212, 175, 55, .08);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.services-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(212, 175, 55, .05);
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
}

.service-pill {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50px;
    padding: 12px 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 8px;
    font-size: .95rem;
    transition: all .3s ease;
    cursor: default;
}

.service-pill:hover {
    background: rgba(212, 175, 55, .2);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.service-pill i {
    color: var(--accent-gold);
}

/* Service cards (homepage) */
.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    transition: all .4s ease;
    margin-bottom: 30px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.service-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.service-image i {
    font-size: 5rem;
    color: var(--accent-gold);
    transition: all .4s ease;
}

.service-card:hover .service-image i {
    transform: scale(1.2) rotate(10deg);
}

.services-img {
    width: 100%;
    height: 100%;
}

.service-content {
    padding: 30px;
}

.service-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-link {
    background: var(--accent-gold)0;
    padding: 10px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}

.service-link:hover {
    color: var(--secondary-green);
    padding-left: 10px;
}

/* ============================================================
   SYMPTOM CARDS
   ============================================================ */
.symptoms-section {
    padding: 80px 0;
}

.symptom-card {
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: all .4s ease;
    border: 2px solid transparent;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    margin-bottom: 30px;
    background: var(--light-cream);
}

.symptom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
    background: #fff;
    border-color: var(--accent-gold);
}

/* accent override via CSS var */
.symptom-card:hover {
    border-color: var(--neuro-blue, var(--accent-gold));
}

.symptom-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--neuro-blue, var(--primary-green)), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #fff;
    transition: all .4s ease;
}

.symptom-card:hover .symptom-icon {
    transform: rotate(360deg) scale(1.1);
}

.symptom-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.symptom-text {
    color: #666;
    font-size: .95rem;
}

/* ============================================================
   CAUSES SECTION
   ============================================================ */
.causes-section {
    padding: 80px 0;
    background: var(--light-cream);
}

.cause-item {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    transition: all .4s ease;
    border-left: 5px solid var(--neuro-blue, var(--accent-gold));
    overflow: hidden;
}

.cause-item:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .12);
}

.cause-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neuro-blue, var(--accent-gold)), #999);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    margin-right: 20px;
    font-size: 1.8rem;
    color: #fff;
}

.cause-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.cause-content p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   TREATMENT STEPS
   ============================================================ */
.treatment-section {
    padding: 80px 0;
    background: #fff;
}

.treatment-step {
    background: linear-gradient(135deg, var(--light-cream), #fff);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: all .4s ease;
}

.treatment-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--neuro-blue, var(--accent-gold));
}

.treatment-step:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neuro-blue, var(--primary-green)), #555);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.step-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 15px;
    padding-right: 80px;
}

.step-description {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ============================================================
   THERAPIES SECTION
   ============================================================ */
.therapies-section {
    padding: 80px 0;
    background: var(--light-cream);
}

.therapy-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: all .4s ease;
    height: 100%;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.therapy-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 0, 0, .05) 0%, transparent 70%);
    opacity: 0;
    transition: all .6s ease;
}

.therapy-card:hover::after {
    opacity: 1;
    top: -25%;
    right: -25%;
}

.therapy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.therapy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--neuro-blue, var(--accent-gold)), #555);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2.2rem;
    color: #fff;
    transition: all .4s ease;
    position: relative;
    z-index: 2;
}

.therapy-card:hover .therapy-icon {
    transform: scale(1.15) rotate(-5deg);
}

.therapy-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.therapy-description {
    color: #666;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
}

.therapy-benefits {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.therapy-benefits li {
    padding: 6px 0 6px 25px;
    color: #555;
    position: relative;
    font-size: .95rem;
}

.therapy-benefits li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--neuro-blue, var(--accent-gold));
}

/* ============================================================
   BENEFITS SECTION
   ============================================================ */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: #fff;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(212, 175, 55, .1);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.benefits-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(212, 175, 55, .08);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
}

.benefit-item {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, .2);
    transition: all .4s ease;
    position: relative;
    z-index: 2;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, .15);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit-text {
    opacity: .9;
    line-height: 1.7;
}

/* ============================================================
   HERBS / INGREDIENTS SECTION
   ============================================================ */
.herbs-section {
    padding: 80px 0;
    background: #fff;
}

.herb-card {
    background: var(--light-cream);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: all .4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.herb-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold), var(--secondary-green));
    transform: scaleX(0);
    transition: all .4s ease;
}

.herb-card:hover::before {
    transform: scaleX(1);
}

.herb-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
    background: #fff;
}

.herb-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--sage-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 3rem;
    transition: all .4s ease;
}

.herb-card:hover .herb-icon {
    transform: rotate(360deg) scale(1.1);
}

.herb-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.herb-sanskrit {
    font-style: italic;
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.herb-benefits {
    color: #666;
    line-height: 1.7;
}

/* ============================================================
   LIFESTYLE / TIPS GRID
   ============================================================ */
.lifestyle-section,
.exercises-section {
    padding: 80px 0;
}

.lifestyle-grid,
.exercise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.lifestyle-tip,
.exercise-tip {
    background: var(--light-cream);
    border-radius: 15px;
    padding: 30px 25px;
    transition: all .4s ease;
    border: 2px solid transparent;
}

.lifestyle-tip:hover,
.exercise-tip:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    background: #fff;
    border-color: var(--neuro-blue, var(--accent-gold));
}

.tip-icon,
.exercise-icon {
    font-size: 2.5rem;
    color: var(--neuro-blue, var(--accent-gold));
    margin-bottom: 15px;
}

.tip-title,
.exercise-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.tip-description,
.exercise-description {
    color: #666;
    line-height: 1.7;
    font-size: .95rem;
}

/* ============================================================
   DIET SECTION
   ============================================================ */
.diet-section {
    padding: 80px 0;
}

.diet-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.diet-card {
    background: var(--light-cream);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: all .4s ease;
}

.diet-card.recommended {
    border: 3px solid #4caf50;
}

.diet-card.avoid {
    border: 3px solid #f44336;
}

.diet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.diet-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.diet-header-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-right: 20px;
}

.diet-card.recommended .diet-header-icon {
    background: #e8f5e9;
    color: #4caf50;
}

.diet-card.avoid .diet-header-icon {
    background: #ffebee;
    color: #f44336;
}

.diet-header h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
    margin: 0;
}

.diet-list {
    list-style: none;
    padding: 0;
}

.diet-list li {
    padding: 10px 0 10px 30px;
    color: #666;
    position: relative;
    line-height: 1.6;
}

.diet-card.recommended .diet-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #4caf50;
}

.diet-card.avoid .diet-list li::before {
    content: '\f057';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #f44336;
}

/* ============================================================
   STAGES SECTION
   ============================================================ */
.stages-section {
    padding: 80px 0;
    background: var(--light-cream);
}

.stage-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: all .4s ease;
    height: 100%;
    margin-bottom: 30px;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.stage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-green), var(--neuro-blue, var(--accent-gold)));
    transform: scaleX(0);
    transition: all .4s ease;
}

.stage-card:hover::before {
    transform: scaleX(1);
}

.stage-card:hover {
    transform: translateY(-10px);
    border-color: var(--neuro-blue, var(--accent-gold));
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.stage-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--neuro-blue, var(--primary-green)), #555);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: .95rem;
}

.stage-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.stage-description {
    color: #666;
    line-height: 1.8;
}

/* ============================================================
   TYPE CARDS (service/treatment type pages)
   ============================================================ */
.types-section {
    padding: 80px 0;
    background: var(--light-cream);
}

.type-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: all .4s ease;
    height: 100%;
    margin-bottom: 30px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-green), var(--neuro-blue, var(--accent-gold)));
    transform: scaleX(0);
    transition: all .4s ease;
}

.type-card:hover::before {
    transform: scaleX(1);
}

.type-card:hover {
    transform: translateY(-10px);
    border-color: var(--neuro-blue, var(--accent-gold));
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--neuro-blue, var(--primary-green)), #555);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2.2rem;
    color: #fff;
    transition: all .4s ease;
}

.type-card:hover .type-icon {
    transform: rotate(10deg) scale(1.1);
}

.type-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.type-description {
    color: #666;
    line-height: 1.8;
}

/* ============================================================
   TRUST / CERTIFICATIONS SECTION
   ============================================================ */
.trust-section {
    padding: 80px 0;
    background: var(--light-cream);
}

.trust-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .07);
    transition: all .4s ease;
    border-bottom: 5px solid var(--primary-green);
    height: 100%;
    margin-bottom: 25px;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.trust-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.trust-text {
    color: #666;
    font-size: .9rem;
    line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
    padding: 100px 0;
    background: var(--primary-green);
    color: #fff;
}

.testimonial-card {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin: 20px;
    border: 1px solid rgba(255, 255, 255, .2);
    transition: all .4s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, .15);
    transform: translateY(-5px);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
    color: var(--primary-green);
}

.author-info h5 {
    margin: 0;
    color: var(--accent-gold);
}

.author-info p {
    margin: 0;
    opacity: .8;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, .97), rgba(74, 124, 44, .95));
    text-align: center;
    color: #fff;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.15rem;
    margin-bottom: 40px;
    opacity: .9;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-section {
    padding: 80px 0;
    background: #fff;
}

.contact-form-section {
    padding: 80px 0;
    background: var(--light-cream);
}

.info-card {
    background: linear-gradient(135deg, var(--light-cream), #fff);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: all .4s ease;
    height: 100%;
    margin-bottom: 30px;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, .2);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--accent-gold);
    transition: all .4s ease;
}

.info-card:hover .info-icon {
    transform: rotate(360deg) scale(1.1);
}

.info-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.info-text {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

.info-text a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: all .3s ease;
}

.info-text a:hover {
    color: var(--primary-green);
}

.form-container {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .1);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.form-control,
.form-select {
    border: 2px solid var(--light-cream);
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 1rem;
    transition: all .3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 .2rem rgba(212, 175, 55, .25);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: #fff;
    padding: 15px 50px;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(45, 80, 22, .3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(45, 80, 22, .5);
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
}

.map-section {
    padding: 80px 0;
    background: #fff;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .15);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.hospital-info {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .15);
}

.hospital-info h3 {
    color: var(--accent-gold);
    font-size: 2rem;
    margin-bottom: 20px;
}

.hospital-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.hospital-info i {
    color: var(--accent-gold);
    margin-right: 10px;
    width: 25px;
}

.hours-section {
    padding: 80px 0;
    background: var(--light-cream);
}

.hours-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.day-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-cream);
}

.day-row:last-child {
    border-bottom: none;
}

.day-name {
    font-weight: 600;
    color: var(--primary-green);
    font-size: 1.1rem;
}

.day-time {
    color: #666;
    font-size: 1.05rem;
}

.day-row.closed .day-time {
    color: #d32f2f;
    font-weight: 600;
}

.emergency-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    text-align: center;
    color: #fff;
}

.emergency-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.emergency-text {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: .9;
}

.emergency-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.emergency-number a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: all .3s ease;
}

.emergency-number a:hover {
    color: #f0c74f;
}

/* ============================================================
   PAGE-SPECIFIC ACCENT CLASSES
   Apply to <body> or a wrapper to override --neuro-blue
   ============================================================ */
/* Neurology / Stroke pages */
.accent-orange {
    --neuro-blue: #e65100;
    --light-blue: #fff3e0;
}

/* Gynecology pages */
.accent-pink {
    --neuro-blue: #c2185b;
    --light-blue: #fce4ec;
}

/* Cardiology pages */
.accent-red {
    --neuro-blue: #d32f2f;
    --light-blue: #ffebee;
}

/* Blue (default neurology) */
.accent-blue {
    --neuro-blue: #1976d2;
    --light-blue: #e3f2fd;
}

/* Women's health */
.accent-hotpink {
    --neuro-blue: #e91e63;
    --light-blue: #fce4ec;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        margin-top: 40px !important;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .emergency-title {
        font-size: 2rem;
    }

    .emergency-number {
        font-size: 2.5rem;
    }

    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .btn-outline-custom {
        margin-left: 0;
        margin-top: 15px;
    }

    .step-title {
        font-size: 1.3rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .cause-icon {
        float: none;
        margin: 0 auto 20px;
    }

    .mv-card {
        margin-bottom: 30px;
    }

    .form-container {
        padding: 30px 20px;
    }

    /* Timeline collapses to left-aligned */
    .timeline::before {
        left: 20px;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-content {
        width: 80%;
        margin-left: 50px !important;
    }
}

/* ── WA FLOAT ── */
.wa-float {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    text-decoration: none;
    transition: transform 0.3s;
}

.wa-float:hover {
    transform: scale(1.12);
}

.wa-float i {
    color: #fff;
    font-size: 1.6rem;
}

.wa-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8
    }

    100% {
        transform: scale(1.9);
        opacity: 0
    }
}

.social-float {
    position: fixed;
    bottom: 90px;
    /* WhatsApp ke upar aayega */
    right: 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.social-btn {
    display: flex;
    align-items: center;
    padding: 15px 15px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.social-btn img {
    width: 25px;
    height: 25px;
}

.social-btn span {
    margin-left: 8px;
    font-size: 14px;
    display: none;
}

/* Colors */
.fb {
    background: #3074cd;
}

.ig {
    background: linear-gradient(45deg, #feda75, #d62976, #962fbf);
}

/* Hover */
.social-btn:hover {
    transform: scale(1.05);
}

/* Desktop pe text show */
@media (min-width: 768px) {
    .social-btn span {
        display: inline;
    }
}