﻿/* HERO SECTION */
.about-hero {
    height: 600px;
    background-image: url('../images/slider1.png');
    position: relative;
}

.overlay {
    position: absolute;
    bottom: 40px;
    left: 50px;
    color: #fff;
}

    .overlay h4 {
        color: #4cd37a;
        margin-bottom: 5px;
    }

    .overlay h1 {
        font-size: 40px;
    }

/* BREADCRUMB */
.breadcrumb {
    padding: 15px 50px;
    font-size: 14px;
    color: #777;
}

/* HISTORY */
.history {
    padding: 60px 50px;
}

.container {
    display: flex;
    gap: 40px;
}

.history-left {
    width: 30%;
}

    .history-left h2 {
        font-size: 28px;
    }

.line {
    display: block;
    width: 60px;
    height: 3px;
    background: #4cd37a;
    margin-top: 10px;
}

.history-right {
    width: 70%;
    display: flex;
    gap: 20px;
}

/* FEATURES */
.features {
    display: flex;
    background: #0c2e60;
    color: #fff;
}

.feature-box {
    flex: 1;
    padding: 40px;
}

    .feature-box h3 {
        color: #4cd37a;
        margin-bottom: 10px;
    }

/* GRID */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.grid-text {
    padding: 50px;
    background: #f8f9fb;
}

    .grid-text h2 {
        margin-bottom: 10px;
    }

.grid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* PARTNERS */
.partners {
    background: #0c2e60;
    padding: 40px 0;
}

.logos {
    display: flex;
    justify-content: space-around;
    color: #fff;
}

/* MOBILE */
@media(max-width:768px) {

    .container {
        flex-direction: column;
    }

    .history-left,
    .history-right {
        width: 100%;
    }

    .features {
        flex-direction: column;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .overlay {
        left: 20px;
    }
}
/* MISSION SECTION */
.mission {
    padding: 70px 50px;
    background: #f8fafc;
}

    .mission .container {
        display: flex;
        gap: 30px;
        justify-content: space-between;
    }

/* BOX */
.mission-box {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background: #fff;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

    .mission-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    /* ICON */
    .mission-box .icon {
        font-size: 30px;
        color: #4cd37a;
        margin-bottom: 15px;
    }

    /* TITLE */
    .mission-box h3 {
        margin-bottom: 10px;
        color: #0c2e60;
    }

    /* TEXT */
    .mission-box p {
        font-size: 14px;
        color: #666;
    }

/* MOBILE */
@media(max-width:768px) {
    .mission .container {
        flex-direction: column;
    }
}