.responsive-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.header_bg {
    background: url('/img/noor-al-ain-p2.webp') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.header_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.header_content {
    position: relative;
    z-index: 2;
    padding-top: 50px;
    padding-bottom: 60px;

}

.header_logo {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #f8f9fa;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}