body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #fff8e1;
    color: #4e342e;
}

/* mandala glow */
body::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,193,7,0.08), transparent 70%);
    z-index: -1;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #5d4037;
}

.logo {
    height: 50px;
}

.navbar a {
    color: #ffe082;
    text-decoration: none;
    margin-left: 25px;
}

/* HERO */
.hero {
    position: relative;
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(135deg, #ffb300, #e65100);
    color: #fff;
    overflow: hidden;
}

/* YANTRA */
.yantra {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    height: 350px;
    transform: translate(-50%, -50%);
    opacity: 0.05;
    animation: rotateYantra 60s linear infinite;
}

@keyframes rotateYantra {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* LOGO GLOW */
.hero-logo {
    height: 110px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(255,215,0,0.8))
            drop-shadow(0 0 20px rgba(255,193,7,0.6));
    animation: glowPulse 3s infinite;
}

@keyframes glowPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* SHIMMER TEXT */
.shimmer-text {
    font-size: 3em;
    background: linear-gradient(90deg, #5d4037, #ffd54f, #fff8e1, #ffd54f, #5d4037);
    background-size: 200%;
    -webkit-background-clip: text;
    color: transparent;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200%; }
    100% { background-position: 200%; }
}

.sanskrit {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: 1.4em;
}

/* BUTTON */
.cta-btn {
    margin-top: 20px;
    padding: 14px 30px;
    background: #4e342e;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
}

/* SECTIONS */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

.section {
    margin-top: 80px;
    text-align: center;
}

.section h2 {
    color: #bf360c;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.card {
    background: #fff3e0;
    padding: 25px;
    border-radius: 12px;
}

.testimonial {
    background: #ffe0b2;
    padding: 20px;
    border-radius: 10px;
}

/* CTA STRIP */
.cta-strip {
    margin-top: 60px;
    padding: 40px;
    text-align: center;
    background: linear-gradient(135deg, #6d4c41, #3e2723);
    color: #ffe082;
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 15px 18px;
    border-radius: 50%;
    text-decoration: none;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    background: #5d4037;
    color: #ffe082;
}