@media (min-width: 993px) {
    .shop-layout {
        display: grid;
        grid-template-columns: 220px 1fr 220px;
        gap: 20px;
        max-width: 1600px;
        margin: 0px auto;
        padding: 0 0px;
        align-items: start;
        position: relative;
    }
}

/* ==========================================================================
   2. MOBILE LAYOUT - Hide entire section on 992px and below
   ========================================================================== */
@media (max-width: 992px) {
    .shop-layout {
        display: none !important; 
    }
}

/* ==========================================================================
   3. SIDEBARS & BANNERS (Restored your exact strict widths)
   ========================================================================== */
.left-sidebar,
.right-sidebar {
    width: 220px !important;
}

.side-banner img {
    width: 100% !important;
    height: auto !important;
    display: block;
    border-radius: 8px;
}

/* ==========================================================================
   4. STICKY SIDEBAR CLASSES (Your exact original selectors)
   ========================================================================== */
.sidebar-fixed {
    position: fixed !important;
    top: 180px !important; 
    z-index: 999;
}

.sidebar-placeholder {
    visibility: hidden;
}

/* ==========================================================================
   5. MOBILE BADGE (From your previous code)
   ========================================================================== */
@media (min-width: 1025px) {
    #mobile-image-badge {
        display: none !important;
    }
}

/* Ensure it is displayed and styled perfectly on Tablets & Mobile */
@media (max-width: 1024px) {
    #mobile-image-badge {
        display: block !important;
    }
}

.image-badge-container {
    position: fixed;
    bottom: 90px; /* Keeps it safely above your sticky bottom navigation bar */
    right: 15px;
    width: 110px; /* Perfect size for both mobile and tablet screens */
    height: auto;
    z-index: 99999;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.badge-img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5); 
    display: block;
}
@media (min-width: 993px) {
    .show-on-mobile {
        display: none !important;
    }
}

/* --- Ensure it is visible on Mobile (992px and below) --- */
@media (max-width: 992px) {
    .show-on-mobile {
        display: block !important; 
    }
}
.sp-section {
        
        gap: 20px;
        max-width: 1100px;
        margin: 0px auto;
        padding: 0 0px;
        align-items: start;
        position: relative;
  
}
@media (max-width: 992px) {
    .sp-section {
        display: none !important; 
    }
}
    
    /* Added to center the section horizontally */
    margin: 0 auto; 
}
.why-us-section {
    background: linear-gradient(145deg, #0f172a, #1e293b);
    border-radius: 24px;
    padding: 20px 10px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    
    /* Added to center the section horizontally */
    margin: 0 auto; 
}

        /* Header Styling */
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: 1px;
            color: #f8fafc;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #94a3b8;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Stats Grid Layout */
      .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

        /* Individual Stat Cards */
        .stat-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 40px 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(56, 189, 248, 0.3); /* Subtle blue glow on hover */
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* Typography for Numbers and Labels */
        .stat-number {
            display: block;
            font-size: 3.5rem;
            font-weight: 800;
            color: #38bdf8; /* Frosty/Refrigeration blue accent */
            margin-bottom: 10px;
            line-height: 1;
            text-shadow: 0 4px 10px rgba(56, 189, 248, 0.2);
        }

        .stat-label {
            display: block;
            font-size: 0.95rem;
            font-weight: 500;
            color: #cbd5e1;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        /* Responsive Design for smaller screens */
        @media (max-width: 600px) {
            .why-us-section {
                padding: 40px 20px;
            }
            
            .stat-number {
                font-size: 2.8rem;
            }
        }
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
.directors-section{
    padding:100px 0;
    background:#f8fafc;
    overflow:hidden;
}

.directors-section .container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

.section-heading{
    text-align:center;
    margin-bottom:70px;
}

.section-heading span{
    color:#0d47a1;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    display:block;
    margin-bottom:10px;
}

.section-heading h2{
    font-size:48px;
    font-weight:700;
    color:#111;
    margin-bottom:15px;
}

.section-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:1.8;
}

.directors-wrapper{
    display:flex;
    flex-direction:column;
    gap:80px;
}

.director-card{
    display:flex;
    align-items:center;
    gap:60px;
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
}

.director-card:hover{
    transform:translateY(-8px);
}

.director-card.reverse{
    flex-direction:row-reverse;
}

.director-image{
    flex:0 0 350px;
}

.director-image img{
    width:100%;
    height:450px;
    object-fit:cover;
    border-radius:20px;
}

.director-content{
    flex:1;
}

.director-content h3{
    font-size:38px;
    color:#111;
    margin-bottom:8px;
}

.director-content span{
    display:inline-block;
    color:#0d47a1;
    font-weight:600;
    font-size:18px;
    margin-bottom:25px;
    position:relative;
}

.director-content span::after{
    content:'';
    width:60px;
    height:2px;
    background:#0d47a1;
    display:block;
    margin-top:8px;
}

.director-content p{
    color:#555;
    font-size:17px;
    line-height:1.9;
    margin-bottom:18px;
}

@media(max-width:991px){

    .director-card,
    .director-card.reverse{
        flex-direction:column;
    }

    .director-image{
        flex:unset;
        width:100%;
    }

    .director-image img{
        height:400px;
    }

    .section-heading h2{
        font-size:36px;
    }
}

@media(max-width:576px){

    .directors-section{
        padding:70px 0;
    }

    .director-card{
        padding:25px;
    }

    .director-content h3{
        font-size:28px;
    }

    .director-content p{
        font-size:15px;
    }

    .director-image img{
        height:320px;
    }
}

.brand-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
}

.brand-card{
    display:flex;
    background:#fff;
    border:1px solid #d9d9d9;
    box-shadow:0 2px 8px rgba(0,0,0,.12);
    overflow:hidden;
    transition:.3s;
    height:120px;
}

.brand-card:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 20px rgba(0,0,0,.18);
}

.brand-logo{
    width:100%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:15px;
}

.brand-logo img{
    max-width:100%;
    object-fit:contain;
}



/* Tablet */

@media(max-width:991px){

.brand-grid{
    grid-template-columns:repeat(2,1fr);
}

}

/* Mobile */

@media(max-width:576px){

.brand-grid{
    grid-template-columns:1fr;
}

.brand-card{
    height:90px;
}


}