/* =========================
   ABOUT HERO SECTION
========================= */

.about-hero {
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.about-overlay {
    background: rgba(49, 18, 92, 0.65);
    min-height: 600px;

    display: flex;
    align-items: center;
}

.hero-container {
    width: 90%;
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 50px;
}

.hero-left {
    width: 50%;
    color: white;
}

.hero-left h1 {
    font-size: 45px;
    color: white;
}

.hero-left p {
    font-size: 18px;
    line-height: 1.7;
}


/* =========================
   SYSTEM FEATURES
========================= */

.feature-card {
    width: 40%;

    background: rgba(255, 255, 255, 0.75);

    padding: 35px;
    border-radius: 30px;

    box-sizing: border-box;
}

.feature-card h2 {
    text-align: center;
    color: #7b3fd3;

    margin-top: 0;
    margin-bottom: 25px;
}


/* =========================
   FEATURE ITEM
========================= */

.feature-item {
    display: flex;

    gap: 15px;

    margin-bottom: 20px;

    align-items: center;

    width: 100%;
}


/* =========================
   FEATURE ICON
========================= */

.feature-item > img {
    width: 45px !important;
    height: 45px !important;

    min-width: 45px !important;
    max-width: 45px !important;

    min-height: 45px !important;
    max-height: 45px !important;

    object-fit: contain;

    flex-shrink: 0;

    display: block;
}


/* =========================
   FEATURE TEXT
========================= */

.feature-item > div {
    flex: 1;
    min-width: 0;
}

.feature-item h3 {
    margin: 0 0 5px;

    color: #7b3fd3;

    font-size: 20px;
}

.feature-item p {
    margin: 0;

    color: #555;

    font-size: 15px;
    line-height: 1.5;
}


/* =========================
   HERO LINKS
========================= */

.hero-links {
    margin-top: 20px;

    text-align: right;
}


/* =========================
   HOW IT WORKS
========================= */

.how-it-works {
    max-width: 1400px;

    margin: 60px auto;

    padding: 45px 45px 50px;

    background: #ffffff;

    border-radius: 30px;

    box-shadow:
        0 10px 30px rgba(75, 34, 144, 0.08);

    text-align: center;

    box-sizing: border-box;
}

.how-it-works h2 {
    color: #4b2290;

    font-size: 48px;

    margin: 0 0 40px;
}


/* =========================
   PROCESS CONTAINER
========================= */

.process-container {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;

    width: 100%;

    align-items: start;
}


/* =========================
   PROCESS CARD
========================= */

.process-card {
    background: #faf7ff;

    border: 1px solid #e6d9fa;

    border-radius: 22px;

    padding: 25px 18px;

    box-sizing: border-box;

    box-shadow: none;
}

.process-card h3 {
    color: #4b2290;

    font-size: 25px;

    margin-bottom: 25px;
}


/* =========================
   FLOW INSIDE CARD
========================= */

.mini-flow {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;
}


/* =========================
   FLOW BOX
========================= */

.flow-box {
    width: 100%;

    background: #f4edff;

    border-radius: 15px;

    padding: 14px 12px;

    box-sizing: border-box;
}

.flow-box span {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    margin-bottom: 6px;

    background: #7040c4;

    color: white;

    border-radius: 50%;

    font-size: 14px;
    font-weight: bold;
}

.flow-box strong {
    display: block;

    color: #4b2290;

    font-size: 17px;
}

.flow-box small {
    display: block;

    margin-top: 4px;

    color: #666;

    font-size: 13px;
}


/* =========================
   FLOW ARROW
========================= */

.mini-arrow {
    color: #7040c4;

    font-size: 22px;

    font-weight: bold;

    line-height: 1;
}


/* =========================
   DECISION ROW
========================= */

.decision-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    width: 100%;
}

.decision-box {
    border-radius: 14px;

    padding: 15px 8px;

    box-sizing: border-box;
}

.decision-box strong {
    display: block;

    font-size: 16px;
}

.decision-box small {
    display: block;

    margin-top: 5px;

    font-size: 12px;
}


/* =========================
   ACCEPT
========================= */

.decision-box.accept {
    background: #e9f8ef;

    color: #21844a;
}


/* =========================
   REJECT
========================= */

.decision-box.reject {
    background: #fff0f0;

    color: #c0392b;
}


/* =========================
   PROCESS ICON
========================= */

.process-card img {
    width: 90px;
    height: 90px;

    object-fit: contain;

    display: block;

    margin: 0 auto 10px;
}


/* =========================
   ADMIN ABOUT PAGE
========================= */

.admin-content .about-hero {
    width: 100%;
}