/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3e 25%, #2d1b69 50%, #4c2885 75%, #663399 100%);
    color: #ffffff;
    position: relative;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -2;
    pointer-events: none;
}

/* Background Animations */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Twinkling Stars Animation */
.stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 50%;
    background: transparent;
}

.stars-container::before,
.stars-container::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: #ffffff;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

.stars-container::before {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.stars-container::after {
    top: 35%;
    left: 25%;
    animation-delay: 1.5s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Generate multiple stars */
.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #ffffff;
    border-radius: 50%;
    animation: twinkle 2s infinite;
}

/* Trident Rays Animation */
.trident-rays {
    display: none;
}

.trident-rays::before {
    content: '🔱';
    position: absolute;
    bottom: 10%;
    right: 10%;
    font-size: 3rem;
    opacity: 0.3;
    animation: glow-trident 3s ease-in-out infinite;
}

@keyframes pulse-rays {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

@keyframes glow-trident {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
    50% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 165, 0, 0.6); }
}

/* Chakra Symbols Animation */
.chakra-symbols-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.chakra-symbol {
    position: absolute;
    width: 60px;
    height: 60px;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    animation: float-chakra 18s infinite linear;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.9),
        0 0 30px rgba(255, 255, 255, 0.6),
        0 0 45px rgba(255, 255, 255, 0.3);
}

.chakra-symbol::before {
    content: '🔆';
    animation: rotate-chakra 3s linear infinite;
    display: block;
    filter: hue-rotate(200deg) brightness(1.2);
}

/* Different chakra animations */
@keyframes float-chakra {
    0% {
        transform: translateX(-100px) translateY(100vh) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 100px)) translateY(-100px) scale(1.2);
        opacity: 0;
    }
}

@keyframes float-chakra-reverse {
    0% {
        transform: translateX(calc(100vw + 100px)) translateY(-100px) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(-100px) translateY(100vh) scale(1.2);
        opacity: 0;
    }
}

@keyframes float-chakra-diagonal {
    0% {
        transform: translateX(-100px) translateY(-100px) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 100px)) translateY(calc(100vh + 100px)) scale(1.5);
        opacity: 0;
    }
}

@keyframes rotate-chakra {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Chakra size variations */
.chakra-symbol.small {
    width: 40px;
    height: 40px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.5);
}

.chakra-symbol.medium {
    width: 60px;
    height: 60px;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.9),
        0 0 30px rgba(255, 255, 255, 0.6),
        0 0 45px rgba(255, 255, 255, 0.3);
}

.chakra-symbol.large {
    width: 80px;
    height: 80px;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 1),
        0 0 40px rgba(255, 255, 255, 0.7),
        0 0 60px rgba(255, 255, 255, 0.4);
}

/* Animation variations */
.chakra-symbol.reverse {
    animation: float-chakra-reverse 22s infinite linear;
}

.chakra-symbol.diagonal {
    animation: float-chakra-diagonal 20s infinite linear;
}

.chakra-symbol.slow {
    animation-duration: 28s;
}

.chakra-symbol.fast {
    animation-duration: 14s;
}

/* Shankh Symbols Animation */
.shankh-symbols-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.shankh-symbol {
    position: absolute;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    animation: float-shankh 16s infinite linear;
    text-shadow: 
        0 0 12px rgba(255, 255, 255, 0.9),
        0 0 24px rgba(255, 255, 255, 0.6),
        0 0 36px rgba(255, 255, 255, 0.3);
}

.shankh-symbol::before {
    content: '🐚';
    animation: wobble-shankh 2s ease-in-out infinite;
    display: block;
}

/* Shankh animations */
@keyframes float-shankh {
    0% {
        transform: translateX(-100px) translateY(100vh) rotate(0deg) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 100px)) translateY(-100px) rotate(180deg) scale(1.3);
        opacity: 0;
    }
}

