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

/* Container and Section Styles */
.page-04-hero-section {
    width: 100%;
    background-color: #ffffff;
    padding: 48px 24px;
    margin-top: 120px;
}

@media (min-width: 768px) {
    .page-04-hero-section {
        padding: 64px 24px;
    }
}

.page-04-hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 768px) {
    .page-04-hero-container {
        gap: 50px;
    }
}

/* Typography Headings Layout */
.page-04-title-group {
    display: flex;
    flex-direction: column;
    letter-spacing: normal;
}

.page-04-hero-title {
    font-family: 'Playfair Display', serif;
    color: #063430;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2;
    margin-top: 4px;
    
    /* Fluid typography for desktop, laptop, tablet & mobile sizes */
    font-size: clamp(1.8rem, 5vw, 3.2rem);
}

.page-04-hero-title:first-child {
    margin-top: 0;
}

/* Breadcrumbs Section with Thick Underline */
.page-04-breadcrumb-area {
    width: 100%;
    padding-top: 16px;
    border-bottom: 2px solid #063430;
    padding-bottom: 16px;
}

.page-04-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #F7A707; /* Brand Gold */
}

@media (min-width: 768px) {
    .page-04-breadcrumbs {
        font-size: 16px;
    }
}

.page-04-crumb-link {
    color: #F7A707;
    text-decoration: none;
    transition: all 0.2s ease;
}

.page-04-crumb-link:hover {
    text-decoration: underline;
}

.page-04-crumb-separator {
    color: #F7A707;
    user-select: none;
}

.page-04-crumb-current {
    opacity: 0.9;
    font-weight: 500;
}

.page-04-body {
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    overflow-x: hidden;
}


