/* =========================================
   1. RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Prevents header from covering titles */
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0f0f0f;
    color: white;
    overflow-x: hidden;
    padding-top: 70px; 
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Right ki jagah Left kar dein */
    right: auto; /* Purani right property ko disable karne ke liye */
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    z-index: 9999;
}
/* =========================================
   2. NAVIGATION HEADER (LOGO & BUTTONS FIX)
   ========================================= */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding: 20px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    color: gold;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 22px;
    white-space: nowrap;
    letter-spacing: 1px;
}

.logo-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 215, 0, 0.8);
    margin-left: 5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: gold;
}

.nav-btn {
    background: gold;
    color: black !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

/* =========================================
   3. BACKGROUND & PARTICLES
   ========================================= */
.shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.15;
    animation: float 20s infinite alternate ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: gold;
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: #ff4500;
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(100px, 50px) rotate(30deg); }
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* =========================================
   4. GLOBAL SECTION STYLES
   ========================================= */
section {
    padding: 80px 0;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    display: inline-block;
}

section h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background: gold;
    margin: 10px auto 0;
}

/* THE CENTERING FIX FOR ABOUT HEADINGS */
.about .container > h2, 
.about .container > h3 {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.premium-heading { 
    font-weight: 500; 
    color: #ddd; 
    margin-bottom: 40px; 
}

/* =========================================
   5. HERO SECTION
   ========================================= */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-logo {
    width: 180px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 10px rgba(255,215,0,0.3));
}

.hero-content {
    background: url("tras.jpg.jpg") center/cover no-repeat;
    padding: 50px 60px;
    border-radius: 30px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    max-width: 800px;
    position: relative;
    overflow: hidden;
}

.hero-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    border-radius: 20px;
}

.hero-content * { position: relative; z-index: 1; }

.hero-title {
    font-size: clamp(32px, 5vw, 54px);
    margin-bottom: 15px;
    background: linear-gradient(to right, #fff, gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================================
   6. ABOUT SECTION (GRID FIX)
   ========================================= */
.about-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    padding: 60px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.about-image img {
    max-width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(255,215,0,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: block;
}

.about-intro-text { 
    font-size: 18px; 
    font-weight: 500; 
    margin-bottom: 20px; 
    color: #fff; 
    line-height: 1.8; 
}

.about-text p { 
    margin-bottom: 15px; 
    line-height: 1.8; 
    color: #ddd; 
}

.about-features { margin-top: 20px; }
.about-features ul { list-style: none; }
.about-features li { 
    margin-bottom: 10px; 
    color: gold; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
}

/* =========================================
   7. VIDEO SHOWCASE & STATS
   ========================================= */
.video-showcase { background: rgba(255, 215, 0, 0.02); }

.video-container { 
    max-width: 900px; 
    margin: 40px auto; 
    border-radius: 20px; 
    overflow: hidden; 
    border: 1px solid rgba(255, 215, 0, 0.3); 
    box-shadow: 0 10px 50px rgba(0,0,0,0.5); 
}

.main-video { width: 100%; display: block; }

.stats-section { padding: 80px 0; background: linear-gradient(to bottom, transparent, #1a1a1a); }

.stats-grid { 
    display: flex; 
    justify-content: space-around; 
    flex-wrap: wrap; 
    gap: 30px; 
    text-align: center; 
}

.stat-item h3 { font-size: 50px; color: gold; font-weight: 700; margin-bottom: 5px; }
.stat-item p { text-transform: uppercase; letter-spacing: 2px; opacity: 0.8; font-size: 13px; }

/* =========================================
   8. SERVICES & CARDS
   ========================================= */
.card-container { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
    margin-top: 50px; 
}

.service-card img, .gallery-item img {
    transition: transform 0.5s ease;
}

.service-card:hover img, .gallery-item:hover img {
    transform: scale(1.1); /* Subtle zoom in */
}

.service-card {
    overflow: hidden; /* This keeps the zoom inside the card borders */
}

.service-card { 
    background: rgba(255,255,255,0.03); 
    border-radius: 20px; 
    overflow: hidden; 
    text-decoration: none; 
    color: #fff; 
    transition: 0.4s; 
    border: 1px solid rgba(255,255,255,0.05); 
}

.service-card img { width: 100%; height: 250px; object-fit: cover; }

.service-card:hover { 
    transform: translateY(-10px); 
    border-color: gold; 
    box-shadow: 0 10px 30px rgba(255,215,0,0.2); 
}

/* =========================================
   9. GALLERY & CONTACT
   ========================================= */
.gallery h2 { margin-bottom: 60px; }

.gallery-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 20px; 
}

.gallery-item img { 
    width: 100%; 
    border-radius: 15px; 
    transition: 0.3s; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.3); 
}

.gallery-item img:hover { transform: scale(1.03); box-shadow: 0 10px 30px rgba(255,215,0,0.2); }

.social-wrapper { display: flex; justify-content: center; gap: 20px; margin: 30px 0; }

.social-link { 
    font-size: 24px; color: white; width: 55px; height: 55px; 
    border: 1px solid gold; border-radius: 50%; 
    display: flex; justify-content: center; align-items: center; 
    text-decoration: none; transition: 0.4s; 
}

.social-link:hover { background: gold; color: black; transform: translateY(-5px); }

.btn-glow { 
    display: inline-block; padding: 15px 40px; 
    background: linear-gradient(45deg, gold, orange); 
    color: black; text-decoration: none; border-radius: 50px; 
    font-weight: 600; transition: 0.3s; 
    box-shadow: 0 0 15px rgba(255,215,0,0.6); 
}

footer { padding: 40px; background: #000; opacity: 0.6; text-align: center; }

/* --- Reviews Slider Styles --- */
.reviews { background: rgba(255, 215, 0, 0.05); }

.review-slider { padding: 40px 0 60px; }

.review-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    transition: 0.3s;
}

.stars { color: gold; margin-bottom: 15px; font-size: 18px; }

.review-card p { font-style: italic; color: #ddd; margin-bottom: 20px; font-size: 16px; }

.review-card h4 { color: gold; font-family: 'Poppins', sans-serif; }

.g-verify { font-size: 12px; color: #888; display: block; margin-top: 10px; }

.swiper-pagination-bullet { background: gold !important; }

/* Container for the Map */
.map-container {
    max-width: 800px; /* Reduced width for a cleaner look */
    margin: 30px auto; /* Centers the map */
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 15px 50px rgba(0,0,0,0.6);
}

/* Control the height of the Map */
.map-container iframe {
    width: 100%;
    height: 350px; /* Reduced from 450px to 350px */
    display: block;
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

/* Make it look good on mobile */
@media (max-width: 768px) {
    .map-container {
        width: 95%; /* Almost full width on small screens */
    }
    .map-container iframe {
        height: 250px; /* Smaller height for mobile phones */
    }
}

/* =========================================
   10. RESPONSIVE QUERIES
   ========================================= */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .about-image { order: -1; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-logo { font-size: 18px; }
}

/* Instagram Widget Centering */
#gallery .elfsight-app-1605ba2d-950b-4a3e-992c-dfee1f010e90 {
    max-width: 100%;
    margin: 0 auto !important;
    display: block;
}

#gallery .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}