.elementor-271 .elementor-element.elementor-element-a470cf6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-271 .elementor-element.elementor-element-7fcfd4f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-271 .elementor-element.elementor-element-067bf71{--display:flex;}.elementor-271 .elementor-element.elementor-element-dcf6fe7{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-271 .elementor-element.elementor-element-5018b32 .elementor-heading-title{color:#FFFFFF;}.elementor-271 .elementor-element.elementor-element-dfefe8d .elementor-heading-title{color:#FFFFFF;}.elementor-271 .elementor-element.elementor-element-3c39f45 .elementor-heading-title{color:#FFFFFF;}.elementor-271 .elementor-element.elementor-element-e2c3639 .elementor-heading-title{color:#FFFFFF;}.elementor-271 .elementor-element.elementor-element-37546da .elementor-heading-title{color:#FFFFFF;}.elementor-271 .elementor-element.elementor-element-8429c86 .elementor-heading-title{color:#FFFFFF;}.elementor-271 .elementor-element.elementor-element-bca24e9 .elementor-heading-title{color:#FFFFFF;}.elementor-271 .elementor-element.elementor-element-f42c98f .elementor-heading-title{color:#FFFFFF;}.elementor-271 .elementor-element.elementor-element-7ed9af1 .elementor-heading-title{color:#FFFFFF;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-034736c *//* --- Global Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- Banner Layout Container --- */
.l-5-hero-banner {
    position: relative;
    width: 100%;
    height: 350px; /* Desktop Height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000000;
}

/* --- Image Handling (Responsive & Non-distorted) --- */
.l-5-visual-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.l-5-visual-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the area without stretching */
    object-position: center;
}

/* --- Semi-transparent Overlay for Text Legibility --- */
.l-5-overlay-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* 40% darkness to pop the white text */
    z-index: 2;
}

/* --- Content Styling --- */
.l-5-text-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
}

.l-5-hero-title {
    color: #ffffff;
    font-family: 'Arial Black', 'Helvetica Bold', sans-serif;
    font-size: 60px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
    line-height: 1.1;
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.6);
}

/* --- Responsive Media Queries --- */

/* For Tablets (Laptops/iPad) */
@media (max-width: 1024px) {
    .l-5-hero-banner {
        height: 400px;
    }
    .l-5-hero-title {
        font-size: 60px;
        letter-spacing: 3px;
    }
}

/* For Mobile Devices (Phones) */
@media (max-width: 768px) {
    .l-5-hero-banner {
        height: 200px;
    }
    .l-5-hero-title {
        font-size: 26px;
        letter-spacing: 2px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-15121bf *//* --- General Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    padding: 40px 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #fff;
}

/* --- Header Styling --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff; /* Explicitly set H2 color to white */
}

.title-underline {
    width: 650px;
    height: 4px;
    background-color: #fff;
    margin: 15px auto 0;
}

/* --- Grid Container --- */
.gallery-container {
    display: grid;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Desktop: 4 Columns */
@media (min-width: 1024px) {
    .gallery-container { grid-template-columns: repeat(4, 1fr); }
}

/* Tablet: 2 Columns */
@media (min-width: 640px) and (max-width: 1023px) {
    .gallery-container { grid-template-columns: repeat(2, 1fr); }
    .main-title { font-size: 2rem; }
}

/* Mobile: 1 Column */
@media (max-width: 639px) {
    .gallery-container { grid-template-columns: 1fr; }
    .main-title { font-size: 1.5rem; }
}

/* --- Gallery Item --- */
.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background-color: #111;
    border: 1px solid #222;
    cursor: zoom-in;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.6);
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), filter 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.9);
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    text-align: center;
    width: 90%;
    text-transform: uppercase;
    transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.gallery-item:hover .overlay-text {
    color: #ffffff;
    letter-spacing: 3px;
}

/* --- Lightbox Modal --- */
.modal {
    display: none; 
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    cursor: zoom-out;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid rgba(77, 166, 255, 0.3);
}

#caption {
    position: absolute;
    bottom: 5%;
    width: 100%;
    text-align: center;
    color: #4da6ff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 1.2rem;
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: 200;
    cursor: pointer;
}/* End custom CSS */