/* =========================================================
   ABOUT PAGE CSS
========================================================= */

.about-section {
    padding: 70px 0;
    background: #f5f8fc;
}

.about-header {
    margin-bottom: 45px;
}

.about-badge {
    display: inline-block;
    padding: 7px 16px;
    background: #4de0dd;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    color: #0e5678;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.about-header h1 {
    font-size: 54px;
    font-weight: 800;
    color: #083b63;
    margin-bottom: 15px;
    line-height: 1.2;
}

.about-subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #577089;
    font-size: 14px;
    flex-wrap: wrap;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: start;
}

.about-sidebar {
    position: sticky;
    top: 100px;
}

.about-sidebar h6 {
    font-size: 11px;
    color: #7a8fa3;
    text-transform: uppercase;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.about-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-sidebar ul li {
    margin-bottom: 12px;
}

.about-sidebar ul li a {
    text-decoration: none;
    color: #355067;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.about-sidebar ul li a:hover {
    color: #0b5d87;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.about-card,
.about-info-block {
    background: #ffffff;
    padding: 32px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.about-card h2 {
    color: #083b63;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.about-card p {
    color: #456176;
    line-height: 1.9;
    margin: 0;
    font-size: 15px;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #dff4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b5d87;
    flex-shrink: 0;
}

.section-heading h2 {
    margin: 0;
    color: #083b63;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.3;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.about-mini-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.about-mini-card h5 {
    color: #083b63;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.3;
}

.about-mini-card p {
    color: #456176;
    line-height: 1.8;
    margin: 0;
    font-size: 15px;
}

/* =========================
   Large Tablet / Small Laptop
========================= */
@media (max-width: 1199px) {
    .about-header h1 {
        font-size: 46px;
    }

    .section-heading h2 {
        font-size: 34px;
    }
}

/* =========================
   Tablet
========================= */
@media (max-width: 991px) {
    .about-section {
        padding: 60px 0;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-sidebar {
        position: static;
        background: #ffffff;
        padding: 24px;
        border-radius: 16px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    }

    .about-sidebar ul {
        display: flex;
        flex-wrap: wrap;
        gap: 12px 18px;
    }

    .about-sidebar ul li {
        margin-bottom: 0;
    }

    .about-header h1 {
        font-size: 40px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .about-card h2 {
        font-size: 26px;
    }
}

/* =========================
   Mobile
========================= */
@media (max-width: 767px) {
    .about-section {
        padding: 45px 0;
    }

    .about-header {
        margin-bottom: 30px;
    }

    .about-header h1 {
        font-size: 30px;
    }

    .about-subtitle {
        font-size: 13px;
    }

    .about-card,
    .about-info-block {
        padding: 22px;
        border-radius: 14px;
    }

    .about-card h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .about-card p {
        font-size: 14px;
        line-height: 1.8;
    }

    .section-heading {
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 18px;
    }

    .section-heading h2 {
        font-size: 24px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .about-mini-card {
        padding: 18px;
        border-radius: 14px;
    }

    .about-mini-card h5 {
        font-size: 16px;
    }

    .about-mini-card p {
        font-size: 14px;
    }

    .about-sidebar {
        padding: 18px;
    }

    .about-sidebar ul {
        display: block;
    }

    .about-sidebar ul li {
        margin-bottom: 10px;
    }

    .about-sidebar ul li:last-child {
        margin-bottom: 0;
    }
}

/* =========================
   Small Mobile
========================= */
@media (max-width: 575px) {
    .about-section {
        padding: 35px 0;
    }

    .about-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .about-header h1 {
        font-size: 26px;
    }

    .about-card,
    .about-info-block,
    .about-sidebar {
        padding: 16px;
    }

    .about-card h2 {
        font-size: 20px;
    }

    .section-heading h2 {
        font-size: 22px;
    }

    .icon-box {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .about-mini-card {
        padding: 16px;
    }
}