/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    --primary: #0a192f;
    --accent: #f0a500;
    --light: #f4f7f6;
    --dark: #1e293b;
    --text: #475569;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --radius: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

body { 
    background-color: var(--light); 
    color: var(--text); 
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; }

::selection { background: var(--accent); color: var(--white); }

::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--primary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 6px; border: 3px solid var(--primary); }
::-webkit-scrollbar-thumb:hover { background: #d48e00; }

/* =========================================
   2. NAVBAR (Desktop Default)
   ========================================= */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: sticky; top: 0; z-index: 999999;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.nav-container { display: flex; justify-content: space-between; align-items: center; position: relative; }

.logo { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.logo span { color: var(--accent); }

.spiritual-text {
    position: absolute; left: 50%; transform: translateX(-50%);
    text-align: center; display: flex; flex-direction: column; justify-content: center;
}
.spiritual-text span { font-size: 0.8rem; font-weight: 700; color: var(--primary); line-height: 1.2; }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--primary); font-weight: 500; }
.nav-links a.active { color: var(--accent); }
.nav-links a.btn-primary.active { color: #ffffff !important; }

.btn-primary { background: var(--accent); color: var(--white); padding: 10px 20px; border-radius: var(--radius); font-weight: 600; }
.btn-primary:hover { background: #d48e00; color: white; }
.btn-main { display: inline-block; background: var(--accent); color: var(--white); padding: 12px 30px; border-radius: var(--radius); font-weight: 600; font-size: 1.1rem; }

/* Hamburger Hidden on Desktop */
.hamburger { display: none; }

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero { 
    height: 85vh; width: 100%; position: relative; display: flex; 
    align-items: center; justify-content: center; overflow: hidden;
}
.back-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10, 25, 47, 0.75); z-index: 0; }
.hero-content { position: relative; z-index: 1; color: var(--white); max-width: 800px; text-align: center; }
.hero-content h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.hero-content span { color: var(--accent); }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }

/* =========================================
   4. ABOUT PAGE LAYOUT (DESKTOP)
   ========================================= */
.about-content {
    display: flex;           /* Flexbox on */
    flex-direction: row;     /* Side-by-Side */
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    width: 100%;
}

.about-text { flex: 1; }
.about-image { flex: 1; display: flex; justify-content: center; }

/* Founder Image */
.about-image img {
    width: 100%;
    max-width: 300px;        /* Fixed Small Size */
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
}

.capabilities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 20px; }
.cap-card {
    background: #ffffff; border: 1px solid #e2e8f0; padding: 20px; border-radius: 10px;
    text-align: center; transition: 0.3s; box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.cap-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: 0 10px 15px rgba(0,0,0,0.1); }
.cap-card i { font-size: 1.5rem; color: var(--accent); margin-bottom: 10px; }
.cap-card span { font-weight: 600; color: var(--primary); }

.video-section { background: #f8fafc; padding-bottom: 80px; text-align: center; }
.video-wrapper { position: relative; width: 100%; height: 400px; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.2); margin-top: 30px; }
.about-video { width: 100%; height: 100%; object-fit: cover; }
.video-overlay-text { position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); color: white; }

/* =========================================
   5. CONTACT PAGE (DESKTOP)
   ========================================= */
.contact-wrapper { 
    display: flex;           /* Flexbox on */
    flex-direction: row;     /* Side-by-Side */
    gap: 50px; 
    align-items: flex-start; 
    background: var(--white); 
    padding: 50px; 
    border-radius: 20px; 
    box-shadow: var(--shadow); 
}
.contact-info, .contact-form-container { flex: 1; }
.info-item { display: flex; gap: 15px; margin-bottom: 30px; }
.info-item i { color: var(--accent); font-size: 1.2rem; margin-top: 5px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 600; font-size: 0.9rem; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; outline: none; }
.form-group input:focus { border-color: var(--accent); }
iframe { box-shadow: 0 5px 15px rgba(0,0,0,0.1); filter: grayscale(100%); transition: 0.3s; }
iframe:hover { filter: grayscale(0%); }

