/* Main Body Styles (Premium Theme) */
        body {
            background: #f8f9fc;
            font-family: Arial, sans-serif;
            color: #1f2937;
            margin: 0;
            padding: 20px 0;
        }

        /* Container Limit (Thoda bada rakha hai taaki cards acche se aayen) */
        .page-container {
            max-width: 900px; 
            margin: 0 auto;
            padding: 0 15px;
        }

        /* =========================================
           TOP INFO BOARD STYLES
        ========================================= */
        .heading-board {
            background: linear-gradient(135deg, #0ea5e9 0%, #1d4ed8 100%);
            border-radius: 16px;
            padding: 30px 20px;
            box-shadow: 0 10px 30px rgba(29, 78, 216, 0.2);
            text-align: center;
            color: #ffffff;
            margin-bottom: 20px;
        }
        .heading-board h1 {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .heading-board h2 {
            font-size: 15px;
            font-weight: 600;
            color: #e0f2fe;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .text-board {
            background: #ffffff;
            border-radius: 16px;
            padding: 25px 20px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.06);
            border-top: 4px solid #0ea5e9;
            margin-bottom: 24px;
            text-align: center;
        }
        .text-board p {
            font-size: 16px;
            font-weight: 500;
            color: #475569;
            line-height: 1.6;
            margin: 0;
        }

        .image-container {
            text-align: center;
            margin-bottom: 40px; /* Niche wale section se gap */
        }
        .custom-img {
            width: 100%;
            max-width: 100%;
            border-radius: 16px; 
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
            border: 3px solid #ffffff; 
        }


        /* =========================================
           TEST RESULT SECTION STYLES
        ========================================= */
        .section-title {
            text-align: center;
            font-size: 24px;
            font-weight: 800;
            color: #0f172a;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 24px;
            padding-bottom: 12px;
            border-bottom: 2px dashed #cbd5e1; 
        }

        .result-card {
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.06);
            border-top: 4px solid #0ea5e9; 
            padding: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            text-align: center;
        }
        .result-card:hover {
            transform: translateY(-5px); 
            box-shadow: 0 10px 24px rgba(14, 165, 233, 0.15);
        }

        .rc-name {
            display: inline-block;
            font-size: 18px;
            font-weight: 800;
            color: #0369a1;
            background: linear-gradient(135deg, #e0f2fe, #bae6fd);
            padding: 6px 16px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .rc-time {
            display: block;
            font-size: 15px;
            font-weight: 700;
            color: #64748b;
            margin-bottom: 16px;
        }

        .rc-scores {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 15px 10px;
        }

        .score-box {
            font-size: 22px;
            font-weight: 800;
            color: #0f172a;
            background: #ffffff;
            border: 2px solid #cbd5e1;
            border-radius: 10px;
            min-width: 60px;
            padding: 5px 10px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.02);
        }
        
        .score-box.new-score {
            border-color: #3b82f6;
            color: #1d4ed8;
            background: #eff6ff;
        }

        .score-icon {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .score-icon img {
            border-radius: 4px;
        }

        /* Mobile Screen Adjustments */
        @media (max-width: 767px) {
            body { padding: 15px 0; }
            .heading-board h1 { font-size: 24px; }
            .heading-board h2 { font-size: 13px; }
            .text-board p { font-size: 15px; }
            .score-box { font-size: 18px; min-width: 50px; }
            .section-title { font-size: 20px; }
        }
        /* =========================================
   Admin Help & Support Board
========================================= */

.support-board {
    /* Premium Glassy Background */
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,250,252,0.9));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    padding: 34px 30px;
    text-align: center;
    
    /* LEFT & RIGHT SIDE GAP (Aapki request ke hisaab se) */
    margin: 30px 15px 40px 15px; 
}

.support-board h2 {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin: 12px 0 8px;
}

.support-board p {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 26px;
    font-weight: 500;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons Container */
.contact-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap; /* Taki choti screen par button niche aa jayein */
}

