/* Start custom CSS for html, class: .elementor-element-a265a09 */*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

.about-section{
    position:relative;
    padding:120px 0;
    background:linear-gradient(135deg,#f8f9fb,#ffffff);
    overflow:hidden;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
    position:relative;
    z-index:5;
}

/* =====================
TITLE
===================== */

.section-title{
    text-align:center;
    margin-bottom:80px;
}

.section-title h2{
    font-size:50px;
    margin-bottom:15px;
    color:#111;
}

.section-title p{
    color:#666;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

/* =====================
CHAIRMAN SECTION
===================== */

.chairman-section{
    display:flex;
    align-items:center;
    gap:60px;
    margin-bottom:100px;
}

.chairman-image{
    flex:1;
}

.chairman-image img{
    width:100%;
    border-radius:30px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.chairman-content{
    flex:1.2;
}

.designation{
    display:inline-block;
    background:#ffcc00;
    padding:10px 20px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.chairman-content h2{
    font-size:42px;
    margin-bottom:20px;
}

.chairman-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:18px;
}

/* =====================
TEAM
===================== */

.team-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.team-card{
    background:rgba(255,255,255,.8);
    backdrop-filter:blur(15px);
    border-radius:25px;
    padding:35px;
    text-align:center;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    transition:.4s;
}

.team-card:hover{
    transform:translateY(-12px);
}

.team-card img{
    width:140px;
    height:140px;
    object-fit:cover;
    border-radius:50%;
    margin-bottom:20px;
    border:5px solid #ffcc00;
}

.team-card h3{
    font-size:24px;
    margin-bottom:8px;
}

.team-card span{
    color:#ff9800;
    font-weight:600;
    display:block;
    margin-bottom:15px;
}

.team-card p{
    color:#666;
    line-height:1.8;
}

/* =====================
MOTION GRAPHICS
===================== */

.floating-shapes span{
    position:absolute;
    border-radius:25px;
}

.floating-shapes span:nth-child(1){
    width:150px;
    height:150px;
    background:rgba(255,204,0,.08);
    top:100px;
    left:5%;
    animation:float1 12s infinite;
}

.floating-shapes span:nth-child(2){
    width:100px;
    height:100px;
    background:rgba(255,0,0,.05);
    right:10%;
    top:200px;
    animation:float2 10s infinite;
}

.floating-shapes span:nth-child(3){
    width:180px;
    height:180px;
    background:rgba(255,204,0,.06);
    bottom:100px;
    left:15%;
    animation:float3 15s infinite;
}

.floating-shapes span:nth-child(4){
    width:120px;
    height:120px;
    background:rgba(0,0,0,.04);
    bottom:150px;
    right:15%;
    animation:float4 11s infinite;
}

@keyframes float1{
    50%{
        transform:
        translateY(-40px)
        rotate(45deg);
    }
}

@keyframes float2{
    50%{
        transform:
        translateY(30px)
        rotate(-45deg);
    }
}

@keyframes float3{
    50%{
        transform:
        translateY(-35px);
    }
}

@keyframes float4{
    50%{
        transform:
        translateY(40px);
    }
}

/* =====================
RESPONSIVE
===================== */

@media(max-width:991px){

.chairman-section{
    flex-direction:column;
}

.team-grid{
    grid-template-columns:1fr;
}

.section-title h2{
    font-size:36px;
}

.chairman-content h2{
    font-size:32px;
}

}/* End custom CSS */