/* --- नया ब्लॉग हीरो सेक्शन स्टाइल --- */
.blog-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent; /* डार्क नाइट बैकग्राउंड */
    color: #ffffff;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
   
    top: 110px;
    text-align: center;

    width: 95%;
    margin: 0 auto;

    
}


.bh-container {
    position: relative;
    z-index: 2;
    max-width: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;

}

/* कोडिंग गाइड बैज स्टाइल */
.bh-badge-wrapper {
    margin-bottom: 8px;
}
.bh-badge {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 3px 3px #ffffffc2;
    padding: 8px 16px;
    font-size: 13px;
    color: #ffae00;
   
    letter-spacing: 0.5px;
}

/* मुख्य हेडिंग्स */
.bh-title {
    font-size: 5.9rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin: 0;
    line-height: 1.1;
    
}
.bh-subtitle {
    font-size: 30px;
    font-weight: 600;
    color: #e5e7eb;
    margin: 0;
    letter-spacing: -0.5px;
    margin-bottom: 30px;
}
.bh-highlight {
    color: #3b82f6; /* इमेज जैसा रॉयल ब्लू शेड */
}

/* डिस्क्रिप्शन पैराग्राफ */
.bh-description {
    font-size: 19px;
    color: #cfcfcf;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 0 12px 0;
    margin-bottom: 20px;
}
.bh-description strong {
    color: #ffffff;
}

/* बटन कंटेनर और बटन्स */
.bh-actions {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}
.bh-btn {
    text-decoration: none;
    padding: 12px 24px;
    font-size: 20px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid transparent;

    transition: all 0.2s ease; /* यह होवर को स्मूथ बनाएगा */
}
.bh-btn-primary {
    border: 1px solid #ffae00;
    background-color: #ffae00;
    color: #030712;
    
}
.bh-btn-primary:hover {
    background-color: white;
    box-shadow: 5px 5px #ffae00;
    transform: translate(-3px, -3px);
}
.bh-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #374151;
}
.bh-btn-secondary:hover {
    background-color: white;
    color: #030712;
    border: 1px solid #ffae00;
    /* आपकी पसंद की सॉलिड शैडो */
    box-shadow: 5px 5px  #ffae00; 
    /* बटन को थोड़ा ऊपर और बाईं तरफ उठाने के लिए (3D लुक) */
    transform: translate(-3px, -3px); 
}
.bh-btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #374151;
}
.bh-btn-outline:hover {
   background-color: white;
    color: #030712;
    border: 1px solid #ffae00;
    box-shadow: 5px 5px  #ffae00; 
    transform: translate(-3px, -3px); 
}

/* --- गतिशील टाइपिंग टेक्स्ट स्टाइल --- */
#typing-text {
    color: #ffae00; /* इमेज जैसा रॉयल ब्लू रंग */
    font-weight: 700;
    position: relative;
    padding-right: 4px;
}

/* टाइपिंग कर्सर इफेक्ट (ब्लिंकिंग लाइन) */
#typing-text::after {
    position: absolute;
    right: -4px;
    color: #ffae00;
    animation: bh-blink-cursor 0.7s infinite;
}

@keyframes bh-blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}


/* नीचे का स्टैट्स ग्रिड */
.bh-stats {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 32px;
    width: 100%;
}
.bh-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 15px;

    border: 1px solid #374151;
    background: transparent;

    width: 180px;
    height: 110px;
    box-shadow: 4px 4px  #ffae00;
}
.bh-stat-num {
    font-size: 35px;
    font-weight: 700;
    color: #ffffff;
}
.bh-stat-label {
    font-size: 12px;
    color: #afb1b5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



/* ==========================================================================
   📱 मोबाइल और टैबलेट रिस्पॉन्सिव व्यू (Responsive Media Query)
   ========================================================================== */
@media (max-width: 768px) {
    /* पूरे सेक्शन की पैडिंग एडजस्ट की ताकि कंटेंट स्क्रीन से न चिपके */

/* --- नया ब्लॉग हीरो सेक्शन स्टाइल --- */
.blog-hero {
    top: 170px;
    
}




.bh-container{
    top: -50px;
    width: 100% !important;
    
}




    /* बैज (Badge) का बॉक्स शैडो छोटा किया */
    .bh-badge {
        font-size: 11px;
    }

    /* 5.9rem बहुत बड़ा था, इसे मोबाइल के लिए छोटा और परफेक्ट किया */
    .bh-title {
        font-size: 2.5rem;
        letter-spacing: -0.8px;
        line-height: 1.2;
    }

    /* सबटाइटल और टाइपिंग टेक्स्ट */
    .bh-subtitle {
        font-size: 1.6rem !important;
        margin-bottom: 15px;
        width: 99%;
    }

    /* पैराग्राफ फॉन्ट साइज */
    .bh-description {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    /* बटन्स को मोबाइल पर एक के नीचे एक (Vertical Stack) करने के लिए */
    .bh-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        padding: 0 10px;
    }

    /* मोबाइल पर बटन्स को फुल विड्थ और सेंटर अलाइन किया */
    .bh-btn {
        width: 100%;
        justify-content: center;
        font-size: 16px; /* मोबाइल के लिए कंफर्टेबल फॉन्ट साइज */
        padding: 14px 20px;
    }

    /* स्टैट्स ग्रिड को मोबाइल पर कॉलम में बदला */
    .bh-stats {
        display: grid !important; /* फ्लेक्स हटाकर ग्रिड लागू किया */
        grid-template-columns: repeat(2, 1fr); /* मोबाइल पर 1 लाइन में 2 कॉलम बनेंगे */
        gap: 16px; /* कार्ड्स के बीच की दूरी */
        margin-top: 25px;
        padding-top: 25px;
        width: 95%;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* स्टेट्स कार्ड्स की चौड़ाई मोबाइल स्क्रीन के हिसाब से ऑटो की */
    .bh-stat-card {
        width: 100%;
        max-width: 260px; /* मोबाइल पर कार्ड्स को बहुत चौड़ा होने से रोकेगा */
        height: auto;
        padding: 12px;
        box-shadow: 3px 3px #ffae00; /* शैडो को थोड़ा कम किया */
    }

    .bh-stat-num {
        font-size: 28px;
    }

    .bh-stat-label {
        font-size: 11px;
    }
}

/* 📱 बहुत छोटी मोबाइल स्क्रीन के लिए (Extra Small Devices) */
@media (max-width: 400px) {
    .bh-title {
        font-size: 2.2rem;
    }
    .bh-subtitle {
        font-size: 17px;
    }
}


