.about-section {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    background: #33564f url('../img/about-one-shape-1.png') no-repeat left center / cover;
}

.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-left {
    position: relative;
    z-index: 1;
    flex: 1 1 50%;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Subtle overlay on left side */
.about-left::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(255, 193, 7, 0.08); */
    mix-blend-mode: multiply;
}

/* Image styling */
.about-img-wrapper {
    position: relative;
    z-index: 1;
    max-width: 90%;
}

.about-img-wrapper {
    display: inline-block;
    border-radius: 50px 0 50px 0;
    padding: 10px;
}

.about-img-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #ffc107;
    /* border color */
    border-radius: 50px 0 50px 0;
    /* same as wrapper */
    pointer-events: none;
    box-sizing: border-box;
}

.about-img {
    display: block;
    width: 100%;
    border-radius: 50px 0 50px 0;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

/* .about-img {
    width: 100%;
    border-radius: 50px 0 50px 0;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
} */

.about-img:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* .about-right {
    padding: 60px;
    background: #fff;
} */

.about-right h3 {
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    position: relative;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    color: #ffffff;
}

.about-right h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 205px;
    height: 4px;
    background: #ffc107;
    border-radius: 3px;
}

.about-right p {
    color: #ffffff;
    line-height: 1.7;
}

.list-unstyled li {
    position: relative;
    /* padding-left: 25px; */
    margin-bottom: 10px;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {

    .about-left,
    .about-right {
        width: 100%;
        padding: 30px;
    }

    .about-left {
        background-position: top center;
    }
}

.about-section .curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #f3f3f3;
    /* background: url("data:image/svg+xml;utf8,
     <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' > <path fill='%23f8f9fa' d='M0,256L48,245.3C96,235,192,213,288,192C384,171,480,149,576,133.3C672,117,768,107,864,112C960,117,1056,139,1152,144C1248,149,1344,139,1392,133.3L1440,128V320H0Z' ></path> </svg>") no-repeat; */
 /* background-size: cover; */
    }