.about-hero {
    position: relative;
    min-height: 75vh;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 120px 10%;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            rgba(10, 20, 60, .95),
            rgba(32, 85, 180, .85));
}

.about-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at top right,
            rgba(56, 189, 248, .4),
            transparent 35%);
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.badge {
    display: inline-block;

    padding: 10px 22px;

    border-radius: 999px;

    background: rgba(255, 255, 255, .12);

    color: white;

    margin-bottom: 25px;
}

.about-content h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 25px;
}

.about-content p {
    color: rgba(255, 255, 255, .85);
    font-size: 1.3rem;
    line-height: 2;
}

.about-section {
    padding: 100px 10%;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.about-text {
    background: rgba(255, 255, 255, .5);

    backdrop-filter: blur(12px);

    border-radius: 25px;

    padding: 40px;
}

.about-text h2 {
    margin-bottom: 25px;
    font-size: 2rem;
}

.about-text p {
    line-height: 2.2;
    margin-bottom: 20px;
}

.stats-box {
    display: grid;
    gap: 20px;
}

.stat {
    background: white;

    border-radius: 20px;

    text-align: center;

    padding: 30px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.stat h3 {
    font-size: 2.5rem;
    color: #2563eb;
}

.stat span {
    color: #555;
}

.vision-section {
    padding: 0 10% 100px;

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap: 25px;
}

.vision-card {
    background: white;

    padding: 35px;

    border-radius: 25px;

    transition: .4s;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.vision-card:hover {
    transform: translateY(-10px);
}

.vision-card h3 {
    margin-bottom: 20px;
    color: #2563eb;
}

.vision-card p {
    line-height: 2;
}

@media(max-width:900px) {

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-content h1 {
        font-size: 2.5rem;
    }

}

/* ===============================
   Story Content
=================================*/

.story-content {

    margin-top: 25px;

    color: #4b5563;

    font-size: 1rem;

    line-height: 2.2;

}

.story-content h1,
.story-content h2,
.story-content h3,
.story-content h4,
.story-content h5,
.story-content h6 {

    color: #111827;

    margin: 35px 0 15px;

    font-weight: 700;

    line-height: 1.6;

}

.story-content h1 {

    font-size: 2rem;

}

.story-content h2 {

    font-size: 1.7rem;

}

.story-content h3 {

    font-size: 1.45rem;

}

.story-content p {

    margin-bottom: 18px;

    text-align: justify;

}

.story-content strong {

    color: #111827;

    font-weight: 700;

}

.story-content em {

    font-style: italic;

}

.story-content u {

    text-decoration: underline;

}

.story-content ul,
.story-content ol {

    margin: 20px 30px;

    padding: 0;

}

.story-content li {

    margin: 8px 0;

}

.story-content a {

    color: #0d9488;

    text-decoration: none;

    transition: .3s;

}

.story-content a:hover {

    color: #0f766e;

}

.story-content blockquote {

    margin: 25px 0;

    padding: 18px 24px;

    border-right: 5px solid #10b981;

    background: #f3f4f6;

    border-radius: 12px;

    color: #374151;

    font-style: italic;

}

.story-content table {

    width: 100%;

    border-collapse: collapse;

    margin: 25px 0;

}

.story-content table th {

    background: #10b981;

    color: #fff;

    padding: 12px;

}

.story-content table td {

    padding: 12px;

    border: 1px solid #e5e7eb;

}

.story-content img {

    max-width: 100%;

    border-radius: 16px;

    margin: 20px auto;

    display: block;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);

}

/* ===============================
   Certificates
=================================*/

.certificate-section {

    padding: 90px 10%;

    background: #f8fafc;

}

.section-title {

    text-align: center;

    margin-bottom: 50px;

}

.section-title h2 {

    font-size: 2rem;

    color: #111827;

    margin-bottom: 10px;

}

.section-title p {

    color: #6b7280;

}

.certificate-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(220px, 240px));

    justify-content: center;

    gap: 30px;

}

.certificate-card {

    background: #fff;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

    transition: .35s;

    border: 1px solid #eef2f7;

}

.certificate-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 40px rgba(37, 99, 235, .15);

}

.certificate-card img {

    width: 100%;

    aspect-ratio: 4/5;

    object-fit: cover;

    display: block;

    background: #f3f4f6;

}

.certificate-card .certificate-body {

    padding: 16px;

    text-align: center;

}

.certificate-card h3 {

    font-size: 1rem;

    color: #111827;

    margin: 0;

    line-height: 1.8;

    font-weight: 600;

}

/* ===============================
   Responsive
=================================*/

@media(max-width:768px) {

    .story-content {

        font-size: .95rem;

        line-height: 2;

    }

    .story-content h1 {

        font-size: 1.6rem;

    }

    .story-content h2 {

        font-size: 1.4rem;

    }

    .certificate-card img {

        height: 220px;

    }

}