
        :root {
            --bg-color: #F0FFDF;
            --text-color: #005F02;
            --accent-soft: rgba(255, 255, 255, 0.4);
            --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        body {
            font-family: 'Domine', serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            margin: 0;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Fixed Background Parallax Logic */
        .fixed-hero {
            height: 100vh;
            background-image: url('https://i.pinimg.com/1200x/e8/c2/ac/e8c2aca7a9e22768a14505fd8dcd3886.jpg');
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            position: relative;
        }

        .fixed-about {
            height: 80vh;
            background-image: url('https://i.pinimg.com/736x/fd/c9/51/fdc95139e462cc4f26e83ecb10a4119d.jpg');
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            position: relative;
        }

        .overlay-soft {
            position: absolute;
            inset: 0;
            background: rgba(240, 255, 223, 0.15);
            backdrop-filter: contrast(1.1);
        }

        /* Marquee Animation */
        .marquee-container {
            overflow: hidden;
            white-space: nowrap;
            padding: 4rem 0;
            border-top: 1px solid rgba(0, 95, 2, 0.1);
            border-bottom: 1px solid rgba(0, 95, 2, 0.1);
        }

        .marquee-content {
            display: inline-block;
            animation: marquee 40s linear infinite;
            font-size: 2.5rem;
            font-weight: 400;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        @keyframes marquee {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        /* Navigation Underline Effect */
        .nav-link {
            position: relative;
            padding-bottom: 4px;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: 0;
            left: 0;
            background-color: var(--text-color);
            transition: var(--transition-smooth);
        }
        .nav-link:hover::after {
            width: 100%;
        }

        /* Button Styling */
        .btn-healthboga {
            background-color: var(--text-color);
            color: #F0FFDF;
            padding: 1.2rem 3rem;
            font-weight: 500;
            transition: var(--transition-smooth);
            display: inline-block;
            border: none;
            cursor: pointer;
        }
        .btn-healthboga:hover {
            background-color: #008f04;
            transform: translateY(-2px);
        }

        /* Modal / Quick View Style */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 95, 2, 0.2);
            backdrop-filter: blur(15px);
            z-index: 1000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .page-view { display: none; }
        .page-view.active { display: block; animation: fadeIn 0.8s ease-out; }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--bg-color); }
        ::-webkit-scrollbar-thumb { background: var(--text-color); }

