/* --- CSS VARIABLES & RESET --- */
:root {
    --primary-color: #812972;
    /* Deep Purple/Black */
    --secondary-color: #2d1b4e;
    /* Lighter Purple */
    --accent-gradient: linear-gradient(90deg, #FAAC4D, #FFF212);
    --accent-color: #FAAC4D;
    /* fallback ke liye solid color */
    --text-light: #f5f5f5;
    --text-dim: rgba(219, 214, 214, 0.945);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #812972;
    /* tera current body color */
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- NAVIGATION (Fixed & Responsive) --- */
/* ===== NAVBAR BASE STYLES ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 2000;
    /* High z-index to start a clear stacking context */
    height: 70px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(129, 41, 114, 0.1);
    /* Removed overflow: hidden to allow children like nav-links to be visible outside navbar bounds */
}

.navbar.scrolled {
    background: rgba(129, 41, 114, 0.98);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    height: 60px;
    padding: 0.6rem 5%;
}

.navbar.scrolled .nav-links a,
.navbar.scrolled .dropdown-toggle {
    color: white !important;
}

.navbar.scrolled .btn-gold {
    background-color: #FFD88A;
    color: #812972;
}

/* ===== LOGO ===== */
.navbar-brand img {
    height: 45px;
    width: auto;
    transition: transform 0.3s;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* ===== NAV LINKS (ADAPTED FOR BOOTSTRAP) ===== */
.nav-link {
    font-size: 1rem;
    color: #883A74 !important;
    font-weight: 600;
    transition: all 0.3s;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

/* ===== GOLD REGISTER BUTTON ===== */
.btn-warning.rounded-pill {
    background: linear-gradient(135deg, #FAAC4D 0%, #FF8C42 100%) !important;
    border: none !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(250, 172, 77, 0.3);
    transition: all 0.3s;
}

.btn-warning.rounded-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(250, 172, 77, 0.4);
    background: linear-gradient(135deg, #FFB347 0%, #FF8C42 100%) !important;
}

/* ===== DROPDOWN STYLING ===== */
.dropdown-menu {
    background: #812972 !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

.dropdown-item {
    color: #FFD88A !important;
    padding: 0.8rem 1.5rem !important;
    font-weight: 500;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background: rgba(212, 175, 55, 0.15) !important;
    color: #FAAC4D !important;
    padding-left: 1.8rem !important;
}

/* end nvbar */

/* ===== BOOTSTRAP MOBILE MENU CUSTOMIZATION ===== */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #812972 !important;
        /* Dark Lavender Background */
        border-radius: 0 0 15px 15px;
        padding: 1.5rem;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        margin-top: 5px;
        max-height: 80vh;
        overflow-y: auto;
        /* Allow menu scrolling */
    }

    .navbar-collapse .nav-link {
        color: white !important;
        font-weight: 700;
        /* Bold text */
        font-size: 1.1rem;
        padding: 1rem 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-collapse .nav-link:hover {
        color: #FAAC4D !important;
    }

    /* Mobile Dropdown Refinements */
    .navbar-collapse .dropdown-menu {
        background: rgba(0, 0, 0, 0.2) !important;
        border: none !important;
        box-shadow: none !important;
        padding-left: 15px !important;
        margin: 0 !important;
        max-height: 350px;
        /* Limit height for scrolling */
        overflow-y: auto !important;
        /* Enable internal scrolling */
    }

    .navbar-collapse .dropdown-item {
        color: #FFD88A !important;
        font-weight: 500;
        padding: 0.8rem 0 !important;
        border-bottom: 1px solid rgba(255, 216, 138, 0.1);
        white-space: normal !important;
    }
}

/* --- HERO BANNER (VIDEO BACKGROUND) --- */
/* --- HERO BANNER WITH VIDEO BACKGROUND --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    overflow: hidden;
    /* Changed back to hidden to contain the wheel mandala */
    background-color: #0f0518;
    z-index: 10;
}

/* Video full cover style */
.video-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

    .video-background video,
    .video-background img {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        min-width: 100% !important;
        min-height: 100% !important;
        transform: translate(-50%, -50%) !important;
    }


/* Dark overlay – text ke liye important */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: #81297257;
    z-index: 1;
}

/* Rotating mandala */
.cosmic-layers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 2;
     
    padding-top: 30px;
    /* Offset for navbar */
}

.rotating-zodiac {
    position: absolute;
    animation: slowRotate 90s linear infinite;
}

.main-zodiac {
    width: 65vw;
    max-width: 900px;
    opacity: 0.60;
    filter: brightness(1.99) contrast(2.9) drop-shadow(0 0 50px rgba(14, 12, 8, 0.1));
    animation-duration: 75s;
}

@keyframes slowRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Content sabse upar */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    max-width: 920px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.8), 0 0 40px rgba(250, 172, 77, 0.4);
}
.hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.8), 0 0 40px rgba(250, 172, 77, 0.4);
}

/* Medium devices (tablets) */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 42px;
    }
}

/* Small devices (mobiles) */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
}

