/* Custom Scrollbar - Enforced Universally */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

/* Tooltip Styling */
.tooltip {
    position: relative;
    display: inline-block;
    cursor: help;
    /* border-bottom removed per user request */
}

.tooltip .tooltip-text {
    visibility: hidden;
    width: 280px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    /* Position above */
    left: 50%;
    margin-left: -140px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.85rem;
    line-height: 1.4;
    font-weight: normal;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Chrome/Edge/Safari */
::-webkit-scrollbar {
    display: none;
    /* Completely hide the scrollbar */
    width: 0;
    height: 0;
    background: transparent;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(93, 64, 55, 0.5);
    /* Use primary brown, semi-transparent for better visibility/aesthetic */
    border-radius: 4px;
    border: 2px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-color);
    /* Solid primary on hover */
}

/* Ensure no native scrollbar on root elements specifically */
html,
body {
    overflow-x: hidden;
    /* Prevent horizontal scrollbar */
    width: 100%;
}

/* Root variables */
:root {
    --primary-color: #5D4037;
    /* Earthy Brown */
    --secondary-color: #C2B280;
    /* Sober Ecru/Sand */
    --accent-color: #4A6E58;
    /* Muted Green */
    --dark-bg: #1a1a1a;
    --light-bg: #f5f5f0;
    --text-dark: #333;
    --text-light: #f5f5f5;
    --modal-bg: rgba(0, 0, 0, 0.85);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--light-bg);
}

h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;

    background-color: transparent;
    /* Revert to transparent for Home Page Hero */

    position: fixed;
    top: 0;

    width: 100%;
    z-index: 100;
    color: var(--text-light);
    transition: top 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
    /* Enhanced transition */
}

.navbar-hidden {
    top: -100px;
    /* Hide navbar by moving it up */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    /* Vertically align text and icons */
}

.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    width: 20px;
    height: 20px;
    fill: var(--text-light);
    /* Default color */
    transition: fill 0.3s, transform 0.3s;
}

.social-icon:hover {
    fill: var(--secondary-color);
    transform: scale(1.1);
}



.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('hero_background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.section {
    padding: 5rem 10%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

/* About Section */
.about {
    background-color: #fff;
}

.about-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
    font-size: 1.1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-image-placeholder {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* Stack image and logo */
    align-items: center;
    /* Center them */
    justify-content: center;
}

/* .img-box removed */

.profile-img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Services Split Screen */
.services-split {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.split {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: flex 0.5s ease;
    cursor: pointer;
    background-size: cover;
    background-position: center;
}

.split:hover {
    flex: 2;
}

.split .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s;
}

.split:hover .overlay {
    background-color: rgba(0, 0, 0, 0.2);
}

.split .content {
    z-index: 10;
    text-align: center;
    color: var(--text-light);
    transition: transform 0.3s;
    padding: 0 2rem;
    /* Add horizontal padding explicitly */
    display: flex;
    /* Use flex column to space items */
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    /* Gap between Title, Text, and Button */
}

.split:hover .content {
    transform: scale(1.1);
}

.split h2 {
    color: var(--text-light);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.btn-outline {
    /* margin-top removed in favor of flex gap */
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--text-light);
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--text-dark);
}

.split.left {
    background-image: url('kundalini_split.png');
    border-right: 2px solid #111;
    background-blend-mode: luminosity;
    background-color: #333;
}

.split.right {
    background-image: url('therapy_service.jpg');
    background-blend-mode: luminosity;
    background-color: #333;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--modal-bg);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    padding: 3rem;
    width: 90%;
    max-width: 700px;
    border-radius: 8px;
    position: relative;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
}