/* Container Wrapper */
.page-04-section-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Header Row setup for Right Aligned Dropdown Button */
.page-04-header-row {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

/* Premium Black Dynamic Dropdown Component Box */
.page-04-dropdown-wrapper {
    background-color: #063430;
    border: 2px solid #063430;
    display: flex;
    align-items: center;
    padding: 12px 24px;
    gap: 40px;
    position: relative;
    min-width: 240px;
}

.page-04-dropdown-label {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Custom Styled Select Element Dropdown Options */
.page-04-select {
    background-color: transparent;
    color: #ffffff;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    padding-right: 20px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    text-align: right;
    
    /* Clean custom white drop arrow layout using SVG background line */
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white'><path d='M1 3.5l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right center;
}

/* Style for individual drop down option listings inside browser */
.page-04-select option {
    background-color: #063430;
    color: #ffffff;
    padding: 10px;
}

/* Video Showcase Wrap Context layer */
.page-04-video-showcase {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Media Double Framed Border Component */
.page-04-media-frame {
    width: 100%;
    border: 1px solid #C4A77D; /* Exact Gold Tone Frame */
    padding: 16px;
    position: relative;
    aspect-ratio: 16 / 9;
    background-color: #ffffff;
}

.page-04-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Whitish Fade Overlay effect from image reference */
.page-04-media-overlay {
    position: absolute;
    inset: 16px;
    background-color: rgba(255, 255, 255, 0.25);
    pointer-events: none;
}

/* Center Play Button UI Setup */
.page-04-play-trigger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 15;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.page-04-play-svg {
    width: clamp(50px, 8vw, 75px);
    height: auto;
    color: #e62117;
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.25));
}

.page-04-play-trigger:hover {
    transform: translate(-50%, -50%) scale(1.1);
    filter: brightness(1.1);
}

/* Absolute Floating Left Bottom YouTube Sidebar Badge Component */
.page-04-youtube-badge {
    background-color: #063430;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 200px;
    height: 200px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 20;
    position: absolute;
    left: -100px;
    bottom: -100px;
}

.page-04-badge-icon-box {
    width: 50px;
    height: 50px;
    color: #e62117;
}

.page-04-badge-svg {
    width: 100%;
    height: 100%;
}

.page-04-badge-text {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

/* Bottom Title Footer Branding Text Section */
.page-04-section-footer {
    width: 100%;
    padding-left: 160px;
    margin-top: 20px;
}

.page-04-footer-title {
    font-family: 'Playfair Display', serif;
    color: #063430;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.2;
    text-transform: uppercase;
    font-size: clamp(1.4rem, 3.2vw, 2.5rem);
}

/* --- Media Queries --- */

/* Mobile Devices Handle */
@media (max-width: 640px) {
    .page-04-section-container {
        gap: 20px;
    }
    
    .page-04-youtube-badge {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 15px;
        flex-direction: row;
        width: 100%;
        padding: 14px 20px;
        gap: 15px;
    }

    .page-04-badge-text {
        text-align: left;
    }
    
    .page-04-badge-text br { 
        display: none; 
    }

    .page-04-section-footer {
        padding-left: 0;
        margin-top: 5px;
    }
    
    .page-04-dropdown-wrapper {
        min-width: 180px;
        padding: 8px 16px;
        gap: 20px;
    }
}

/* Medium Monitor Adjustments */
@media (min-width: 641px) and (max-width: 1024px) {
    .page-04-youtube-badge {
        width: 110px;
        padding: 20px 14px;
        bottom: -30px;
    }
    .page-04-section-footer {
        padding-left: 130px;
    }
}

/* Premium Black Custom Dropdown Wrapper */
.page-04-dropdown-wrapper {
    background-color: #063430;
    border: 2px solid #063430;
    display: flex;
    align-items: center;
    padding: 12px 24px;
    gap: 40px;
    position: relative;
    min-width: 240px;
    cursor: pointer;
    user-select: none;
    z-index: 100; /* सुनिश्चित करता है कि लिस्ट इमेज के ऊपर खुले */
}

.page-04-dropdown-label {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Selected Trigger Container */
.page-04-selected-trigger {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-grow: 1;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-align: right;
}

/* Custom CSS Down Arrow */
.page-04-arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #ffffff;
    transition: transform 0.3s ease;
}

/* When dropdown opens, rotate arrow */
.page-04-dropdown-wrapper.page-04-open .page-04-arrow {
    transform: rotate(180deg);
}

/* Pure Custom Options Dropdown List Container */
.page-04-options-menu {
    position: absolute;
    top: 100%;
    left: -2px; /* Borders को ओवरलैप करने के लिए */
    right: -2px;
    background-color: #063430;
    border: 2px solid #063430;
    border-top: none;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none; /* डिफ़ॉल्ट रूप से बंद रहेगा */
    box-shadow: 0px 8px 16px rgba(0,0,0,0.3);
}

/* When open class is toggled, display menu */
.page-04-dropdown-wrapper.page-04-open .page-04-options-menu {
    display: block;
}

/* Individual Option Items CSS */
.page-04-option-item {
    font-family: 'Poppins', sans-serif;
    color: #a3a3a3; /* डिफ़ॉल्ट अन-सेलेक्टेड ग्रे कलर */
    font-size: 15px;
    font-weight: 500;
    padding: 12px 24px;
    text-align: right;
    transition: all 0.2s ease;
    background-color: #063430;
}

/* Hover and Active State Custom Style */
.page-04-option-item:hover {
    color: #ffffff;
    background-color: #063430; /* डार्क ग्रे बैकग्राउंड होवर पर */
}

/* Selected Premium Gold State */
.page-04-option-item.page-04-selected {
    color: #F7A707; /* आपका ब्रांड गोल्ड कलर */
    background-color: #063430;
}

/* Responsive Handling */
@media (max-width: 640px) {
    .page-04-dropdown-wrapper {
        min-width: 180px;
        padding: 8px 16px;
        gap: 20px;
    }
}
/* Container Wrapper */
.page-04-section-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px; /* सभी बड़ी स्क्रीन और डेस्कटॉप पर लेआउट को मेंटेन रखेगा */
    margin: 0 auto;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Massive Serif Heading with Overlap */
.page-04-main-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: #063430;
    text-align: center;
    line-height: 0.85;
    letter-spacing: -0.02em;
    z-index: 5;
    pointer-events: none;
    text-transform: uppercase;
    
    /* Fluid typography dynamically adjusts between mobile & 4K desktop sizes */
    font-size: clamp(2.8rem, 15vw, 10.5rem);
    margin-bottom: -0.35em; /* Pulls the black box exactly underneath the text */
}

/* Black Content Box */
.page-04-content-box {
    background-color: #063430;
    width: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    
    /* Fluid scaling padding for mobile, tablet, and desktop layout perfection */
    padding: clamp(40px, 8vw, 90px) clamp(24px, 7vw, 85px);
    gap: 24px;
}

/* Gold Text Styling */
.page-04-paragraph {
    font-family: 'Poppins', sans-serif;
    color: #F7A707; /* Matches the exact gold branding color */
    font-weight: 300;
    line-height: 1.8;
    text-align: justify;
    letter-spacing: 0.03em;
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
}

/* Premium Button Frame (Outer thin border box) */
.page-04-btn-frame {
    border: 1px solid #C4A77D;
    padding: 6px;
    margin-top: 50px; /* Separates it gracefully from the black box */
    display: inline-block;
    z-index: 10;
    transition: transform 0.3s ease;
}

/* Inner Solid Gold Button */
.page-04-download-btn {
    display: block;
    background-color: #F7A707;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 1.3vw, 14px);
    letter-spacing: 1px;
    font-weight: 500;
    width: 100%;
    padding: 35px 120px;
    text-align: center;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

/* Hover Effects */
.page-04-btn-frame:hover {
    transform: scale(1.02);
}

.page-04-download-btn:hover {
    background-color: #F7A707;
}

/* --- Media Queries for Device Fine-Tuning --- */

/* Tablets and Laptops Adjustments */
@media (min-width: 768px) {
    .page-04-btn-frame {
        margin-top: 60px;
    }
}

/* Ultra Large Display Adjustments */
@media (min-width: 1400px) {
    .page-04-main-title {
        margin-bottom: -0.18em; /* Massive layouts logic handling alignment */
    }
}

/* Master Slider Wrapper Layout */
.page-04-slider-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 100px auto;
    position: relative;
}

/* Framed Container with Inner Padding */
.page-04-slider-container {
    width: 100%;
    aspect-ratio: 16 / 10; /* लैपटॉप और डेस्कटॉप पर इमेज का प्रपोर्शन मेंटेन रखता है */
    position: relative;
    border: 1px solid #E5DDCF; /* हल्का प्रीमियम थिन बॉर्डर */
    padding: 12px;
    background-color: #ffffff;
}

/* Individual Slides Handling Fading Layers */
.page-04-slide {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.6s ease-in-out;
}

/* Show active slide layer */
.page-04-slide.page-04-active {
    opacity: 1;
    z-index: 2;
}

.page-04-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Absolute Floating Share Block Box */
.page-04-share-btn {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 150px;
    height: 150px;
    background-color: #F7A707; /* सिग्नेचर गोल्ड कलर */
    border: none;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.page-04-share-btn:hover {
    background-color: #e8a31a;
    transform: scale(1.03);
}

.page-04-share-svg {
    width: 32px;
    height: 32px;
}

/* Left Bottom Nav Controls Container */
.page-04-slider-controls {
    display: flex;
    gap: 25px;
    margin-top: 15px;
    padding-left: 8px;
}

.page-04-control-btn {
    background: none;
    border: none;
    width: 24px;
    height: 24px;
    color: #F7A707;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.page-04-control-btn svg {
    width: 100%;
    height: 100%;
}

.page-04-control-btn:hover {
    color: #063430;
    transform: scale(1.15);
}

/* --- Media Queries For Seamless Device Responsiveness --- */

/* Tablets Screens (IPad size down) */
@media (max-width: 768px) {
    .page-04-share-btn {
        width: 85px;
        height: 85px;
        bottom: -25px;
        right: -10px;
    }
    .page-04-share-svg {
        width: 26px;
        height: 26px;
    }
}

/* Compact Mobile Devices Viewports */
@media (max-width: 480px) {
    .page-04-slider-container {
        aspect-ratio: 4 / 3; /* मोबाइल पर इमेज की ऊंचाई थोड़ी बेहतर दिखने के लिए */
        padding: 8px;
    }
    .page-04-slide {
        top: 8px;
        left: 8px;
        right: 8px;
        bottom: 8px;
    }
    .page-04-share-btn {
        width: 65px;
        height: 65px;
        bottom: -20px;
        right: 0px;
    }
    .page-04-share-svg {
        width: 20px;
        height: 20px;
    }
    .page-04-slider-controls {
        gap: 20px;
        margin-top: 12px;
    }
}

/* Section Base Relative Context */
.page-04-grid-section {
    position: relative;
    width: 100%;
    background-color: transparent;
    padding: 0px 24px;
    bottom: 50px;
    z-index: 11;
}

/* Thick Black Top Line that sits behind the cards top margins */
.page-04-top-black-bar {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 35px;
    z-index: 1;
}

/* Master Grid Structure Layout */
.page-04-grid-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
    z-index: 5; /* Pushes the grid forward over the black bar layer */
}

/* Inner Custom Flexible Square Box Layout */
.page-04-grid-card {
    background-color: #ffffff;
    padding: 16px;
    aspect-ratio: 1 / 1;
    display: flex;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.page-04-grid-card:hover {
    transform: translateY(-4px);
}

.page-04-card-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

/* Typography Rules */
.page-04-card-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

/* Colors and Frame Border Assignments to perfectly match reference */

/* Card 1 Specifics */
.page-04-card-gray-light { border: 1px solid #CCCCCC; }
.bg-light-gray { background-color: #D3D3D3; }
.text-black { color: #063430; }

/* Card 2 Specifics */
.page-04-card-gray-medium { border: 1px solid #888888; }
.bg-medium-gray { background-color: #808080; }
.text-white { color: #ffffff; }

/* Card 3 Specifics */
.page-04-card-gold-bright { border: 1px solid #F7A707; }
.bg-bright-gold { background-color: #F7A707; }

/* Card 4 Specifics */
.page-04-card-gold-muted { border: 1px solid #F7A707; }
.bg-muted-gold { background-color: #F7A707; }


/* --- Media Queries Handling Full Layout Responsiveness Across Displays --- */

/* Smaller Tablets Screens */
@media (min-width: 481px) {
    .page-04-grid-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

/* Desktops and Laptops Large Monitor Sizes (Exact 4 Column Grid Row) */
@media (min-width: 900px) {
    .page-04-grid-container {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
    }
    
    /* Slightly less padding on large rows keeps layouts tidy */
    .page-04-grid-card {
        padding: 12px;
    }
}

@media (min-width: 1100px) {
    .page-04-grid-container {
        gap: 24px;
    }
    .page-04-grid-card {
        padding: 16px;
    }
}

/* Master Section Relative Wrapper */
.page-07-partners-section {
    position: relative;
    width: 100%;
    min-height: 480px;
    background-color: #ffffff;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background Image Context and Soft Blend Layers */
.page-07-bg-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.page-07-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Whitish Fade Overlay effect to mirror presentation reference */
.page-07-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.7) 100%),
                rgba(255, 255, 255, 0.4);
}

/* Center Centered Content Architecture Block */
.page-07-section-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0;
    display: flex;
    flex-direction: column;
    z-index: 10;
}

/* Left Overlapping Header Solid Black Block Badge Box */
.page-07-title-card {
    background-color: #063430;
    padding: 40px 30px;
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    box-sizing: border-box;
}

/* Typography Editorial Elements */
.page-07-main-title {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    line-height: 1.25;
    margin: 0;
}

.page-07-year-tag {
    font-family: 'Poppins', sans-serif;
    color: #C4A77D; /* Signature Gold Accent Text */
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 500;
    align-self: flex-end;
}

/* Right Aligned Grid Matrix Box Area */
.page-07-logo-grid-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 40px 24px;
    box-sizing: border-box;
}

.page-07-logo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 30px;
    width: 100%;
    max-width: 650px;
}

/* Responsive Logo Containers */
.page-07-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
}

.page-07-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%); /* सभी कलर्ड लोगोस को इमेज की तरह सॉलिड ब्लैक रखेगा */
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.page-07-logo-item img:hover {
    opacity: 1;
}
    .page-07-title-card {
        position: absolute;
        left: 0;
        top: -110px;
        bottom: 0;
        justify-content: center;
    }


/* --- Media Queries Handle All Screen Formats Smoothly --- */

/* Tablet & Smaller Screens Setup */
@media (max-width: 768px) {
    .page-07-partners-section {
        flex-direction: column;
        align-items: flex-start;
    }
    .page-07-title-card {
        max-width: 100%; /* मोबाइल पर फुल विड्थ होकर ब्लीड करेगा */
        padding: 30px 24px;
    }
    .page-07-logo-grid-wrapper {
        justify-content: center;
        padding: 50px 24px;
    }
    .page-07-logo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 35px;
    }
}

/* Compact Mobile Viewports */
@media (max-width: 480px) {
    .page-07-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }
    .page-07-logo-item {
        height: 45px;
    }
}

/* Laptop and Desktop Side-by-Side Horizontal Matrix Lock */
@media (min-width: 769px) {
    .page-07-section-container {
        flex-direction: row;
        align-items: center;
    }
    .page-07-title-card {
        /* लेफ्ट साइड में थिक ओवरलैप पोजीशन मेंटेन करता है */
        position: absolute;
        left: 0;
        top: -150px;
        bottom: 0;
        justify-content: center;
    }
    .page-07-logo-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr)); /* परफेक्ट 5x2 ग्रिड जैसा इमेज में है */
    }
}

/* Master Section Element */
.page-04-why-visit-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 20px;
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .page-04-why-visit-section {
        padding: 100px 0;
        padding-left: 100px;
    }
}

