/* ---------- Colors & Fonts (from your spec) ---------- */
:root {
    --saffron: #C77B30;
    /* H1, buttons */
    --olive: #2E2E1F;
    /* Subtext, headings */
    --herbal: #4B6043;
    /* optional accents */
    --text: #333333;
}

/* Global */
* {
    box-sizing: border-box
}

body {
    font-family: 'Lato', Arial, sans-serif;
    color: var(--text);
    margin: 0;
    padding: 0;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navbar */
.navbar-brand .brand-text {
    font-family: 'Playfair Display', serif;
    color: var(--saffron);
    font-size: 1.15rem;
}

.logo {
    height: 48px;
    width: auto;
}

/* ===== 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 WhatsApp */
.floating-wa {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 2200;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--saffron);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(199, 123, 48, 0.25);
    transition: transform 0.18s ease;
}

.floating-wa:hover {
    transform: translateY(-6px);
}

/* 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*/

/* 🌿 Hero Section */
.hero-section {
    position: relative;
    background: url('/images/herbs.png') center/cover no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #4A2C0A;
}

/* Golden overlay layer */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(255, 220, 160, 0.8), rgba(255, 235, 190, 0.85));
    backdrop-filter: blur(2px);
    z-index: 1;
}

/* ✨ Floating golden aura / glow animation */
.herbal-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 218, 124, 0.3), transparent 60%);
    animation: glowMotion 10s infinite linear;
    z-index: 0;
    opacity: 0.7;
}

@keyframes glowMotion {
    0% {
        transform: translate(-25%, -25%) scale(1);
    }

    50% {
        transform: translate(25%, 25%) scale(1.1);
    }

    100% {
        transform: translate(-25%, -25%) scale(1);
    }
}

.hero-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* ✨ Text styles */
.hero-left {
    flex: 1;
    text-align: left;
    animation: fadeInLeft 1.2s ease forwards;
}

.hero-left h1 {
    font-size: 2.7rem;
    font-weight: 700;
    color: #5C3317;
    margin-bottom: 1rem;
}

.hero-left h3 {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #573B1E;
    margin-bottom: 2rem;
}

/* Button */
.btn-hero {
    display: inline-block;
    background-color: #C77B30;
    color: #fff;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(199, 123, 48, 0.4);
}

.btn-hero:hover {
    background-color: #A66424;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(199, 123, 48, 0.6);
}

/* Right Image */
.hero-right {
    flex: 1;
    text-align: right;
    animation: fadeInRight 1.2s ease forwards;
}

.hero-right img {
    max-width: 400px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* 🌿 Fade-in Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 🌿 Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-left h3 {
        font-size: 1rem;
    }

    .hero-right img {
        max-width: 250px;
        margin-bottom: 1.5rem;
    }
}


/* ========== OUR STORY SECTION ========== */
.our-story {
    padding: 80px 5%;
    background: #fff8ef;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.our-story-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.our-story-left {
    flex: 1 1 45%;
}

.story-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.story-img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(199, 123, 48, 0.3);
}

.our-story-right {
    flex: 1 1 50%;
}

.our-story-right h2 {
    font-size: 2rem;
    color: #2f4f2f;
    margin-bottom: 20px;
    border-left: 5px solid #c77b30;
    padding-left: 12px;
}

.our-story-right p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.story-highlights {
    margin: 25px 0;
    list-style: none;
    padding: 0;
}

.story-highlights li {
    margin-bottom: 10px;
    font-weight: 500;
    color: #3b3b3b;
    display: flex;
    align-items: center;
}

.story-highlights li span {
    margin-left: 6px;
}

.btn-explore {
    display: inline-block;
    padding: 12px 30px;
    background: #c77b30;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-explore:hover {
    background: #a86425;
    transform: translateY(-3px);
}

/* ========== VOICE / AEO SECTION ========== */
.voice-aeo {
    margin-top: 60px;
    background: #fff5e0;
    border-left: 6px solid #c77b30;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.voice-aeo h3 {
    font-size: 1.5rem;
    color: #2f4f2f;
    margin-bottom: 20px;
    font-weight: 700;
}

.voice-aeo ul {
    list-style: none;
    padding: 0;
}

.voice-aeo li {
    font-size: 1.1rem;
    color: #3b3b3b;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.voice-aeo li::before {
    content: "🪔";
    margin-right: 8px;
    font-size: 1.1rem;
    color: #c77b30;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .our-story-container {
        flex-direction: column;
    }

    .our-story-right h2 {
        font-size: 1.6rem;
    }
}

/* ---------- END OF our story ---------- */


/* about the founder */

/* 🌿 Founder Section */
.about-founder-section {
    background: linear-gradient(to bottom right, #fffaf0, #fde4b8);
    padding: 80px 0;
}

.founder-img {
    max-width: 90%;
    border: 6px solid #e6c17a;
    border-radius: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.founder-img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(199, 123, 48, 0.4);
}

.founder-bio-box {
    background: #fffdf6;
    border-left: 6px solid #c77b30;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.founder-quote {
    font-style: italic;
    background: #fff5e0;
    padding: 20px;
    border-left: 5px solid #c77b30;
    margin-top: 20px;
    border-radius: 10px;
    color: #5c3b09;
}

.founder-quote footer {
    margin-top: 10px;
    text-align: right;
    font-weight: bold;
    color: #a15c2e;
}

.voice-phrases {
    background: #fff8e7;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(199, 123, 48, 0.2);
}

.voice-phrases li {
    margin: 8px 0;
    color: #66451c;
    font-size: 1.05rem;
}

/* founder section end */



/* 🌿 Vision & Mission Section */

.vision-mission-section {
    background: linear-gradient(to bottom right, #c77b30, #a85a10);
    padding: 90px 0;
    color: #fff;
    overflow: hidden;
}

.vision-mission-section .section-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}

.vm-card {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 22px;
    padding: 35px 25px;
    color: #fff;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.vm-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.vm-card h3 {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.vm-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.vm-list {
    list-style: none;
    padding-left: 0;
}

.vm-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.vm-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ffe9c1;
    font-weight: bold;
}

