  
: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 */
        .leadership-header {
            background: var(--primary-color);
            padding: 100px 20px;
            color: white;
            text-align: center;
        }

        .leadership-header h1 {
            font-weight: 800;
            color: var(--bg-light);
        }

        .leadership-header p{
            color: var(--bg-light);
        }

        /* Glass Card */
        .glass-card {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(14px);
            border-radius: 22px;
            box-shadow: 0 25px 45px rgba(0,0,0,0.15);
            padding: 40px;
            height: 100%;
            transition: transform 0.35s ease, box-shadow 0.35s ease;
        }

        .glass-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 35px 65px rgba(0,0,0,0.25);
        }

        /* Profile Image */
        .leader-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 6px solid white;
            box-shadow: 0 15px 35px rgba(0,0,0,0.25);
            margin-bottom: 20px;
        }

        .leader-name {
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--primary-color);
            font-size: 24px;
        }

        .leader-role {
            color: #0d6efd;
            font-weight: 600;
            margin-bottom: 15px;
        }

        /* Section Title */
        .section-title {
               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;
        }


.Philosophy h3{
    color: var(--primary-color);
     font-family: "Yeseva One", cursive;
     font-size: 33px;
}