/* ================= GLOBAL ================= */
.about-hero,
.about-section,
.about-split,
.about-features,
.about-values,
.about-cta {
    background-color: #000;
    color: #fff;
}

/* ================= HERO ================= */
.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 10%;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.about-hero span {
    color: #ff0000;
}

.about-hero p {
    margin-top: 15px;
    color: #ccc;
    font-size: 18px;
}

/* ================= SECTIONS ================= */
.about-section,
.about-features,
.about-values {
    padding: 80px 10%;
    text-align: center;
}

.about-section h2,
.about-features h2,
.about-values h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-section span,
.about-features span,
.about-values span {
    color: #ff0000;
}

.about-section p {
    max-width: 900px;
    margin: auto;
    line-height: 1.8;
    color: #ccc;
}

/* ================= MISSION / VISION ================= */
.about-split {
    padding: 80px 10%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.about-box {
    background: #111;
    border: 1px solid #222;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s ease;
}

.about-box:hover {
    transform: translateY(-6px);
    border-color: #ff0000;
}

.about-box i {
    font-size: 38px;
    color: #ff0000;
    margin-bottom: 15px;
}

.about-box h3 {
    margin-bottom: 10px;
}

.about-box p {
    color: #ccc;
    line-height: 1.7;
}

/* ================= WHY CHOOSE DSS ================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-box {
    background: #111;
    border: 1px solid #222;
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-6px);
    border-color: #ff0000;
}

.feature-box i {
    font-size: 30px;
    color: #ff0000;
    margin-bottom: 12px;
}

.feature-box h4 {
    margin-bottom: 8px;
}

.feature-box p {
    color: #ccc;
    font-size: 15px;
}

/* ================= VALUES ================= */
.about-values ul {
    list-style: none;
    margin-top: 30px;
    padding: 0;
}

.about-values li {
    font-size: 18px;
    margin: 14px 0;
    color: #ccc;
}

/* ================= CTA ================= */
.about-cta {
    padding: 70px 10%;
    text-align: center;
    border-top: 1px solid #222;
}

.about-cta h2 span {
    color: #ff0000;
}

.about-cta p {
    margin: 15px 0 25px;
    color: #ccc;
}

.about-cta .btn {
    background: #ff0000;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

.about-cta .btn:hover {
    background: #cc0000;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

    .about-hero h1 {
        font-size: 34px;
    }

    .about-section h2,
    .about-features h2,
    .about-values h2 {
        font-size: 28px;
    }

    .about-section,
    .about-features,
    .about-values,
    .about-split,
    .about-cta {
        padding: 60px 6%;
    }
}
