.mb-60 {
    margin-bottom: 0px;
}

.loaction-section .location-cards {
    box-shadow: 0px 0px 0px 6px whitesmoke;
    background: white;
    padding: 21px 12px;
    border-radius: 8px;
    height: 100%;
}

.loaction-section .location-cards h3 {
    font-size: 20px;
}
.production-content{
    text-align:center;
    padding:70px 20px 40px;
    background:#fff;
}

.production-content h5{
    font-size:18px;
    font-weight:600;
    letter-spacing:4px;
    color:#111;
    margin-bottom:18px;
}

.production-content p{
    max-width:1000px;
    margin:auto;

    font-size:24px;
    line-height:1.4;

    color:#111;
}
.youtube-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}
.product-category-section {
    padding: 60px 0;
    background: #f8f9fb;
}

.product-heading {
    text-align: center;
    margin-bottom: 45px;
}

.product-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.product-heading h2::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #932E34;
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    border-radius: 10px;
}

.product-heading p {
    color: #666;
    font-size: 16px;
    margin-top: 20px;
}

.home-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.home-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.1));
    z-index: 1;
}

.home-card:hover img {
    transform: scale(1.08);
}

.home-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.home-card {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}

.home-card a {
    text-decoration: none;
}

.home-card {
    display: flex;
    align-items: end;
    justify-content: center;
    padding-bottom: 30px;
}

.home-card span {
    position: absolute;
    z-index: 2;
    letter-spacing: 1px;
}

.home-card .card-btn {
    position: absolute;
    left: 50%;
    bottom: 20px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 140px;
    text-align: center;

    z-index: 2;

    background: #fff;
    color: #111;

    padding: 10px 24px;
    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;

    opacity: 0;
    transition: all 0.3s ease;
}

.home-card:hover .card-btn {
    opacity: 1;
    bottom: 50%; 
}
/* DESKTOP ULTRA WIDE FIX */

@media(min-aspect-ratio:16/9) {

    .video-wrapper iframe {
        width: 100%;
        height: 56.25vw;
    }

}

@media(max-width:991px) {
    .home-card img {
        height: 260px;
    }

    .product-heading h2 {
        font-size: 34px;
    }
}

/* MOBILE FIX */

@media(max-width:768px) {

.loaction-section.mt-4{
        margin-top:0 !important;
    }
	.product-heading{
        margin-bottom: 20px;

    }
    .youtube-banner {
        height: 42vh;
    }

    .video-wrapper iframe {
        width: 220vw;
        height: 100vh;
    }
     .production-content{
        padding:45px 15px 30px;
    }

    .production-content h5{
        font-size:12px;
        letter-spacing:2px;
    }

    .production-content p{
        font-size:18px;
        line-height:1.5;
    }
    .product-category-section {
        padding: 20px 0;
    }

    .product-heading h2 {
        font-size: 28px;
    }

    .home-card img {
        height: 240px;
    }

    .home-card {
        margin-bottom: 20px;
    }

}