/* ====================================
   ABOUT BANNER
==================================== */

.about-banner{

    background:
    linear-gradient(
    rgba(255,66,84,0.88),
    rgba(255,66,84,0.88)
    ),
    url('../images/about-page-banner.png');

    background-size: cover;
    background-position: center;

    padding: 140px 0;
    text-align: center;
}

.about-banner-content h1{
    color: #ffffff;
    margin-bottom: 15px;
}

.about-banner-content p{
    color: #ffffff;
    max-width: 700px;
    margin: auto;
}

/* ====================================
   ABOUT PAGE
==================================== */

.about-page{
    padding: 100px 0;
    background: #ffffff;
}

.about-content-box{

    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.about-text p{

    margin-bottom: 25px;
    line-height: 1.9;
    text-align: justify;
    color: #555555;
}

/* ====================================
   LOGO SECTION
==================================== */

.about-logo{

    text-align: center;
    margin-top: 50px;
}

.about-logo img{

    max-width: 250px;
    width: 100%;
    height: auto;
    transition: .3s ease;
}

.about-logo img:hover{

    transform: scale(1.05);
}

/* ====================================
   VISION & MISSION
==================================== */

.vision-mission{

    padding: 100px 0;
    background: #f8f9fa;
}

.vision-grid{

    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.vision-card{

    position: relative;
    overflow: hidden;
    flex: 0 0 calc(50% - 15px);
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .4s ease;
    z-index: 1;
}

.vision-card::before{

    content: "";

    position: absolute;

    left: 0;
    bottom: -100%;

    width: 100%;
    height: 100%;

    background: #ff4254;

    transition: .5s ease;

    z-index: -1;
}

.vision-card:hover::before{

    bottom: 0;
}

.vision-card:hover{

    transform: translateY(-10px);
}

.vision-logo{

    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.vision-logo img{

    width: 80px;
    transition: .4s;
}

.vision-card:hover .vision-logo img{

    transform: scale(1.1);
}

.vision-card h3{

    margin-bottom: 20px;
    transition: .4s;
}

.vision-card p{

    line-height: 1.8;
    transition: .4s;
}

.vision-card:hover h3,

.vision-card:hover p{
    color: #ffffff;
}