:root {
    /* --primary-bg: #410622; */
        --primary-bg: #520F51;

    --secondary-bg: #2d1414;
    --gold: #d4af37;
    --text-white: #ffffff;
    --text-muted: #b3b3b3;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, .italic {
    font-family: 'Playfair Display', serif;
}

.text-gold { color: var(--gold); }
.italic { font-style: italic; }
.tracking-widest { letter-spacing: 3px; }
.py-100 { padding-top: 100px; padding-bottom: 100px; }
.bg-darker { background-color: var(--secondary-bg); }

/* Navbar Styling */
.main-logo {
    width: 80px;
    border-radius: 10px;
}
.footer-logo{
    width: 120px;
    border-radius: 10px;
}
.nav-link {
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 500;
    color: var(--white) !important;
    margin-left: 25px;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold) !important;
}

/* Hero Section */
.hero-section {
    /* Background image set karein */
    background-image: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    height: 80vh; /* Height aap adjust kar sakte hain */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-contact-buttons{
    position:fixed;
    bottom:20px;
    right:0%;
    transform:translateX(-50%);
    gap:15px;
    z-index:9999;
}

.contact-btn{
    display:flex;
    align-items:center;
    gap:8px;
    padding:10px;
    border-radius:50px;
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    transition:.3s;
    margin-bottom: 10px;
}

.contact-btn i{
    font-size:20px;
}

.call-btn{
    background:#0d6efd;
}

.call-btn:hover{
    background:#0b5ed7;
    color:#fff;
    transform:translateY(-3px);
}

.whatsapp-btn{
    background:#25D366;
}

.whatsapp-btn:hover{
    background:#1ebc59;
    color:#fff;
    transform:translateY(-3px);
}


/* Light overlay taaki text clear dikhe (Image ke upar halki safedi) */
.hero-overlay {
    background: rgba(255, 255, 255, 0.5); 
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.main-title {
    color: #4b164c; /* Dark Purple/Maroon color jesa image mein hai */
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: 'Serif', 'Playfair Display', serif; /* Elegant look ke liye */
}

.hero-desc {
    color: #5d2a5e;
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Button style jesa image mein hai */
.btn-call {
    background-color: #4b164c; /* Dark Purple */
    color: #fff !important;
    padding: 12px 45px;
    border-radius: 50px 0 50px 50px; /* Thoda unique shape */
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    border: none;
}

.btn-call:hover {
    background-color: #350f36;
    transform: scale(1.05);
}

/* Mobile responsive karne ke liye */
@media (max-width: 768px) {
    .main-title {
        font-size: 1.8rem;
    }
    .hero-desc {
        font-size: 1rem;
    }
    .hero-section {
        height: 100%;
    }
    .hero-overlay {
    padding: 50px 0px;
    }
    .main-logo {
    width: 60px;
    }
}
/* Stats Bar */
.stats-bar {
    padding: 60px 0;
    border-top: 1px solid rgba(194, 156, 91, 0.1);
}

.stat-item {
    border-left: 1px solid var(--gold);
}

.stat-item.no-border {
    border-right: 1px solid var(--gold); /* Matches the vertical lines in screenshot */
}

/* If you want the exact layout from the screenshot (lines on both ends of segments) */
.stat-content {
    padding: 0 20px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 32px;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--white);
    margin: 0;
}

/* Responsiveness */
@media (max-width: 991px) {
    .main-title { font-size: 50px; }
    .stat-item { border: none !important; margin-bottom: 30px; }
}
/* About Section Images */
/* Section Padding */
.about-services-section {
    background-color: #fff;
    padding: 80px 0;
}

/* Rounded Corners aur Glow Effect jaisa image mein hai */
.rounded-custom {
    border-radius: 20px;
    width: 100%;
    height: 300px; /* Image height set karne ke liye */
    object-fit: cover;
    display: block;
}

.glow-card {
    position: relative;
    padding: 5px;
    /* Purple/Pink Glow Shadow */
    filter: drop-shadow(0px 0px 15px rgba(186, 104, 200, 0.6)); 
    transition: transform 0.3s ease;
}

.glow-card:hover {
    transform: scale(1.02);
}

/* Typography styles */
.service-title {
    color: #4b164c; /* Dark Purple */
    font-family: 'Playfair Display', serif; /* Elegant Serif Font */
    font-size: 2rem;
    margin-bottom: 15px;
}

.service-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-content {
        padding: 20px 0;
    }
    .rounded-custom {
        height: 250px;
    }
    .service-title {
        font-size: 1.5rem;
    }
}
/* About Section Base */
.about-section {
   
    color: #ffffff;
    overflow: hidden;
}

/* Image Wrapper for Overlapping Effect */
.about-image-wrapper {
    position: relative;
    padding-bottom: 50px; /* Space for the overlapping image */
}

.about-img-1 {
    width: 90%;
    border: 1px solid #c29c5b; /* Gold border */
    position: relative;
    z-index: 1;
}

.about-img-2 {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 55%;
    border: 5px solid #0e0808; /* Matches background to create gap effect */
    outline: 1px solid #c29c5b; /* Gold border around the smaller image */
    z-index: 2;
}

/* Typography */
.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 55px;
    margin-bottom: 25px;
}