/* Base Wrapper Grid Content Box */
.page-04-why-visit-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

/* Genuine L-Shaped Bracket Background Block Element */
.page-04-gold-l-shape {
    position: absolute;
    left: -20px;
    top: -40px;
    bottom: -40px;
    width: 140px;
    background-color: #F7A707; /* Exact Reference Gold Tone */
    z-index: 1;
}

/* Extra decorative cut out to create a strict bracket feel on desktops */
@media (min-width: 768px) {
    .page-04-gold-l-shape {
        left: -100px;
        top: -60px;
        bottom: -60px;
        width: 200px;
    }
}

/* Main Premium Faded Gray Presentation Card */
.page-04-gray-content-card {
    position: relative;
    background-color: #E6E6E6; /* Matched Solid Light Gray */
    width: 100%;
    padding: 50px 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 40px;
    z-index: 5; /* Layered safely above gold bracket background */
}

@media (min-width: 768px) {
    .page-04-gray-content-card {
        padding: 60px 50px;
    }
}

@media (min-width: 1024px) {
    .page-04-gray-content-card {
        flex-direction: row; /* Horizontal alignment for desktop viewports */
        gap: 80px;
        padding: 90px 100px 110px 100px;
    }
}

/* Left Column Layout Context */
.page-04-heading-column {
    width: 100%;
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .page-04-heading-column {
        width: 42%;
        align-items: center;
        padding-top: 40px;
    }
}

