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

:root {
    --royal-maroon: #4A1D1D;
    --gold: #D4AF37;
    --cream: #F8F3E7;
    --dark-gold: #B8941F;
    --light-maroon: #6B2B2B;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cream);
    color: var(--royal-maroon);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--royal-maroon), var(--light-maroon));
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(74, 29, 29, 0.3);
    backdrop-filter: blur(10px);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-menu a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: clamp(0.8rem, 2vw, 1rem);
}

.nav-menu a:hover {
    background-color: var(--gold);
    color: var(--royal-maroon);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
}

.book-btn {
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    color: var(--royal-maroon);
    padding: 0.8rem 0.5rem;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: clamp(0.8rem, 2vw, 1rem);
}

.book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 90vh;
    background: linear-gradient(135deg, var(--cream) 0%, #F0E6D2 100%);
    display: flex;
    align-items: center;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.hero::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="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23D4AF37" opacity="0.1"/><path d="M25,15 Q30,20 35,25 Q30,30 25,35 Q20,30 15,25 Q20,20 25,15" fill="%23D4AF37" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23mandala)"/></svg>') repeat;
    opacity: 0.3;
}

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

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--royal-maroon), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: var(--light-maroon);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-description {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    margin-bottom: 2rem;
    color: var(--royal-maroon);
    opacity: 0.8;
}

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

.btn-primary {
    background: linear-gradient(45deg, var(--royal-maroon), var(--light-maroon));
    color: var(--cream);
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(74, 29, 29, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--royal-maroon);
    border: 2px solid var(--gold);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--royal-maroon);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    text-align: center;
}

.main-image {
    width: 100%;
    max-width: 500px;
    height: clamp(400px, 50vw, 600px);
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--royal-maroon);
    box-shadow: 0 20px 60px rgba(74, 29, 29, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.main-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--royal-maroon);
    border-radius: 20px;
    opacity: 0.3;
}

.main-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(74, 29, 29, 0.3);
}

/* Price Range Section */
.pricing-banner {
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    color: var(--royal-maroon);
    padding: 2rem 0;
    text-align: center;
    margin-top: -2px;
}

.pricing-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.pricing-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-subtext {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    opacity: 0.8;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: var(--cream);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--royal-maroon);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    border-radius: 2px;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(74, 29, 29, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(74, 29, 29, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--royal-maroon);
    transition: all 0.3s ease;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 1rem;
    color: var(--royal-maroon);
}

.service-card p {
    color: var(--light-maroon);
    opacity: 0.8;
    font-size: clamp(0.8rem, 2vw, 1rem);
}

.service-price {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--gold);
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
}

/* Why Choose Us Section */
.why-choose {
    padding: 4rem 0;
    background: linear-gradient(135deg, #F5F0E8, var(--cream));
}

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

.feature-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(74, 29, 29, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 29, 29, 0.12);
}

.feature-icon {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--royal-maroon);
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: var(--light-maroon);
    opacity: 0.8;
}

/* About Section */
.about {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--royal-maroon), var(--light-maroon));
    color: var(--cream);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.about-text {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    border: 1px solid var(--gold);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.stat-label {
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    opacity: 0.8;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: clamp(300px, 40vw, 400px);
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: var(--royal-maroon);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Process Section */
.process {
    padding: 4rem 0;
    background: var(--cream);
}

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

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

.process-step {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--royal-maroon), var(--light-maroon));
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--royal-maroon);
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: var(--light-maroon);
    opacity: 0.8;
}

/* Gallery Section */
.gallery {
    padding: 4rem 0;
    background: linear-gradient(135deg, #F5F0E8, var(--cream));
}

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

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

.gallery-item {
    height: clamp(200px, 25vw, 300px);
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--royal-maroon);
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid var(--royal-maroon);
    border-radius: 10px;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(74, 29, 29, 0.2);
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background: var(--cream);
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonial-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: clamp(280px, 50vw, 350px);
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(74, 29, 29, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.testimonial-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.rating {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.star {
    color: var(--gold);
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--royal-maroon);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--royal-maroon);
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.author-info h4 {
    color: var(--royal-maroon);
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.author-info p {
    color: var(--light-maroon);
    font-size: clamp(0.7rem, 1.8vw, 0.9rem);
    opacity: 0.7;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: var(--royal-maroon);
    color: var(--cream);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--royal-maroon);
    font-weight: 600;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.contact-form {
    background: rgba(248, 243, 231, 0.1);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--gold);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gold);
    font-weight: 500;
    font-size: clamp(0.8rem, 2vw, 1rem);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 10px;
    background: var(--cream);
    color: var(--royal-maroon);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    font-size: clamp(0.8rem, 2vw, 1rem);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6); }
    100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3); }
}

/* Footer */
.footer {
    background: var(--royal-maroon);
    color: var(--cream);
    padding: 3rem 0 1rem;
    border-top: 3px solid var(--gold);
}

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

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

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}

.footer-section p,
.footer-section a {
    color: var(--cream);
    text-decoration: none;
    opacity: 0.8;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    line-height: 1.6;
}

.footer-section a:hover {
    color: var(--gold);
    opacity: 1;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--royal-maroon);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    opacity: 0.7;
    font-size: clamp(0.7rem, 1.8vw, 0.9rem);
}

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

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--royal-maroon);
        flex-direction: column;
        padding: 2rem 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

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

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

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

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

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

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hero {
        padding: 1rem 0;
    }

    .testimonial-card {
        min-width: 250px;
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
}

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

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-top: 3px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

.loading-text {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 3vw, 1.2rem);
    text-align: center;
}

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

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--royal-maroon), var(--light-maroon));
    color: var(--gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
    font-size: 1.2rem;
}

.scroll-top.visible {
    opacity: 1;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 29, 29, 0.3);
}

img {
  width: 100%;          /* Container की पूरी width */
  height: 100%;         /* Container की पूरी height */
  max-width: 100%;      /* Container से बड़ा नहीं होगा */
  max-height: 100%;     /* Container से ऊंचा नहीं होगा */
  border-radius: 15px;
}
