/* CSS Variables for Color Scheme */
:root {
    --primary-color: #FF6B35; /* Kumkum Red */
    --secondary-color: #FFD700; /* Gold */
    --accent-color: #FFA500; /* Turmeric Orange */
    --text-color: #333;
    --light-bg: #FFF8DC; /* Light Turmeric */
    --white: #fff;
    --shadow: rgba(255, 107, 53, 0.2);
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --kumkum-gradient: linear-gradient(135deg, #FF6B35 0%, #FF4500 100%);
}

/* Animation Keyframes */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.8); }
}

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

@keyframes morphing {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

@keyframes pulse-glow {
    0%, 100% { 
        transform: scale(1);
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.05);
        filter: brightness(1.2);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes rotate3D {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

/* Particle Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(135deg, #fff8e1 0%, #fff3e0 100%);
}

#particles-js::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/SHUMA_002.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.5;
    filter: brightness(0.7) contrast(1.05);
}

#particles-js canvas {
    position: relative;
    z-index: 1;
}

/* Enhanced Logo Animation */
.logo-circle {
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    border-radius: 50%;
    position: relative;
    animation: morphing 4s ease-in-out infinite, glow 2s ease-in-out infinite;
}

.logo-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--kumkum-gradient);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Enhanced Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 0 40px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 15, 18, 0.4) 0%, rgba(13, 13, 15, 0.6) 100%);
    z-index: 1;
}

.hero-carousel {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 70vh;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.carousel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 70vh;
}

.carousel-text {
    max-width: 600px;
}

.carousel-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-image .hero-main-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.carousel-image .hero-main-image:hover {
    transform: scale(1.02);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 30px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.carousel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot.active {
    background: #ffd700;
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.carousel-dot:hover {
    background: rgba(255, 215, 0, 0.6);
    transform: scale(1.1);
}

/* Carousel Arrows (Separate Positioning) */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #ffd700;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    z-index: 10;
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

.carousel-arrow:hover {
    background: rgba(255, 215, 0, 0.25);
    transform: translateY(-50%) scale(1.1);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c00 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-main {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw + 1rem, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.title-sub {
    display: block;
    font-size: clamp(1.2rem, 1.5vw + 0.5rem, 1.8rem);
    font-weight: 600;
    color: #ffd86b;
    margin-bottom: 0.5rem;
}

.title-tagline {
    display: block;
    font-size: clamp(1rem, 0.8vw + 0.8rem, 1.2rem);
    font-weight: 500;
    color: #ffb84d;
    line-height: 1.4;
}

.hero-description {
    font-size: clamp(1rem, 0.7vw + 0.9rem, 1.1rem);
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #f0f0f0;
    font-size: 1rem;
}

.feature-item i {
    color: #ffd700;
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.urgent-button {
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
}

.urgent-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.6);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-main-image:hover {
    transform: scale(1.02);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.floating-element.diya {
    top: -20px;
    right: -30px;
    animation-delay: 0s;
}

.floating-element.om {
    bottom: 20px;
    left: -20px;
    font-size: 2rem;
    animation-delay: 2s;
}

.floating-element.lotus {
    top: 50%;
    right: -40px;
    font-size: 1.5rem;
    animation-delay: 4s;
}

/* Enhanced Service Items */
.service-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.3);
    border-color: var(--accent-color);
}

/* Enhanced Buttons */
.primary-button, .secondary-button, .cta-button-urgent {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--gold-gradient);
    background-size: 200% 200%;
}

.primary-button:hover, .secondary-button:hover, .cta-button-urgent:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.4);
}

/* Floating Animation for Elements */
.floating {
    animation: float 6s ease-in-out infinite;
}

/* Shimmer Effect */
.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* 3D Card Effect */
.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.card-3d:hover {
    transform: rotateY(10deg) rotateX(5deg);
}

/* Enhanced Scroll Links */
.scroll-link {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.scroll-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.scroll-link:hover::after {
    width: 100%;
}

/* Loading Animation */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 140, 0, 0.3);
    border-top: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Enhanced Navigation */
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    background: rgba(255, 140, 0, 0.1);
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    background: rgba(255, 140, 0, 0.15);
    color: #ff8c00;
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* Ensure smooth scrolling behavior */
html {
    scroll-behavior: smooth;
}

