/* =====================================================
   AN SOFTTECHS
   ABOUT US PAGE CSS
===================================================== */



/* =========================
   ABOUT HERO
========================= */


.about-hero{

    padding:150px 8% 80px;

    background:#EEF6FF;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:60px;

}



.about-content{

    max-width:650px;

}
.about-content h1{

    font-size:55px;

    color:#020B2D;

    margin-bottom:20px;

}



.tagline{

    color:#006BFF;

    font-size:22px;

    font-weight:bold;

    margin-bottom:25px;

}



.about-content > p{

    color:#667085;

    font-size:18px;

    line-height:1.8;

}



.about-content h2{

    color:#020B2D;

    margin-top:35px;

    margin-bottom:15px;

    font-size:28px;

}



.ceo-message{

    font-style:italic;

}



.about-content h3{

    color:#006BFF;

    margin-top:20px;

}



.ceo-image img{

    width:450px;

    max-width:100%;

    border-radius:25px;

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}







/* =========================
   MISSION VISION VALUES
========================= */


.about-details{

    padding:80px 8%;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}



.about-box{

    background:white;

    padding:35px 25px;

    text-align:center;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

}



.about-box:hover{

    transform:translateY(-10px);

}



.about-box i{

    font-size:45px;

    color:#006BFF;

    margin-bottom:20px;

}



.about-box h3{

    color:#020B2D;

    font-size:24px;

    margin-bottom:15px;

}



.about-box p{

    color:#667085;

    line-height:1.7;

}







/* =========================
   COMPANY STATS
========================= */


.company-stats{

    padding:60px 8%;

    background:#F8FBFF;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    text-align:center;

}



.stat-card{

    background:white;

    padding:35px;

    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}



.stat-card h2{

    color:#006BFF;

    font-size:42px;

    margin-bottom:10px;

}



.stat-card p{

    color:#667085;

    font-size:18px;

}







/* =========================
   TEAM SECTION
========================= */


.team-section{

    padding:80px 8%;

    text-align:center;

}



.team-section h2{

    font-size:42px;

    color:#020B2D;

    margin-bottom:15px;

}



.team-section > p{

    color:#667085;

    font-size:18px;

    margin-bottom:50px;

}



.team-slider{

    overflow:hidden;

    width:100%;

}



.team-track{

    display:flex;

    align-items:stretch;

    gap:25px;

    width:max-content;

    animation:teamMove 45s linear infinite;

}



.team-slider:hover .team-track{

    animation-play-state:paused;

}



.team-card{

    width:230px;

    flex:0 0 auto;

    background:white;

    border-radius:20px;

    padding:25px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

    text-align:center;

}



.team-card:hover{

    transform:translateY(-8px);

}



.team-card img{

    width:120px;

    height:120px;

    object-fit:cover;

    border-radius:50%;

    margin-bottom:20px;

}



.team-card h3{

    color:#020B2D;

    font-size:20px;

    margin-bottom:12px;

}



.team-card p{

    color:#667085;

    line-height:1.6;

    font-size:15px;

}



@keyframes teamMove{


from{

    transform:translateX(0);

}


to{

    transform:translateX(-50%);

}
}







/* =========================
   BLUE BANNER
========================= */


.about-banner{

    margin:70px 8%;

    padding:60px;

    border-radius:30px;

    background:linear-gradient(135deg,#0057D9,#00C8FF);

    color:white;

    text-align:center;

}



.about-banner h2{

    font-size:40px;

    margin-bottom:20px;

}



.about-banner p{

    font-size:20px;

    line-height:1.7;

}







/* =========================
   RESPONSIVE
========================= */


@media(max-width:1100px){


.about-hero{

    flex-direction:column;

    text-align:center;

}



.about-details{

    grid-template-columns:repeat(2,1fr);

}



.company-stats{

    grid-template-columns:repeat(2,1fr);

}



}







@media(max-width:600px){


.about-content h1{

    font-size:38px;

}



.about-details{

    grid-template-columns:1fr;

}



.company-stats{

    grid-template-columns:1fr;

}



.about-banner{

    margin:50px 5%;

    padding:40px 20px;

}



.about-banner h2{

    font-size:28px;

}



}