@keyframes float-shankh-reverse {
    0% {
        transform: translateX(calc(100vw + 100px)) translateY(-100px) rotate(0deg) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(-100px) translateY(100vh) rotate(-180deg) scale(1.3);
        opacity: 0;
    }
}

@keyframes float-shankh-spiral {
    0% {
        transform: translateX(20vw) translateY(100vh) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    25% {
        transform: translateX(80vw) translateY(75vh) rotate(90deg) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateX(20vw) translateY(50vh) rotate(180deg) scale(1.2);
        opacity: 1;
    }
    75% {
        transform: translateX(80vw) translateY(25vh) rotate(270deg) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(50vw) translateY(-100px) rotate(360deg) scale(0.8);
        opacity: 0;
    }
}

@keyframes wobble-shankh {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-5deg) scale(1.05);
    }
    75% {
        transform: rotate(5deg) scale(0.95);
    }
}

/* Shankh size variations */
.shankh-symbol.small {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.5);
}

.shankh-symbol.medium {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 
        0 0 12px rgba(255, 255, 255, 0.9),
        0 0 24px rgba(255, 255, 255, 0.6),
        0 0 36px rgba(255, 255, 255, 0.3);
}

.shankh-symbol.large {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.7),
        0 0 45px rgba(255, 255, 255, 0.4);
}

/* Shankh animation variations */
.shankh-symbol.reverse {
    animation: float-shankh-reverse 20s infinite linear;
}

.shankh-symbol.spiral {
    animation: float-shankh-spiral 24s infinite linear;
}

.shankh-symbol.slow {
    animation-duration: 22s;
}

.shankh-symbol.fast {
    animation-duration: 12s;
}

/* Aum Symbols Animation */
.aum-symbols-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.aum-symbol {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    animation: float-aum 20s infinite linear;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.9),
        0 0 20px rgba(255, 255, 255, 0.7),
        0 0 30px rgba(255, 255, 255, 0.5);
}

.aum-symbol::before {
    content: 'ॐ';
}

/* Different Aum symbol animations */
@keyframes float-aum {
    0% {
        transform: translateX(-100px) translateY(100vh) rotate(0deg) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 100px)) translateY(-100px) rotate(360deg) scale(1.2);
        opacity: 0;
    }
}

@keyframes float-aum-reverse {
    0% {
        transform: translateX(calc(100vw + 100px)) translateY(-100px) rotate(0deg) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(-100px) translateY(100vh) rotate(-360deg) scale(1.2);
        opacity: 0;
    }
}

@keyframes float-aum-diagonal {
    0% {
        transform: translateX(-100px) translateY(-100px) rotate(0deg) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 100px)) translateY(calc(100vh + 100px)) rotate(720deg) scale(1.5);
        opacity: 0;
    }
}

@keyframes float-aum-spiral {
    0% {
        transform: translateX(50vw) translateY(100vh) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translateX(30vw) translateY(50vh) rotate(180deg) scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(70vw) translateY(-100px) rotate(360deg) scale(0.5);
        opacity: 0;
    }
}

/* Aum symbol size variations */
.aum-symbol.small {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 
        0 0 8px rgba(255, 255, 255, 0.8),
        0 0 16px rgba(255, 255, 255, 0.6);
}

.aum-symbol.medium {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.9),
        0 0 20px rgba(255, 255, 255, 0.7),
        0 0 30px rgba(255, 255, 255, 0.5);
}

.aum-symbol.large {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 
        0 0 12px rgba(255, 255, 255, 1),
        0 0 24px rgba(255, 255, 255, 0.8),
        0 0 36px rgba(255, 255, 255, 0.6);
}

/* Animation variations */
.aum-symbol.reverse {
    animation: float-aum-reverse 25s infinite linear;
}

.aum-symbol.diagonal {
    animation: float-aum-diagonal 22s infinite linear;
}

.aum-symbol.spiral {
    animation: float-aum-spiral 18s infinite linear;
}

.aum-symbol.slow {
    animation-duration: 30s;
}