/* =========================================
   6. PRODUCTS PAGE
   ========================================= */
.page-header { background: var(--primary); color: var(--white); padding: 60px 0; text-align: center; position: relative; z-index: 1; }
.category-block { margin-bottom: 60px; }
/* --- Balanced Gaps for Product Page --- */

.category-title {
    border-left: 5px solid #f0a500;
    padding-left: 20px;
    margin-bottom: 40px; /* Reduced from 50px to bring grid closer */
    color: #0a192f;
    font-size: 1.8rem;
    font-weight: 700;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;        /* Keeps consistent space between cards */
    margin-top: 10px; /* Adds a tiny buffer between title and first row */
}

.product-card:hover { transform: translateY(-7px); box-shadow: 0 15px 30px rgba(10, 25, 47, 0.15); border-color: var(--accent); }
.product-card img {
    width: 100%; height: 250px; object-fit: contain; background: #ffffff;
    padding: 10px; border-bottom: none; transition: transform 0.5s ease;
}
.product-card:hover img { transform: scale(1.05); }
.p-details { padding: 20px; text-align: center; }
.p-details h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: 5px; font-weight: 700; }
.p-details p { font-size: 0.9rem; color: #64748b; }

/* =========================================
   7. MISC SECTIONS
   ========================================= */
.stats-section { background: var(--primary); padding: 60px 0; color: var(--white); }
.stats-container { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 30px; }
.stat-box { text-align: center; }
.number-wrapper { font-size: 4rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 10px; }
.stat-box p { font-size: 1.2rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: #cbd5e1; }

.founder-card-text-only {
    background: var(--white); border-radius: 20px; padding: 60px 40px; text-align: center;
    box-shadow: var(--shadow); border-top: 5px solid var(--accent); max-width: 800px; margin: 80px auto;
}
.founder-card-text-only h2 { font-size: 2.5rem; color: var(--primary); font-weight: 800; margin: 10px 0; }
.decorative-line { width: 60px; height: 3px; background: var(--accent); margin: 20px auto; }

.logos-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 20px; }
.client-logo { 
    font-size: 1.1rem; font-weight: 700; color: var(--primary); background: #ffffff;
    border: 1px solid #e2e8f0; padding: 12px 35px; border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05); transition: all 0.3s ease; cursor: default;
}
.client-logo:hover { background: var(--primary); color: var(--white); border-color: var(--primary); transform: translateY(-5px); }

/* --- Quality Promise Strip --- */
.quality-strip {
    background: #f8fafc;
    padding: 40px 0;
    border-bottom: 1px solid #e2e8f0;
}

.quality-flex {
    display: flex;
    justify-content: space-around; /* Spreads items evenly */
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.q-item {
    display: flex;
    align-items: center; /* Aligns icon next to text */
    gap: 15px;
    text-align: left;
}

.q-item i {
    font-size: 2.5rem;
    color: var(--accent); /* Gold Icon */
    margin-bottom: 0;
}

.q-item h4 {
    color: var(--primary);
    margin-bottom: 2px;
    font-weight: 700;
    font-size: 1.1rem;
}

.q-item p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* --- CTA Section --- */
.cta-section {
    background-color: var(--primary); border-top: 5px solid var(--accent);
    padding: 100px 20px; text-align: center; color: var(--white); margin-top: 60px;
}
.cta-section h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; color: var(--white); }
.cta-section p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 600px;
    
    /* THE FIX: 0 top, auto right, 40px bottom, auto left */
    margin: 0 auto 40px auto; 
}

