.banner-section {
    position: relative;
    width: 100%;
    height: 750px;
    overflow: hidden;
}

    .banner-section img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.banner-content {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    color: #fff;
    max-width: 500px;
}

    .banner-content h2 {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .banner-content p {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

/* Improved responsive styles for mobile */
@media (max-width: 768px) {
   
    .banner-content {
        left: 15px;
        right: 15px;
        max-width: calc(100% - 40px); /* Ensure content fits mobile screen */
        padding: 15px;
    }

        .banner-content h2 {
            font-size: 1.8rem; /* Smaller font size for mobile */
        }

        .banner-content p {
            font-size: 1rem; /* Smaller font size for mobile */
        }
}

/* Extra small devices (phones) */
@media (max-width: 576px) {
    
    .banner-content {
        text-align: center; /* Center text on very small screens */
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
    }

        .banner-content h2 {
            font-size: 1.5rem;
        }
}






/* List item ko flex container  */
.heading-font.black-clr.fs-16.fw-500 {
    display: inline-flex;
    align-items: baseline;
}
.heading-font{
    align-items:center;
}

/* Icon ka size 8px set */
.fa-circle {
    font-size: 8px;
    margin-right: 5px;
}



