.report-sticky-menu {
    position: fixed;
    top: -120px;
    left: 0;
    width: 100%;
    background: #1b2623;
    z-index: 99999 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: top 0.4s ease-in-out;
    padding: 12px 0;
}
.report-sticky-menu.active { top: 0; }
body.sticky-active .site-header { opacity: 0; pointer-events: none; transform: translateY(-100%); transition: 0.3s; }
.sticky-flex { display: flex; justify-content: space-between; align-items: center; }
.sticky-brand { color: #f3a847; font-weight: 800; font-size: 18px; margin-right: 15px; border-right: 2px solid #444; padding-right: 15px; }
.sticky-report-name { color: #fff; font-size: 13px; }
.sticky-buttons { display: flex; gap: 8px; }
.s-btn { padding: 8px 15px; font-size: 11px; font-weight: 700; color: #fff; text-decoration: none; border-radius: 4px; text-transform: uppercase; }
.btn-details { background: #f3a847; }
.btn-analysis { background: #5cb85c; }
.btn-inquiry { background: #5bc0de; }
.btn-sample { background: #d9534f; }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* --- YAHAN SE MOBILE RESPONSIVE CODE SHURU (Ise purane code ke niche dalein) --- */

@media (max-width: 768px) {
    .report-sticky-menu {
        padding: 12px 10px; /* Mobile par side se thodi jagah dene ke liye */
    }
    
    .sticky-flex { 
        flex-direction: column; /* Elements ko ek ke niche ek laane ke liye */
        justify-content: center; 
        align-items: center;
        gap: 10px; 
    }
    
    .sticky-brand { 
        border-right: none; /* Desktop wali sidhi line (|) mobile se hatane ke liye */
        margin-right: 0; 
        padding-right: 0; 
        display: block;
        text-align: center;
        margin-bottom: 2px;
    }
    
    .sticky-report-name { 
        display: block;
        text-align: center;
        line-height: 1.3;
        white-space: normal; /* Agar title bada ho to automatic agli line me aa jaye */
    }
    
    .sticky-buttons { 
        display: grid; 
        grid-template-columns: 1fr 1fr; /* 4 buttons ko 2 rows aur 2 columns me divide karega */
        gap: 8px; 
        width: 100%;
    }
    
    .s-btn { 
        width: 100%; 
        box-sizing: border-box;
        padding: 8px 4px; 
        font-size: 10px; 
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}