        @import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Plus+Jakarta+Sans:wght@300;400;600;800&display=swap');

        :root {
            --gold: #d4af37;
            --flame: #ff5e00;
            --deep-ash: #1a1a1a;
            --soft-cream: #fdfaf5;
        }

        body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--soft-cream); color: var(--deep-ash); overflow-x: hidden; }


            /* --- Top Marquee Bar --- */
.top-marquee {
    background:  var(--deep-ash);
    height: 35px; /* Chota aur sleek */
    display: flex;
    align-items: center;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001; /* Navbar se upar */
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: top-scroll 25s linear infinite; /* Thoda slow for readability */
}

.marquee-content span {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 0.85rem; /* Small & elegant */
    font-weight: 500;
    letter-spacing: 1.5px;
    margin-right: 60px;
    display: flex;
    align-items: center;
}

.separator {
    color: var(--flame) !important;
    margin: 0 10px;
}

@keyframes top-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
        /* --- Custom Floating Header --- */
        .navbar {
            position: fixed; width: 90%; left: 5%; top: 55px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            z-index: 1000;
            transition: 0.4s ease;
        }
        .navbar.scrolled { top: 35px; width: 100%; left: 0; border-radius: 0; background: rgba(255, 255, 255, 0.95); }
        .nav-link { font-weight: 600; color: #fff !important; margin: 0 15px; }
        .scrolled .nav-link {
             color: var(--deep-ash) !important;
             }
        .navbar.scrolled::after {
          content: "";
          position: absolute;
          bottom: 0;
          left: -200px;
          width: 200px;
          height: 2px;
          background: linear-gradient(90deg, transparent, #ffd369, transparent);
          animation: moveLine 4s linear infinite;
        }
        @keyframes moveLine {
          0% { left: -200px; }
          100% { left: 100%; }
        }

        /* Mobile Menu Fix */
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(0, 0, 0, 0.8);
                backdrop-filter: blur(20px);
                border-radius: 20px;
                padding: 20px;
                margin-top: 15px;
            }
            .navbar.scrolled .navbar-collapse { background: white; border: 1px solid #eee; }
            .nav-link { color: #fff !important; margin: 10px 0; }
            .scrolled .nav-link { color: var(--deep-ash) !important; }
        }

        .navbar-toggler { border: none; color: white; font-size: 1.5rem; }
        .navbar-toggler:focus { shadow: none; outline: none; }
        .scrolled .navbar-toggler { color: var(--deep-ash); }

        /* --- Hero Slider Styles --- */
        .swiper { width: 100%; height: 100vh; }
        .swiper-slide { position: relative; overflow: hidden; }
        .slide-img { 
            width: 100%; height: 100%; object-fit: cover; 
            filter: brightness(0.5); transform: scale(1.1); transition: 8s ease; 
        }
        .swiper-slide-active .slide-img { transform: scale(1); }

        .hero-content {
            position: absolute; top: 55%; left: 10%; transform: translateY(-50%);
            color: white; z-index: 10; max-width: 700px;
        }
        .hero-content h1 { 
            font-family: 'Cinzel', serif; font-size: clamp(3rem, 6vw, 5rem); 
            line-height: 1.1; margin-bottom: 20px; 
        }
        .hero-content p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 30px; border-left: 3px solid var(--flame); padding-left: 20px; }

        /* --- Fancy Buttons --- */
        .btn-premium {
            background: linear-gradient(45deg, var(--flame), var(--gold));
            color: white; border: none; padding: 15px 40px; border-radius: 5px;
            font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
            position: relative; overflow: hidden; z-index: 1; transition: 0.3s;
        }
        .btn-premium::before {
            content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
            background: rgba(255,255,255,0.2); transition: 0.5s; z-index: -1;
        }
        .btn-premium:hover::before { left: 100%; }

        /* --- Floating Shapes / Animations --- */
        .glow-circle {
            position: absolute; width: 300px; height: 300px;
            background: var(--flame); filter: blur(150px); opacity: 0.2;
            z-index: -1; animation: float 10s infinite alternate;
        }
        @keyframes float { from { transform: translate(0,0); } to { transform: translate(50px, 50px); } }

        /* --- Modern Info Grid --- */
        .feature-box {
            padding: 50px 30px; border-radius: 30px; background: #fff;
            border: 1px solid rgba(0,0,0,0.03); transition: 0.5s;
            position: relative; overflow: hidden;
        }
        .feature-box:hover { box-shadow: 0 30px 60px rgba(255, 94, 0, 0.1); transform: translateY(-10px); }
        .feature-icon { font-size: 3.5rem; background: linear-gradient(var(--flame), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 25px; }

/* Mobile Fix: Ensure marquee doesn't hide navbar toggle */
@media (max-width: 991px) {
    .navbar { top: 45px; } 
}



          /* Section Specific CSS */
    .pricing-card {
        padding: 40px;
        border-radius: 30px;
        background: #fdfaf5;
        border: 1px solid #eee;
        transition: 0.4s ease;
        position: relative;
    }
    .pricing-card.featured {
        background: #fff;
        border-color: var(--gold);
        box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
        transform: scale(1.05);
    }
    .badge-featured {
        position: absolute; top: 20px; right: 20px;
        background: var(--gold); color: white; padding: 5px 15px;
        border-radius: 20px; font-size: 0.8rem; font-weight: bold;
    }
    .plan-icon { font-size: 2.5rem; color: var(--flame); margin-bottom: 15px; }
    .plan-features li { margin-bottom: 15px; font-size: 0.95rem; }
    
    .glass-box {
        background: rgba(255,255,255,0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 20px;
        transition: 0.3s;
    }
    .glass-box:hover {
        background: rgba(255,255,255,0.15);
        transform: translateY(-5px);
    }
    .section-padding { padding: 80px 0; }






        /* Contact & Footer CSS */
    .contact-icon-circle {
        width: 50px; height: 50px; border-radius: 50%;
        background: white; display: flex; align-items: center; justify-content: center;
        color: var(--flame); font-size: 1.2rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .booking-form-card {
        background: white; padding: 50px; border-radius: 30px;
        box-shadow: 0 30px 60px rgba(0,0,0,0.05);
        border: 1px solid rgba(0,0,0,0.02);
    }

    .custom-input {
        background: #f9f9f9; border: 1px solid #eee; padding: 12px 20px;
        border-radius: 10px; transition: 0.3s;
    }
    .custom-input:focus {
        background: white; border-color: var(--flame); box-shadow: none;
    }

    .footer-dark { background: #111; color: white; border-top: 1px solid rgba(255,255,255,0.05); }
    .footer-links li { margin-bottom: 12px; }
    .footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; transition: 0.3s; }
    .footer-links a:hover { color: var(--flame); padding-left: 5px; }

    .social-link {
        width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.05);
        color: white; display: flex; align-items: center; justify-content: center;
        transition: 0.3s; text-decoration: none;
    }
    .social-link:hover { background: var(--flame); transform: translateY(-3px); color: white; }

    @media (max-width: 768px) {
        .booking-form-card { padding: 30px 20px; }
    }



/* 
    .marquee-container {
    background: var(--deep-ash);
    padding: 20px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 20s linear infinite;
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0 10vw; /* Side padding for smooth loop */
}

.marquee-content span {
    margin-right: 80px;
    flex-shrink: 0;
}

.separator {
    color: var(--flame) !important;
    margin: 0 15px;
    font-weight: 400;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
} */




/* Essential Fixes */
    .modal-backdrop { z-index: 99998 !important; }
    .modal-nav {
        position: absolute; top: 50%; transform: translateY(-50%);
        background: rgba(255,255,255,0.2); border: none; color: white;
        width: 40px; height: 40px; border-radius: 50%; z-index: 1001;
    }
    .modal-nav.prev { left: 10px; }
    .modal-nav.next { right: 10px; }

    #modal-display img, #modal-display video, #modal-display iframe {
        max-width: 95%; max-height: 80vh; border-radius: 10px; box-shadow: 0 0 30px rgba(0,0,0,0.5);
    }

    @media (min-width: 768px) {
        .modal-nav.prev { left: -60px; }
        .modal-nav.next { right: -60px; }
    }

    .gallery-item { border-radius: 15px; overflow: hidden; height: 260px; cursor: pointer; position: relative; }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; }
    .gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; color: white; flex-direction: column; }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    /* Filter Buttons Styling */
    .btn-filter {
        border: 2px solid #eee;
        border-radius: 50px;
        padding: 8px 25px;
        font-weight: 600;
        transition: 0.3s;
        color: var(--deep-ash);
    }
    .btn-filter.active, .btn-filter:hover {
        background: var(--flame);
        border-color: var(--flame);
        color: white;
    }

       /* --- Masonry Style Gallery --- */
