/* ===== Header Styles (header.css) ===== */
:root {
    --saffron: #C77B30;
    --deep: #2E2E1F;
    --muted: #333333;
    --nav-bg: rgba(255, 255, 255, 0.95);
}

/* Reset basics for header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: var(--nav-bg);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.scrolled {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* inner layout */
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 20px;
    justify-content: space-between;
}

/* Logo */
.brand-logo {
    height: 56px;
    display: block;
}

/* NAV */
.header-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 22px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: var(--deep);
    font-weight: 500;
    padding: 8px 6px;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--saffron);
    text-decoration: underline;
}

/* Mobile menu button only visible on small screens */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 20px;
    color: var(--deep);
    margin-right: 8px;
}

/* Right CTAs */
.header-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.book-btn {
    background: var(--saffron);
    color: #fff;
    padding: 10px 16px;
    border-radius: 24px;
    /* 24px as requested */
    font-weight: 600;
    border: 0;
    font-family: 'Lato', sans-serif;
    box-shadow: 0 6px 18px rgba(199, 123, 48, 0.16);
}

.book-btn:hover {
    background: #b06926;
    transform: translateY(-2px);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--saffron);
    border: 2px solid var(--saffron);
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 18px;
}

.whatsapp-btn:hover {
    background: var(--saffron);
    color: #fff;
}

/* ========= Floating Contact Buttons ========= */
/* ========= Floating Contact Buttons ========= */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-buttons a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* WhatsApp */
.whatsapp-float {
    background-color: #25D366;
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.4);
}

/* Call Button */
.call-float {
    background-color: #198754;
    box-shadow: 0 4px 8px rgba(25, 135, 84, 0.4);
}

.floating-buttons a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* ========= Floating "Book Appointment" Button ========= */
.floating-cta {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 998;

}

/* Glowing Ayurvedic Gold Button */
.btn-book {
    background: linear-gradient(90deg, #b9932f, #d4af37);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    animation: glowPulse 3s ease-in-out infinite;
}

.btn-book:hover {
    background: linear-gradient(90deg, #d4af37, #b9932f);
    transform: translateY(-2px);
    color: #fff;
}

/* ========= Soft Glow Animation ========= */
@keyframes glowPulse {
    0% {
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }

    50% {
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
    }

    100% {
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }
}

/* ========= floating buttons ends ========= */


/* Responsive */
@media (max-width: 920px) {
    .nav-list {
        gap: 14px;
    }

    .header-inner {
        padding: 12px 14px;
    }
}

@media (max-width: 780px) {
    .header-inner {
        gap: 8px;
    }

    .brand-logo {
        height: 48px;
    }

    .mobile-menu-btn {
        display: inline-block;
    }

    .nav-list {
        position: absolute;
        top: 64px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--nav-bg);
        border-radius: 10px;
        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
        flex-direction: column;
        gap: 0;
        width: 90%;
        max-width: 420px;
        overflow: hidden;
        display: none;
        /* toggled by JS */
    }

    .nav-list.open {
        display: flex;
    }

    .nav-link {
        padding: 12px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        width: 100%;
        text-align: center;
    }

    .header-right {
        gap: 8px;
    }

    .book-btn {
        padding: 8px 12px;
        font-size: 15px;
    }
}


/* ========= HERO SECTION STYLES ========= */
/* ========= HERO SECTION STYLES ========= */
.hero-ayurveda {
    background: url("/images/font\ page\ background.png") center center / cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(28, 15, 2, 0.771),
            rgba(127, 159, 52, 0.25));
    z-index: 1;
}

.hero-ayurveda .container {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 2.3rem;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeDown 1s ease forwards;
}

.hero-subtext {
    font-size: 1.15rem;
    max-width: 580px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    animation: fadeDown 1.5s ease forwards;
}

/* Decorative Herbal Image */
.hero-decor {
    position: relative;
}