/* Improve navigation link transitions */
.nav-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Better mobile navigation experience */
@media (max-width: 768px) {
    .nav-link.active {
        background: rgba(255, 140, 0, 0.2);
        color: #ff8c00;
        font-weight: 600;
    }
    
    .nav-link.active::after {
        width: 100%;
    }
}

/* Loading state for nav links */
.nav-link.loading {
    pointer-events: none;
    opacity: 0.7;
}

.nav-link.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0.5rem;
    width: 12px;
    height: 12px;
    border: 2px solid transparent;
    border-top: 2px solid var(--gold-gradient);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translateY(-50%);
}

/* Dropdown Menu Styles */
.nav-link.dropdown {
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

/* Ensure dropdown link maintains proper styling */
.nav-link.dropdown:hover {
    text-decoration: none;
    color: inherit;
}

.nav-link.dropdown:focus {
    text-decoration: none;
    color: inherit;
    outline: none;
}

/* Desktop Dropdown Styles */
@media (min-width: 769px) {
    .nav-link.dropdown .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 140, 0, 0.3);
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        min-width: 280px;
        max-width: 320px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding: 1rem;
        margin-top: 0.5rem;
        pointer-events: none;
        max-height: none;
        overflow: visible;
        text-decoration: none;
    }

    .nav-link.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

.dropdown-arrow {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    pointer-events: none;
    color: inherit;
}

.nav-link.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* General dropdown styles (shared between desktop and mobile) */

.dropdown-section {
    margin-bottom: 1rem;
}

.dropdown-section:last-child {
    margin-bottom: 0;
}

.dropdown-section h4 {
    color: #ff8c00;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    padding: 0.25rem 0;
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
}

.dropdown-item {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin: 0.25rem 0;
    cursor: pointer;
    position: relative;
    background: none;
    border: none;
    font-family: inherit;
    font-weight: inherit;
}

.dropdown-item:hover {
    background: rgba(255, 140, 0, 0.15);
    color: #ff8c00;
    transform: translateX(5px);
}

.dropdown-item.loading {
    pointer-events: none;
    opacity: 0.7;
}

.dropdown-item.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0.5rem;
    width: 12px;
    height: 12px;
    border: 2px solid transparent;
    border-top: 2px solid var(--gold-gradient);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translateY(-50%);
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, #2c1810 0%, #1a0f0a 100%);
    position: relative;
    overflow: hidden;
}

.footer::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"><defs><pattern id="mandala" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,215,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23mandala)"/></svg>');
    opacity: 0.3;
}

/* Ripple Effect for Buttons */
.primary-button, .secondary-button, .cta-button-urgent {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Enhanced Carousel Styles */
.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.8) translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1) translateX(0);
}

.carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.2);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Enhanced Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 100px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-cta-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.floating-cta-button.urgent {
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
}

.floating-cta-button.call {
    background: linear-gradient(135deg, #2ed573 0%, #1e90ff 100%);
}

.floating-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Enhanced Google Blocks */
.google-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.google-block {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
    transition: all 0.4s ease;
}

.google-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.4);
}

.block-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.google-block:hover .block-img {
    transform: scale(1.1);
}

.block-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.google-block:hover .block-overlay {
    transform: translateY(0);
}

.block-overlay h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.block-overlay p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.block-cta {
    display: inline-block;
    padding: 8px 16px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.block-cta:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

/* Enhanced Services CTA Banner */
/* Services CTA Banner */
.services-cta-banner {
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    padding: 3.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 2.5vw + 0.5rem, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-text p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.banner-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.banner-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.banner-btn.primary {
    background: #ffffff;
    color: #ff8c00;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.banner-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
    background: #f8f8f8;
}

.banner-btn.secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    backdrop-filter: blur(10px);
}

.banner-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.banner-btn i {
    font-size: 1.3rem;
}

.banner-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-om, .floating-diya {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

.floating-om {
    top: 20px;
    right: 30px;
    animation-delay: 0s;
}

.floating-diya {
    bottom: 20px;
    left: 30px;
    animation-delay: 1.5s;
}

.services-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.services-cta-banner:hover::before {
    left: 100%;
}

.banner-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Enhanced Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}

.scroll-to-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.6);
}

