/* ==========================================
   1. RESET & VARIABLES
   ========================================== */
:root {
    /* Color Palette */
    --primary-color: #0d0d0d;
    /* Rich Charcoal Black */
    --secondary-color: #7a6e67;
    /* Soft Taupe */
    --accent-color: #ff3333ef;
    /* Premium Gold */
    --accent-red: #ff3333;
    /* Bright Vibrant Red (For black background visibility) */
    --bg-light: #ffffff;
    /* Pure White Background */
    --bg-dark: #121212;
    /* Dark Theme Background */

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Layout Spacing */
    --max-width: 1200px;
    --container-padding: 0 2rem;
}

/* Base Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* Base font size */
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--primary-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================
   2. REUSABLE CONTAINER (Max Width & Padding)
   ========================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    /* Centers the content horizontally */
    padding: var(--container-padding);
}

/* Section Spacing (Margin bottom for layout blocks) */
.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (max-width: 768px) {
    .section-padding {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

/* ==========================================
   3. TYPOGRAPHY & COLORS (Common)
   ========================================== */
.nav-links a.active {

    color: #ff3333;

    position: relative;

}

.nav-links a.active::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -6px;

    width: 100%;

    height: 2px;

    background: #ff3333;

}

h1,
h2,
h3,
h4,
.font-serif {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
    /* ~48px */
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.25rem;
    /* ~36px */
    margin-bottom: 1.2rem;
    text-align: center;
    /* Section headings usually look good centered */
}

h3 {
    font-size: 1.5rem;
    /* ~24px */
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    font-weight: 300;
    /* Light weight for elegant look */
    color: #333333;
    /* Slightly softer black for body readability */
    margin-bottom: 1.5rem;
}

.subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    text-align: center;
    display: block;
    margin-bottom: 0.5rem;
}

/* Links & Buttons Blueprint */
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    display: block;
    /* Removes bottom whitespace gap */
    height: auto;
}

/* ==========================================
   4. NAVIGATION BAR STYLING
   ========================================== */
/* Header Background White */
.main-header {
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    padding: 0 20px;
}

.logo-img {
    width: 150px;
    height: auto;
    display: block;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-item {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 800; /* Bold as requested */
    color: #000000; /* Black text */
    position: relative;
    padding: 0.5rem 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: var(--accent-red);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-red);
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

/* Hamburger Menu (For Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: #000000; /* Dark lines for white header */
    transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        gap: 2rem;
        transition: right 0.4s ease;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
    }

    /* Active state for hamburger */
    .hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}
/* ==========================================
   6. HERO SECTION STYLING (Video Background)
   ========================================== */
/* Hero Section: Corners round aur full height */
/* Hero Section: Har jagah uniform spacing */
.hero-section {
    position: relative;
    width: calc(100% - 40px); /* Charo taraf se 20px ka margin */
    margin: 20px auto; /* Center alignment */
    height: 85vh !important; /* Mobile/Tab ke liye height fix */
    max-height: 1000px !important;
    border-radius: 30px; /* Corners round */
    overflow: hidden;
}

/* Video Container: Absolute fill */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Video: Pura cover kare bina stretch huye */
.video-container video {
    width: 100% !important;
    height: 100% !important;
    /* 'contain' se video cut nahi hogi, lekin side mein thoda space aa sakta hai */
    object-fit: cover !important; 
    object-position: center !important;
    background-color: #000; /* Background black rakhne ke liye */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 50vh !important; /* Mobile par height kam kar di */
        margin: 10px auto; /* Mobile par kam margin */
        border-radius: 20px; /* Mobile par thode chote corners */
    }
}

@media (min-width: 1024px) {
    .hero-section {
        height: 85vh !important; /* Laptop/Desktop par badi height */
        margin: 20px auto;
    }
}
/* ==========================================
   8. MODERN ABOUT SECTION STYLING
   ========================================== */
/* 1. About Section Base */
.about-section {
    background-color: var(--bg-light);
    padding: 0;
}

/* 2. Top Banner */
.about-top-banner {
    background-color: #e5dfdf7e;
    text-align: center;
    padding: 4rem 1rem;
    margin-bottom: 5rem;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

/* 3. Grid Container */
.about-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Laptop ke liye balanced */
    gap: 4rem;
    align-items: center;
    padding: 0 32px !important;
}

/* 4. Right Side Image Container (IMAGE CUT HONE KA FIX) */
.about-slideshow-right {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3; /* Image aspect ratio maintain karega */
    perspective: 1500px;
}