/* Large High Contrast Serif Display Header Style */
.page-04-display-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: #063430;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    width: 100%;
    font-size: clamp(3.5rem, 8vw, 6.2rem); /* Dynamic smooth responsive viewport fluid scale */
}

@media (min-width: 1024px) {
    .page-04-display-title {
        text-align: left;
    }
}

/* Right Column Layout Context */
.page-04-list-column {
    width: 100%;
}

@media (min-width: 1024px) {
    .page-04-list-column {
        width: 58%;
    }
}

/* Strict Clean Bullet Point Configurations */
.page-04-bullet-list {
    list-style-type: disc;
    list-style-position: outside; /* Keeps bullets on the edge while text aligns nicely */
    padding-left: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px; /* Row distance separation */
    font-family: 'Poppins', sans-serif;
    color: #063430;
    font-size: 15px;
    line-height: 1.6;
    text-align: justify; /* Mirrors the exact look of your image copy layout blocks */
}

.page-04-bullet-list li {
    padding-left: 6px;
}

/* Master Structural Block Grid Wrapper */
.page-07-media-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 0px;
    box-sizing: border-box;
}

.page-07-media-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Big High Contrast Gold Main Heading */
.page-07-main-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: #F4C243; /* Exact Image Reference Gold Yellow Tone */
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.02em;
    margin-bottom: 50px;
}