/* Active Navigation Link */
.nav-link.active {
    color: var(--accent-color);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* Enhanced WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffd86b, #ff6b35);
    pointer-events: none;
    z-index: 2000;
    mix-blend-mode: screen;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease-out;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.custom-cursor.cursor-grow {
    transform: translate(-50%, -50%) scale(2.2);
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.8);
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    background: linear-gradient(135deg, #fff5e6 0%, #fff8dc 100%);
}

/* Dark Theme */
body.dark-theme {
    color: #e6e6e6;
    background: #0d0d0f;
}

body.dark-theme #particles-js {
    background: radial-gradient(ellipse at top, #141419 0%, #0d0d0f 60%);
}

body.dark-theme #particles-js::before {
    opacity: 0.5; /* keep equal opacity for dark theme */
    filter: brightness(0.4) contrast(1.1);
}

body.dark-theme .header {
    background: rgba(15, 15, 18, 0.8);
    box-shadow: 0 2px 20px rgba(0,0,0,0.6);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
body.dark-theme .navbar { background: rgba(12,12,14,0.75); border-bottom: 1px solid rgba(255,255,255,0.08); }

body.dark-theme .nav-link { color: #eaeaea; }
body.dark-theme .nav-link:hover { background: rgba(255,255,255,0.08); }
body.dark-theme .logo-text { color: #fff; text-shadow: none; }
body.dark-theme .logo-circle { box-shadow: 0 4px 15px rgba(255, 215, 0, 0.15); }
body.dark-theme .cta-button { background: #ffd86b; color: #2a200a; }
body.dark-theme .cta-button:hover { filter: brightness(1.05); }

body.dark-theme .hero { background: linear-gradient(135deg, #0f0f14 0%, #0d0d0f 100%); }
body.dark-theme .hero::before { background: linear-gradient(135deg, rgba(15,15,18,0.75) 0%, rgba(13,13,15,0.75) 100%); }
body.dark-theme .hero-title { -webkit-text-fill-color: #ffffff; color: #ffffff; background: none; text-shadow: 0 2px 18px rgba(0,0,0,0.45); }
body.dark-theme .hero-subtitle { color: #c7c7c7; }
body.dark-theme .carousel-text { color: #f1f1f1; }

body.dark-theme .scroll-links-header h2,
body.dark-theme .section-title { -webkit-text-fill-color: initial; color: #fff; background: none; }
body.dark-theme .section-subtitle { color: #c7c7c7; }

body.dark-theme .services-cta-banner { 
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%); 
    color: #fff; 
}
body.dark-theme .services-cta-banner h2,
body.dark-theme .services-cta-banner h3,
body.dark-theme .services-cta-banner p { 
    color: #fff; 
}
body.dark-theme .service-cta { background: linear-gradient(135deg, #e6b800 0%, #ff6b35 100%); }

body.dark-theme .about { background: linear-gradient(135deg, #141419 0%, #111115 100%); }
body.dark-theme .feature { background: #141419; }
body.dark-theme .feature h4 { color: #fff; }
body.dark-theme .feature p { color: #c7c7c7; }

body.dark-theme .contact { background: #0f0f14; }
body.dark-theme .contact-item { background: #141419; border-color: rgba(255,255,255,0.06); }
body.dark-theme .contact-cta { background: #141419; border-color: rgba(255,255,255,0.06); }

body.dark-theme .quick-scroll-links { background: #0f0f14; border-color: rgba(255,255,255,0.06); }
body.dark-theme .scroll-link-category { background: #141419; border-color: rgba(255,255,255,0.06); }
body.dark-theme .scroll-link { color: #c7c7c7; }



body.dark-theme .event-management { background: #0f0f14; }
body.dark-theme .event-service { background: #141419; border-color: rgba(255,255,255,0.06); }
body.dark-theme .event-service h4 { color: #fff; }
body.dark-theme .event-service p { color: #c7c7c7; }
body.dark-theme .event-cta { background: linear-gradient(135deg, #ff6b35 0%, #e6b800 100%); }

body.dark-theme .footer { background: linear-gradient(135deg, #0b0b0d 0%, #050506 100%); }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive container for wider screens */
@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1800px;
    }
}

@media (min-width: 2560px) {
    .container {
        max-width: 2200px;
    }
}

/* Header Styles */
.header {
    background: rgba(26, 26, 31, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(26, 26, 31, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 2rem;
    cursor: none;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 2rem;
}

/* Responsive nav-container for wider screens */
@media (min-width: 1600px) {
    .nav-container {
        max-width: 1600px;
    }
}

@media (min-width: 1920px) {
    .nav-container {
        max-width: 1800px;
    }
}

@media (min-width: 2560px) {
    .nav-container {
        max-width: 2200px;
    }
}

/* Logo Styles */
.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-symbol {
    position: relative;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.om-symbol {
    font-size: 28px;
    color: #fff;
    font-weight: bold;
    z-index: 2;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    animation: logoPulse 3s ease-in-out infinite;
}

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

.logo-image {
    width: 100%;
    height: 40px;
    object-fit: contain;
}

.animated-logo {
    animation: logoFloat 3s ease-in-out infinite, logoGlow 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.animated-logo:hover {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(1.2) drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
}

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

@keyframes logoGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
    }
    50% { 
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8)) brightness(1.1);
    }
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: #f2f2f2;
    text-decoration: none;
    font-weight: 500;
    padding: 0.6rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.nav-link i {
    font-size: 0.8rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 140, 0, 0.1);
    color: #ff8c00;
    transform: translateY(-2px);
}

.nav-link:hover i {
    opacity: 1;
    color: #ff8c00;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff8c00, #ffa500);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-link:hover::after {
    width: 60%;
}

/* Right Section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* Language Switcher */
.language-switcher {
    margin: 0;
}

.lang-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 200px;
}

.lang-select:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.lang-select option {
    background: #1a1a1f;
    color: #fff;
}

/* CTA Button */
.nav-cta {
    display: flex;
    align-items: center;
}

.cta-button {
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    font-size: 0.9rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background: #ff8c00;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, #fff5e6 0%, #fff8dc 50%, #fff5e6 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.mandala-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: brightness(0.3) contrast(1.3) saturate(1.2);
    z-index: 0;
}

.mandala-pattern {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vw;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.06) 0%, rgba(255, 140, 0, 0.02) 55%, transparent 70%);
    border-radius: 50%;
    animation: mandalaRotate 22s linear infinite;
    filter: blur(2px);
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    color: #333;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    line-height: 1.15;
    font-size: clamp(2.25rem, 3.5vw + 1rem, 4rem);
    margin-bottom: 1.1rem;
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 0.7vw + 0.9rem, 1.25rem);
    color: #ddd;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.primary-button {
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.6);
}

.secondary-button {
    background: transparent;
    color: #ff8c00;
    padding: 1rem 2rem;
    border: 2px solid #ff8c00;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: #ff8c00;
    color: #fff;
    transform: translateY(-3px);
}

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

.hero-img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    animation: float 6s ease-in-out infinite;
}

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

/* Services Section */
.services {
    padding: 5rem 0;
    background: #0f0f14;
    position: relative;
}

/* Services Header */
.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    font-size: clamp(1.75rem, 2.2vw + 0.5rem, 2.75rem);
    color: #fff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Container */
.services-container {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Service Category */
.service-category {
    background: linear-gradient(135deg, #1a1a1f 0%, #141419 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 1.8vw + 0.5rem, 2.2rem);
    font-weight: 700;
    color: #ffa500;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    text-shadow: 0 2px 8px rgba(255, 165, 0, 0.3);
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    border-radius: 2px;
}

/* Service Cards Grid */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Service Card */
.service-card {
    background: rgba(26, 26, 31, 0.95);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 140, 0, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(20px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.2);
    border-color: #ff8c00;
}

/* Service Icon */
.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

/* Service Card Content */
.service-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.service-card p {
    color: #f5f5f5;
    margin-bottom: 2rem;
    line-height: 1.6;
    flex-grow: 1;
    font-size: 1.05rem;
    font-weight: 500;
}

/* Service Button */
.service-btn {
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.4);
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.2);
    border-color: #ff8c00;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.service-item p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-cta {
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fff5e6 0%, #fff8dc 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
}

.feature i {
    font-size: 1.5rem;
    color: #ff8c00;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 50%;
}

.feature h4 {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.feature p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 248, 220, 0.95);
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.2);
    backdrop-filter: blur(20px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #ff8c00;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 50%;
}

.contact-item h4 {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #fff8dc 0%, #fff5e6 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.contact-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #333 0%, #444 100%);
    color: #fff;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ff8c00;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff8c00;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .nav-container {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
        position: relative;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .nav-logo {
        flex-shrink: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .logo-symbol {
        width: 120px;
        height: 35px;
    }
    
    .logo-image {
        width: 100%;
        height: 35px;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 31, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 1.5rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid rgba(255, 140, 0, 0.2);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        width: 100%;
        padding: 1.2rem 2rem;
        justify-content: flex-start;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        transition: all 0.3s ease;
        position: relative;
    }
    
    .nav-link:hover {
        background: rgba(255, 140, 0, 0.15);
        transform: translateX(10px);
        border-left: 3px solid var(--gold-gradient);
    }
    
    .nav-link.active {
        background: rgba(255, 140, 0, 0.2);
        border-left: 3px solid var(--gold-gradient);
        color: #ff8c00;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-right {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 0;
    }
    
    /* Mobile Dropdown Styles */
    .nav-link.dropdown {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .dropdown-arrow {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .nav-link.dropdown.active .dropdown-arrow {
        transform: translateY(-50%) rotate(180deg);
    }
    
    .nav-link.dropdown .dropdown-menu {
        position: static;
        background: rgba(255, 140, 0, 0.05);
        border: none;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-top: 0;
        padding: 0 1rem;
        pointer-events: none;
    }
    
    .nav-link.dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 1rem;
        pointer-events: auto;
    }
    
    .dropdown-section {
        margin-bottom: 0.75rem;
    }
    
    .dropdown-section h4 {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }
    
    .dropdown-item {
        padding: 0.4rem 0.5rem;
        font-size: 0.85rem;
        margin: 0.1rem 0;
        cursor: pointer;
        position: relative;
    }
    
    .dropdown-item:hover {
        transform: translateX(3px);
    }
    
    .dropdown-item.loading {
        pointer-events: none;
        opacity: 0.7;
    }
    
    .dropdown-item.loading::before {
        content: '';
        position: absolute;
        top: 50%;
        right: 0.5rem;
        width: 10px;
        height: 10px;
        border: 2px solid transparent;
        border-top: 2px solid var(--gold-gradient);
        border-radius: 50%;
        animation: spin 1s linear infinite;
        transform: translateY(-50%);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        min-height: 180px;
    }
    
    .services-cta-banner {
        padding: 2.5rem 1.5rem;
    }
    
    .banner-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .scroll-links-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .scroll-link-category {
        padding: 1rem;
    }
    
    .leaders-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .event-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .event-services {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .event-text h3 {
        font-size: 1.8rem;
    }
    
    .leader-img {
        width: 150px;
        height: 150px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .mandala-pattern {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .nav-container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .logo-symbol {
        width: 100px;
        height: 30px;
    }
    
    .logo-image {
        width: 100%;
        height: 30px;
    }
    
    .nav-menu {
        padding: 0.5rem 0;
    }
    
    .nav-link {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .mobile-menu-toggle span {
        width: 22px;
        height: 2px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-item {
        padding: 1.5rem;
    }
    
    .mandala-pattern {
        width: 300px;
        height: 300px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.service-item, .feature, .contact-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Quick Scroll Links Section */
.quick-scroll-links {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff5e6 0%, #fff8dc 100%);
    border-top: 1px solid rgba(255, 140, 0, 0.1);
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
}

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

.scroll-links-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.scroll-links-header p {
    color: #666;
    font-size: 1.1rem;
}

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

.scroll-link-category {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(20px);
}

.scroll-link-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 140, 0, 0.2);
}

.scroll-link-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff8c00;
    margin-bottom: 1rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 140, 0, 0.2);
}

.scroll-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.scroll-link {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.scroll-link:hover {
    background: linear-gradient(135deg, #fff8dc 0%, #fff5e6 100%);
    color: #ff8c00;
    border-color: rgba(255, 140, 0, 0.3);
    transform: translateX(5px);
}

/* Spiritual Leaders Section */
.spiritual-leaders {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fff8e1 0%, #fff3e0 100%);
}

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

.leader-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(20px);
}

.leader-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.2);
}

.leader-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 5px solid #ffa500;
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
}

.leader-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.leader-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Event Management Section */
.event-management {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fff8e1 0%, #fff3e0 100%);
}

.event-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.event-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.event-text p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.event-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.event-service {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(20px);
}

.event-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.2);
}

.event-service i {
    font-size: 2rem;
    color: #ff8c00;
    margin-bottom: 1rem;
}

.event-service h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.event-service p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.event-cta {
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.event-cta h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.event-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.event-cta .primary-button {
    background: white;
    color: #ff8c00;
    border: 2px solid white;
}

.event-cta .primary-button:hover {
    background: transparent;
    color: white;
}

.event-image {
    text-align: center;
}

.event-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(255, 140, 0, 0.2);
    border: 5px solid #ffa500;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
}

/* Body scroll lock when mobile menu is open */
body.menu-open {
    overflow: hidden;
}
