.about-us-section{
    padding:100px 0;
    background:#f7f7f7;
}

/* Banner */
.about-banner{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    margin-bottom:60px;
}

.about-banner-content{
    padding:60px;
}

.sub-title{
    font-weight:600;
    color:#4c8c3f;
    letter-spacing:1px;
    display:inline-block;
    margin-bottom:20px;
}

.about-banner-content h1{
    font-weight:700;
    color:#0c2454;
    line-height:1.2;
    margin-bottom:25px;
}

.title-divider{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:25px;
}

.title-divider i{
    color:#4c8c3f;
    font-size:24px;
}

.title-divider span{
    width:120px;
    height:2px;
    background:#4c8c3f;
}

.about-banner-content p{
    color:#555;
    line-height:1.6;
}

.about-banner-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* About Info */
.about-info-box{
    display:flex;
    gap:25px;
    padding:30px 0;
    border-bottom:1px solid #ddd;
}

.info-icon{
    min-width:70px;
    height:70px;
    border:2px solid #4c8c3f;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.info-icon i{
    color:#4c8c3f;
    font-size:28px;
}

.info-content p{
    line-height:1.8;
    color:#444;
}

/* Cards */
.about-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    margin-bottom:30px;
}

.about-card-image img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.about-card-content{
    padding:30px;
}

.card-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#4c8c3f;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:-65px;
    position:relative;
    z-index:2;
    border:5px solid #fff;
}

.card-icon i{
    color:#fff;
    font-size:28px;
}

.about-card-content h3{
    font-size:32px;
    font-weight:700;
    color:#0c2454;
    margin:20px 0 15px;
}

.about-card-content span{
    width:70px;
    height:2px;
    background:#4c8c3f;
    display:block;
    margin-bottom:20px;
}

.about-card-content p{
    font-size:18px;
    color:#555;
    line-height:1.7;
}

/* Responsive */
@media(max-width:991px){

    .about-banner-content{
        padding:40px;
    }

    .about-banner-content h1{
        font-size:42px;
    }

    .about-banner-content p{
        font-size:20px;
    }

    .about-info-box{
        flex-direction:column;
    }
}

/* vision and mission box start  */
.mission-box{
    background: #f7f7f7;
    border: 1px solid #d9ece2;
    border-radius: 25px;
    padding: 35px 40px;
    margin-top: 30px;
    transition: 0.3s ease;
}

.mission-box:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
/* vision and mission box end  */


/* sticky social links start */

.social-sticky {
    position: fixed;
    right: 1rem;
    bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .55rem;
    z-index: 900;
}

.social-link {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: .82rem;
    box-shadow: 0 8px 18px rgba(20, 32, 40, .2);
    transition: transform .2s ease, opacity .2s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
    display: block;
}

.social-link:hover {
    transform: translateY(-2px);
    opacity: .92;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
}

.social-link.linkedin {
    background: #0a66c2;
}

.social-link.whatsapp {
    background: #20b15a;
}

@media (max-width: 767px) {
    .social-sticky {
        right: .7rem;
        bottom: 4rem;
        gap: .45rem;
    }

    .video{
        display: flex;
        flex-direction: column;
        padding: 20px 30px;
        width: 100%;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: .72rem;
    }

    .social-link svg {
        width: 17px;
        height: 17px;
    }
}
/* sticky social links end  */