.italic-text {
    font-style: italic;
    font-weight: 400;
}

.about-subtitle {
    color: #c29c5b;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 30px;
    font-size: 14px;
}

.about-description p {
    color: #a5a5a5;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Feature Grid Styling */
.feature-title {
    color: #c29c5b;
    font-size: 22px;
    margin-bottom: 5px;
    font-family: 'Jost', sans-serif;
}

.feature-subtext {
    color: #6c6c6c;
    font-size: 10px;
    letter-spacing: 0.5px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .about-title { font-size: 40px; }
    .about-image-wrapper { margin-bottom: 80px; }
    .about-img-1 { width: 100%; }
}

/* Service Cards */

.rituals-section {

    background-color: #fff;
}

.rituals-title {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    margin-bottom: 15px;
    color: #4b164c;
}

.rituals-subtitle {
    font-size: 14px;
    color: #000;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Card Styling */
.ritual-card {
    background-color: #520f51; 
    border: none;
    transition: all 0.3s ease;
}

.ritual-img-box {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.ritual-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ritual-card:hover img {
    transform: scale(1.05);
}

.ritual-content {
    padding: 30px 25px;
    text-align: center;
}

.service-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 400;
}

.service-desc {
    color: #b5b5b5;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 30px;
    min-height: 60px; /* Keeps card heights consistent */
}

/* Button Styling */
.btn-request {
    border: 1px solid #c29c5b; /* Gold border */
    color: #c29c5b;
    background: transparent;
    border-radius: 0;
    padding: 10px 0;
    width: 100%; /* Full width button like the image */
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-request:hover {
    background-color: #c29c5b;
    color: #000000;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .rituals-title { font-size: 35px; }
    .ritual-card { margin-bottom: 20px; }
}

/* Gallery */
.gallery-section, .map-section{
    background-color: #fff;
}
.gallery-img {
    height: 230px;
    width: 100%;
    object-fit: cover;
    transition: 0.5s;
    cursor: pointer;
    filter: grayscale(40%);
}
.gallery-img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Testimonials */
.testimonial-box {
    background: rgba(255, 255, 255, 0.03);
}
.slick-prev, .slick-next {
    color: var(--gold);
    z-index: 1;
}
.slick-prev:before, .slick-next:before { content: none; }

/* Contact Overlay */
.contact-overlay {
    background: #520f51;
    border: 1px solid var(--gold);
    max-width: 800px;
    margin: -150px auto 20px;
    position: relative;
    z-index: 2;

}
.btn-gold {
    background: var(--gold);
    color: #000;
    border-radius: 0;
    font-weight: 600;
}

/* Footer */
.footer {
   
    border-top: 1px solid var(--gold);
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 2.5;
    transition: 0.3s;
}
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    border-radius: 50%;
}
/* Mobile */
@media(max-width:576px){
    .floating-contact-buttons{
        right:15px;
        bottom:10px;
        transform:none;
        gap:10px;
    }

    .contact-btn{
        flex:1;
        justify-content:center;
        padding:14px 10px;
        font-size:15px;
        width: 40px;
        height: 40px;
    }
    .contact-btn i {
        font-size: 16px;
    }
    .gallery-img{
        height: 120px;
    }

    .contact-btn span{
        display:inline-block;
    }
}