/* Global Styles */
:root {
    --primary-color: #FF9933;
    --secondary-color: #138808;
    --accent-color: #000080;
    --text-color: #333;
    --light-bg: #f8f8f8;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Header Styles */
.main-nav {
    background-color: var(--white);
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/temple-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 4rem 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Categories Section */
.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    background-color: var(--light-bg);
}

.category-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-card h2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: var(--secondary-color);
}

/* Featured Section */
.featured {
    padding: 4rem 2rem;
}

.featured h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Footer */
footer {
    background: linear-gradient(to right, #1a1a1a, #333);
    color: white;
    padding: 5rem 2rem 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-newsletter {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.footer-newsletter h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-newsletter p {
    color: #ccc;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.footer-newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    background: rgba(255,255,255,0.05);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.footer-newsletter-input::placeholder {
    color: rgba(255,255,255,0.5);
}

.footer-newsletter-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255,153,51,0.2);
}

.footer-newsletter-button {
    padding: 0.8rem 1.8rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.footer-newsletter-button:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.footer-section {
    padding: 0 1rem;
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: #888;
}

a.footer-links {
    color: var(--primary-color);
}

a.footer-terms {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .footer-newsletter-form {
        flex-direction: column;
    }
    
    .footer-newsletter-button {
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        margin-top: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
} 





* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f2f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-section {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 10rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    perspective: 1500px;
    transform-style: preserve-3d;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s infinite linear;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    animation: floatContent 8s ease-in-out infinite;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent 70%);
    filter: blur(8px);
    transform: translateZ(-20px);
    animation: parallaxBg 25s infinite alternate ease-in-out;
    z-index: 1;
}

.hero-section::after {
    content: '🕉';
    position: absolute;
    font-size: 25rem;
    opacity: 0.15;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(-15px) rotateY(45deg);
    animation: rotateOm 30s infinite linear;
    text-shadow: 0 0 50px rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    transform: translateZ(80px);
    text-shadow:
        2px 2px 0 rgba(0, 0, 0, 0.5),
        4px 4px 0 rgba(0, 0, 0, 0.3),
        6px 6px 30px rgba(0, 0, 0, 0.5);
    animation: heroTitleAnim 1.5s ease-out;
    background: linear-gradient(45deg, #fff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-title::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.5;
    transform: translateZ(70px);
    filter: blur(8px);
    animation: glowPulse 3s infinite;
}

.hero-subtitle {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    transform: translateZ(50px);
    text-shadow:
        1px 1px 0 rgba(0, 0, 0, 0.5),
        2px 2px 15px rgba(0, 0, 0, 0.5);
    animation: heroSubtitleAnim 1.5s ease-out 0.3s backwards;
    background: linear-gradient(45deg, #fff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: linear-gradient(45deg, var(--primary-color), #ffb366);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    transform: translateZ(100px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: heroButtonAnim 1.5s ease-out 0.6s backwards;
    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(255, 153, 51, 0.2);
    letter-spacing: 0.5px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg) translateY(-100%);
    transition: all 0.5s ease;
}

.cta-button:hover {
    background: linear-gradient(45deg, #ffb366, var(--primary-color));
    transform: translateZ(100px) translateY(-5px);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 153, 51, 0.3);
    letter-spacing: 1px;
}

.cta-button:hover::before {
    transform: rotate(45deg) translateY(100%);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transform-style: preserve-3d;
    z-index: 2;
}

.floating-element {
    position: absolute;
    font-size: 3rem;
    opacity: 0.3;
    filter: drop-shadow(0 0 15px rgba(255, 153, 51, 0.5));
    animation: floatAround 20s infinite linear;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translate(0, 0) translateZ(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    50% {
        transform: translate(var(--tx), var(--ty)) translateZ(var(--tz)) scale(1.5);
    }
}

@keyframes parallaxBg {
    0% {
        transform: translateZ(-20px) scale(1.2) rotate(0deg);
    }

    100% {
        transform: translateZ(-20px) scale(1.3) rotate(5deg);
    }
}

@keyframes floatContent {
    0% {
        transform: translateZ(30px) rotateX(0deg);
    }

    50% {
        transform: translateZ(80px) rotateX(2deg);
    }

    100% {
        transform: translateZ(30px) rotateX(0deg);
    }
}

@keyframes heroTitleAnim {
    from {
        opacity: 0;
        transform: translateZ(-150px) rotateX(30deg);
        filter: blur(20px);
    }

    to {
        opacity: 1;
        transform: translateZ(80px) rotateX(0deg);
        filter: blur(0);
    }
}

@keyframes heroSubtitleAnim {
    from {
        opacity: 0;
        transform: translateZ(-100px);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateZ(50px);
        filter: blur(0);
    }
}

@keyframes heroButtonAnim {
    from {
        opacity: 0;
        transform: translateZ(-100px) scale(0.8);
    }

    to {
        opacity: 1;
        transform: translateZ(100px) scale(1);
    }
}

@keyframes floatAround {
    0% {
        transform: translate(0, 0) translateZ(50px) rotate(0deg) scale(1);
    }

    33% {
        transform: translate(100px, 100px) translateZ(150px) rotate(120deg) scale(1.2);
    }

    66% {
        transform: translate(-50px, 150px) translateZ(-50px) rotate(240deg) scale(0.8);
    }

    100% {
        transform: translate(0, 0) translateZ(50px) rotate(360deg) scale(1);
    }
}

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

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.features-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.feature-card:hover .feature-icon {
    color: white;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.feature-card p {
    transition: all 0.4s ease;
}

.popular-section {
    background: var(--light-bg);
    padding: 4rem 2rem;
    perspective: 2000px;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.popular-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.popular-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.popular-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease;
    border-radius: 15px 15px 0 0;
}

.popular-card:hover .popular-image {
    transform: scale(1.05);
}

.popular-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.popular-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    min-height: 3rem;
}

.popular-content p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.popular-content .cta-button {
    align-self: flex-start;
    margin-top: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.quote-section {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/om-pattern.png');
    opacity: 0.1;
    animation: floatBackground 30s linear infinite;
}

.quote-text {
    font-size: 2rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInScale 1s ease-out;
}

.quote-text::before,
.quote-text::after {
    content: '"';
    font-size: 4rem;
    position: absolute;
    opacity: 0.3;
}

.quote-text::before {
    left: -2rem;
    top: -1rem;
}

.quote-text::after {
    right: -2rem;
    bottom: -2rem;
}

@keyframes floatBackground {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 100% 100%;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .popular-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .popular-image {
        height: 250px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .popular-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .popular-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 3D Animation Effects */
@keyframes floatEffect {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes glowPulse {
    0% {
        text-shadow: 0 0 10px rgba(255, 165, 0, 0.5), 0 0 20px rgba(255, 165, 0, 0.3);
    }

    50% {
        text-shadow: 0 0 20px rgba(255, 165, 0, 0.8), 0 0 30px rgba(255, 165, 0, 0.5);
    }

    100% {
        text-shadow: 0 0 10px rgba(255, 165, 0, 0.5), 0 0 20px rgba(255, 165, 0, 0.3);
    }
}

@keyframes smokeEffect {
    0% {
        opacity: 0;
        transform: translateY(0) scale(1);
    }

    50% {
        opacity: 0.3;
        transform: translateY(-20px) scale(1.5);
    }

    100% {
        opacity: 0;
        transform: translateY(-40px) scale(2);
    }
}

.hero-title {
    animation: glowPulse 3s infinite;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.feature-card {
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateZ(50px) rotateX(10deg) rotateY(10deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.2), transparent);
    transform: translate(-50%, -50%);
    animation: smokeEffect 3s infinite;
    pointer-events: none;
}

.popular-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.popular-card:hover {
    animation: floatEffect 3s infinite;
}

.popular-image {
    transition: transform 0.5s ease;
}

.popular-card:hover .popular-image {
    transform: scale(1.1) translateZ(30px);
}

/* Mystical Overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(45deg, rgba(0, 0, 0, 0.7), transparent),
        radial-gradient(circle at center, rgba(255, 165, 0, 0.1), transparent);
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* Quote Section Enhancement */
.quote-section {
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '🕉';
    position: absolute;
    font-size: 15rem;
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: rotateOm 20s infinite linear;
}

/* Smoke Effect for Feature Icons */
.feature-icon::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.1), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
}

/* 3D Text Effect */
.hero-title,
.section-title {
    text-shadow:
        2px 2px 0 #000,
        4px 4px 0 rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
}

/* Mystical Background Pattern */
.features-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(30deg, rgba(255, 165, 0, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(255, 165, 0, 0.05) 87.5%, rgba(255, 165, 0, 0.05)),
        linear-gradient(150deg, rgba(255, 165, 0, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(255, 165, 0, 0.05) 87.5%, rgba(255, 165, 0, 0.05)),
        linear-gradient(30deg, rgba(255, 165, 0, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(255, 165, 0, 0.05) 87.5%, rgba(255, 165, 0, 0.05)),
        linear-gradient(150deg, rgba(255, 165, 0, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(255, 165, 0, 0.05) 87.5%, rgba(255, 165, 0, 0.05));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    pointer-events: none;
    opacity: 0.3;
}

/* Scroll Animation */
.feature-card,
.popular-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-card.visible,
.popular-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* New Sections Styles */
.testimonials-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.experience-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 2rem 0;
    perspective: 1000px;
}

.experience-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 1.5rem;
    will-change: transform;
}

.experience-card {
    min-width: 300px;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    position: relative;
    opacity: 0.7;
    transform: scale(0.95);
}

.experience-card.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.experience-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.experience-content {
    text-align: center;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.experience-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
    transform: translateZ(20px);
}

.experience-author {
    font-weight: 600;
    color: #666;
    transform: translateZ(30px);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.prev-btn,
.next-btn {
    background: #4a90e2;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.prev-btn::before,
.next-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.prev-btn:hover,
.next-btn:hover {
    background: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.prev-btn:hover::before,
.next-btn:hover::before {
    transform: translateX(100%);
}

@media (max-width: 768px) {
    .experience-card {
        min-width: 250px;
    }
}

.stats-section {
    padding: 4rem 2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="50" y="50" font-size="20" fill="rgba(255,255,255,0.05)" text-anchor="middle">🕉</text></svg>');
    opacity: 0.1;
    animation: floatBackground 30s linear infinite;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 2.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    transform: translateZ(-1px);
    transition: all 0.5s ease;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stat-item:hover::before {
    transform: translateZ(-1px) scale(1.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #fff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transition: all 0.5s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.stat-label {
    font-size: 1.3rem;
    opacity: 0.9;
    transition: all 0.5s ease;
}

.stat-item:hover .stat-label {
    transform: translateY(-5px);
    opacity: 1;
}

@keyframes floatBackground {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 100% 100%;
    }
}

@keyframes statPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.stat-item.animate {
    animation: statPulse 2s infinite;
}

.newsletter-section {
    padding: 4rem 2rem;
    background: var(--light-bg);
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    box-shadow: 0 0 10px rgba(255, 153, 51, 0.3);
}

.newsletter-button {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Enhanced Footer Styles */
footer {
    background: linear-gradient(to right, #1a1a1a, #333);
    color: white;
    padding: 5rem 2rem 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-newsletter {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.footer-newsletter h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-newsletter p {
    color: #ccc;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.footer-newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.footer-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 153, 51, 0.2);
}

.footer-newsletter-button {
    padding: 0.8rem 1.8rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.footer-newsletter-button:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .footer-newsletter-form {
        flex-direction: column;
    }

    .footer-newsletter-button {
        width: 100%;
    }
}

a.footer-links {
    color: #ff9933;
}

a.footer-terms {
    color: #ff9933;
}

.footer-section {
    padding: 0 1rem;
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #888;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.live-clock {
    font-size: 1.2rem;
    color: #ff9933;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 200px;
}

.live-clock:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.live-clock i {
    color: #ff9933;
}

.clock-time {
    font-size: 1.1rem;
    font-weight: bold;
}

.clock-date {
    font-size: 0.9rem;
    opacity: 0.9;
}

.theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 50px;
    padding-left: 21px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ff9933;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.main_div_nav {
    display: flex;
    align-items: center;
}

.main_div_nav i.fas.fa-moon {
    font-size: 20px;
}

/* Dark theme styles */
body.dark-theme {
    --primary-color: #ff9933;
    --secondary-color: #ffb366;
    --light-bg: #1a1a1a;
    background-color: #121212;
    color: #ffffff;
}

body.dark-theme .feature-card,
body.dark-theme .popular-card {
    background: #2d2d2d;
    color: #ffffff;
}

body.dark-theme .footer-section h3,
body.dark-theme .footer-links a {
    color: #ff9933;
}

body.dark-theme .footer-links a:hover {
    color: #ffb366;
}




/* mantra */
.mantra-list {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.mantra-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.mantra-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.mantra-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mantra-card:hover::before {
    opacity: 1;
}

.deity-image {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 4px solid var(--primary-color);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.mantra-card:hover .deity-image {
    transform: scale(1.05);
}

.mantra-content {
    margin-top: 1.5rem;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #444;
    max-height: 350px;
    overflow-y: auto;
    padding-right: 1rem;
    position: relative;
}

.mantra-content::-webkit-scrollbar {
    width: 6px;
}

.mantra-content::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
}

.mantra-content::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}

.mantra-card h2 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.mantra-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
}

.mantra-card .content {
    width: 100%;
    position: relative;
}

.mantra-card .benefits {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0,0,0,0.03);
    border-radius: 15px;
    text-align: left;
}

.mantra-card .benefits h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.mantra-card .benefits ul {
    list-style-type: none;
    padding-left: 1rem;
}

.mantra-card .benefits li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.mantra-card .benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

@media (max-width: 768px) {
    .mantra-list {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 2rem;
    }

    .mantra-card {
        padding: 1.5rem;
    }

    .mantra-card h2 {
        font-size: 1.5rem;
    }

    .deity-image {
        width: 120px;
        height: 120px;
    }

    .mantra-content {
        font-size: 1.1rem;
    }
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/vedic-mantra.webp');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
    min-height: 60vh;
    width: 100%;
}

.hero-contentm {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    animation: fadeInDown 1s ease-out;
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.3s backwards;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
    font-weight: 500;
    line-height: 1.4;
}

.hero-search {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero-search input {
    width: 100%;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.hero-search input::placeholder {
    color: #666;
    font-style: italic;
}

.hero-search button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    padding: 0 1.8rem;
    border: none;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.hero-search button:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }
}