.album-container {
    width: 100%;
    height: 100%;
    border: 10px solid #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden; /* Image bahar na nikle */
    background: #000;
}

.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Pura image dikhaane ke liye 'contain' use karein */
    background-color: #000;
    transition: opacity 1.2s ease-in-out;
    opacity: 0;
}

.about-slide.active { opacity: 1; }

/* 5. Lightbox Fix */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain; /* Lightbox mein bhi image puri dikhegi */
}

/* 6. Responsive Queries */

/* Tablet & Smaller Laptops */
@media (max-width: 1024px) {
    .about-grid-container { gap: 2rem; }
    .banner-title { font-size: 2rem; }
}

/* Mobile & Tablets (Stacking) */
@media (max-width: 768px) {
    .about-grid-container {
        grid-template-columns: 1fr; /* Mobile par upar-niche */
        padding: 0 1rem;
    }

    .about-top-banner { padding: 3rem 1rem; }
    
    .banner-title { font-size: 1.5rem; }

    .about-slideshow-right {
        height: 350px; /* Mobile par height control */
        aspect-ratio: auto;
    }
    
    .about-content-left {
        order: 1;
    }
    
    .about-slideshow-right {
        order: 2;
    }
}
/* ==========================================
   13. MODERN WORKS SECTION STYLING
   ========================================== */
/* Slider Container */
/* Container settings */
.works-scroll-container {
    padding: 0px 32px !important;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Desktop: 3 cards */
    gap: 10px;
    width: 100%;
}

/* Card Styling */
.video-card {
    display: block;
    width: 100%;
    height: 480px; /* Consistent height */
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

.video-card:hover { transform: translateY(-10px); }

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Glassmorphic Overlay */
.card-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 25px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    text-align: center;
}

.couple-name {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
    margin: 0;
    font-family: var(--font-heading);
}

/* Responsive Logic */
@media (max-width: 992px) { /* Tablet */
    .video-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .video-card { height: 400px; }
}

@media (max-width: 768px) { /* Mobile */
    .video-grid { 
        grid-template-columns: 1fr; /* Single column */
        /* padding: 0 20px; */
    }
    .video-card { height: 350px; }
}
/* ==========================================
   16. LUXURY TESTIMONIALS SECTION STYLING
   ========================================== */
.testimonials-section {
    background-color: #ffffff;
    color: #000;
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonial-mini-tag {
    color: var(--accent-red);
    font-weight: 600;
}

.testimonial-main-title {
    font-size: 2.5rem;
    color: #000;
    margin-top: 0.5rem;
}

.testimonial-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

/* Updated: Image on top, Content on bottom by default */
.testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    flex-direction: column; 
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    border-radius: 20px;
}

.testimonial-left-img {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.testimonial-left-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-right-content {
    width: 100%;
    padding: 3rem 2.5rem;
    text-align: left;
}

.testimonial-right-content::before {
    content: "“";
    font-size: 5rem;
    color: var(--accent-color);
    line-height: 0;
    margin-bottom: 1.5rem;
    display: block;
    opacity: 0.3;
}

.testimonial-right-content p, .testimonial-right-content h4, .testimonial-right-content small {
    color: #000 !important;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #000 !important;
}

.client-name {
    font-size: 1.4rem;
    color: #000 !important;
    font-weight: 600;
}

/* Get a Quote Section */
.quote-cta-wrapper {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.quote-cta-wrapper p { margin: 0; font-weight: 600; color: #000; }

.whatsapp-btn {
    background: #25d366;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: #000;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .quote-cta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin: 20px 15px;
    }
}
/* --- Get a Quote Section --- */
.quote-cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    gap: 20px;
}

.quote-cta-wrapper p {
    color: #000;
    margin: 0;
    font-size: 1.1rem;
    flex: 1;
}

.whatsapp-btn {
    background-color: #25d366;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
}

/* --- Responsive for Quote Section --- */
@media (max-width: 768px) {
    .quote-cta-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}

/* --- Ensure Image Top / Content Bottom --- */
.testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    background: #ffffff;
    box-sizing: border-box;
}

/* For Mobile: Force Image Top */
@media (max-width: 768px) {
    .testimonial-card {
        flex-direction: column;
    }
    .testimonial-left-img {
        width: 100% !important;
        height: 300px;
    }
}


.testimonial-slider-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 60px 0;
}

