.about-banner {
    height: 40vh;
    width: 100%;
    background-image: url("../img/banner2.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.banner-heading {
    font-size: clamp(26px, 4vw, 50px);
    color: #fff;
}

/*about section stylings*/

.expert-card {
    border: 1px solid orange;
    padding: 15px;
    border-radius: 5px;
    position: relative;
    background-color: #fff;
}
.expert-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid orange;
    object-fit: cover;
    position: absolute;
    top: -50px;
    left: 15px;
    background-color: #fff;
}
.expert-details {
    margin-left: 130px;
    padding-top: 10px;
}
.expert-name {
    font-size: 1.5rem;
    font-weight: bold;
}
.expert-position {
    font-size: 1.2rem;
    color: gray;
    font-weight: 500;
}

.expert-details p {
    font-size: 19px;
    font-weight: 400;
    text-align: justify;
}

.fixed-bg {
    background-image: url("../img/banner3.jpg");
    min-height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.developers-logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.developer-logos {
    max-width: 140px;
    padding-bottom: 80px;
}