.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    background: #eee;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
    transform: scale(1.1) rotate(1deg);
}

/* Play Button Styling */
.play-btn-circle {
    width: 70px;
    height: 70px;
    background: rgba(255, 94, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(255, 94, 0, 0.5);
    animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 94, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(255, 94, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 94, 0, 0); }
}

/* Filter Wrapper */
.filter-wrapper {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
}

.btn-filter {
    padding: 10px 25px !important;
    border: none !important;
    border-radius: 50px !important;
}

.btn-filter.active {
    background: var(--flame) !important;
    color: white !important;
    box-shadow: 0 5px 15px rgba(255, 94, 0, 0.3);
}   


    /* about page  */
    /* --- About Us Premium Styles --- */
.about-vedic-section {
    background: #fffdf9; /* Very light cream to contrast other sections */
}

.about-image-wrapper {
    padding: 20px;
}

.main-about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 10px solid white;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: 20px;
    background: var(--flame);
    min-width: 120px;
    z-index: 2;
}

.floating-img-card {
    position: absolute;
    top: 10%;
    right: -50px;
    width: 220px;
    border: 8px solid white;
    z-index: 1;
}

.mini-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.about-quote {
    background: rgba(255, 94, 0, 0.03);
    border-radius: 0 15px 15px 0;
}