.aum-symbol.fast {
    animation-duration: 15s;
}

/* Shiva Trident with Light Streaks */
.shiva-trident-container {
    display: none;
}

.trident-base {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

.trident-symbol {
    font-size: 6rem;
    color: #ffd700;
    text-shadow: 
        0 0 30px rgba(255, 215, 0, 0.9),
        0 0 60px rgba(255, 215, 0, 0.7),
        0 0 90px rgba(255, 215, 0, 0.5),
        0 0 120px rgba(255, 165, 0, 0.3);
    animation: trident-glow 3s ease-in-out infinite;
    z-index: 2;
    position: absolute;
    bottom: 20px;
    right: 24px;
}

@keyframes trident-glow {
    0%, 100% {
        text-shadow: 
            0 0 30px rgba(255, 215, 0, 0.9),
            0 0 60px rgba(255, 215, 0, 0.7),
            0 0 90px rgba(255, 215, 0, 0.5),
            0 0 120px rgba(255, 165, 0, 0.3);
        transform: scale(1);
    }
    50% {
        text-shadow: 
            0 0 40px rgba(255, 215, 0, 1),
            0 0 80px rgba(255, 215, 0, 0.9),
            0 0 120px rgba(255, 215, 0, 0.7),
            0 0 160px rgba(255, 165, 0, 0.5),
            0 0 200px rgba(255, 140, 0, 0.3);
        transform: scale(1.08);
    }
}

.light-streaks {
    position: absolute;
    bottom: 0;
    right: 24px;
    left: auto;
    transform: none;
    width: 100vw;
    height: 100vh;
    z-index: 1;
}

.light-streak {
    position: absolute;
    bottom: 100px;
    right: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(to top, 
        rgba(255, 215, 0, 0.9) 0%,
        rgba(255, 165, 0, 0.8) 20%,
        rgba(255, 255, 255, 0.6) 40%,
        rgba(255, 255, 255, 0.4) 70%,
        transparent 100%);
    transform-origin: bottom center;
    animation: light-streak-emit 3s ease-out infinite;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.streak-1 {
    transform: rotate(-45deg);
    animation-delay: 0s;
}

.streak-2 {
    transform: rotate(-22.5deg);
    animation-delay: 0.6s;
}

.streak-3 {
    transform: rotate(0deg);
    animation-delay: 1.2s;
}

.streak-4 {
    transform: rotate(22.5deg);
    animation-delay: 1.8s;
}

.streak-5 {
    transform: rotate(45deg);
    animation-delay: 2.4s;
}

.streak-6 {
    transform: rotate(-67.5deg);
    animation-delay: 0.3s;
}

.streak-7 {
    transform: rotate(67.5deg);
    animation-delay: 0.9s;
}

.streak-8 {
    transform: rotate(-90deg);
    animation-delay: 1.5s;
}

.streak-9 {
    transform: rotate(90deg);
    animation-delay: 2.1s;
}

@keyframes light-streak-emit {
    0% {
        height: 0;
        opacity: 0;
    }
    15% {
        height: 30vh;
        opacity: 1;
    }
    50% {
        height: 70vh;
        opacity: 0.9;
    }
    85% {
        height: 95vh;
        opacity: 0.7;
    }
    100% {
        height: 100vh;
        opacity: 0;
    }
}

/* Additional light particles */
.trident-base::before,
.trident-base::after {
    content: '';
    position: absolute;
    bottom: 50px;
    width: 4px;
    height: 4px;
    background: rgba(255, 215, 0, 0.8);
    border-radius: 50%;
    animation: light-particle 4s ease-in-out infinite;
}

.trident-base::before {
    left: 30%;
    animation-delay: 0s;
}

.trident-base::after {
    right: 30%;
    animation-delay: 2s;
}

@keyframes light-particle {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translateY(-80px) scale(1.5);
        opacity: 0.8;
    }
    90% {
        opacity: 1;
    }
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1000;
    background: rgba(10, 10, 35, 0.85);
    backdrop-filter: blur(20px);
    border: none;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar:hover {
    background: rgba(10, 10, 35, 0.9);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.logo-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease;
}

.logo-btn:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    background: transparent !important;
    background-color: transparent !important;
    mix-blend-mode: multiply;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(10px);
    letter-spacing: -0.01em;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-1px);
}