/* Extra small devices (very small phones) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
        letter-spacing: 1px;
    }
}



.hero p {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 3.5rem;
    color: #FFD88A;
    opacity: 1;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ===== GOLD BUTTON (PREMIUM RESTORED) ===== */
.btn-gold {
    display: inline-block;
    background: linear-gradient(135deg, #FFD88A 0%, #FAAC4D 50%, #B8860B 100%);
    color: #2d1b4e !important;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(250, 172, 77, 0.4), inset 0 2px 2px rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration:none
}

/* Medium devices (tablets) */
@media (max-width: 992px) {
    .btn-gold {
        padding: 14px 35px;
        font-size: 1rem;
    }
}

/* Small devices (mobiles) */
@media (max-width: 768px) {
    .btn-gold {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}



/* Extra small / very small phones */
@media (max-width: 480px) {
    .btn-gold {
        padding: 8px 10px;
        margin-top: -29px !important;
        font-size: 12px !important;
        letter-spacing: 1px;
    }
}


.btn-gold:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(250, 172, 77, 0.6);
    background: linear-gradient(135deg, #FFF212 0%, #FAAC4D 100%);
    color: #1a0f2e !important;
}

/* Mobile */
@media (max-width: 768px) {
    .main-zodiac {
        width: 90vw;
        opacity: 0.38;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 9vw, 4.8rem);
    }

    .hero p {
        font-size: 1.2rem;
    }
}

/* Baaki sab sections same rakhe hain (about, services, booking, faq, footer) */
/* Sirf hero ke liye video background set kiya hai, purana image background hata diya */

/* --- SECTION GLOBAL --- */
section {
    padding: 5rem 10%;
    position: relative;
    z-index: 2;
    background-color: var(--primary-color);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
}

.section-title .divider {
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto;
}

/* --- ABOUT --- */
/* --- ABOUT SECTION (Mystical Upgrade) --- */
.about-section {
    background: linear-gradient(#872577bd, #81297282), url('../images/about_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 6rem 10% 7rem;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.about-img {
    flex: 1 1 340px;
    max-width: 480px;
    position: relative;
}

.img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6),
        0 0 0 2px rgba(212, 175, 55, 0.15);
    transition: transform 0.5s ease;
}

.about-img:hover .img-wrapper {
    transform: translateY(-10px);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.6s ease;
}

.img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 11, 46, 0.1), rgba(212, 175, 55, 0.08) 50%, rgba(26, 11, 46, 0.25));
    pointer-events: none;
}

.about-text {
    flex: 1 1 340px;
    max-width: 580px;
}

.about-text h3 {
    font-size: 2.1rem;
    margin-bottom: 1.4rem;
    position: relative;
    display: inline-block;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60%;
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), transparent);
}

.about-text p {
    margin-bottom: 1.6rem;
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Mobile adjustments */
@media (max-width: 992px) {
    .about-container {
        gap: 3.5rem;
        flex-direction: column;
        text-align: center;
    }

    .about-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* --- SERVICES --- */
/* --- SERVICES SECTION (Mystical Design with Center Rotating Chakra) --- */
/* --- SERVICES SECTION (Left-Right 3+3 Cards with Center Chakra) --- */
.services {
    background: linear-gradient(rgb(124 6 103 / 0%), rgb(19 19 19 / 85%)), url('../images/services-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 7rem 8%;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.07) 0%, transparent 70%);
    z-index: 0;
}

.services-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 35%;
    /* left-right columns */
}

.services-chakra-center {
    width: 30%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    position: relative;
    pointer-events: none;
}

.rotating-chakra {
    width: 100%;
    height: 100%;
    animation: slowRotate 70s linear infinite;
    filter: brightness(3.15) contrast(1.9) drop-shadow(0 0 70px rgba(212, 175, 55, 0.45));
    /* opacity: 0.28; */
}

.service-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    padding: 2.2rem;
    text-align: center;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    transition: all 0.4s ease;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent-color);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.11);
}

.service-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
    transition: transform 0.4s ease;
}

.service-card:hover i {
    transform: scale(1.2) rotate(12deg);
}

.service-card h3 {
    font-size: 21px;
    margin-bottom: 0.8rem;
}

.service-card p {
    color: ghostwhite;
    font-size: 0.97rem;
    line-height: 1.6;
}

/* New Book Slot Button */
.book-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 8px 25px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    text-decoration:none;
}

.book-btn:hover {
    background: #fff;
    color: var(--accent-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.45);
}