.pricing-badge {
    background-color: var(--accent-color);
    color: #fff;
    padding: 0.5rem 1rem;
    display: inline-block;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.modal-body h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.modal-footer {
    margin-top: 2rem;
    text-align: center;
    padding-bottom: 1rem;
}

/* Tooltip Styles */
.tooltip-trigger {
    position: relative;
    cursor: help;
    border-bottom: 1px dotted var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
}

.tooltip-text {
    visibility: hidden;
    width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    /* Position above */
    left: 50%;
    margin-left: -125px;
    /* Center */
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.85rem;
    font-weight: 400;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.tooltip-trigger:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Resources */
.resources {
    background-color: #f9f9f9;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-link {
    padding: 0.8rem 2rem;
    border: none;
    background-color: #e0e0e0;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
    border-radius: 5px;
}

.tab-link.active,
.tab-link:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.book-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.author-name {
    color: var(--secondary-color);
    font-weight: 500;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
}

.description {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.video-placeholder {
    width: 100%;
    height: 180px;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: none;
    /* Hide emoji if strictly using images, or remove class utilization */
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    filter: grayscale(100%);
}

.product-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

footer {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('hero_background.jpg');
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
    /* Parallax effect */
    color: #fff;
    text-align: center;
    padding: 2rem;
    margin-top: auto;
}

/* Branding & Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .services-split {
        flex-direction: column;
        height: auto;
    }

    .split {
        height: 50vh;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-content {
        flex-direction: column;
    }
}

/* New Bio Section Styles */
.contact-highlight {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
}

.whatsapp-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.academic-list {
    list-style-type: none;
    /* Custom bullets */
    padding-left: 0;
    margin: 1.5rem 0;
}

.academic-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.academic-list li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.video-container {
    margin-top: 2rem;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px dashed #ccc;
}

.video-placeholder {
    text-align: center;
    color: #666;
}

.seal-container {
    margin-top: 1rem;
    text-align: center;
}

.kri-seal {
    width: 160px;
    /* Increased size */
    height: auto;
    opacity: 0.9;
    margin-top: 1rem;
    /* Space from photo */
}

/* --- Visual Enhancements (Love & Dedication) --- */

/* 1. Hero Video */
.hero {
    position: relative;
    overflow: hidden;
    /* Maintain height logic from previous CSS, ensure it's 100vh */
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay for readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    /* Bring content above video and overlay */
}

/* 2. Glassmorphism Navbar */
.navbar {
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background-image: linear-gradient(rgba(40, 44, 52, 0.95), rgba(40, 44, 52, 0.95)), url('hero_background.jpg');
    background-size: cover;
    background-position: center top;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    padding: 0.8rem 5%;
}

/* 3. Enhanced Buttons */
.btn-primary {
    position: relative;
    overflow: hidden;
    z-index: 1;
}



.btn-primary:hover::after {
    opacity: 0.1;
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary:active {
    transform: scale(0.98) translateY(-1px);
}

/* 4. Testimonials Section */
.testimonials {
    background-color: #fcfcfc;
    border-top: 1px solid #eee;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--secondary-color);
    transition: transform 0.3s ease;
    position: relative;
    min-height: 200px;
    /* Ensure box shape when empty */
}

.testimonial-card::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    position: absolute;
    top: -10px;
    right: 20px;
    color: rgba(194, 178, 128, 0.2);
    /* Secondary color faint */
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.quote {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.05rem;
}

.author {
    font-weight: 600;
    color: var(--primary-color);
    text-align: right;
}

/* 5. Product Mockup Enhancements (CSS Only) */
.product-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
}

.product-card:hover {
    border-color: rgba(194, 178, 128, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.product-image {
    /* Remove grayscale, make it look more 'alive' */
    filter: none;
    transition: transform 0.5s ease;
    /* Add a subtle drop shadow to simulate a physical object */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card:hover .product-image {
    transform: scale(1.05) rotate(1deg);
}

/* --- Corrections & Layout Adjustments --- */

/* 1. Services: Remove Split Hover Effects */


.split {
    flex: 1 !important;
    /* Force equal width */
    cursor: default;
    /* Remove pointer cursor */
}

.split:hover {
    flex: 1 !important;
    /* Prevent expansion */
}

.split .overlay {
    background-color: rgba(0, 0, 0, 0.4);
    /* Fixed overlay */
}

.split:hover .overlay {
    background-color: rgba(0, 0, 0, 0.4);
    /* No change on hover */
}

.split .content {
    transform: none !important;
    /* Remove zoom effect */
}

.split:hover .content {
    transform: none !important;
}

/* 2. Store: Horizontal Layout (Small Image beside Name) */
.shop-grid {
    display: flex;
    flex-direction: column;
    /* Stack products vertically */
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.product-card {
    display: flex;
    align-items: center;
    /* Vertically center */
    padding: 1.5rem;
    text-align: left;
    /* Reset text align */
    flex-direction: row;
    /* Horizontal layout */
    gap: 2rem;
}

.product-image {
    width: 120px;
    /* Much smaller fixed width */
    height: 120px;
    border-radius: 50%;
    /* Circle look or rounded square */
    object-fit: cover;
    margin-bottom: 0;
    /* Remove bottom margin */
    flex-shrink: 0;
    /* Prevent shrinking */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

/* Container for text content to organize beside image */
.product-info-container {
    flex: 1;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: flex-start;
    /* Align left */
}