/* Base styles */
.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    align-items: center;
}

.testimonial-card {
    /* Responsive widths */
    flex: 0 0 90%; /* Default mobile: 90% width */
    margin: 0 5%;
    transition: all 0.5s ease;
    border-radius: 20px;
    opacity: 0.5;
    transform: scale(0.9);
}

/* Tablet (2 cards visible) */
@media (min-width: 769px) {
    .testimonial-card { flex: 0 0 45%; margin: 0 2.5%; }
}

/* Laptop/Desktop (3 cards visible) */
@media (min-width: 1025px) {
    .testimonial-card { flex: 0 0 30%; margin: 0 1.66%; }
}

.testimonial-card.active-center {
    transform: scale(1); /* Keep zoom effect */
    opacity: 1;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* --- Responsive Adjustments --- */


@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 90%; 
    }
    .testimonial-right-content {
        padding: 2rem 1.5rem ;
    }
}
/* ==========================================
   18. MODERN DYNAMIC GALLERY SECTION
   ========================================== */
.gallery-section {
    background-color: var(--bg-light);
}

.gallery-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem auto;
}

.gallery-mini-tag {
    color: var(--accent-red);
    font-weight: 600;
}

.gallery-main-title {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.gallery-desc {
    font-size: 0.95rem;
    color: #666666;
    margin-top: 0.5rem;
}

/* 3-Column Masonry/Grid Layout style */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Gallery Item Card Structure */
.gallery-item {
    position: relative;
    width: 100%;
    height: 380px;
    /* Elegant vertical box size */
    overflow: hidden;
    background-color: var(--primary-color);
    cursor: pointer;
    opacity: 0;
    /* JS load handle fade animation setup */
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Active visible state triggered by JS delay */
.gallery-item.loaded {
    opacity: 1;
    transform: translateY(0);
}

.gallery-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Smooth Premium Hover Overlay Plate */
.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.75);
    /* Subtle charcoal black sheet mask */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 2rem;
    text-align: center;
}

.gallery-item-title {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.4rem;
    transform: translateY(15px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item-category {
    font-family: var(--font-body);
    color: var(--accent-color);
    /* Premium gold tag */
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(15px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1) 0.05s;
    /* Micro stagger transition */
}

/* ==========================================
   19. GALLERY INTERACTIVE HOVER ACTIONS
   ========================================== */
.gallery-item:hover .gallery-img-wrapper img {
    transform: scale(1.1) rotate(1deg);
    /* Smooth zoom + elite cinematic tilt */
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-item-title,
.gallery-item:hover .gallery-item-category {
    transform: translateY(0);
    /* Text content smoothly floats up */
}

/* ==========================================
   20. GALLERY RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 Column stack on tablets */
        gap: 1.5rem;
    }

    .gallery-item {
        height: 340px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        /* Full width row stack on phones */
        gap: 1.2rem;
    }

    .gallery-main-title {
        font-size: 2rem;
    }

    .gallery-item {
        height: 320px;
    }
}
.scrolling-gallery {
    display: flex;
    gap: 20px;
    height: 600px; /* Container ki height fix karein */
    overflow: hidden;
    /* mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent); */
}

.gallery-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 33%;
    animation: scroll-vertical 20s linear infinite;
}

/* Animation Direction */
.scroll-up { animation-direction: normal; }
.scroll-down { animation-direction: reverse; }

@keyframes scroll-vertical {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); } /* Half height move hogi */
}

.gallery-card {
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    height: 300px; /* Card height */
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: 0.3s;
}

.gallery-card:hover img { transform: scale(1.1); }
/* Tablet (2 columns) */
@media (max-width: 992px) {
    .scrolling-gallery {
        height: 500px;
    }
    .gallery-col {
        width: 50%; /* Tablet mein 2 columns */
    }
    /* Tablet par 3rd column chhupa dein ya layout adjust karein */
    .gallery-col:nth-child(3) {
        display: none; 
    }
}

/* Mobile (Single Column - Full width cards) */
@media (max-width: 600px) {
    .scrolling-gallery {
        height: 450px;
    }
    .gallery-col {
        width: 100%; /* Mobile mein ek hi full column */
    }
    .gallery-col:nth-child(2), 
    .gallery-col:nth-child(3) {
        display: none; /* Mobile par sirf ek column chalega */
    }
    
    .gallery-card {
        height: 350px; /* Mobile par card height */
        width: 100%;
    }
}



