/* Wrapper to contain the section only */
.mission-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}

/* Row Styling */
.mission-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

/* Column (Card) Styling */
.mission-row .col-md-6 {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    max-width: 45%;
    min-width: 320px;
    text-align: center;
    border-top: 4px solid #007bff;
}

/* Hover Effect */
.mission-row .col-md-6:hover {
    transform: translateY(-8px);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
}

/* Section Title */
.mission-row .sec-title h5 {
    font-size: 22px;
    font-weight: bold;
    color: #007bff;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

/* Underline Effect */
.mission-row .sec-title h5::after {
    content: "";
    width: 50px;
    height: 4px;
    background: #007bff;
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* List Styling */
.mission-row ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    text-align: left;
}

.mission-row ul li {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
}

/* Remove Border on Last List Item */
.mission-row ul li:last-child {
    border-bottom: none;
}

/* Icons */
.mission-row ul li i {
    color: #28a745;
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-row {
        flex-direction: column;
        align-items: center;
    }
    .mission-row .col-md-6 {
        max-width: 90%;
        text-align: center;
        border-top: 3px solid #007bff;
    }
}