/* For cinematic effect on images */
.main-img-box {
    overflow: hidden;
    border-radius: 30px;
}
.main-img-box img {
    transition: 1.5s ease;
}
.main-img-box:hover img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .floating-img-card { display: none; }
    .main-about-img { height: 350px; }
}


.expert-frame {
    border: 2px solid var(--gold);
    padding: 20px;
    border-radius: 30px;
}
.lineage-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gold);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 50px;
}
.glass-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    transition: 0.4s;
}
.glass-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}
.border-gold { border-color: var(--gold) !important; }


/* --- Page Hero Styling --- */
.page-hero-section {
    position: relative;
    height: 450px; /* Standard premium height */
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    margin-top: 0; /* Navbar ke saath align */
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "|";
    color: var(--gold);
    font-weight: bold;
}

.breadcrumb-item a:hover {
    color: var(--flame) !important;
    transition: 0.3s;
}

/* Shape Divider for smooth transition to content */
.hero-shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.hero-shape-divider .shape-fill {
    fill: #fffdf9; /* Match this with your next section's background color */
}

/* Mobile Fix */
@media (max-width: 768px) {
    .page-hero-section {
        height: 300px;
    }
    .page-hero-section h1 {
        font-size: 2.5rem;
    }
}





/* Service  Page  */
/* --- 1. Light Glassmorphism (For Wisdom Section) --- */
.glass-service-card {
    /* Pehle ye black ke liye tha, ab isse light creamish transparent kiya hai */
    background: rgba(255, 255, 255, 0.6); 
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2); /* Goldish border */
    border-radius: 30px;
    transition: 0.5s all ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); /* Soft shadow for light theme */
}

.glass-service-card:hover {
    background: white;
    transform: translateY(-15px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15); /* Gold glow on hover */
}

/* --- 2. Plan Cards (Pricing Section) --- */
.plan-card {
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: white;
    border: 1px solid #eee !important;
    position: relative;
    z-index: 1;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.featured-plan {
    /* Featured card ko thoda dark rakha hai taaki wo stand-out kare */
    background: var(--deep-ash) !important; 
    color: white !important;
    border: 2px solid var(--gold) !important;
    transform: scale(1.05);
    z-index: 2; /* Taaki shadow upar dikhe */
}

/* Featured Ribbon Fix */
.featured-ribbon {
    position: absolute;
    top: 25px;
    right: -35px;
    background: var(--gold);
    color: #000;
    padding: 5px 45px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

/* --- 3. Step Numbers & Utilities --- */
.step-num {
    width: 60px; /* Thoda bada kiya hai visibility ke liye */
    height: 60px;
    background: white;
    border: 2px solid var(--gold);
    color: var(--flame);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.border-gold { 
    border: 2px solid var(--gold) !important; 
}

/* Feature Box Fix */
.feature-box {
    background: white;
    border-radius: 30px;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.1) !important;
    transition: 0.3s;
}

.feature-box:hover {
    border-color: var(--flame) !important;
}