.btn-see-more {
    display: inline-block;
    padding: 12px 35px;
    background-color: transparent;
    color: #333;
    border: 1px solid #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.btn-see-more:hover {
    background-color: #333;
    color: #fff;
}


/* Stats Section - Fixed */
.stats-container {
    display: flex;
    justify-content: space-around;
    padding: 50px 32px;
    background: #e5dfdf7e;
    margin-top: 50px;
    text-align: center;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    gap: 30px;
}

.stat-item {
    flex: 1 1 200px; /* Ensures they share space nicely */
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--accent-red);
    margin: 0;
    line-height: 1;
}

.stat-item p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #555;
    margin-top: 10px;
    font-weight: 600;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 50px 32px;
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 50px;
    font-family: var(--font-heading);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-item {
    background: #fff;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--accent-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* ==========================================
   21. MINIMAL CONTACT SECTION STYLING
   ========================================== */
.contact-section {
    background-color: #ffffff !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.contact-mini-tag {
    color: var(--accent-red);
    font-weight: 600;
}

.contact-main-title {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: #000;
    margin-top: 0.5rem;
}

.contact-desc {
    font-size: 0.95rem;
    color: #666666;
    margin-top: 0.5rem;
    line-height: 1.6;
}

/* Contact List Layout Container */
.contact-container {
    max-width: 750px;
    /* Kept tight and elegant */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Base Style for All Contact Bars */
.contact-bar {
    display: flex;
    align-items: center;
    padding: 1.5rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1),
        background-color 0.3s ease;
}

/* WhatsApp Main Priority Bar (Vibrant Modern Contrast Look) */
.whatsapp-bar {
    background-color: #25D366;
    /* Official WhatsApp green for fast recognition */
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.whatsapp-bar .bar-label {
    color: rgba(255, 255, 255, 0.8);
}

.whatsapp-bar .bar-title {
    color: #ffffff;
}

/* Communication Bars (Call & Email - Clean Gray/Black Aesthetics) */
.communication-bar {
    background-color: #f7f7f7;
    border: 1px solid #ff3333;
    color: var(--primary-color);
}

.communication-bar .bar-label {
    color: var(--secondary-color);
}

.communication-bar .bar-title {
    color: var(--primary-color);
}

/* Internal Row Layout Items */
.contact-bar-icon {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    width: 30px;
}

.contact-bar-info {
    text-align: left;
    flex-grow: 1;
    /* Pushes the arrow to the extreme right side */
}

.bar-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.2rem;
}

.bar-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0;
}

.contact-bar-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

/* ==========================================
   22. CONTACT INTERACTIVE HOVER ACTIONS
   ========================================== */
.whatsapp-bar:hover {
    transform: translateY(-4px);
    background-color: #20ba59;
    /* Slightly darker rich green */
    box-shadow: 0 15px 30px rgba(32, 186, 89, 0.35);
}

.communication-bar:hover {
    transform: translateY(-4px);
    background-color: #faf6f600;
    /* Turns sleek dark black on hover */
    border-color: var(--primary-color);
    
}

.communication-bar:hover .bar-label {
    color: var(--accent-color);
    /* Label transforms to Premium Gold text */
}

.communication-bar:hover .bar-title,
.communication-bar:hover .contact-bar-arrow {
   /* color: #eb4242bb; */
}

.contact-bar:hover .contact-bar-arrow {
    transform: translateX(8px);
    /* Arrow glides forward smoothly */
}

/* ==========================================
   23. CONTACT RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 768px) {
    .contact-main-title {
        font-size: 2rem;
    }

    .contact-bar {
        padding: 1.2rem 1.5rem;
    }

    .contact-bar-icon {
        margin-right: 1.2rem;
    }

    .bar-title {
        font-size: 1.15rem;
    }

    .contact-bar-arrow {
        display: none;
        /* Mobile screens par space clean rakhne ke liye hide kiya */
    }
}


/* ==========================================
   24. PREMIUM FOOTER STYLING
   ========================================== */
.main-footer {
    background-color: var(--primary-color);
    /* Rich Charcoal Black from root */
    color: #ffffff;
    padding-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* 3-Column Footer Responsive Structure */
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1fr;
    /* Custom asymmetric look */
    gap: 4rem;
    padding-bottom: 4rem;
}

/* Column 1: Brand Info Box */
.footer-brand-box {
    text-align: left;
}