/* -----------------------------------------
   WhatsApp Button (Official Green Theme)
----------------------------------------- */
.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
    flex: 1;
    min-width: 220px;
    max-width: 260px;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.35);
}

/* -----------------------------------------
   Call Button (Premium Blue Theme)
----------------------------------------- */
.btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
    flex: 1;
    min-width: 220px;
    max-width: 260px;
}

.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.35);
}

/* Mobile Screen Par Adjustments (Ek Line Me Buttons) */
@media (max-width: 576px) {
    .support-board {
        padding: 24px 15px;
        margin: 25px 10px; 
    }
    
    .contact-actions {
        /* Ise row karne se dono buttons ek line me aa jayenge */
        flex-direction: row; 
        flex-wrap: nowrap; /* Ek dusre ke niche girne se rokega */
        gap: 10px; /* Buttons ke beech ka thoda gap kam kiya */
    }
    
    .btn-whatsapp, .btn-call {
        flex: 1; /* Dono buttons ko 50-50 space dega */
        min-width: unset; /* Pehli wali badi width hata di */
        max-width: 50%;
        padding: 12px 5px; /* Padding thodi kam ki hai */
        font-size: 12px; /* Text chota kiya hai taaki mobile me na kate */
        gap: 5px; /* Icon aur text ke beech ka gap kam kiya */
    }
}
/* Poore Page ka Layout */
    .feed-container {
        display: flex;
        flex-direction: column;
        align-items: center; /* Sab kuch center mein lane ke liye */
        padding: 20px 15px;
        background: #f8f9fc;
    }

    /* Modern Post Card */
    .post-card {
        background: #ffffff;
        width: 100%;
        max-width: 650px; /* Center mein box ki fixed chaudai */
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        margin-bottom: 30px; /* Do posts ke beech ka gap */
        overflow: hidden;
        border: 1px solid #eef2f6;
    }

    /* User Header */
    .post-header {
        display: flex;
        align-items: center;
        padding: 15px 20px;
        background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%);
        border-bottom: 1px solid #f1f5f9;
    }

    .post-avatar {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        object-fit: cover;
        margin-right: 15px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .user-meta {
        flex-grow: 1;
    }

    .username {
        font-size: 22px;
        font-weight: 800;
        color: #1e293b;
        text-transform: uppercase;
        margin: 0;
        text-align:center;
        color:#ffffff;
    }

    .post-date {
        font-size: 15px;
        color: lime;
        font-weight: 600;
    }

    .online-badge {
        font-size: 10px;
        font-weight: 800;
        color: #10b981;
        background: #d1fae5;
        padding: 4px 10px;
        border-radius: 50px;
    }

    /* Message Styling */
    .post-body {
        padding: 25px 20px;
        font-size: 20px;
        color: #334155;
        line-height: 1.6;
        text-align: center; /* Text left rahega par box center mein */
    }

    .quote-section {
        background: #fff1f2; /* Pinkish background for quote */
        border-left: 5px solid #fb7185;
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 15px;
        font-style: italic;
        color: #be123c;
    }

    .reply-section {
        color: #dc2626; /* User ka naya message red mein */
        font-weight: 600;
    }

    /* Action Footer (Icons & Reply) */
    .post-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 20px;
        background: #f8fafc;
        border-top: 1px solid #f1f5f9;
    }

    .social-btns {
        display: flex;
        gap: 15px;
    }

    .social-btns img {
        width: 30px;
        height: 30px;
        transition: 0.3s;
    }

    .social-btns a:hover img {
        transform: scale(1.1);
    }

    .modern-reply-btn {
        background: linear-gradient(135deg, #3b82f6, #2563eb);
        color: white;
        text-decoration: none;
        padding: 8px 22px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 700;
        box-shadow: 0 4px 12px rgba(37,99,235,0.2);
    }

    /* Mobile Compatibility */
    @media (max-width: 768px) {
        .post-card {
            max-width: 95%;
        }
        .post-body { font-size: 22px; }
    }