
:root {

    /* ===== PRIMARY BRAND COLORS ===== */
    --primary-color: #861439;        /* Trust Blue (Bootstrap Primary) */
    --secondary-color: #6610f2;      /* Royal Purple Accent */

    /* ===== MEDICAL / NGO SUPPORT COLORS ===== */
    --success-color: #198754;        /* Health / Success Green */
    --warning-color: #ffc107;        /* Awareness / Alert */
    --danger-color: #dc3545;         /* Emergency / Blood Camp */
    --info-color: #1fa5c0;           /* Information */

    /* ===== BACKGROUND COLORS ===== */
    --bg-light: #f8f9fa;              /* Light background */
    --bg-soft: #f4f7fb;               /* Soft section background */
    --bg-dark: #212529;               /* Dark footer/header */

    /* ===== TEXT COLORS ===== */
    --text-dark: #212529;             /* Primary text */
    --text-muted: #6c757d;            /* Secondary text */
    --text-light: #ffffff;            /* White text */

    /* ===== BORDER & SHADOW ===== */
    --border-color: #dee2e6;
    --shadow-sm: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 45px rgba(0,0,0,0.18);

    /* ===== UI SETTINGS ===== */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;

    --transition: all 0.3s ease-in-out;
}

 /* Header */
        .page-header {
            background: var(--primary-color);
            color: #fff;
            padding: 80px 20px;
            text-align: center;
        }

        .page-header h1 {
               margin-bottom: 20px;

            font-size: 40px;
    font-weight: 400;
    color: var(--bg-light);
    z-index: 1;
    font-family: "Yeseva One", cursive;
    line-height: 1.3;
        }

        /* Mission Vision Cards */
        .mv-card {
            background: #fff;
            border-radius: 16px;
            padding: 40px 30px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            height: 100%;
            margin: 12px;
        }

        .mv-card:hover {
            transform: translateY(-8px);
        }

        .mv-icon {
            font-size: 50px;
            color: #0d6efd;
            margin-bottom: 20px;
        }

        .mv-card h3 {
             margin-bottom: 20px;

            font-size: 40px;
    font-weight: 400;
    color: var(--primary-color);
    z-index: 1;
    font-family: "Yeseva One", cursive;
    line-height: 1.3;
        }

        /* Image Section */
        .mv-image {
            border-radius: 18px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

     