/* Action Center Buttons Row (Split Layout Row) */
.page-07-action-row {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 70px;
}

@media (min-width: 768px) {
    .page-07-action-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Outer Framed Styling for Buttons Layout */
.page-07-download-frame {
    border: 1px solid #063430;
    padding: 6px;
    flex: 1;
    max-width: 420px;
}

.page-07-download-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #063430;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 20px 30px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.page-07-download-btn:hover {
    background-color: #063430;
}

.page-07-btn-sub {
    font-size: 13px;
    margin-top: 4px;
    opacity: 0.9;
}

/* Contact Block Component styles */
.page-07-contact-frame {
    border: 1px solid #F7A707;
    padding: 6px;
    flex: 1;
    max-width: 420px;
    width: 100%;
}

.page-07-contact-box {
    background-color: #F7A707;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    padding: 14px 30px;
    text-align: center;
}

.page-07-contact-label {
    font-size: 15px;
    font-weight: 400;
    opacity: 0.95;
}

.page-07-contact-name {
    font-size: 16px;
    font-weight: 600;
    margin: 3px 0;
}

.page-07-contact-phone {
    font-size: 14px;
    font-weight: 500;
}

/* Navigation Tabs Header List Bar Layout */
.page-07-tabs-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    width: 100%;
}

@media (min-width: 768px) {
    .page-07-tabs-nav {
        flex-direction: row;
        justify-content: center;
        gap: 60px;
    }
}