.hero-decor-img {
    max-width: 100%;
    height: 22rem;
    border-radius: 12px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 1.2s ease;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.hero-ayurveda.visible .hero-decor-img {
    opacity: 1;
    transform: translateX(0);
    animation: floatHerbs 6s ease-in-out infinite alternate;
}

/* Floating Motion */
@keyframes floatHerbs {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Fade Animations */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (min-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtext {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .hero-ayurveda {
        text-align: center;
    }
}

/* ========= DIYA PARTICLES CANVAS ========= */
#diya-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

/* ========= HERO SECTION STYLES ends ========= */


/* ========= HEALING THROUGH AYURVEDA ========= */
.healing-section {
    background: linear-gradient(180deg, #fffbe9, #f9f5e7);
    position: relative;
}

.section-title {
    font-size: 1.9rem;
    color: #0a6847;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* ========= AYURVEDA EXPLAINED ========= */
.ayurveda-explained {
    background: linear-gradient(to right, #f7fff5, #fff);
}

.ayurveda-explained h2 {
    color: #0a6847;
    font-size: 1.9rem;
}

.ayurveda-explained p {
    color: #444;
    line-height: 1.6;
}

.ayurveda-explained ul .icon {
    font-size: 1.4rem;
    margin-right: 8px;
}

.ayurveda-explained img {
    transition: transform 0.8s ease, box-shadow 0.8s ease;
}

.ayurveda-explained img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


@media (max-width: 992px) {

    .section-title,
    .ayurveda-explained h2 {
        font-size: 1.6rem;
        text-align: center;
    }

    .ayurveda-explained p {
        text-align: center;
    }
}

/* ends */

/* ========= TREATMENT CARDS ========= */
.treatment-section {
    background: linear-gradient(to bottom, #fffef5, #fdf7e9);
}

.treatment-card {
    background: #fff;
    border: 1px solid #eee;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.treatment-card .icon {
    font-size: 2rem;
}

/* ========= PANCHKARMA GRID ========= */
.panchkarma-card {
    background: #fff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.panchkarma-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.panchkarma-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.panchkarma-card:hover img {
    transform: scale(1.05);
}


/* ends */

/* ========= HEALING PACKAGES ========= */
.healing-packages {
    background: linear-gradient(to bottom, #fffdf6, #fdf7e9);
}

.package-card {
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.4s ease;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ========= SIGNATURE THERAPIES ========= */
.signature-therapies {
    background: #fbf9f4 url('images/leaf-watermark.png') no-repeat center/contain;
}

.therapy-card {
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.4s ease;
}

.therapy-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ends */

#testimonials {
    background: linear-gradient(180deg, #faf9f7, #ffffff);
}

.testimonial-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    color: #444;
}

.stars i {
    margin: 0 2px;
    font-size: 1.2rem;
}

/*ends */

/*FAQ Section*/
#faq {
    background: linear-gradient(180deg, #ffffff, #f8f9f7);
}

#faq .accordion-button {
    font-weight: 600;
    color: #1a4d2e;
    background-color: #f9f9f9;
    border-radius: 0.5rem;
}

#faq .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #6fbf73;
}

#faq .accordion-body {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

/* ends */

/*dieseases specified section*/
#ayurvedic-care .nav-tabs .nav-link {
    color: #1a4d2e;
    font-weight: 600;
    border: none;
}

#ayurvedic-care .nav-tabs .nav-link.active {
    color: #fff;
    background-color: #6fbf73;
    border-radius: 6px 6px 0 0;
}

#ayurvedic-care .tab-pane {
    background: #fff;
    border-radius: 0 0 10px 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

#call-to-action {
    background: linear-gradient(135deg, #6fbf73, #3b7a57);
}

#call-to-action .btn {
    border-radius: 30px;
    padding: 10px 22px;
    font-weight: 600;
}

/* ends */

/*healing section journey*/
#healing-process {
    background: #fffdf7;
}

#healing-process h2 {
    color: #2f5132;
}

.process-wrapper {
    gap: 15px;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    max-width: 180px;
    position: relative;
}

.process-step .circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6fbf73, #3b7a57);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 28px;
    margin: 0 auto 10px;
    position: relative;
}

.process-step .circle span {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: #fff;
    color: #3b7a57;
    border-radius: 50%;
    font-weight: 700;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.process-step h5 {
    font-weight: 600;
    color: #1a3e2a;
}

.process-step p {
    font-size: 14px;
    color: #555;
}

.arrow {
    font-size: 26px;
    color: #6fbf73;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .arrow {
        display: none;
    }

    .process-step {
        max-width: 100%;
    }
}

/* ends */

#testimonials {
    background: linear-gradient(rgba(255, 248, 220, 0.9),
            rgba(255, 248, 220, 0.9)),
        url("images/floral-bg-light.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.testimonial-card {
    max-width: 600px;
    background: #fffef8;
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-card img {
    border: 3px solid #d4a017;
    object-fit: cover;
}

.testimonial-card blockquote {
    color: #333;
    line-height: 1.6;
}

#testimonials h2 {
    color: #4b3b05;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #b0850a;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

/* ends */

/* doctor profile section */
#doctor-profile {
    background: linear-gradient(135deg, #fffdf5, #f9f3e3);
    color: #333;
}

.doctor-photo {
    border: 5px solid #d4a017;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.doctor-photo:hover {
    transform: scale(1.03);
}

#doctor-profile h3 {
    color: #3b3b06;
}

#doctor-profile blockquote {
    border-left: 4px solid #8a6d0f;
    padding-left: 15px;
    font-size: 1.1rem;
}

#doctor-profile .btn {
    background-color: #bfa020;
    border: none;
    font-weight: 600;
}

#doctor-profile .btn:hover {
    background-color: #a38715;
}
/* ends */

/* footer */
/* Footer Styling */
.footer {
    background-color: #2e2e1f;
    color: #ffffff;
    padding: 50px 20px 30px;
    font-family: 'Lato', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 120px;
    margin-bottom: 10px;
}

.footer h4 {
    font-family: 'Playfair Display', serif;
    color: #c77b30;
    margin-bottom: 15px;
    font-size: 20px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #c77b30;
    text-decoration: underline;
}

.tagline {
    color: #c77b30;
    font-size: 16px;
    margin-top: 5px;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #c77b30;
    color: #fff;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #e29e4f;
    transform: translateY(-4px);
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    font-size: 14px;
    color: #ddd;
}

.footer-bottom .disclaimer {
    margin-top: 5px;
    font-size: 13px;
    color: #bbb;
}

/* Responsive Footer */