.nav-btn.active {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 107, 53, 0.2));
    border-color: rgba(255, 215, 0, 0.4);
    color: #ffd700;
    font-weight: 600;
}

/* Main Content */
.main-content {
    position: relative;
}

.section {
    min-height: 100vh;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
    pointer-events: none;
}

.hero-section {
    padding-top: 140px;
}

.about-section,
.faqs-section {
    padding-top: 120px;
}

/* Get Started Page Styles */
.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 3rem;
}

.hero-left {
    flex: 2;
    text-align: left;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-mockup {
    max-width: 300px;
    width: 100%;
    height: auto;
    background: transparent !important;
    background-color: transparent !important;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
    border-radius: 20px;
}

.app-mockup:hover {
    transform: scale(1.05);
}

.mockup-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #333;
    border-radius: 3px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4a1a4a, #2d1b69);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.app-header {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
}

.ganesha-icon {
    font-size: 4rem;
    filter: sepia(1) hue-rotate(25deg) saturate(2);
}

.app-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .hero-headline {
        align-items: center;
    }
    
    .headline-line-1,
    .headline-line-2,
    .headline-line-3 {
        white-space: normal;
        word-break: break-word;
        hyphens: auto;
    }
    
    .app-mockup {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .headline-line-1,
    .headline-line-2,
    .headline-line-3 {
        font-size: inherit;
        line-height: 1.3;
        margin-bottom: 0.3rem;
    }
}

.hero-badge {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffd700;
    letter-spacing: 0.01em;
}

.hero-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    word-wrap: break-word;
}

.headline-line-1,
.headline-line-2,
.headline-line-3 {
    display: block;
    color: #00E5FF;
    white-space: nowrap;
    width: 100%;
    margin-bottom: 0.5rem;
}

.headline-line-1 {
    color: #00E5FF;
    font-weight: 600;
}

.headline-line-2 {
    color: #00E5FF;
    font-weight: 500;
    align-self: center;
    text-align: center;
}

.headline-line-3 {
    color: #00E5FF;
    font-weight: 700;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    line-height: 1.65;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    border: none;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-1px);
}

.btn-waitlist {
    background: linear-gradient(135deg, #9d4edd, #c77dff);
    border: none;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
    box-shadow: 0 4px 20px rgba(157, 78, 221, 0.3);
    margin-top: 1rem;
}

.btn-waitlist:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(157, 78, 221, 0.4);
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.btn-waitlist-inline {
    background: linear-gradient(135deg, #9d4edd, #c77dff);
    border: none;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
    box-shadow: 0 2px 10px rgba(157, 78, 221, 0.3);
    display: inline-block;
    flex-shrink: 0;
}

.btn-waitlist-inline:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.4);
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.highlight-strip {
    position: relative;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    border-radius: 50px;
    padding: 1rem 2rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.glow-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    animation: glow-sweep 2s ease-in-out infinite;
}

@keyframes glow-sweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

.highlight-text {
    position: relative;
    z-index: 1;
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.2rem);
}

/* About Page Styles */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

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

.content-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.content-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.founder-photos {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.founder-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.founder-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.founder-photo:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.founder-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin: 0;
    margin-bottom: 0.25rem;
}

.founder-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffd700;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.card-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-weight: 400;
}

.vision-section,
.mission-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.section-text {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.sparkle-text {
    position: relative;
    overflow: hidden;
}

.sparkle-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: sparkle-sweep 4s ease-in-out infinite;
}

@keyframes sparkle-sweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

.contact-section {
    margin-top: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-3px);
}

.contact-icon {
    flex-shrink: 0;
}