/* Updated Footer Logo Core Wrapper for Interactive Hover */
.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: #ffffff;
    line-height: 1;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Registered Symbol styling exactly matching header */
.footer-logo span {
    font-size: 1rem;
    vertical-align: super;
    color: var(--accent-color);
    /* Gold Trademark ring sign */
    margin-left: 2px;
    transition: color 0.3s ease;
}

/* Logo hover system synced perfectly with header rules */
.footer-logo:hover {
    transform: scale(1.02);
    color: var(--accent-color);
    /* Text transforms to premium gold on hover */
}

.footer-logo:hover span {
    color: var(--accent-red);
    /* Registered dot turns red on active hover */
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 6px;
    color: var(--secondary-color);
    margin-top: 0.3rem;
    margin-bottom: 1.5rem;
}

.footer-about-text {
    font-size: 0.9rem;
    color: #b3b3b3;
    line-height: 1.7;
    max-width: 340px;
}

/* Column 2 & 3 Setup Elements Headers */
.footer-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 1.8rem;
    font-weight: 500;
    position: relative;
    text-align: left;
}

/* Subtle line indicator under headers */
.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--accent-color);
    /* Premium Gold line indicator */
}

/* Links List Structure Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu li a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

/* Links Hover Interaction Links */
.footer-menu li a:hover {
    color: var(--accent-color);
    /* Changes to Gold root on active focus */
    transform: translateX(4px);
    /* Micro movement glide interaction */
}

/* Column 3: Social Box Structure */
.footer-social-box {
    text-align: left;
}

.social-desc {
    font-size: 0.95rem;
    color: #b3b3b3;
    margin-bottom: 1.5rem;
}

/* Inline flex alignment line for social shapes */
.social-icons-row {
    display: flex;
    gap: 1rem;
}

/* Glassmorphic Rounded Social Vector Plates */
.social-icon-link {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Social Icon Vectors Interactive Hover Actions */
.social-icon-link:hover {
    color: #ffffff;
    background-color: var(--accent-red);
    /* Changes to vibrant red pop highlight */
    border-color: var(--accent-red);
    transform: translateY(-5px);
    /* Smooth layout float jump up */
    box-shadow: 0 10px 20px rgba(255, 51, 51, 0.25);
}

/* Bottom Border Strip Credits Area */
.footer-copyright-bar {
    margin-top: 5rem;
    padding: 1.8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: #0a0a0a;
    /* Extreme deep black color base fill */
}

.copyright-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #777777;
}

/* Footer Logo and Brand Box Styling */
.footer-brand-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Logo ko left align karne ke liye */
    gap: 15px;
    /* Logo aur text ke beech thoda space */
}

.footer-brand-box img {
    width: 200px;
    /* Logo ki size yahan adjust karein */
    height: auto;
    /* Image ka ratio kharab nahi hoga */
    display: block;
}

.footer-about-text {
    max-width: 300px;
    /* Text ki width limit set ki hai */
    font-size: 0.95rem;
    line-height: 1.5;
}
/* -===============- */
.main-footer {
    background-color: #ffffff; /* Changed to White */
    color: #000000;           /* Changed to Black */
    padding-top: 5rem;
    border-top: 1px solid #e0e0e0; /* Subtle border */
}

/* Update text elements for black theme */
.footer-title, 
.footer-about-text, 
.social-desc, 
.contact-list span, 
.footer-copyright-bar p {
    color: #000000 !important;
}

/* Update list items/links */
.footer-menu li a {
    color: #555555; /* Dark gray for better readability on white */
}

.footer-menu li a:hover {
    color: var(--accent-red);
}

/* Footer Title Underline */
.footer-title::after {
    background-color: var(--accent-red); /* Changed to red for visibility */
}

/* Glassmorphic Plates -> Light Mode */
.social-icon-link {
    background-color: #f0f0f0; /* Light gray background */
    border: 1px solid #ddd;
    color: #333;
}

.social-icon-link:hover {
    color: #ffffff;
    background-color: var(--accent-red);
    border-color: var(--accent-red);
}

/* Bottom Copyright Bar */
.footer-copyright-bar {
    margin-top: 5rem;
    padding: 1.8rem 0;
    border-top: 1px solid #e0e0e0;
    background-color: #f9f9f9; /* Slightly off-white for the bar */
}
/* Sidebar Container */
.floating-social-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.social-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s;
}