/* Testimonials Section */
.testimonials-section {
    background: #ffffff;
    padding: 80px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid #f0a500; /* Gold Accent Line */
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.stars {
    color: #f0a500;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-card p {
    font-style: italic;
    color: #475569;
    margin-bottom: 20px;
    font-size: 1rem;
}

.review-card h4 {
    color: #0a192f;
    font-weight: 700;
    font-size: 0.95rem;
}

footer { background: var(--primary); color: var(--white); padding-top: 60px; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; padding-bottom: 40px; }
.footer-col h3 { color: var(--white); } .footer-col h4 { color: var(--accent); margin-bottom: 20px; }
.footer-col a { display: block; color: #cbd5e1; margin-bottom: 10px; }
.copyright { border-top: 1px solid rgba(255,255,255,0.1); text-align: center; padding: 20px 0; color: #94a3b8; font-size: 0.9rem; }

@keyframes pulse-green { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }
.whatsapp-float {
    position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px;
    background-color: #25d366; color: #FFF; border-radius: 50px;
    text-align: center; font-size: 35px; box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 100; display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease; animation: pulse-green 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); background-color: #1ebc57; }
#scrollToTopBtn {
    display: none; position: fixed; bottom: 30px; left: 30px; z-index: 99; border: none; outline: none; 
    background-color: var(--primary); color: white; cursor: pointer; padding: 15px; border-radius: 50%;
    font-size: 18px; box-shadow: 0 4px 10px rgba(0,0,0,0.3); transition: 0.3s;
}
#scrollToTopBtn:hover { background-color: var(--accent); transform: translateY(-5px); }

.fade-in { animation: fadeIn 1s ease-in; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================
   8. MOBILE RESPONSIVE (THE REAL FIX)
   ========================================= */
@media (max-width: 900px) {
    .spiritual-text { display: none; }
}

@media (max-width: 768px) {
    /* 1. FIXED NAVBAR (Solves the "Unclickable Menu" Issue) */
    .navbar {
        position: fixed !important; 
        width: 100%;
        top: 0;
        left: 0;
        z-index: 9999999 !important; /* Higher than anything */
        background: #ffffff !important;
        padding: 15px 0 !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    body { padding-top: 80px; } /* Push content down */

    /* 2. HAMBURGER ICON */
    .hamburger { 
        display: block !important;
        font-size: 1.8rem;
        line-height: 1;
        color: var(--primary);
        cursor: pointer;
        padding: 10px;
        margin-right: -10px;
        position: relative; 
        z-index: 10000000 !important; 
        pointer-events: auto;
    }
    
    .nav-container { padding: 0 20px; justify-content: space-between; }

    /* 3. MENU DRAWER */
    .nav-links { 
        display: none; 
        flex-direction: column; 
        position: fixed; 
        top: 70px; 
        left: 0; 
        width: 100%; 
        background: var(--white); 
        padding: 20px; 
        box-shadow: 0 10px 10px rgba(0,0,0,0.1); 
        z-index: 9999998;
        max-height: 80vh;
        overflow-y: auto;
    }
    .nav-links.active { display: flex; }

    /* 4. LAYOUT STACKING (Fixes About & Contact) */
    .contact-wrapper, 
    .about-content, 
    .stats-container { 
        flex-direction: column !important; 
        gap: 30px !important; 
    }
    
    .contact-info, 
    .contact-form-container, 
    .about-text, 
    .about-image { 
        width: 100% !important; 
        flex: none !important; 
    }
    
    .about-image { margin-top: 30px; justify-content: center; }
    
    .hero-content h1 { font-size: 2.2rem; }
    .video-wrapper { height: 250px; }
    .cta-section { padding: 60px 20px; }
    .cta-section h2 { font-size: 1.8rem; }
    
    /* Quality Strip Mobile */
    .quality-flex {
        flex-direction: column; /* Stack vertically on phones */
        align-items: flex-start;
        padding-left: 20px;
    }
}
/* --- FORCE GAP on Product Page --- */

/* 1. Add massive padding to the container holding the products */
.product-section {
    padding-top: 120px !important; /* 120px gap from the blue header */
}

/* 2. Push the First Title down even more */
.category-block:first-child h2 {
    margin-top: 40px !important;
}

/* 3. Ensure the Title itself has breathing room */
.category-title {
    margin-bottom: 50px !important; /* Pushes the product cards away from title */
    padding-top: 10px;
    padding-bottom: 10px;
}