
/*==================================================
    ABOUT PAGE - CONTENT
==================================================*/

.th-about-content{
    padding:100px 0;
    background:#ffffff;
}

.th-about-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.th-about-image{
    flex:0 0 45%;
}

.th-about-img{
    width:100%;
    display:block;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.th-about-text{
    flex:0 0 55%;
}

.th-about-subtitle{
    display:inline-block;
    margin-bottom:15px;
    color:#F74723;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.th-about-title{
    margin:0 0 25px;
    color:#002147;
    font-size:42px;
    font-weight:700;
    line-height:1.3;
}

.th-about-description{
    margin-bottom:20px;
    color:#555555;
    font-size:17px;
    line-height:1.9;
}

.th-about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:15px;
    padding:15px 35px;
    background:#F74723;
    color:#ffffff;
    text-decoration:none;
    border-radius:8px;
    font-size:16px;
    font-weight:600;
    transition:.3s ease;
}

.th-about-btn:hover{
    background:#002147;
    color:#ffffff;
}



/*==================================================
    WHY CHOOSE US
==================================================*/

.th-about-why{
    padding:100px 0;
    background:#f8fbff;
}

.th-about-heading{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.th-about-heading .th-about-subtitle{
    display:inline-block;
    margin-bottom:15px;
    color:#F74723;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.th-about-section-title{
    margin:0;
    color:#002147;
    font-size:42px;
    font-weight:700;
    line-height:1.3;
}

.th-about-why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.th-about-card{
    background:#ffffff;
    padding:40px 30px;
    border-radius:15px;
    text-align:center;
    transition:.35s ease;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    border:1px solid #edf2f7;
}

.th-about-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.th-about-card-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#175A99;
    color:#fff;
    font-size:32px;
    transition:.3s;
}

.th-about-card:hover .th-about-card-icon{
    background:#F74723;
}

.th-about-card h3{
    margin:0 0 15px;
    color:#002147;
    font-size:22px;
    font-weight:700;
}

.th-about-card p{
    margin:0;
    color:#666;
    font-size:16px;
    line-height:1.8;
}
