/* ==========================================================================
   GALLERY HERO SECTION PRESERVED STYLES
   ========================================================================== */
.gallery-hero-section {
    min-height: 320px; /* डेस्कटॉप के लिए परफेक्ट हाइट */
    background-image: url('https://images.unsplash.com/photo-1582407947304-fd86f028f716?auto=format&fit=crop&q=80&w=1600'); /* यहाँ अपने प्रोजेक्ट की कोई भी अच्छी साइट इमेज लगा सकते हैं */
    background-size: cover;
    background-position: center center;
    background-attachment: scroll; /* मोबाइल कंपैटिबिलिटी के लिए बेस्ट */
}

/* Ensure content stays on top of the overlay */
.z-index-2 {
    z-index: 2;
}

/* Premium Dark Gradient Overlay */
.hero-overlay-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(9, 38, 68, 0.85) 0%, rgba(0, 185, 143, 0.6) 100%);
    z-index: 1;
}

/* Top Tagline Custom Styles */
.hero-tagline {
    font-size: 0.9rem;
    color: #00b98f; /* थीम ग्रीन */
    background-color: rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Main Heading Typography */
.hero-main-title {
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Modern Glassmorphism Breadcrumb Background */
.bg-blur-dark {
    background-color: rgba(9, 38, 68, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Breadcrumb Links Transitions */
.hover-teal {
    transition: color 0.25s ease;
}
.hover-teal:hover {
    color: #00b98f !important;
}

/* Custom separator / for bootstrap breadcrumb */
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* ==========================================================================
   RESPONSIVE LAYOUT FOR HERO SECTION
   ========================================================================== */
@media (max-width: 767.98px) {
    .gallery-hero-section {
        min-height: 250px; /* मोबाइल पर हाइट थोड़ी छोटी ताकि स्क्रीन ज्यादा न घिरे */
    }
    .hero-main-title {
        font-size: 2.2rem !important; /* मोबाइल पर हेडिंग का साइज छोटा */
    }
    .hero-tagline {
        font-size: 0.8rem;
        padding: 4px 12px;
    }
}



/* ==========================================================================
   PREMIUM PROPERTY GALLERY STYLES
   ========================================================================== */
.text-navy { color: #092644; }
.text-teal { color: #00b98f; }
.bg-teal { background-color: #00b98f !important; }

/* Header Elements */
.gallery-title-line {
    width: 50px;
    height: 3px;
    background-color: #00b98f;
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Category Filter Buttons Styling */
.gallery-filter-buttons .btn-filter {
    background-color: #ffffff;
    color: #092644;
    border: 1px solid #e2e8f0;
    padding: 8px 22px;
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.02);
}
.gallery-filter-buttons .btn-filter:hover,
.gallery-filter-buttons .btn-filter.active {
    background-color: #00b98f;
    color: #ffffff;
    border-color: #00b98f;
    box-shadow: 0 4px 12px rgba(0, 185, 143, 0.25);
}

/* Gallery Box & Image Container */
.gallery-box {
    cursor: pointer;
    background-color: #ffffff;
    border-color: rgba(0, 0, 0, 0.05) !important;
}

.gallery-img {
    width: 100%;
    height: 240px; /* सभी इमेज एक बराबर साइज की दिखेंगी */
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hover Zoom Effect */
.gallery-box:hover .gallery-img {
    transform: scale(1.08);
}

/* Dark Gradient Overlay for Text Visibility */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(9, 38, 44, 0.85) 0%, rgba(9, 38, 44, 0.3) 60%, rgba(0,0,0,0) 100%);
    opacity: 0.9;
    transition: all 0.4s ease;
}

/* Smooth Title Hover Transition */
.gallery-overlay h6 {
    transform: translateY(0px);
    transition: transform 0.3s ease;
}
.gallery-box:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(0, 185, 143, 0.9) 0%, rgba(9, 38, 44, 0.4) 100%);
    opacity: 1;
}

/* ==========================================================================
   RESPONSIVE LAYOUT FOR GALLERY
   ========================================================================== */
@media (max-width: 767.98px) {
    .gallery-main-title { font-size: 1.7rem; }
    .gallery-img { height: 210px; } /* मोबाइल स्क्रीन पर हाइट हल्की छोटी */
    .gallery-filter-buttons .btn-filter {
        padding: 6px 16px;
        font-size: 0.85rem;
    }
}