/*=========================================
About Page
=========================================*/
/* About Section */
.about-section{
    padding:100px 0;
    background:#fff;
    }
    .about-section img{
    width:100%;
    border-radius:20px;
    box-shadow:var(--shadow);
    transition:.4s;
    }
    .about-section img:hover{
    transform:scale(1.02);
    }
    .section-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 18px;
    border-radius:30px;
    background:#EEF5FF;
    color:var(--primary);
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;
    margin-bottom:20px;
    }
    .about-section h2{
    margin-bottom:20px;
    }
    .about-section p{
    color:var(--light-text);
    line-height:1.9;
    margin-bottom:18px;
    }
    /*=========================================
    Mission & Vision
    =========================================*/
    .mission-section{
    padding:100px 0;
    background:#F8FAFC;
    }
    .mission-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:40px;
    height:100%;
    text-align:center;
    transition:.35s;
    box-shadow:var(--shadow-sm);
    }
    .mission-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
    }
    .mission-card i{
    width:72px;
    height:72px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    border-radius:18px;
    background:#EEF5FF;
    color:var(--primary);
    font-size:30px;
    }
    .mission-card h3{
    margin-bottom:15px;
    }
    .mission-card p{
    color:var(--light-text);
    margin:0;
    line-height:1.8;
    }
    /*=========================================
    Why Choose
    =========================================*/
    .why-about{
    padding:100px 0;
    background:#fff;
    }
    .about-feature{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:35px;
    text-align:center;
    height:100%;
    transition:.35s;
    box-shadow:var(--shadow-sm);
    }
    .about-feature:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
    }
    .about-feature i{
    width:72px;
    height:72px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    border-radius:18px;
    background:#EEF5FF;
    color:var(--primary);
    font-size:30px;
    }
    .about-feature h4{
    margin-bottom:15px;
    }
    .about-feature p{
    margin:0;
    color:var(--light-text);
    line-height:1.8;
    }
    /*=========================================
    Responsive
    =========================================*/
    @media (max-width:1199px){
    .about-section,
    .mission-section,
    .why-about{
    padding:90px 0;
    }
    }
    @media (max-width:991.98px){
    .about-section,
    .mission-section,
    .why-about{
    padding:80px 0;
    }
    .about-section img{
    margin-bottom:35px;
    }
    .mission-card,
    .about-feature{
    padding:30px;
    }
    }
    @media (max-width:767.98px){
    .about-section,
    .mission-section,
    .why-about{
    padding:60px 0;
    }
    .section-badge{
    font-size:13px;
    padding:7px 15px;
    }
    .about-section h2{
    margin-bottom:18px;
    }
    .about-section p{
    font-size:15px;
    line-height:1.8;
    }
    .mission-card,
    .about-feature{
    padding:25px;
    }
    .mission-card i,
    .about-feature i{
    width:60px;
    height:60px;
    font-size:24px;
    border-radius:15px;
    }
    .mission-card h3{
    font-size:22px;
    }
    .about-feature h4{
    font-size:20px;
    }
    }
    @media (max-width:575.98px){
    .about-section .container,
    .mission-section .container,
    .why-about .container{
    padding-left:18px;
    padding-right:18px;
    }
    .about-section img{
    border-radius:16px;
    }
    .mission-card,
    .about-feature{
    border-radius:16px;
    }
    }

    /*=========================================
About CTA
=========================================*/
.about-cta{
    padding:100px 0;
    background:#F8FAFC;
    }
    .about-cta-box{
    max-width:900px;
    margin:auto;
    text-align:center;
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:70px 60px;
    box-shadow:var(--shadow);
    }
    .cta-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:#EEF5FF;
    color:var(--primary);
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
    }
    .about-cta-box h2{
    margin-bottom:20px;
    }
    .about-cta-box p{
    max-width:700px;
    margin:0 auto 35px;
    color:var(--light-text);
    line-height:1.8;
    }
    .cta-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    }
    .cta-buttons .btn{
    min-width:220px;
    }
    @media(max-width:768px){
    .about-cta{
    padding:70px 0;
    }
    .about-cta-box{
    padding:40px 25px;
    }
    .cta-buttons{
    flex-direction:column;
    }
    .cta-buttons .btn{
    width:100%;
    }
    }