/* FIX VIDEO CARD HEIGHT */

.video-card{
    height:auto !important;
    min-height:unset !important;
    display:flex;
    flex-direction:column;
}

.video-card iframe{
    width:100% !important;
    height:420px !important;
    display:block;
    flex:none;
}

.video-card h4{
    margin:0 !important;
    padding:18px !important;
    background:#fff;
    text-align:center;
}

.video-grid{
    align-items:start !important;
}


.site-content{
    max-width:100% !important;
    width:100% !important;
    padding:0 !important;
}

.content-area{
    width:100% !important;
    max-width:100% !important;
}

.site-main{
    width:100% !important;
    max-width:100% !important;
}
.container{
    width:99% !important;
    max-width:100% !important;
    padding:0 !important;
}




/* =====================================
HERO SECTION
===================================== */

.gallery-hero{
    position:relative;
    min-height:500px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:url('../images5/h2.webp') center center/cover no-repeat;
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.gallery-content{
    position:relative;
    z-index:2;
    color:#fff;
}

.gallery-tag{
    display:inline-block;
    background:#0a4fa3;
    color:#fff;
    padding:10px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.gallery-content h1{
    font-size:60px;
    color:#fff;
    margin-bottom:20px;
}

.gallery-content p{
    max-width:700px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
}

/* =====================================
FILTER BUTTONS
===================================== */

.gallery-filters{
    padding:60px 0;
    background:#fff;
}

.filter-buttons{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.filter-buttons button{
    border:none;
    padding:14px 28px;
    border-radius:40px;
    background:#edf2f7;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.filter-buttons button:hover,
.filter-buttons button.active{
    background:#0a4fa3;
    color:#fff;
}

/* =====================================
PHOTO GALLERY
===================================== */

.gallery-grid-section{
    padding:40px 0 100px;
    background:#f8fafc;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-caption{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    background:linear-gradient(transparent,rgba(0,0,0,.9));
    color:#fff;
    padding:60px 20px 20px;
    font-weight:600;
}

/* =====================================
SECTION HEADER
===================================== */

.section-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.section-header span{
    color:#0a4fa3;
    text-transform:uppercase;
    font-size:14px;
    letter-spacing:2px;
    font-weight:700;
}

.section-header h2{
    font-size:42px;
    margin:15px 0;
    color:#0f172a;
}

.section-header p{
    color:#64748b;
    line-height:1.8;
    font-size:17px;
}

/* =====================================
CERTIFICATES
===================================== */

.certifications-section{
    padding:100px 0;
    background:#fff;
}

.certificate-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.certificate-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.4s;
    text-align:center;
}

.certificate-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.certificate-card::before{
    content:"";
    display:block;
    height:5px;
    background:linear-gradient(
        90deg,
        #0a4fa3,
        #2196f3
    );
}

.certificate-image{
    padding:15px;
}

.certificate-image img{
    width:100%;
    height:220px;
    object-fit:contain;
    border-radius:10px;
    border:1px solid #e5e7eb;
}

.certificate-card h3{
    margin:10px 0 8px;
    font-size:20px;
    color:#0f172a;
}

.certificate-card p{
    color:#64748b;
    padding:0 15px 15px;
    font-size:14px;

}

/* =====================================
STATS SECTION
===================================== */

.gallery-stats{
    background:#0a1830;
    padding:60px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.stat-box{
    text-align:center;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    padding:25px 15px;
    border-radius:15px;
    transition:.3s;
}

.stat-box:hover{
    transform:translateY(-5px);
    border-color:#1d7ef0;
}

.stat-box h2{
    font-size:38px;
    margin-bottom:8px;
    color:#1d7ef0;
    font-weight:700;
}

.stat-box p{
    font-size:14px;
    color:#fff;
    margin:0;
    text-transform:uppercase;
    letter-spacing:1px;
}

@media(max-width:991px){
    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:767px){
    .stats-grid{
        grid-template-columns:1fr;
    }
}
/* =====================================
VIDEO SECTION
===================================== */

.video-gallery{
    padding:100px 0;
    background:#f8fafc;
}

.video-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
   
}

.video-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.video-card iframe{
    width:100%;
    height:200px;
    border:none;
    display:block;
}

.video-card h4{
    margin:0;
    padding:20px;
    text-align:center;
    font-size:20px;
    background:#fff;
}
.video-grid-small{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:40px;
}

.video-small-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.video-small-card iframe{
    width:100%;
    height:180px;
    border:none;
}

.video-small-card h5{
    text-align:center;
    padding:15px;
    margin:0;
    font-size:15px;
    font-weight:600;
}

@media(max-width:991px){
    .video-grid-small{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:767px){
    .video-grid-small{
        grid-template-columns:1fr;
    }
}
/* =====================================
CTA SECTION
===================================== */

.gallery-cta{
    padding:100px 0;
    text-align:center;
    background:
    linear-gradient(
        135deg,
        #0a1830,
        #0a4fa3
    );
}

.gallery-cta h2{
    color:#fff;
    font-size:48px;
    margin-bottom:20px;
}

.gallery-cta p{
    color:#dbeafe;
    font-size:18px;
    margin-bottom:35px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    display:inline-block;
    padding:16px 32px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    background:#fff;
    color:#0a1830;
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
}

.btn-primary:hover,
.btn-secondary:hover{
    transform:translateY(-3px);
}

/* =====================================
RESPONSIVE
===================================== */

@media(max-width:991px){

    .gallery-grid,
    .certificate-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .video-grid{
        grid-template-columns:1fr;
    }

    .gallery-content h1{
        font-size:45px;
    }

}

@media(max-width:767px){

    .gallery-grid,
    .certificate-grid,
    .stats-grid{
        grid-template-columns:1fr;
    }

    .gallery-content h1{
        font-size:34px;
    }

    .section-header h2{
        font-size:30px;
    }

    .gallery-cta h2{
        font-size:32px;
    }

    .certificate-image img{
        height:260px;
    }

}
/* ==========================
   FOOTER
========================== */

.footer{
    background:#000;
    color:#fff;
}

.footer-top{
    max-width:1400px;
    margin:auto;
    padding:100px 8%;
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-box{
    padding-right:30px;
}

.footer-box h3{
    color:#d32f2f;
    font-size:22px;
    margin-bottom:20px;
}

.footer-box h4{
    margin-bottom:15px;
    font-size:18px;
    color:#fff;
}

.footer-box p{
    color:#cfcfcf;
    line-height:1.8;
    margin-bottom:10px;
}

.footer-box ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-box ul li{
    margin-bottom:12px;
}

.footer-box ul li a{
    color:#cfcfcf;
    text-decoration:none;
    transition:0.3s;
}

.footer-box ul li a:hover{
    color:#d32f2f;
    padding-left:5px;
}

.footer-sub-box{
    margin-bottom:35px;
}

.footer-sub-box:last-child{
    margin-bottom:0;
}

/* Social Icons */

.footer-social{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.footer-social a{
    width:42px;
    height:42px;
    border:1px solid rgba(255,255,255,0.2);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.footer-social a:hover{
    background:#d32f2f;
    border-color:#d32f2f;
    transform:translateY(-3px);
}

/* Bottom */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    padding:25px 8%;
    text-align:center;
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    margin-bottom:15px;
}

.footer-links a{
    color:#cfcfcf;
    text-decoration:none;
}

.footer-links a:hover{
    color:#d32f2f;
}

.footer-bottom p{
    color:#999;
    margin:0;
}

/* Mobile */

@media(max-width:991px){

    .footer-top{
        grid-template-columns:1fr;
        gap:40px;
    }

    .footer-box{
        padding-right:0;
    }

}
.floating-social{
    position:fixed;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:10px;
    z-index:9999;
}

.floating-social a{
    width:42px;
    height:42px;
    background:#071b38;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:18px;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
    transition:.3s;
}

.floating-social a:hover{
    background:#d32f2f;
    transform:translateX(-4px);
}

.supplier-logo{
    width:140px;
    height:auto;
    margin-top:10px;
    display:block;
    border-radius:4px;
    background:#fff;
    padding:5px;
}
/* Links */
.contact-link{
    display:flex;
    align-items:center;
    gap:10px;
    color:inherit;
    text-decoration:none;
}
/* WhatsApp Contact Link */

.whatsapp-link{
    display:flex;
    align-items:center;
    gap:10px;
    color:inherit;
    text-decoration:none;
    transition:0.3s ease;
}

.whatsapp-link i{
    font-size:20px;
    color:#25D366;
}

.whatsapp-link:hover{
    color:#25D366;
}

.whatsapp-link:hover i{
    transform:scale(1.1);
}
.website-link{
    color:inherit;
    text-decoration:none;
    transition:0.3s ease;
}

.website-link:hover{
    color:#d32f2f;
}
.footer-address{
    color:inherit;
    text-decoration:none;
    display:inline-block;
    transition:0.3s ease;
}

.footer-address:hover{
    color:#d32f2f;
}
.phone-link{
    display:flex;
    align-items:center;
    gap:10px;
    color:inherit;
    text-decoration:none;
    transition:0.3s ease;
}

.phone-link:hover{
    color:#d32f2f;
}
.phone-link i{
    font-size:20px;
    color:#071b38;
}
.phone-link:hover i{
    transform:scale(1.1);
}