.spiritual-symbol {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.contact-content {
    flex: 1;
    text-align: left;
}

.contact-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.contact-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.contact-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #ff6b35;
}

/* Waitlist Popup Overlay Styles */
.waitlist-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.waitlist-popup {
    background: rgba(10, 10, 35, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(20px);
    position: relative;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: popupFadeIn 0.3s ease-out;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.8);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    transition: all 0.2s ease;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffd700;
    transform: scale(1.1);
}

.waitlist-header {
    margin-bottom: 2.5rem;
}

.waitlist-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.waitlist-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    line-height: 1.5;
}

.waitlist-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.email-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.email-input:focus {
    outline: none;
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

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

.btn-notify {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    border: none;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.btn-notify:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.btn-notify:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    font-size: 0.9rem;
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    display: block;
}

/* Mobile responsive for waitlist popup */
@media (max-width: 768px) {
    .waitlist-overlay {
        padding: 1rem;
    }
    
    .waitlist-popup {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .form-group {
        gap: 1rem;
    }
    
    .btn-waitlist-inline {
        margin-left: 0.5rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .highlight-strip {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        text-align: center;
    }
    
    .btn-waitlist-inline {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

/* Footer Section Styles */
.footer-section {
    background: rgba(10, 10, 35, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1.5rem 0;
    margin-top: 4rem;
}

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

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

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

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

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

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    cursor: pointer;
}

.footer-link:hover {
    color: #ffd700;
}

.contact-details {
    margin-top: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #ffd700;
    animation: slideDown 0.3s ease-out;
}

.contact-details p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-details a {
    color: #ffd700;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

/* Legal Popup Overlay Styles */
.legal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.legal-popup {
    background: rgba(10, 10, 35, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    position: relative;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: popupFadeIn 0.3s ease-out;
}

.legal-content {
    padding: 3rem 2.5rem;
}

.legal-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    text-align: center;
}

.legal-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
}

.legal-text p {
    margin-bottom: 1.5rem;
}

.legal-text strong {
    color: #ffd700;
    font-weight: 600;
}

.legal-text a {
    color: #ffd700;
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}

.back-btn {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffd700;
    transform: translateX(-2px);
}

/* Mobile responsive for footer and legal popups */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-section {
        padding: 2rem 0 1rem 0;
    }
    
    .legal-overlay {
        padding: 1rem;
    }
    
    .legal-popup {
        margin: 1rem;
        max-height: 85vh;
    }
    
    .legal-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .legal-popup {
        margin: 0.5rem;
        max-height: 90vh;
    }
    
    .legal-content {
        padding: 1.5rem 1rem;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.spiritual-icon {
    font-size: 1.5rem;
}

.contact-details a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #ff6b35;
}

/* FAQs Page Styles */
.faqs-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.faqs-header {
    text-align: center;
    margin-bottom: 3rem;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.accordion-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 1.75rem 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 500;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}

.accordion-header:hover {
    color: #ffd700;
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.accordion-content p {
    padding: 0 2rem 2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
    font-size: 1rem;
    font-weight: 400;
}

.accordion-content a {
    color: #ffd700;
    text-decoration: none;
}

.accordion-content a:hover {
    color: #ff6b35;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        position: fixed !important;
        top: 15px;
        left: 15px;
        right: 15px;
        background: rgba(10, 10, 35, 0.9);
        border-radius: 16px;
        z-index: 9999;
        transform: none !important;
        transition: none !important;
    }

    .nav-container {
        padding: 0.625rem 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        flex-shrink: 0;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .nav-menu {
        display: flex;
        gap: 0.5rem;
        flex-shrink: 0;
    }

    .nav-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        border-radius: 8px;
        white-space: nowrap;
    }

    .section {
        padding: 1rem;
        min-height: 100vh;
    }

    .hero-section {
        padding-top: 120px;
    }

    .about-section,
    .faqs-section {
        padding-top: 100px;
    }

    .hero-container {
        gap: 1.5rem;
        min-height: 70vh;
        padding: 1rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .content-card {
        padding: 2rem;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .contact-content {
        text-align: center;
    }

    .accordion-header {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .accordion-content p {
        padding: 0 1.5rem 1.5rem;
    }

    .trident-rays::before {
        font-size: 2rem;
    }

    /* Reduce chakra symbol sizes on mobile */
    .chakra-symbol.small {
        width: 30px;
        height: 30px;
        font-size: 1.5rem;
    }

    .chakra-symbol.medium {
        width: 45px;
        height: 45px;
        font-size: 2.25rem;
    }

    .chakra-symbol.large {
        width: 60px;
        height: 60px;
        font-size: 3rem;
    }

    /* Reduce shankh symbol sizes on mobile */
    .shankh-symbol.small {
        font-size: 1.5rem;
    }

    .shankh-symbol.medium {
        font-size: 2rem;
    }

    .shankh-symbol.large {
        font-size: 2.5rem;
    }

    /* Reduce Aum symbol sizes on mobile */
    .aum-symbol.small {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.7);
        text-shadow: 
            0 0 6px rgba(255, 255, 255, 0.8),
            0 0 12px rgba(255, 255, 255, 0.6);
    }

    .aum-symbol.medium {
        font-size: 1.5rem;
        color: rgba(255, 255, 255, 0.8);
        text-shadow: 
            0 0 8px rgba(255, 255, 255, 0.9),
            0 0 16px rgba(255, 255, 255, 0.7);
    }

    .aum-symbol.large {
        font-size: 1.8rem;
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 1),
            0 0 20px rgba(255, 255, 255, 0.8);
    }

    /* Adjust Shiva Trident for mobile */
    .trident-symbol {
        font-size: 4.5rem;
        bottom: 15px;
    }

    .light-streak {
        bottom: 80px;
        width: 2.5px;
    }
}

@media (max-width: 480px) {
    .navbar {
        position: fixed !important;
        top: 10px;
        left: 10px;
        right: 10px;
        border-radius: 14px;
        z-index: 9999;
        transform: none !important;
        transition: none !important;
    }

    .nav-container {
        padding: 0.5rem 0.75rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .nav-menu {
        gap: 0.25rem;
    }

    .nav-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        white-space: nowrap;
        min-width: auto;
    }

    .section {
        padding: 0.75rem;
    }

    .hero-section {
        padding-top: 110px;
    }

    .hero-container {
        min-height: 70vh;
        padding: 0.75rem;
        gap: 1.25rem;
    }

    .hero-badge {
        padding: 0.375rem 1rem;
    }

    .badge-text {
        font-size: 0.8rem;
    }

    .content-card {
        padding: 1.5rem;
    }

    .card-icon {
        font-size: 2.5rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .accordion-header {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .accordion-content p {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.95rem;
    }

    /* Further adjust Shiva Trident for small mobile */
    .trident-symbol {
        font-size: 3.5rem;
        bottom: 10px;
    }

    .light-streak {
        bottom: 60px;
        width: 2px;
    }
}

/* Additional Stars for Enhanced Effect */
.star-1 { top: 10%; left: 20%; animation-delay: 0s; }
.star-2 { top: 25%; left: 35%; animation-delay: 0.5s; }
.star-3 { top: 15%; left: 45%; animation-delay: 1s; }
.star-4 { top: 35%; left: 15%; animation-delay: 1.5s; }
.star-5 { top: 40%; left: 40%; animation-delay: 2s; }
.star-6 { top: 20%; left: 30%; animation-delay: 2.5s; }

/* Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.background-container * {
    will-change: transform, opacity;
}

.animated-text {
    will-change: background-position;
}

.chakra-symbol {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.aum-symbol {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.shankh-symbol {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.trident-symbol {
    will-change: transform;
    backface-visibility: hidden;
}

.light-streak {
    will-change: height, opacity;
    backface-visibility: hidden;
}
