﻿/* Section Title */
.section-title1 {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #1e3a8a;
}

/* SERVICES */
.services {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
}

.service-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
    transition: 0.3s;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    }

.service-icon {
    font-size: 22px;
    color: #01268d;
    background: #e0e7ff;
    padding: 12px;
    border-radius: 50%;
}

.service-text strong {
    display: block;
    font-size: 16px;
    color: #111827;
}

.service-text span {
    color: #6b7280;
    font-size: 14px;
}

/* MISSION VISION */
.mv-section {
    max-width: 1100px;
    margin: 40px auto;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    padding: 20px;
}

.mv-card {
    flex: 1;
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transition: 0.3s;
}

    .mv-card:hover {
        transform: translateY(-5px);
    }

.mv-title {
    font-size: 24px;
    color: #1e3a8a;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .mv-title i {
        color: #01268d;
    }

.mv-text {
    color: #4b5563;
    line-height: 1.6;
}

/* Responsive */
@media(max-width: 768px) {
    .mv-section {
        flex-direction: column;
    }
}


.section {
    display: flex;
    gap: 30px;
    padding: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    width: 450px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }

    .card h2 {
        margin-bottom: 20px;
        color: #1e3a8a;
    }

.list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.icon {
    color: #01268d;
    font-size: 18px;
    margin-right: 10px;
    margin-top: 3px;
}

.text strong {
    color: #111827;
}

.text span {
    display: block;
    color: #6b7280;
    font-size: 14px;
}

/* Responsive */
@media(max-width: 900px) {
    .section {
        flex-direction: column;
        align-items: center;
    }
}
