/* ================= DARK ABOUT MAIN SECTION ================= */

.about-main {
    padding: 20px 20px 20px 20px;
    text-align: center;
    background: linear-gradient(135deg, #0f1f26, #122b33);
}

.about-container {
    max-width: 900px;
    margin: auto;
}

.brand-title {
    font-size: 48px;
    margin-bottom: 10px;
}

.brand-name {
    color: #67C3C9;
    display: inline-block;
    animation: slideIn 1s ease forwards;
    opacity: 0;
}

.accent-line {
    width: 90px;
    height: 4px;
    background: #F97316;
    margin: 15px auto 25px auto;
    border-radius: 3px;
}

.tagline {
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 30px;
}

.about-description {
    font-size: 17px;
    line-height: 1.9;
    color: #e2e8f0;
}

/* Animation */
@keyframes slideIn {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ================= MISSION & VISION ================= */

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 20px 60px;
}

.card {
    background: #ffffff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 5px solid #F97316;
}

.card h2 {
    color: #1E6F78;
    margin-bottom: 15px;
}

.card p {
    color: #333333;
    line-height: 1.8;
}

/* ================= CORE VALUES ================= */

.core-values {
    padding: 30px 20px;
    text-align: center;
}

.core-values h2 {
    color: #1E6F78;
}

.values-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.value {
    background: #1E6F78;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    transition: 0.3s ease;
}

.value:hover {
    background: #F97316;
    transform: translateY(-5px);
}

/* ================= WHY CHOOSE ================= */

.why {
    padding: 30px 60px;
    text-align: center;
}

.why h2 {
    color: #1E6F78;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    background: #f5f9fa;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.why-card h3 {
    color: #1E6F78;
    margin-top: 15px;
}

.why-card p {
    color: #333333;
}

.why-card i {
    font-size: 28px;
    color: #F97316;
}

.why-card:hover {
    transform: translateY(-8px);
}

/* ================= GIS SECTION ================= */

.gis-section {
    padding: 80px 60px;
    text-align: center;
    background: #0f1f26;
}

.gis-section h2 {
    color: #67C3C9;
}

.gis-section p {
    color: #e2e8f0;
}

.gis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gis-section span {
    color: #F97316;
    font-size: 24px;
    font-weight: bold;
}