.book-btn1 {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 8px 25px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.book-btn1:hover {
    background: #fff;
    color: var(--accent-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.45);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-wrapper {
        flex-direction: column;
        gap: 5rem;
    }

    .services-column {
        width: 80%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    .services-column>.service-card {
        flex: 1 1 45%;
    }

    .services-chakra-center {
        width: 50%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 5rem 5%;
    }

    .services-column {
        flex-direction: column;
        width: 100%;
    }

    .services-column>.service-card {
        flex: 1 1 100%;
    }

    .services-chakra-center {
        width: 70%;
        max-width: none;
        opacity: 0.32;
    }
}




/* --- FOOTER --- */
.site-footer {
    background: linear-gradient(rgb(10 10 10 / 72%), rgb(6 2 6 / 85%)), url('../images/testimonial-background.jpg');
    color: var(--text-light);
    padding: 5rem 8% 2rem;
    position: relative;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.footer-top {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.footer-tagline {
    font-size: 1.1rem;
    color: var(--text-dim);
    opacity: 0.9;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-column h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-column a:hover {
    color: var(--accent-color);
    padding-left: 8px;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.social-icons a {
    color: var(--text-dim);
    font-size: 1.6rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}



/* Bottom Bar */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-bottom .copyright {
    margin-bottom: 1rem;
    color: var(--text-dim);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column ul {
        margin-bottom: 1.5rem;
    }


}

/* --- MEDIA QUERIES (THE MAGIC FOR RESPONSIVENESS) --- */

/* Tablet & Mobile Navigation Logic */
/* Tablet & Mobile Navigation Logic (Removed legacy styles to avoid conflict with Bootstrap) */
@media (max-width: 991px) {
    section {
        padding: 4rem 5%;
    }
}

/* Mobile Phones */
@media (max-width: 768px) {



    .about-container {
        gap: 2rem;
    }

    .section-title h2 {
        line-height: 1.3;
    }
}



/* BLOG SECTION with Video Background */
.blog-section {
    position: relative;
    padding: 6rem 8%;
    overflow: hidden;
    min-height: 100vh;
    /* optional – pura screen cover karega */
}

/* Video Background */
.blog-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.blog-video-bg video,
.blog-video-bg img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Dark Overlay (text padhne layak rahe) */
.blog-overlay {
    position: absolute;
    inset: 0;
    background: #81297266;
    /* dark purple – adjust opacity agar light chahiye */
    z-index: -1;
}

/* Section Title (same rakh sakte ho) */
.blog-section .section-title {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 4rem;
}

.blog-section .section-title h2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.blog-section .section-title p {
    color: var(--text-dim);
    font-size: 1.1rem;
}

/* Blog Grid (same rakh sakte ho ya thoda tweak kar sakte ho) */
/* ===== BLOG SECTION WRAPPER (VERY IMPORTANT) ===== */
.blog-section {
    padding: 0 1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.blog-card {
    background: #8129728f;
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

    .blog-card:hover {
        transform: translateY(-10px);
        border-color: var(--accent-color);
        box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    }

.blog-img img {
    width: 100%;
    height: auto; /* responsive */
    max-height: 220px;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
    display: block;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.blog-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: var(--text-dim);
}

.read-more {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

    .read-more:hover {
        color: #fff;
    }

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .blog-content {
        padding: 1.2rem;
    }

        .blog-content h3 {
            font-size: 1.2rem;
        }

        .blog-content p {
            font-size: 0.9rem;
        }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
     
    }

    .blog-card {
        border-radius: 14px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.25);
       
    }

    .blog-content {
        padding: 1rem;
    }

        .blog-content h3 {
            font-size: 1.1rem;
        }

        .blog-content p,
        .read-more {
            font-size: 0.9rem;
        }
}

@media (hover: none) {
    .blog-card:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
}


/* TESTIMONIAL SECTION – Open Elegant Design */
.testimonial-section {
    background: linear-gradient(#8129724d, #812972),
        url('../images/testimonial-background.jpg') center center / cover no-repeat fixed;
    /* 
       ↑↑↑ Yeh image sabse achhi cosmic feel deti hai (deep space nebula with stars)
       Agar apni image chahiye to path change kar dena jaise: url('assets/images/testimonial-bg.jpg')
    */
    padding: 6rem 8%;
    position: relative;
    overflow: hidden;
    color: var(--text-light);
}

.testimonial-slider-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-item {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.client-photo {
    width: 110px;
    height: 110px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent-color);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.client-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stars {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1.2rem;
    letter-spacing: 4px;
}

.testimonial-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: #ffffff;
    line-height: 1.8;
    margin: 0 0 1.5rem;
    position: relative;
}

.testimonial-quote::before,
.testimonial-quote::after {
    content: '“';
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.2;
    position: absolute;
}

.testimonial-quote::before {
    top: -20px;
    left: -20px;
}

.testimonial-quote::after {
    bottom: -40px;
    right: -20px;
    transform: rotate(180deg);
}

.client-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.4rem;
}

.client-role {
    font-size: 1rem;
    color: var(--text-dim);
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.15);
    border: none;
    color: var(--accent-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.slider-arrow.prev {
    left: 0;
}

.slider-arrow.next {
    right: 0;
}

.slider-arrow:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: var(--accent-color);
    transform: scale(1.4);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-item {
        padding: 1.5rem;
    }

    .slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}






.booking-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.booking-box {
    background: #fff;
    padding: 25px;
    width: 600px;
    border-radius: 12px;
}

.booking-content {
    display: flex;
    gap: 20px;
}

.time-slots button {
    display: block;
    margin-bottom: 8px;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
    cursor: pointer;
}

.modal-actions {
    margin-top: 15px;
    text-align: center;
}

.book-confirm {
    background: orange;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
}

.close-modal {
    background: #ffb3b3;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
}