.about-hero{
    min-height:100vh;
    background:#000;
    color:#fff;
    text-align:center;
    padding-top:140px;
    position:relative;
    overflow:visible;
}

.about-hero h1{
    font-size:52px;
    font-weight:700;
    line-height:1.2;
}

.about-hero p{
    max-width:600px;
    margin:20px auto;
    color:#aaa;
}

.hero-btn{
    background:#ff4d4d;
    border:none;
    padding:14px 30px;
    border-radius:30px;
    color:#fff;
}

.cards-section{
    position:absolute;
    bottom:-160px;
    width:100%;
    left:0;
}

.about-hero .cards-container{
    position:relative;
    z-index:2;
    overflow:hidden;
    padding:0 40px;
}

.about-hero .cards-track{
    display:flex;
    gap:20px;
    transition:transform .5s ease;
}

.about-hero .card{
    min-width:280px;
    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.card h4{
    margin-bottom:10px;
    color:#111;
}

.card p{
    font-size:13px;
    color:#666;
}

.mission-section{
    padding:200px 0 10px;
    background:#f8f9fa;
}

.mission-section h2{
    font-weight:700;
}

.mission-card{
    background:#fff;
    border:none;
    border-radius:12px;
    padding:20px;
    margin-bottom:30px;
    gap:20px;
}

.card-img{
    flex:1;
}

.card-img img{
    width:100%;
}

.card-content{
    flex:2;
}

.card-head{
    display:flex;
    align-items:center;
    gap:10px;
    border-bottom:1px solid #eee;
    padding-bottom:10px;
    margin-bottom:15px;
}

.card-head img{
    width:10%;
}

.card-head h5{
    margin:0;
    font-weight:600;
}

.card-content p{
    color:#555;
    font-size:15px;
}

.business-section{
    background:linear-gradient(to bottom,#ff7b7b,#E9363A);
    border-radius:24px;
    padding:60px 20px;
    color:#fff;
}

.title{
    font-weight:700;
    font-size:32px;
}

.subtitle{
    opacity:.9;
    margin-bottom:40px;
}

.custom-card{
    background:#f3f3f3;
    color:#333;
    padding:25px;
    border-radius:46.16px;
    text-align:left;
    transition:.3s;
    height:100%;
}

.custom-card h5{
    font-weight:600;
    margin-bottom:10px;
}

.custom-card p{
    font-size:14px;
    color:#666;
}

.growth-section{
    padding:80px 20px;
    margin-bottom:60px;
}

.growth-title{
    font-size:42px;
    font-weight:700;
    color:#111;
    margin-bottom:10px;
}

.growth-subtitle{
    font-size:16px;
    color:#777;
    margin-bottom:30px;
}

.growth-text{
    max-width:800px;
    margin:0 auto;
    font-size:16px;
    color:#333;
    line-height:1.8;
}

@media (max-width: 992px){
    .mission-card{
        flex-direction:column;
        text-align:center;
    }

    .card-head{
        justify-content:center;
    }

    .card-content{
        order:2;
    }

    .card-img{
        order:1;
    }
}

@media (max-width: 768px){
    .about-hero{
        padding-top:120px;
    }

    .about-hero h1{
        font-size:26px;
        padding:0 10px;
    }

    .about-hero p{
        font-size:14px;
        padding:0 15px;
    }

    .cards-section{
        bottom:-200px;
    }

    .about-hero .cards-container{
        overflow-x:auto;
        scroll-snap-type:x mandatory;
        -webkit-overflow-scrolling:touch;
        padding:0 20px;
    }

    .about-hero .cards-track{
        display:flex;
        gap:15px;
    }

    .about-hero .card{
        flex:0 0 85%;
        scroll-snap-align:center;
    }

    .about-hero .cards-container::-webkit-scrollbar{
        display:none;
    }

    .mission-card{
        flex-direction:column;
        padding:15px;
    }

    .card-head{
        justify-content:flex-start;
    }

    .card-head img{
        width:20%;
    }

    .card-content{
        text-align:left;
    }

    .title{
        font-size:26px;
    }

    .growth-section{
        padding:60px 15px;
        margin-bottom:40px;
    }

    .growth-title{
        font-size:28px;
    }

    .growth-text{
        font-size:14px;
        font-weight:500;
        padding:0 10px;
    }
}

@media (max-width: 576px){
    .business-section{
        padding:40px 15px;
    }

    .custom-card{
        width:90%;
        margin:0 auto;
    }
}
