/* About Us Banner Section Styling */
.about-us-banner-section {
    position: relative;
    width: 100%;
    background-image: url('../image/bg2.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 90px 0;
    overflow: hidden;
}

.about-us-content {
    position: relative;
    z-index: 2;
}

.about-us-title {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.about-us-desc {
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    max-width: 552px;
}

/* Right Image Container with Top and Left 15px Translucent Border & 25px Radius */
.about-us-img-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 547px;
}

.about-us-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-top: 15px solid #FFFFFF80;
    border-left: 15px solid #FFFFFF80;
    border-right: none;
    border-bottom: none;
    border-radius: 25px;
    display: block;
    object-fit: cover;
    box-sizing: border-box;
    vertical-align: top;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .about-us-banner-section {
        padding: 60px 0;
    }

    .about-us-title {
        font-size: 34px;
        text-align: center;
    }

    .about-us-content {
        text-align: center;
        padding-right: 0 !important;
        margin-bottom: 25px;
    }

    .about-us-desc {
        max-width: 100%;
    }

    .about-us-img-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .about-us-banner-section {
        padding: 45px 0;
    }

    .about-us-title {
        font-size: 28px;
        letter-spacing: 0.5px;
    }

    .about-us-desc {
        font-size: 14px;
        line-height: 1.6;
    }

    .about-us-img {
        border-top-width: 10px;
        border-left-width: 10px;
        border-radius: 18px;
    }
}
