.aboutus_Section {
    background-color: #fff;
    margin-top: 50px;
}

.aboutbanner-section {
    margin: 0;
    padding: 0;
}

.aboutbanner-image {
    background-image: url("../images/aboutus/about_banner_image.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 140vh;
    position: relative;
}

.content {
    position: absolute;
    bottom: 50px;
    left: 0px;
    right: 0px;
    width: 85%;
    margin: 0 auto;
}

.aboutPara {
    font-family: "Poppins-Medium";
    font-size: 29px;
    font-weight: 500 !important;
    line-height: 46px;
    color: #ffff;
    background-color: black;
    border-radius: 16px;
    box-shadow: 0.5px 0.5px 30px 7px rgba(0, 0, 0, 0.8);
}

.aboutParaSpan {
    color: #2ba8e0;
    font-family: "Poppins-Bold";
    font-size: 29px;
    font-weight: 700;
    line-height: 46px;
}

/* --------------------------
   CARD STYLING 
---------------------------*/
.card-box {
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.team-card,
.story-card,
.vision-card {
    border-radius: 30px;
    padding: 3rem 2rem;
    height: 100%;
}

/* Equal card height fix */
.row.g-4.align-items-stretch > [class*="col-"] {
    display: flex;
}

/* --------------------------
   TEAM CARD
---------------------------*/
.team-card {
    background-color: #2ca8e0;
    position: relative;
    overflow: hidden;
}

/* Circular icon under heading */
.heading-icon {
    background-color: #ececec;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    font-weight: 600;
    color: #2ca8e0;
    transition: 0.3s;
}

.team-card .heading-icon:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

/* --------------------------
   STORY & VISION CARDS
---------------------------*/
.story-card {
    background-color: #156995;
}

.vision-card {
    background-color: #e9e9e9;
}

/* --------------------------
   READ MORE BUTTON
---------------------------*/
.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #156995;
    background-color: transparent;
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 14px;
    font-family: "Poppins-Regular";
    transition: 0.3s;
    border: 1px solid #156995;
}

.read-more-btn:hover {
    background-color: #000000;
    color: #156995;
}

/* --------------------------
   AVATARS (NEW STYLE)
---------------------------*/
.avatars {
    display: flex;
    align-items: center;
}

.avatars img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    /* border: 3px solid #ffffff; */
    margin-left: -10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.avatars img:first-child {
    margin-left: 0;
}

.avatars img:hover {
    transform: scale(1.05);
    z-index: 2;
}

/* --------------------------
   HEADINGS
---------------------------*/
.aboutTeamheading {
    font-family: "Poppins-SemiBold";
    font-weight: 600;
    font-size: 40px;
    line-height: 100%;
    color: #000000;
    letter-spacing: 0;
}

.aboutHeadingStory {
    font-family: "Poppins-SemiBold";
    font-weight: 600;
    font-size: 40px;
    line-height: 100%;
    color: #ffffff;
    letter-spacing: 0;
}

.aboutHeadingVision {
    font-family: "Poppins-Bold";
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    color: #000000;
    letter-spacing: 0;
}

/* --------------------------
   PARAGRAPHS
---------------------------*/
.aboutTeampara {
    font-family: "Poppins-Regular";
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #000000;
    letter-spacing: 6%;
    text-align: justify;
}

.aboutParaStory {
    font-family: "Poppins-Regular";
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
    text-align: justify;
}

.aboutParaVision {
    font-family: "Poppins-Regular";
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #000000;
    text-align: justify;
}

/* --------------------------
   CARD HOVER EFFECT
---------------------------*/
.card-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.teamCardPadding {
    padding-top: 20px;
}
/* --------------------------
   RESPONSIVE
---------------------------*/
@media (max-width: 991px) {
    .col-lg-7 {
        gap: 1.5rem;
    }
    .content {
        width: 95%;
    }
    .aboutParaSpan,
    .aboutPara {
        font-size: 16px;
    }
    .aboutTeamparaDiv {
        width: 90%;
        margin: 0 0 0 auto;
    }
}

@media (max-width: 767px) {
    .card-box {
        text-align: center;
    }

    .avatars {
        justify-content: center;
        display: flex;
        width: 100%;
        margin-bottom: 1rem;
    }

    .read-more-btn {
        margin: 0 auto;
    }
}
@media (max-width: 576px) {
    .aboutParaSpan,
    .aboutPara {
        font-size: 12px;
        padding: 0px 10px;
    }
    .aboutTeamheading,
    .aboutHeadingStory,
    .aboutHeadingVision {
        text-align: start;
        font-size: 32px;
    }
    .aboutTeampara,
    .aboutParaStory,
    .aboutParaVision {
        font-size: 18px;
    }
}