.voice-phrases {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 20px;
    margin-top: 50px;
}

.voice-phrases h4 {
    margin-bottom: 10px;
    font-weight: 600;
    color: #fff3d6;
}

/* 🌟 Fade Animations */
.fade-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-item.visible {
    opacity: 1;
    transform: translateY(0);
}

#core-principles {
    background: #fffaf1;
    padding: 80px 0;
}

/* vission end */


body {
    font-family: "Lato", system-ui, Arial, sans-serif;
    margin: 0;
    background: #f7f3ee;
}

.core-section {
    background: #fffaf1;
    padding: 80px 0;
}

.core-section .section-title {
    color: #7b4b12;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 8px;
}

.core-section .section-subtext {
    text-align: center;
    color: #6b5533;
    margin-bottom: 30px;
}

.pillar-card {
    background: #fff;
    border: 1px solid #e3c88a;
    border-radius: 20px;
    padding: 28px 18px;
    box-shadow: 0 4px 20px rgba(223, 198, 137, 0.2);
    transition: all 0.4s ease;
    height: 100%;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(223, 198, 137, 0.4);
    background: #fff9e6;
}

.pillar-icon {
    background: #fff3cf;
    color: #c77b30;
    font-size: 28px;
    width: 72px;
    height: 72px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 203, 101, 0.5);
    transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon {
    background: #c77b30;
    color: #fff;
}

.pillar-card h5 {
    font-weight: 600;
    color: #5b3d0a;
    margin-bottom: 10px;
    text-align: center;
}

.pillar-card p {
    font-size: 15px;
    color: #5e5137;
    text-align: center;
}

.seo-text {
    color: #7a6341;
    margin-top: 28px;
    text-align: center;
}

/* ===== fade animation helpers ===== */
.fade-section,
.fade-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-section.visible,
.fade-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== responsive tweak for small screens ===== */
@media (max-width: 575px) {
    .pillar-icon {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }

    .pillar-card {
        padding: 22px 12px;
    }
}

/*facilities section*/
.facilities-section {
    background: linear-gradient(135deg, #fff7ec, #fde8b6);
    padding: 80px 0;
}

.facilities-text {
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.facilities-text:hover {
    transform: translateY(-5px);
}

.section-title {
    color: #6b3e26;
    font-weight: 700;
}

.facility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facility-list li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-facility {
    background: #c77b30;
    color: #fff;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-facility:hover {
    background: #a55f18;
    color: #fff;
}

.carousel-inner img {
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

/* ---------- END OF facilities section ---------- */

/* recognitions section */

.recognitions-section {
    background: linear-gradient(135deg, #e6f7e6, #c8e6c9);
    padding: 80px 0;
    text-align: center;
}

.section-title {
    color: #2e5339;
    font-weight: 700;
    font-size: 2rem;
}

.subtitle {
    font-style: italic;
    color: #4a6b4a;
    font-size: 1.1rem;
}

.recognition-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    opacity: 0;
    /* hidden before animation */
    transform: translateY(30px);
}

.recognition-box.show {
    opacity: 1;
    transform: translateY(0);
}

.recognition-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.recognition-box .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #3b6b3b;
}

.recognition-box h5 {
    font-size: 1rem;
    color: #2e5339;
    font-weight: 600;
}

@media (max-width: 768px) {
    .recognition-box {
        padding: 20px 10px;
    }
}

/*end of recognitions section*/

/* a wrod from our founder */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,400;1,600&display=swap');

.founder-quote-section {
    background: linear-gradient(90deg, #c77b30, #d99a4b);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}

.founder-quote-section.show {
    opacity: 1;
    transform: translateY(0);
}

.founder-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
}

.founder-name {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
}

@media (max-width: 768px) {
    .founder-quote {
        font-size: 22px;
    }

    .founder-name {
        font-size: 0.95rem;
    }
}

/* ----------call to action section--------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Open+Sans:wght@400;600&display=swap');

.cta-section {
    background: linear-gradient(90deg, #e0a24c, #c77b30);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}

.cta-section.show {
    opacity: 1;
    transform: translateY(0);
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-subtext {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons .btn-cta {
    background: #fff;
    color: #c77b30;
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 22px;
    margin: 5px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

/* Hover & Focus Effects */
.cta-buttons .btn-cta:hover {
    background: #c77b30;
    color: #fff;
    border: 1px solid #fff;
}

/* ✨ Golden Glow Animation */
.glow-btn {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    animation: goldenGlow 2s ease-in-out infinite alternate;
}

@keyframes goldenGlow {
    from {
        box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
    }

    to {
        box-shadow: 0 0 18px rgba(255, 255, 200, 0.8);
    }
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 26px;
    }

    .cta-subtext {
        font-size: 16px;
    }
}

/* ---------- end   ---------- */


/* 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 */