body {
    background: #fff !important;
}

.about-banner {
    position: relative;
    height: 270px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

/* Background image */
.about-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../img/aboutus.png') no-repeat center/cover;
    z-index: 0;
}

/* Dark overlay */
.about-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

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

.content h1 {
    margin: 0 0 10px;
    font-size: 42px;
    color: #fff;
    font-weight: 700;
}

.breadcrumb {
    font-size: 16px;
}

.breadcrumb a {
    color: #ff7a00;
    text-decoration: none;
    margin-right: 6px;
}

.breadcrumb span {
    margin: 0 6px;
    color: #ccc;
}

.breadcrumb .current {
    color: #fff;
}

.about-banner::before {
    filter: brightness(0.85);
}

.about-details h6 {
    font-weight: 500;
    font-size: 26px;
    line-height: 43px;
    letter-spacing: 0%;
    margin-bottom: 15px;
}

.about-details p {
    font-size: 21px;
    font-weight: 400;
    color: #000000;
    line-height: 35px;
    letter-spacing: 0%;
}

.about-details {
    padding-bottom: 75px;
}

.about-gap h6 {
    font-weight: 700;
    font-size: 24px;
    line-height: 35px;
    letter-spacing: 0%;
    color: #000000;
    margin-bottom: 40px;
}

.feature-section {
    display: flex;
    align-items: normal;
    justify-content: space-between;
}

/* LEFT SIDE */
.feature-section .features {
    flex: 1;
    margin-top: 15px;
}

.feature-section .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.feature-section .feature-item:nth-child(1) {
    margin-top: 0;
}

.feature-section .feature-item:nth-child(2) {
    margin-top: 60px;
}

.feature-section .feature-item:nth-child(3) {
    margin-top: 43px;
}

.feature-section .feature-item:nth-child(4) {
    margin-top: 50px;
}

@media (max-width: 991px) {
    .feature-section .feature-item:nth-child(n) {
        margin-top: 0 !important;
    }
}

.feature-section .number {
    background: #ff6a00;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 35px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-section .text {
    position: relative;
    flex: 1;
    font-weight: 400;
    font-size: 20px;
    color: #000000;
    line-height: 30px;
    letter-spacing: 0%;
}

/* Dotted line */
/* .feature-section .text::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    z-index: 1;
    width: 416px;
    border-top: 1px dashed #747474;
    margin-left: 15px;
    transform: translateY(-50%);
} */

/* RIGHT SIDE IMAGE */
.feature-section .graph {
    flex: 1;
    text-align: right;
}

.feature-section .graph img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 9999;
}

.aboutsection p {
    color: #000000;
    font-weight: 500;
    font-size: 21px;
    margin-bottom: 75px;
    line-height: 40px;
    letter-spacing: 0%;
}

.banner {
    margin-bottom: 75px;
    padding: 40px 50px;
    border-radius: 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FF6600;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: "";
    position: absolute;
    left: -137px;
    top: -111px;
    width: 241px;
    height: 246px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 0;

}

/* RIGHT decorative shapes */
.banner::after {
    content: "";
    position: absolute;
    right: -117px;
    bottom: -60px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 0;
}

/* Optional extra small circle (top-right) */
.circle-top {
    position: absolute;
    right: -120px;
    top: -21px;
    width: 199px;
    height: 199px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    z-index: 0;

}

.banner-text {
    max-width: 600px;
    z-index: 1;
}

.banner h1 {
    color: #fff;
    font-family: Inter;
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
    letter-spacing: 0%;
    vertical-align: middle;
    margin-bottom: 15px;
}

.banner p {
    margin: 0;
    font-size: 24px;
    line-height: 33px;
    font-weight: 400;
    color: #fff;
}

.banner-button {
    z-index: 1;
}

.banner-button a,
.banner-button a:hover {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    background: #fff;
    color: #272727;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: 0.3s ease;
    font-size: 18px;
}


.banner-section {
    background: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .feature-section .graph img {
        display: none;
    }
}

@media (max-width: 768px) {
    .banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .feature-section {
        flex-direction: column;
        text-align: left;
    }

    .feature-section .text::after {
        display: none;
    }

    .graph {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-banner {
        height: 180px;
    }

    .content h1 {
        font-size: 26px;
    }
}

@media (max-width: 991px) {
    .footer-row {
        -ms-flex-direction: column;
        flex-direction: column;
    }
}