    
: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 */
        .conference-hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
            url("https://images.unsplash.com/photo-1551836022-d5d88e9218df");
            background-size: cover;
            background-position: center;
            padding: 120px 20px;
            color: white;
            text-align: center;
        }

        .conference-hero h1 {
            font-weight: 800;
            color: var(--bg-light);
             margin-bottom: 20px;

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

        /* Info Cards */
        .info-card {
            background: var(--primary-color);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
            height: 100%;
            transition: transform 0.3s ease;
        }

        .info-card h5{
       font-size: 30px;
  
    color: var(--bg-light);
   
    font-family: "Yeseva One", cursive;
    line-height: 1.3;
        }

        .infop{
  font-size: 14px;
  
    color: var(--bg-light);
   
    font-family: "Yeseva One", cursive;
    line-height: 1.3;
        }

        .info-card:hover {
            transform: translateY(-10px);
        }

        .info-icon {
            font-size: 40px;
            color: #0d6efd;
            margin-bottom: 15px;
        }


        .abt{
               font-size: 30px;
  
    color: var(--primary-color);
   
    font-family: "Yeseva One", cursive;
    line-height: 1.3;
        }
        .tex{
            color: var(--primary-color);
             font-size: 15px
        }
        /* Speaker Card */
        .speaker-card {
            background: white;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
            height: 100%;
        }

        .speaker-card:hover {
            transform: translateY(-10px);
        }

        .speaker-card img {
            width: 100%;
            height: 260px;
            object-fit: cover;
        }

        .speaker-content {
            padding: 20px;
            text-align: center;
        }

        .speaker-content h6 {
            font-weight: 700;
            margin-bottom: 5px;
        }


