/*==============================
      PREMIUM GALLERY
===============================*/
.premium-gallery{
    padding:100px 0;
    background:
        radial-gradient(circle at top right,#242424 0%,#111 40%,#070707 100%);
    position:relative;
    overflow:hidden;
}

.premium-gallery::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:#ff2d2d15;
    filter:blur(120px);
    top:-150px;
    right:-120px;
    border-radius:50%;
}

.premium-gallery::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:#ffffff08;
    bottom:-150px;
    left:-120px;
    filter:blur(120px);
    border-radius:50%;
}


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#f5f5f5;
    font-family:sans-serif;
}

.premium-gallery{
    padding:80px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#111;
}

.section-title p{
    color:#777;
    margin-top:10px;
}

/*========================*/

.gallery{

    column-count:4;

    column-gap:20px;

}

/*========================*/

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:18px;

    margin-bottom:20px;

    break-inside:avoid;

    background:#fff;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

}

.gallery-item img{

    width:100%;

    display:block;

    transition:.5s;

}

/*========================*/

.gallery-item::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
        rgba(0,0,0,.75),
        transparent);

    opacity:0;

    transition:.35s;

}

.gallery-item::after{

    content:"Premium Car Care";

    position:absolute;

    left:20px;

    bottom:20px;

    color:#fff;

    font-weight:600;

    font-size:18px;

    opacity:0;

    transform:translateY(20px);

    transition:.35s;

}

.gallery-item:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 45px rgba(0,0,0,.15);

}

.gallery-item:hover img{

    transform:scale(1.05);

}

.gallery-item:hover::before,

.gallery-item:hover::after{

    opacity:1;

    transform:translateY(0);

}

/*========================*/

@media(max-width:1200px){

.gallery{

column-count:3;

}

}

@media(max-width:992px){

.gallery{

column-count:2;

}

}

@media(max-width:576px){

.gallery{

column-count:1;

}

.section-title h2{

font-size:30px;

}

}

/* video section start here  */


.video-showcase{

    background:#0d0d0d;

    padding:90px 0;

}

.video-showcase .section-title{

    text-align:center;

    margin-bottom:60px;

}

.video-showcase h2{

    color:#fff;

    font-size:42px;

    margin-bottom:15px;

}

.video-showcase p{

    color:#bdbdbd;

    max-width:700px;

    margin:auto;

}

.video-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

}

.video-card{

    background:#171717;

    border-radius:18px;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 15px 40px rgba(0,0,0,.4);

}

.video-card:hover{

    transform:translateY(-8px);

}

.video-card video{

    width:100%;

    display:block;

    aspect-ratio:16/9;

    object-fit:cover;

}

.video-card h4{

    color:#fff;

    padding:18px;

    font-size:20px;

}