    /* Hero Section - Image Background with Overlay */
    .hero {
        position: relative;
        height: 500px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    
    .hero-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        animation: kenBurns 20s ease-in-out infinite alternate;
    }
    
    @keyframes kenBurns {
        0% { transform: scale(1); }
        100% { transform: scale(1.08); }
    }
    
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 29, 95, 0.70);
        z-index: 2;
    }
    
    .hero-content {
        position: relative;
        z-index: 3;
        text-align: center;
        max-width: 900px;
        padding: 0 20px;
    }
    
    .breadcrumb-custom {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(10px);
        padding: 10px 24px;
        border-radius: 50px;
        margin-bottom: 30px;
        font-size: 0.9rem;
        animation: fadeIn 0.8s ease 0.2s backwards;
    }
    
    .breadcrumb-custom a {
        color: white;
        text-decoration: none;
        transition: opacity 0.3s;
    }
    
    .breadcrumb-custom a:hover { 
        opacity: 0.8; 
    }
    
    .breadcrumb-custom span {
        color: rgba(255,255,255,0.8);
    }
    
    .hero h1 {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 20px;
        font-family: 'Lora', serif;
        color: white;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        line-height: 1.2;
        letter-spacing: -0.02em;
    }
    
    .hero h1 .word {
        display: inline-block;
        animation: fadeInUp 0.8s ease backwards;
    }
    
    .hero h1 .word:nth-child(1) { animation-delay: 0.3s; }
    .hero h1 .word:nth-child(2) { animation-delay: 0.5s; }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .hero p {
        font-size: 1.25rem;
        color: white;
        opacity: 0.95;
        line-height: 1.8;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
        animation: fadeIn 1s ease 0.9s backwards;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 0.95; }
    }
    
    /* Responsive Hero */
    @media (max-width: 768px) {
        .hero {
            height: 400px;
        }
        
        .hero h1 {
            font-size: 2.2rem;
        }
        
        .hero p {
            font-size: 1rem;
        }
        
        .breadcrumb-custom {
            font-size: 0.85rem;
            padding: 8px 20px;
        }
    }
    
    @media (max-width: 480px) {
        .hero {
            height: 350px;
        }
        
        .hero h1 {
            font-size: 1.8rem;
        }
        
        .hero p {
            font-size: 0.9rem;
        }
    }
  
    /* Filter Buttons */
    .filter-container {
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        padding: 20px 0;
        margin-bottom: 40px;
        position: sticky;
        top: 76px;
        z-index: 30;
    }
    
    .filter-scroll {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding: 5px 0;
        scrollbar-width: thin;
        scrollbar-color: #E5E7EB transparent;
    }
    
    .filter-scroll::-webkit-scrollbar {
        height: 4px;
    }
    
    .filter-scroll::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .filter-scroll::-webkit-scrollbar-thumb {
        background: #E5E7EB;
        border-radius: 10px;
    }
    
    .filter-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        background: white;
        border: 2px solid #E5E7EB;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.9rem;
        color: #374151;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .filter-btn:hover {
        border-color: #001D5F;
        color: #001D5F;
        background: #F9FAFB;
    }
    
    .filter-btn.active {
        background: #001D5F;
        color: white;
        border-color: #001D5F;
    }
    
    /* Gallery Grid */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .gallery-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
    }
    
    .gallery-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }
    
    .gallery-image-wrapper {
        position: relative;
        overflow: hidden;
        padding-top: 75%; /* 4:3 Aspect Ratio */
        background-color: #f3f4f6; /* Subtle background for letterboxing */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .gallery-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.4s ease;
    }
    
    .gallery-card:hover .gallery-image {
        transform: scale(1.1);
    }
    
    .gallery-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
        padding: 25px 20px 20px 20px;
        transform: translateY(0);
        transition: all 0.3s ease;
    }
    
    .gallery-title {
        color: white;
        font-weight: 700;
        font-size: 1rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .gallery-category {
        display: inline-block;
        background: rgba(255,255,255,0.25);
        backdrop-filter: blur(10px);
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
    }
    
    .zoom-icon {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 0.3s ease;
        color: #001D5F;
        font-size: 1.3rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    
    .gallery-card:hover .zoom-icon {
        opacity: 1;
        transform: scale(1.1);
    }
    
    /* Modal */
    .gallery-modal {
        display: none;
        position: fixed;
        z-index: 99999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.95);
        animation: fadeIn 0.3s ease;
    }
    
    .gallery-modal.active {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    body.modal-open {
        overflow: hidden;
    }
    
    .gallery-modal-content {
        max-width: 90%;
        max-height: 90%;
        position: relative;
    }
    
    .gallery-modal-content img {
        max-width: 100%;
        max-height: 90vh;
        width: auto;
        height: auto;
        object-fit: contain;
        border-radius: 8px;
        box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    }
    
    .gallery-close {
        position: absolute;
        top: 30px;
        right: 50px;
        font-size: 50px;
        color: white;
        cursor: pointer;
        z-index: 100000;
        transition: transform 0.3s ease;
        background: none;
        border: none;
        line-height: 1;
    }
    
    .gallery-close:hover {
        transform: scale(1.2) rotate(90deg);
    }
    
    .gallery-counter {
        position: absolute;
        top: 30px;
        left: 50px;
        color: white;
        font-size: 20px;
        font-weight: 600;
        z-index: 100000;
        background: rgba(0, 0, 0, 0.5);
        padding: 10px 20px;
        border-radius: 50px;
        backdrop-filter: blur(10px);
    }
    
    .gallery-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border: 2px solid white;
        padding: 20px;
        font-size: 30px;
        cursor: pointer;
        border-radius: 50%;
        transition: all 0.3s ease;
        z-index: 100000;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        backdrop-filter: blur(10px);
    }
    
    .gallery-nav:hover {
        background: white;
        color: #001D5F;
        transform: translateY(-50%) scale(1.1);
    }
    
    .gallery-nav.prev {
        left: 30px;
    }
    
    .gallery-nav.next {
        right: 30px;
    }
    
    .modal-info {
        text-align: center;
        margin-top: 20px;
        color: white;
    }
    
    .modal-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 10px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }
    
    .modal-category {
        display: inline-block;
        background: #001D5F;
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 0.9rem;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(0,29,95,0.4);
    }
    
    /* No Results */
    .no-results {
        text-align: center;
        padding: 80px 20px;
        color: #9CA3AF;
    }
    
    .no-results i {
        font-size: 4rem;
        margin-bottom: 20px;
        opacity: 0.4;
    }
    
    .no-results h4 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: #6B7280;
    }
    
    .no-results p {
        font-size: 1rem;
    }
    
    @media (max-width: 768px) {
        .filter-container {
            top: 70px;
            padding: 15px 0;
        }
        
        .filter-btn {
            padding: 8px 16px;
            font-size: 0.85rem;
        }
        
        .gallery-grid {
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-close {
            top: 20px;
            right: 20px;
            font-size: 40px;
        }
        
        .gallery-counter {
            top: 20px;
            left: 20px;
            font-size: 16px;
        }
        
        .gallery-nav {
            width: 50px;
            height: 50px;
            padding: 15px;
            font-size: 24px;
        }
        
        .gallery-nav.prev {
            left: 15px;
        }
        
        .gallery-nav.next {
            right: 15px;
        }
        
        .modal-title {
            font-size: 1.2rem;
        }
    }
    
    @media (max-width: 480px) {
        .gallery-grid {
            grid-template-columns: 1fr;
        }
    }