
: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;
}
        
        
        /* Hero Section */
        .contact-hero {
            background: var(--primary-color);
           
            background-size: cover;
            background-position: center;
            padding: 100px 20px;
            color: white;
            text-align: center;
        }

         .contact-hero 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;
        }

        .contact-hero p{
            color: var(--text-light);
        }
        .contact-icon {
            
            color: #0d6efd;
            margin-bottom: 15px;
        }


        /* Contact Cards */
        .contact-card {
            background: white;
            border-radius: 18px;
            padding: 30px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
            height: 100%;
        }

        .contact-card h5{
             margin-bottom: 20px;

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

        .contact-card p{
            color: var(--info-color);
            font-weight: 600;
        }
        .contact-icon {
            font-size: 35px;
            font-weight: 600;
            color: #0d6efd;
            margin-bottom: 15px;
        }

        .sendtxt{
            margin-bottom: 20px;

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

        .sendtxtp{
            color: var(--info-color);
            font-weight: 600;
        }

        /* Form */
        .form-control {
            border-radius: 12px;
            padding: 12px;
        }

        .btn-contact {
            border-radius: 30px;
            padding: 12px;
            font-weight: 600;
            background-color: var(--primary-color);
            color: var(--text-light);
        }