/* Reset */
/* =========================
   ABOUT TITLE
========================= */
.about-title {
    padding: 60px 0;
   /* background: #111827; */ 
   background: var(--sky-semi-bg);
    text-align: center;
    margin-top: 19px;
}

.about-title h2 {
    color: var(--heading-color);

}

.about-title p {
    color: var(--primary-dark);
    line-height: 1.8;
   /* font-size: 15px; */
    max-width: 850px;
    margin: auto;
}

/* =========================
   ABOUT SECTION
========================= */
.about-main-content {
    background: var(--light-bg);
   /* padding: 80px 0; */ 
}
.about-section {
    padding: 9px 0;
   /* background: #f9fafb; */
}

/* Wrapper */
.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* =========================
   LEFT IMAGE
========================= */
.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 400px;

    object-fit: cover;

    border-radius: 20px;

    display: block;
}

/* =========================
   RIGHT CONTENT
========================= */
.about-content {
    flex: 1;
}

.about-content h3 {
   /* font-size: 36px; */
    color: var(--heading-color);
    margin-bottom: 25px;
}

.about-content p {
    color: var(--light-solar-blue);
    line-height: 1.9;
    margin-bottom: 20px;
   /* font-size: 17px; */
}

/* =========================
   MISSION & VISION
========================= */
.drive-us-header {
    text-align: center;
    /* max-width: 900px;
    margin: 0 auto 60px; 
    background: #111827; */
}


.drive-us-header h2 {
   /* font-size: 42px; 
    color: #d1d5db; */
    margin-bottom: 10px;
}

.drive-us-header p {
   /* font-size: 18px; 
    line-height: 1.8;
    color: #9ca0a5; */
    margin-bottom: 20px;
}

.mission-vision {
    padding: 80px 0;
   /* background: #111827; */
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 600px);
    justify-content: center;
    gap: 32px;
}

/* Cards */
.mission-card {
    background: var(--sky-semi-bg);
    padding: 9px 29px 49px;

    border-radius: 20px;

    text-align: center;

    transition: 0.3s ease;

    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Commitment Card */
/* =========================
   COMMITMENT SECTION
========================= */
.commitment-wrapper {
    grid-column: 1 / span 2;

    display: flex;
    flex-direction: column;
    align-items: center;

    margin-top: 20px;
}


/* Card */
.commitment-card {
    width: 600px;   /* Same as your grid card width */

    justify-self: center;
}

.mission-card:hover {
    transform: translateY(-9px);
}

/* Icon */
.mission-icon {
    font-size: 20px;
    margin-top: auto;
}

/* Heading */
.mission-card h3 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-top: 5px;
}

/* Text */
.mission-card p {
   /* color: #9ca0a5; */
    line-height: 1.8;
   /* font-size: 17px; */
   margin-bottom: 20px;

}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

    .about-container {
        flex-direction: column;
    }

    .about-image img {
        height: 350px;
    }

    .about-content {
        text-align: center;
    }

    .about-title h2 {
        font-size: 34px;
    }

    .about-content h3 {
        font-size: 28px;
    }
}
@media (max-width: 768px) {

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .commitment-wrapper {
        grid-column: auto;
    }

    .commitment-card {
        width: 100%;
        max-width: 600px;
    }
}