/* Individual Tab Trigger Elements */
.page-07-tab-trigger {
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 600;
    color: #063430;
    cursor: pointer;
    position: relative;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: color 0.2s ease;
}

/* Black Indicator Dot under active item */
.page-07-tab-dot {
    position: absolute;
    bottom: -10px;
    width: 16px;
    height: 16px;
    background-color: #063430;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.page-07-tab-trigger:hover {
    color: #555555;
}

/* Active Class Configuration for Nav Items */
.page-07-tab-trigger.page-07-tab-active .page-07-tab-dot {
    opacity: 1;
    transform: scale(1);
}

/* Tab Panes Architecture Layers */
.page-07-tabs-content-wrapper {
    width: 100%;
}

.page-07-content-pane {
    display: none; /* डिफ़ॉल्ट रूप से छुपे रहेंगे */
    width: 100%;
}

/* Tab Pane Active visibility */
.page-07-content-pane.page-07-pane-active {
    display: block;
    animation: page07FadeIn 0.4s ease-in-out;
}

/* Grid Matrix Layout for Thumbnail Cards Rows */
.page-07-cards-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 40px 24px;
    width: 100%;
}

@media (min-width: 520px) {
    .page-07-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 920px) {
    .page-07-cards-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)); /* परफेक्ट 4 कॉलम रो लेआउट */
    }
}

/* Media Card Thumbnail Styles Box */
.page-07-media-card {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.page-07-img-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1.32; /* इमेज वायरफ़्रेम का वर्टिकल रेशियो मेंटेन करता है */
    border: 1px solid #999999;
    background-color: #ffffff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    margin-bottom: 20px;
}

/* Wireframe Cross (X) Marks using CSS Background Lines */
.page-07-img-placeholder::before,
.page-07-img-placeholder::after {
    content: '';
    position: absolute;
    width: 141.4%; /* Geometry formula handles exact responsive corners overlay stretching */
    height: 1px;
    background-color: #CCCCCC;
    top: 50%;
    left: 50%;
    z-index: 1;
}

.page-07-img-placeholder::before { transform: translate(-50%, -50%) rotate(52.8deg); }
.page-07-img-placeholder::after { transform: translate(-50%, -50%) rotate(-52.8deg); }