/* Specific Colors */
.insta { background: #e1306c; }
.youtube { background: #ff0000; }
.whatsapp { background: #25d366; } /* WhatsApp Green */

.social-btn:hover {
    width: 60px; /* Hover par thoda extend hoga */
    border-radius: 5px 0 0 5px;
}
/* ==========================================
   25. FOOTER RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        /* Switches to 2 Columns grid matrix on tablet frameworks */
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding-top: 4rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        /* Single column flow collapse on small phone layers */
        gap: 2.5rem;
    }

    .footer-title {
        margin-bottom: 1.2rem;
    }

    .footer-copyright-bar {
        margin-top: 3.5rem;
    }

    .copyright-flex {
        flex-direction: column;
        /* Vertical flex axis reset */
        gap: 0.6rem;
        text-align: center;
    }
}

.footicon-img {
    height: 500px !important;
    /* Height yahan se control karein (50px se badhakar 80px kiya) */
    width: auto;
    /* Width apne aap adjust ho jayegi */
    opacity: 0.7;
    object-fit: contain;
    /* Image stretch nahi hogi */
}

/* Mobile ke liye size chhota karne ke liye */
@media (max-width: 768px) {
    .footicon-img {
        height: 500px !important;
    }
}


/* Testimonial Text */
.testimonial-right-content p {
    color: #fff;
}

/* Client Name */
.testimonial-right-content h4 {
    color: #fff;
}

/* Client Title */
.testimonial-right-content small {
    color: #fff;
}

/* Gallery Overlay Text */
.gallery-item-overlay h3 {
    color: #fff;
}

.gallery-item-overlay p {
    color: #fff;
}





/* Works page */

/* Hero Slider (Fade Animation) */
.works-page-hero {
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fade 25s infinite;
}

.slide:nth-child(1) {
    animation-delay: 0s;
}

.slide:nth-child(2) {
    animation-delay: 5s;
}

.slide:nth-child(3) {
    animation-delay: 10s;
}

.slide:nth-child(4) {
    animation-delay: 15s;
}

.slide:nth-child(5) {
    animation-delay: 20s;
}

@keyframes fade {

    0%,
    20% {
        opacity: 0;
    }

    5%,
    15% {
        opacity: 1;
    }

    20% {
        opacity: 0;
    }
}

.hero-text {
    color: white;
    font-family: var(--font-heading);
    font-size: 3rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Portfolio Grid (3x3) */
.works-grid {
    display: grid;
    gap: 30px;
    padding: 50px 0;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .works-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.work-card {
    background: #fff;
    border: 1px solid #ddd;
    transition: 0.4s;
    animation: fadeInUp 0.8s forwards;
    opacity: 0;
}

.work-card:nth-child(even) {
    animation-delay: 0.2s;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.work-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.info {
    padding: 20px;
    text-align: center;
}

.info h3 {
    font-family: var(--font-heading);
}

.info p {
    color: #666;
    font-size: 0.9rem;
    margin-top: 10px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: #f9f9f9;
    text-align: center;
}

.contact-btns {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    border-radius: 5px;
}

.call-btn {
    background: var(--primary-color);
}

.whatsapp-btn {
    background: #25d366;
}

/* Contact Section (Dark Background) */
.contact-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    /* Deep Black/Charcoal from your root */
    color: #ffffff;
}

.contact-title {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-desc {
    color: #cccccc;
    /* Light gray for readability on dark background */
    max-width: 600px;
    margin: 0 auto 30px auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 35px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    border-radius: 2px;
    /* Professional sharp edges */
    transition: 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.call-btn {
    background-color: transparent;
    border: 1px solid #ffffff;
}

.call-btn:hover {
    background-color: #ffffff;
    color: var(--primary-color);
}

.whatsapp-btn {
    background-color: #25d366;
    border: 1px solid #25d366;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    border-color: #128c7e;
}

/*  */


/* Hero Section */
.works-page-hero {
    height: 60vh;
    position: relative;
    overflow: hidden;
}

.hero-static {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

/* Video Section Fix (Padding added) */
.frame-talks {
    padding: 50px 32px;
}

/* Yahan padding di gayi hai */
.section-title {
    text-align: center;
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Heartlines Section */
.heartlines {
    padding: 50px 32px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.t-card {
    text-align: center;
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
    overflow: hidden;
    animation: fadeInUp 1s ease forwards;
}

.t-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-bottom: 15px;
    transition: transform 5s ease-in-out;
}

.t-card:hover img {
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* About */
/* Hero */
.about-hero {
    height: 50vh;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: var(--bg-dark);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin-bottom: 5px;
}

/* About Rows */
.about-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 80px 0;
}

.about-row.reverse {
    flex-direction: row-reverse;
}

.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {

    .about-row,
    .about-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Hero page */
.works-page-hero {
    height: 60vh;
    position: relative;
    overflow: hidden;
}

.hero-static {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-text {
    color: white;
    font-family: var(--font-heading);
    font-size: 4rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Thoda dark overlay text readability ke liye */
    z-index: 1;
}

/* Contect */
/* Contact Page Unified CSS */
.contact-sections {
    padding: 50px 32px !important;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    margin-bottom: 40px;
}

/* Main Grid (Form Left, Office Right) */
.main-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Form Container */
.form-container input,
.form-container textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
}

.btn-whatsapp {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background: var(--accent-red);
}

/* Office Container */
.office-container h3 {
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.office-card {
    margin-bottom: 20px;
    padding: 25px;
    border-left: 4px solid var(--accent-red);
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.office-card h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.office-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

/* Map Container */
.map-container {
    margin-top: 50px;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

.map-container h3 {
    font-family: var(--font-heading);
    margin-bottom: 20px;
    text-align: center;
}

/* Responsive Layout */
@media (max-width: 768px) {
    .main-contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-sections {
        padding: 40px 20px;
    }
}


/* ============================= */
#lightgallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 20px;
}

#lightgallery a img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

#lightgallery a img:hover {
    transform: scale(1.05);
}




/* =========== Service =========== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    padding: 40px;
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    border:1.5px solid var(--accent-red); /* Gold touch */
    box-shadow: 0px 0px 30px 0px var(--accent-red);
}

.service-card i {
    font-size: 40px;
    color: var(--accent-red);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Lightbox Modal Structure */
.gallery-modal {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0; 
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.95); /* Full screen dark background */
    align-items: center;
    justify-content: center;
}

/* Modal Content Image */
.modal-content {
    max-width: 90%;
    max-height: 80vh; /* Screen ka 80% height hi legi */
    object-fit: contain;
    /* border: 2px solid #fff; */
}

/* Wrapper for arrows and image */
.lightbox-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

/* Close Button (Top Right) */
.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

/* Navigation Buttons (Arrows) */
.nav-btn {
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    padding: 10px;
    cursor: pointer;
    position: absolute;
}

.nav-btn.left { left: 10px; }
.nav-btn.right { right: 10px; }

/* Mobile optimization */
@media (max-width: 600px) {
    .modal-content { max-width: 95%; }
    .close-lightbox { top: 10px; right: 15px; font-size: 30px; }
    .nav-btn { font-size: 20px; padding: 5px; }
}



/* Floating Social Sidebar */
.floating-social-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999; /* Taaki sabse upar dikhe */
}

.social-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    border-radius: 5px 0 0 5px; /* Left side se round */
    transition: 0.3s ease;
}

.social-btn:hover {
    width: 70px; /* Hover par thoda bada ho jayega */
}

/* Specific colors */
.insta { background: #e1306c; }
.youtube { background: #ff0000; }

@media (max-width: 768px) {
    .floating-social-sidebar { gap: 5px; }
    .social-btn { width: 40px; height: 40px; font-size: 16px; }
}


.works-scroll-container {
    width: 100%;
    overflow: hidden;
    padding: 50px 0;
}

.slider-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: all 0.5s ease;
}

.video-card {
    min-width: 300px;
    height: 400px;
    transition: all 0.5s ease;
    transform: scale(0.85); /* Side cards chote */
    filter: brightness(0.6); /* Side cards thode dark */
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

/* Center card focus effect */
.video-card.active-center {
    transform: scale(1.1); /* Center card bada */
    filter: brightness(1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-card {
    min-width: 300px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden; /* Yeh white space ko cut kar dega */
    position: relative;
    cursor: pointer;
}

.video-card video, 
.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Yeh image ko bina distort kiye poora area fill karega */
    display: block;
}
/* Slider Container */
.slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px;
}

/* Card Style */
.video-card {
    min-width: 300px;
    height: 400px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* White space hatane ke liye */
}

/* Text Overlay */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px;
    color: white;
}

.couple-name {
    margin: 0;
    font-size: 1.2rem;
}

/* Hover Effect */
.video-card:hover {
    transform: scale(1.05);
}

/*  */