.page-07-img-placeholder span {
    position: relative;
    z-index: 5;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #063430;
    line-height: 1.4;
    background-color: #ffffff; /* क्रॉसलाइन्स को छुपाने के लिए टेक्स्ट बैकग्राउंड व्हाइट */
    padding: 6px 12px;
}

/* Description Details Labels */
.page-07-card-details {
    font-family: 'Poppins', sans-serif;
    color: #063430;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.page-07-card-details h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.page-07-card-details p {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

.page-07-card-details .page-07-date {
    font-weight: 400;
}

/* Smooth Fade Content Animation Trigger */
@keyframes page07FadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Action Center Buttons Row (Split Layout Row) */
.page-07-action-row {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 70px;
    align-items: center; /* मोबाइल पर दोनों को सेंटर में रखेगा */
}

@media (min-width: 768px) {
    .page-04-action-row,
    .page-07-action-row {
        flex-direction: row;
        justify-content: center; /* दोनों के बीच बैलेंस स्पेस बनाए रखेगा */
        gap: 40px; /* दोनों बॉक्सेस के बीच का गैप */
    }
}

/* Common Width & Fixed Height Framework for Frames */
.page-07-download-frame,
.page-07-contact-frame {
    padding: 6px;
    width: 100%;
    max-width: 380px;  /* दोनों की विड्थ बिल्कुल एक बराबर दिखेगी */
    height: 110px;     /* दोनों की हाइट बिल्कुल फिक्स रहेगी */
    box-sizing: border-box;
    display: flex;
}

.page-07-download-frame {
    border: 1px solid #063430;
}

.page-07-contact-frame {
    border: 1px solid #F4C243;
}

/* Inner Buttons stretching to fill 100% height & width */
.page-07-download-btn,
.page-07-contact-box {
    width: 100%;
    height: 100%;      /* पैरेंट फ्रेम की पूरी हाइट लेगा */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* Inner Button Specifications */
.page-07-download-btn {
    background-color: #063430;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

.page-07-download-btn:hover {
    background-color: #063430;
}

.page-07-btn-sub {
    font-size: 13px;
    margin-top: 4px;
    opacity: 0.9;
}

/* Contact Box Specifications */
.page-07-contact-box {
    background-color: #F7A707;
    color: #ffffff;
}

.page-07-contact-label {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.95;
}

.page-07-contact-name {
    font-size: 16px;
    font-weight: 600;
    margin: 2px 0;
}

.page-07-contact-phone {
    font-size: 14px;
    font-weight: 500;
}

/* Section Main Layout */
.page-07-faq-section {
    width: 100%;
    background-color: #ffffff;
    padding: 150px 20px;

    box-sizing: border-box;
}

.page-07-faq-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

/* Serif Typography Title */
.page-07-faq-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: #063430;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
}

/* 2-Column Desktop Architecture Layout */
.page-07-faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 992px) {
    .page-07-faq-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
}

.page-07-faq-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Individual Accordion Item Container Card */
.page-07-accordion-item {
    width: 100%;
    border: none;
    background-color: #ffffff;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* Header Trigger Button */
.page-07-accordion-header {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 24px 30px;
    font-family: 'Poppins', sans-serif;
    color: #063430;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: block;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* Smooth Content Drawer Max-Height Logic for JS Transition */
.page-07-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-07-content-inner {
    padding: 30px 30px 30px 30px;
    font-family: "Poppins", sans-serif;
    color: #063430;
    font-size: 18px;
    line-height: 1.6;
    text-align: justify;
}

/* --- Active State Custom Styles (जब अकॉर्डियन खुला हो) --- */
.page-07-accordion-item.page-07-active {
    border-color: #F7A707;
}

.page-07-accordion-item.page-07-active .page-07-accordion-header {
    background-color: #F7A707; /* पूरा हेडर सॉलिड गोल्ड हो जाएगा */
    color: #ffffff;            /* टेक्स्ट का कलर व्हाइट हो जाएगा */
}

/* Active State Content Block Open state */
.page-07-accordion-item.page-07-active .page-07-accordion-content {
    /* जावास्क्रिप्ट के थ्रू डायनामिकली ओपन होने पर हाइट सेट होगी */
}