/* ============================================
   HOME PAGE SPECIFIC - home.css
============================================ */

/* Hero Slider */
/*.hero-slider {*/
/*    position: relative;*/
/*    width: 100%;*/
/*    overflow: hidden;*/
/*    background: var(--white);*/
/*}*/

/*.hero-slider .carousel,*/
/*.hero-slider .carousel-inner,*/
/*.hero-slider .carousel-item {*/
/*    width: 100%;*/
/*    height: 700px;*/
/*}*/

/*.hero-slider .carousel-item img {*/
/*    width: 100%;*/
/*    height: 700px;*/
/*    object-fit: cover;*/
/*    display: block;*/
/*}*/

/* Why Choose Us */
.why-choose-us {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '✦';
    position: absolute;
    top: 50px;
    left: 50px;
    font-size: 100px;
    color: var(--gold);
    opacity: 0.08;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--white);
    padding: 40px 25px;
    text-align: center;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-blue);
    transition: var(--transition);
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-light), var(--white));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid var(--border-gold);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-gold);
}

.feature-icon i {
    font-size: 40px;
    color: var(--gold);
    transition: var(--transition);
}

.feature-card:hover .feature-icon i {
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    transition: var(--transition);
}

.feature-card:hover h3 {
    color: var(--gold);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Category Cards */
.home-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.home-category-card {
    display: block;
    text-decoration: none;
}

.home-category-image-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.home-category-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.home-category-card:hover .home-category-image {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
    .home-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .home-category-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   BELMONT HOME SLIDER - BOOTSTRAP 5 RESPONSIVE
============================================ */

.bdz-home-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #650810;
    margin: 0;
    padding: 0;
}

.bdz-home-slider-section .bdz-home-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.bdz-home-slider-section .bdz-home-slider-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #650810;
}

.bdz-home-slider-section .bdz-home-slider-item {
    position: relative;
    height: clamp(420px, 72vh, 760px);
    overflow: hidden;
    background: #650810;
}

.bdz-home-slider-section .bdz-home-slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform: none !important;
    animation: none !important;
}

/* Overlay */
.bdz-home-slider-section .bdz-home-slider-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(101, 8, 16, 0.22),
        rgba(101, 8, 16, 0.03),
        rgba(101, 8, 16, 0.16)
    );
    pointer-events: none;
    z-index: 1;
}

/* Right-to-left paper shredder transition (no horizontal sliding) */
.bdz-home-slider-section .bdz-home-slider-inner {
    isolation: isolate;
}

.bdz-home-slider-section .bdz-home-slider-item {
    display: block !important;
    position: absolute;
    inset: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    transform: none !important;
    transition: none !important;
}

.bdz-home-slider-section .bdz-home-slider-item.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.bdz-home-slider-section .bdz-home-slider-item.bl-shredder-leave {
    position: absolute;
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.bdz-home-slider-section .bdz-home-slider-item.bl-shredder-enter {
    position: relative;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
}

.bdz-home-slider-section .carousel-item-next,
.bdz-home-slider-section .carousel-item-prev,
.bdz-home-slider-section .carousel-item-start,
.bdz-home-slider-section .carousel-item-end {
    transform: none !important;
}

.bdz-home-slider-shredder {
    position: absolute;
    inset: 0;
    z-index: 3;
    overflow: hidden;
    pointer-events: none;
    background: transparent;
}

.bdz-home-slider-shred-strip {
    position: absolute;
    top: 0;
    bottom: 0;
    overflow: hidden;
    background: #650810;
    transform: translate3d(0, -115%, 0) rotate(var(--shred-angle, 0deg));
    transform-origin: top center;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 79%,
        76% 91%,
        51% 77%,
        25% 94%,
        0 81%
    );
    box-shadow: inset -1px 0 rgba(255, 255, 255, 0.08);
    will-change: transform, clip-path;
}

.bdz-home-slider-shredder.is-running .bdz-home-slider-shred-strip {
    animation: bdzPaperShredderFall var(--shred-duration, 820ms)
        cubic-bezier(0.22, 0.72, 0.18, 1)
        var(--shred-delay, 0ms) forwards;
}

.bdz-home-slider-shred-image {
    position: absolute;
    top: 0;
    max-width: none;
    display: block;
    pointer-events: none;
}

@keyframes bdzPaperShredderFall {
    0% {
        transform: translate3d(0, -115%, 0) rotate(var(--shred-angle, 0deg));
        clip-path: polygon(
            0 0,
            100% 0,
            100% 73%,
            78% 89%,
            52% 75%,
            25% 93%,
            0 78%
        );
    }
    72% {
        transform: translate3d(0, 2.5%, 0) rotate(0deg);
        clip-path: polygon(
            0 0,
            100% 0,
            100% 90%,
            75% 98%,
            50% 91%,
            25% 99%,
            0 92%
        );
    }
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
        clip-path: inset(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .bdz-home-slider-shredder {
        display: none;
    }
}

/* Controls */
.bdz-home-slider-section .bdz-home-slider-prev,
.bdz-home-slider-section .bdz-home-slider-next {
    width: 56px;
    height: 56px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    z-index: 5;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    border: 0;
    transition: all 0.25s ease;
}

.bdz-home-slider-section .bdz-home-slider-prev {
    left: 28px;
}

.bdz-home-slider-section .bdz-home-slider-next {
    right: 28px;
}

.bdz-home-slider-section .bdz-home-slider-prev:hover,
.bdz-home-slider-section .bdz-home-slider-next:hover {
    background: rgba(201, 154, 46, 0.92);
    transform: translateY(-50%) scale(1.06);
}

.bdz-home-slider-section .carousel-control-prev-icon,
.bdz-home-slider-section .carousel-control-next-icon {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

/* Tablet */
@media (max-width: 991px) {
    .bdz-home-slider-section .bdz-home-slider-item {
        height: 430px;
    }

    .bdz-home-slider-section .bdz-home-slider-prev,
    .bdz-home-slider-section .bdz-home-slider-next {
        width: 46px;
        height: 46px;
    }

    .bdz-home-slider-section .bdz-home-slider-prev {
        left: 16px;
    }

    .bdz-home-slider-section .bdz-home-slider-next {
        right: 16px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .bdz-home-slider-section .bdz-home-slider-item {
        height: auto;
        min-height: unset;
        aspect-ratio: 16 / 9;
    }

    .bdz-home-slider-section .bdz-home-slider-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
        background: #650810;
    }

    .bdz-home-slider-section .bdz-home-slider-item::after {
        display: none;
    }

    .bdz-home-slider-section .bdz-home-slider-prev,
    .bdz-home-slider-section .bdz-home-slider-next {
        width: 34px;
        height: 34px;
        background: rgba(0, 0, 0, 0.25);
    }

    .bdz-home-slider-section .bdz-home-slider-prev {
        left: 8px;
    }

    .bdz-home-slider-section .bdz-home-slider-next {
        right: 8px;
    }

    .bdz-home-slider-section .carousel-control-prev-icon,
    .bdz-home-slider-section .carousel-control-next-icon {
        width: 15px;
        height: 15px;
    }
}

/* Small mobile */
@media (max-width: 420px) {
    .bdz-home-slider-section .bdz-home-slider-item {
        aspect-ratio: 16 / 9;
    }
}
/* ============================================
   HOME APPLICATION USAGE SECTION
   Unique Prefix: bdz-usage-
============================================ */

.bdz-usage-showcase-section {
    position: relative;
    padding: clamp(60px, 7vw, 95px) 0;
    background:
        radial-gradient(circle at top left, rgba(255, 221, 0, 0.16), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    overflow: hidden;
}

.bdz-usage-showcase-section::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -120px;
    top: -100px;
    border-radius: 50%;
    background: rgba(179, 20, 30, 0.08);
    pointer-events: none;
}

.bdz-usage-showcase-section::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    left: -90px;
    bottom: -90px;
    border-radius: 50%;
    background: rgba(255, 221, 0, 0.14);
    pointer-events: none;
}

.bdz-usage-container {
    position: relative;
    z-index: 2;
    width: min(100% - 44px, 1200px);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.bdz-usage-heading {
    max-width: 780px;
    margin: 0 auto 42px;
    text-align: center;
}

.bdz-usage-heading span {
    display: inline-flex;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 221, 0, 0.18);
    color: #b3141e;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.bdz-usage-heading h2 {
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.12;
    font-weight: 950;
    color: #750912;
    margin: 0 0 14px;
}

.bdz-usage-heading p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #6b7280;
    margin: 0 auto;
}

.bdz-usage-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.bdz-usage-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(223, 230, 239, 0.95);
    box-shadow: 0 12px 34px rgba(100, 8, 15, 0.08);
    transition: 0.35s ease;
}

.bdz-usage-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 221, 0, 0.65);
    box-shadow: 0 24px 55px rgba(143, 13, 21, 0.16);
}

/*.bdz-usage-imgbox {*/
/*    position: relative;*/
/*    height: 220px;*/
/*    background:*/
/*        radial-gradient(circle at center, rgba(255, 221, 0, 0.14), transparent 48%),*/
/*        linear-gradient(135deg, #ffffff, #eef3f9);*/
/*    overflow: hidden;*/
/*}*/
.bdz-usage-imgbox {
    position: relative;
    height: 240px;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bdz-usage-imgbox::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(100, 8, 15, 0.00),
        rgba(100, 8, 15, 0.10)
    );
    pointer-events: none;
}

.bdz-usage-imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center center;
    padding: 0;
    display: block;
    background: #ffffff;
}

.bdz-usage-card:hover .bdz-usage-imgbox img {
    transform: scale(1.06);
}

.bdz-usage-content {
    position: relative;
    padding: 24px;
    flex: 1;
}

.bdz-usage-content::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 0;
    width: 54px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffdd00, #f5b400);
}

.bdz-usage-content h3 {
    font-size: 1.18rem;
    line-height: 1.32;
    font-weight: 950;
    color: #b3141e;
    margin: 0 0 10px;
}

.bdz-usage-content p {
    font-size: 0.96rem;
    line-height: 1.65;
    color: #6b7280;
    margin: 0;
}

/* Tablet */
@media (max-width: 991px) {
    .bdz-usage-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .bdz-usage-imgbox {
        height: 205px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .bdz-usage-showcase-section {
        padding: 48px 0;
    }

    .bdz-usage-container {
        width: min(100% - 28px, 100%);
    }

    .bdz-usage-heading {
        text-align: left;
        margin-bottom: 30px;
    }

    .bdz-usage-heading h2 {
        font-size: 1.9rem;
    }

    .bdz-usage-heading p {
        font-size: 1rem;
    }

    .bdz-usage-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .bdz-usage-card {
        border-radius: 22px;
    }

    .bdz-usage-imgbox {
        height: 210px;
    }

    .bdz-usage-imgbox img {
        padding: 18px;
    }

    .bdz-usage-content {
        padding: 20px;
    }

    .bdz-usage-content::before {
        left: 20px;
    }

    .bdz-usage-content h3 {
        font-size: 1.08rem;
    }
}

/* Small Mobile */
@media (max-width: 420px) {
    .bdz-usage-container {
        width: min(100% - 22px, 100%);
    }

    .bdz-usage-imgbox {
        height: 185px;
    }
}

/* ================= OUR CATEGORIES COMPACT FIX =================
   Sirf home page ke "Our Categories" cards ke liye: cards approx half size, images full visible.
*/
.home-categories-compact .home-category-grid {
    grid-template-columns: repeat(auto-fit, minmax(135px, 150px));
    justify-content: center;
    gap: 16px;
}

.home-categories-compact .home-category-card {
    width: 150px;
    max-width: 100%;
    padding: 0;
    border-radius: 10px;
    border: 2px solid #ffdd00;
    box-shadow: 0 8px 22px rgba(179, 20, 30, 0.08);
}

.home-categories-compact .home-category-image-wrap {
    height: 145px;
    padding-top: 0;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-categories-compact .home-category-image {
    position: static;
    width: 100%;
    height: 100%;
    padding: 8px;
    object-fit: contain;
    object-position: center;
}

.home-categories-compact .home-category-card:hover .home-category-image {
    transform: none;
}

@media (max-width: 768px) {
    .home-categories-compact .home-category-grid {
        grid-template-columns: repeat(3, minmax(100px, 130px));
        gap: 12px;
    }

    .home-categories-compact .home-category-card {
        width: 130px;
    }

    .home-categories-compact .home-category-image-wrap {
        height: 125px;
    }
}

@media (max-width: 480px) {
    .home-categories-compact .home-category-grid {
        grid-template-columns: repeat(2, minmax(120px, 140px));
    }

    .home-categories-compact .home-category-card {
        width: 140px;
    }

    .home-categories-compact .home-category-image-wrap {
        height: 135px;
    }
}


/* =========================================================
   HOME ADDITIONS: BEST SELLERS / CERTIFICATES / PRESENCE / VIDEO
========================================================= */

/* Best Selling Products */
.bl-best-selling-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 221, 0, 0.16), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #fffaf2 100%);
}

.bl-best-slider {
    width: 100%;
    overflow: hidden;
    padding: 12px 0 24px;
}

.bl-best-slider-track {
    display: flex;
    align-items: stretch;
    gap: 22px;
    width: max-content;
    animation: blBestSellerMove 42s linear infinite;
    will-change: transform;
}

.bl-best-slider:hover .bl-best-slider-track {
    animation-play-state: paused;
}

.bl-best-product-card {
    position: relative;
    width: 270px;
    flex: 0 0 270px;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, rgb(101, 8, 16), rgb(168, 15, 25));
    border: 2px solid #ffdd00;
    box-shadow: 0 16px 38px rgba(100, 8, 15, 0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bl-best-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 52px rgba(100, 8, 15, 0.18);
}

.bl-best-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 11px;
    border-radius: 999px;
    background: linear-gradient(135deg, #750912, #b3141e);
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(117, 9, 18, 0.22);
}

.bl-best-badge i {
    color: #ffdd00;
}

.bl-best-product-image {
    height: 245px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #ffffff, #fffdf7);
    overflow: hidden;
}

.bl-best-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 14px;
    transition: transform 0.35s ease;
}

.bl-best-product-card:hover .bl-best-product-image img {
    transform: scale(1.06);
}

.bl-best-product-content {
    min-height: 132px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 18px 20px;
    background: linear-gradient(135deg, #650810, #a80f19);
}

.bl-best-product-content small {
    color: #ffdd00;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 5px;
}

.bl-best-product-content strong {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 12px;
}

.bl-best-product-content > span {
    margin-top: auto;
    color: #ffdd00;
    font-size: 13px;
    font-weight: 900;
}

@keyframes blBestSellerMove {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 11px)); }
}

/* Certificates */
.bl-certificates-section {
    overflow: hidden;
}

.bl-media-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.bl-certificate-card,
.bl-media-placeholder {
    min-height: 280px;
    border: 2px solid #ffdd00;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(100, 8, 15, 0.09);
}

.bl-certificate-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bl-certificate-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 48px rgba(100, 8, 15, 0.17);
}

.bl-certificate-card img {
    width: 100%;
    height: 100%;
    max-height: 360px;
    object-fit: contain;
}

.bl-media-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-align: center;
    padding: 28px;
    color: #6f0710;
}

.bl-media-placeholder > i {
    font-size: 42px;
    color: #b3141e;
}

.bl-media-placeholder strong {
    font-size: 18px;
}

.bl-media-placeholder span {
    color: #7a7a7a;
    font-size: 12px;
}

/* Our Presence */
.bl-presence-section {
    overflow: hidden;
    background:
        radial-gradient(circle at bottom left, rgba(179, 20, 30, 0.08), transparent 30%),
        #ffffff;
}

.bl-presence-slider {
    overflow: hidden;
    width: 100%;
    padding: 10px 0 20px;
}

.bl-presence-track {
    display: flex;
    align-items: stretch;
    gap: 20px;
    width: max-content;
    animation: blPresenceMove 36s linear infinite;
    will-change: transform;
}

.bl-presence-slider:hover .bl-presence-track {
    animation-play-state: paused;
}

.bl-presence-logo {
    width: 210px;
    height: 140px;
    flex: 0 0 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 2px solid #ffdd00;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(100, 8, 15, 0.08);
}

.bl-presence-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bl-presence-logo.bl-media-placeholder {
    min-height: 140px;
    gap: 5px;
    padding: 16px;
}

.bl-presence-logo.bl-media-placeholder > i {
    font-size: 30px;
}

.bl-presence-logo.bl-media-placeholder strong {
    font-size: 15px;
}

@keyframes blPresenceMove {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 10px)); }
}

/* YouTube Slider */
.bl-youtube-section {
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 221, 0, 0.16), transparent 28%),
        linear-gradient(135deg, #57070d 0%, #8f1018 52%, #5a070d 100%);
}

.bl-youtube-slider {
    width: 100%;
    overflow: hidden;
    padding: 8px 0 20px;
}

.bl-youtube-track {
    display: flex;
    align-items: stretch;
    gap: 24px;
    width: max-content;
    animation: blYoutubeMove 45s linear infinite;
    will-change: transform;
}

.bl-youtube-slider:hover .bl-youtube-track {
    animation-play-state: paused;
}

.bl-youtube-card {
    width: 390px;
    flex: 0 0 390px;
    padding: 10px 10px 18px;
    border: 1px solid rgba(255, 221, 0, 0.45);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(30, 0, 4, 0.25);
}

.bl-youtube-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 14px;
    background: #1b0205;
}

.bl-youtube-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.bl-youtube-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    color: #ffffff;
    padding: 22px;
}

.bl-youtube-placeholder i {
    font-size: 58px;
    color: #ffdd00;
}

.bl-youtube-placeholder strong {
    font-size: 18px;
}

.bl-youtube-placeholder span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
}

.bl-youtube-card h3 {
    margin: 16px 8px 0;
    color: #ffffff;
    font-size: 19px;
}

@keyframes blYoutubeMove {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 12px)); }
}

@media (max-width: 991px) {
    .bl-media-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .bl-best-slider-track {
        animation-duration: 30s;
        gap: 14px;
    }

    .bl-best-product-card {
        width: 220px;
        flex-basis: 220px;
    }

    .bl-best-product-image {
        height: 205px;
    }

    .bl-media-logo-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bl-certificate-card,
    .bl-media-placeholder {
        min-height: 230px;
    }

    .bl-presence-track {
        animation-duration: 25s;
        gap: 14px;
    }

    .bl-presence-logo {
        width: 165px;
        height: 110px;
        flex-basis: 165px;
        padding: 14px;
    }

    .bl-youtube-track {
        animation-duration: 32s;
        gap: 16px;
    }

    .bl-youtube-card {
        width: 300px;
        flex-basis: 300px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bl-best-slider-track,
    .bl-presence-track,
    .bl-youtube-track {
        animation: none;
    }
}

/* =========================================================
   PRODUCT CATEGORY - 9 REAL CATEGORIES BELOW ABOUT SECTION
   Desktop: 3 columns x 3 rows
========================================================= */
.home-product-category-section {
    position: relative;
}

.home-product-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.home-product-category-card {
    display: block;
    overflow: hidden;
    background: #ffffff;
    border: 2px solid #ffdd00;
    border-radius: 18px;
    text-decoration: none;
    box-shadow: 0 12px 34px rgba(101, 8, 16, 0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-product-category-card:hover {
    transform: translateY(-6px);
    border-color: #c99a2e;
    box-shadow: 0 18px 42px rgba(101, 8, 16, 0.16);
}

.home-product-category-image-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    padding: 18px;
    overflow: hidden;
    background: #ffffff;
}

.home-product-category-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.35s ease;
}

.home-product-category-card:hover .home-product-category-image {
    transform: scale(1.04);
}

.home-product-category-content {
    padding: 18px 20px 20px;
    text-align: center;
    border-top: 1px solid rgba(101, 8, 16, 0.08);
}

.home-product-category-content h3 {
    margin: 0 0 10px;
    color: #650810;
    font-size: 1.18rem;
    line-height: 1.35;
    font-weight: 800;
}

.home-product-category-content span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #9a111b;
    font-size: 0.92rem;
    font-weight: 700;
}

.home-product-category-content span i {
    color: #c99a2e;
    transition: transform 0.25s ease;
}

.home-product-category-card:hover .home-product-category-content span i {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .home-product-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }
}

@media (max-width: 575px) {
    .home-product-category-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .home-product-category-image-wrap {
        aspect-ratio: 4 / 3;
        padding: 14px;
    }

    .home-product-category-content {
        padding: 15px 16px 17px;
    }
}

/* =========================================================
   HOME WHY CHOOSE, PRODUCT SLIDER, GOOGLE REVIEWS & CERTIFICATES
   Strictly scoped to the requested home sections.
========================================================= */

/* Same Why Choose design used on the About page */
.home-page .bl-home-why-section {
    position: relative;
    padding: clamp(58px, 7vw, 92px) 0;
    background:
        radial-gradient(circle at 8% 12%, rgba(255, 221, 0, 0.13), transparent 26%),
        linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
}

.home-page .bl-home-why-section .bl-about-why-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
    align-items: center;
    gap: clamp(30px, 5vw, 62px);
}

.home-page .bl-home-why-section .bl-about-why-intro h2 {
    margin: 12px 0 18px;
    color: #b3141e;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    font-weight: 900;
}

.home-page .bl-home-why-section .bl-about-why-intro h2 span {
    color: #c99a2e;
}

.home-page .bl-home-why-section .bl-about-why-intro > p {
    margin: 0;
    color: #5f6673;
    font-size: 1.03rem;
    line-height: 1.85;
}

.home-page .bl-home-why-section .bl-about-why-stat {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 28px;
    padding: 16px 20px;
    border: 1px solid rgba(179, 20, 30, 0.12);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(100, 8, 15, 0.08);
}

.home-page .bl-home-why-section .bl-about-why-stat > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 50%;
    color: #650810;
    background: linear-gradient(135deg, #ffdd00, #f4be28);
    font-size: 1.2rem;
}

.home-page .bl-home-why-section .bl-about-why-stat strong,
.home-page .bl-home-why-section .bl-about-why-stat span {
    display: block;
}

.home-page .bl-home-why-section .bl-about-why-stat strong {
    color: #650810;
    font-size: 1.35rem;
    line-height: 1.15;
    font-weight: 900;
}

.home-page .bl-home-why-section .bl-about-why-stat span {
    margin-top: 4px;
    color: #6c7079;
    font-size: 0.88rem;
    font-weight: 700;
}

.home-page .bl-home-why-section .bl-about-strengths-card {
    position: relative;
    padding: clamp(26px, 4vw, 40px);
    overflow: hidden;
    border: 1px solid rgba(255, 221, 0, 0.34);
    border-radius: 28px;
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 221, 0, 0.17), transparent 31%),
        linear-gradient(135deg, #59070d 0%, #8c0c15 58%, #b3141e 100%);
    box-shadow: 0 22px 52px rgba(100, 8, 15, 0.18);
}

.home-page .bl-home-why-section .bl-about-strengths-card::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -85px;
    width: 210px;
    height: 210px;
    border: 28px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.home-page .bl-home-why-section .bl-about-strengths-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 24px;
    color: #ffffff;
    font-size: clamp(1.55rem, 3vw, 2rem);
    font-weight: 900;
}

.home-page .bl-home-why-section .bl-about-strengths-list {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 18px;
}

.home-page .bl-home-why-section .bl-about-strength-item {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.93rem;
    line-height: 1.55;
    font-weight: 600;
}

.home-page .bl-home-why-section .bl-about-strength-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-top: 1px;
    border-radius: 50%;
    color: #650810;
    background: #ffdd00;
    font-size: 0.72rem;
}

/* Featured products slider */
.bl-featured-products-section {
    overflow: hidden;
}

.bl-featured-slider,
.bl-review-slider {
    position: relative;
    padding: 0 52px;
}

.bl-featured-slider-viewport,
.bl-review-slider-viewport {
    width: 100%;
    overflow: hidden;
}

.bl-featured-products-section .bl-featured-products-track,
.bl-review-slider-track {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 24px !important;
    width: 100%;
    padding: 8px 2px 18px;
    transform: translate3d(0, 0, 0);
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.bl-featured-products-section .bl-featured-products-track > .home-category-card {
    flex: 0 0 calc((100% - 72px) / 4);
    width: calc((100% - 72px) / 4);
    min-width: 0;
}

.bl-featured-slider-btn,
.bl-review-slider-btn {
    position: absolute;
    z-index: 4;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #650810;
    background: linear-gradient(135deg, #ffdd00, #f1bb21);
    box-shadow: 0 12px 28px rgba(100, 8, 15, 0.2);
    transform: translateY(-50%);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.bl-featured-slider-btn:hover,
.bl-featured-slider-btn:focus-visible,
.bl-review-slider-btn:hover,
.bl-review-slider-btn:focus-visible {
    color: #ffffff;
    background: #650810;
    transform: translateY(-50%) scale(1.06);
    outline: none;
}

.bl-featured-slider-prev,
.bl-review-slider-prev {
    left: 0;
}

.bl-featured-slider-next,
.bl-review-slider-next {
    right: 0;
}

/* Google reviews */
.bl-google-reviews-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 100% 0%, rgba(66, 133, 244, 0.08), transparent 28%),
        radial-gradient(circle at 0% 100%, rgba(251, 188, 5, 0.10), transparent 26%),
        #fffdf8;
}

.bl-review-slider-track > .bl-google-review-card {
    flex: 0 0 calc((100% - 48px) / 3);
    width: calc((100% - 48px) / 3);
    min-width: 0;
}

.bl-google-review-card {
    min-height: 285px;
    padding: 26px;
    border: 1px solid rgba(101, 8, 16, 0.10);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(101, 8, 16, 0.09);
}

.bl-google-review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.bl-google-review-person {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    color: inherit;
    text-decoration: none;
}

.bl-google-review-person:hover strong {
    color: #b3141e;
}

.bl-google-review-avatar {
    display: inline-flex;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    overflow: hidden;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: #f2f4f7;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.13);
}

.bl-google-review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bl-google-review-person-text {
    min-width: 0;
}

.bl-google-review-person-text strong,
.bl-google-review-person-text small {
    display: block;
}

.bl-google-review-person-text strong {
    overflow: hidden;
    color: #282b31;
    font-size: 1rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.bl-google-review-person-text small {
    margin-top: 3px;
    color: #777d86;
    font-size: 0.78rem;
    font-weight: 600;
}

.bl-google-review-logo {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    object-fit: contain;
}

.bl-google-review-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 22px 0 15px;
    color: #fbbc04;
    font-size: 1rem;
}

.bl-google-review-card > p {
    margin: 0;
    color: #5f6673;
    font-size: 0.95rem;
    line-height: 1.75;
}

/* Certificates stay four in one desktop row */
.bl-certificate-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1199px) {
    .bl-featured-products-section .bl-featured-products-track > .home-category-card {
        flex-basis: calc((100% - 48px) / 3);
        width: calc((100% - 48px) / 3);
    }
}

@media (max-width: 991px) {
    .home-page .bl-home-why-section .bl-about-why-grid {
        grid-template-columns: 1fr;
    }

    .bl-featured-products-section .bl-featured-products-track > .home-category-card,
    .bl-review-slider-track > .bl-google-review-card {
        flex-basis: calc((100% - 24px) / 2);
        width: calc((100% - 24px) / 2);
    }

    .bl-certificate-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .home-page .bl-home-why-section {
        padding: 46px 0;
    }

    .home-page .bl-home-why-section .bl-about-strengths-list {
        grid-template-columns: 1fr;
    }

    .bl-featured-slider,
    .bl-review-slider {
        padding: 0 42px;
    }

    .bl-featured-products-section .bl-featured-products-track,
    .bl-review-slider-track {
        gap: 16px !important;
    }

    .bl-featured-products-section .bl-featured-products-track > .home-category-card,
    .bl-review-slider-track > .bl-google-review-card {
        flex-basis: 100%;
        width: 100%;
    }

    .bl-featured-slider-btn,
    .bl-review-slider-btn {
        width: 38px;
        height: 38px;
    }

    .bl-certificate-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .home-page .bl-home-why-section .bl-about-why-stat {
        width: 100%;
        padding: 14px;
    }

    .home-page .bl-home-why-section .bl-about-strengths-card {
        border-radius: 22px;
    }

    .bl-featured-slider,
    .bl-review-slider {
        padding: 0 34px;
    }

    .bl-google-review-card {
        padding: 22px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bl-featured-products-section .bl-featured-products-track,
    .bl-review-slider-track {
        transition-duration: 0ms !important;
    }
}

/* Requested: static presence cards and exact 166px x 96px card size */
.bl-presence-slider {
    overflow: visible;
}

.bl-presence-track,
.bl-certificate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 166px);
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    width: 100%;
}

.bl-presence-track {
    animation: none;
    transform: none;
    will-change: auto;
}

.bl-presence-slider:hover .bl-presence-track {
    animation-play-state: running;
}

.bl-presence-logo,
.bl-certificate-card,
.bl-certificate-placeholder {
    box-sizing: border-box;
    width: 166px;
    height: 96px;
    min-height: 96px;
    flex: 0 0 166px;
    padding: 10px;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(100, 8, 15, 0.08);
}

.bl-presence-logo.bl-media-placeholder {
    min-height: 96px;
    padding: 10px;
}

.bl-certificate-card img {
    max-height: none;
}

@media (max-width: 767px) {
    .bl-presence-track,
    .bl-certificate-grid {
        grid-template-columns: repeat(auto-fit, 166px);
        gap: 14px;
    }

    .bl-presence-logo,
    .bl-certificate-card,
    .bl-certificate-placeholder,
    .bl-presence-logo.bl-media-placeholder {
        width: 166px;
        height: 96px;
        min-height: 96px;
        flex-basis: 166px;
        padding: 10px;
    }
}


/* FAQ section below YouTube videos */
.bl-faq-section {
    position: relative;
    background:
        radial-gradient(circle at 8% 12%, rgba(255, 221, 0, 0.11), transparent 25%),
        linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
}

.bl-faq-list {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 22px;
}

.bl-faq-column {
    display: grid;
    align-content: start;
    gap: 14px;
}

.bl-faq-item {
    overflow: hidden;
    border: 1px solid rgba(101, 8, 16, 0.13);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(101, 8, 16, 0.07);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.bl-faq-item:hover,
.bl-faq-item[open] {
    border-color: rgba(179, 20, 30, 0.36);
    box-shadow: 0 14px 34px rgba(101, 8, 16, 0.11);
}

.bl-faq-item summary {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 68px;
    padding: 8px 8px 8px 8px;
    color: #650810;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.bl-faq-item summary::-webkit-details-marker {
    display: none;
}

.bl-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 10px;
    top: 30%;
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #650810;
    color: #ffdd00;
    font-size: 1.35rem;
    line-height: 1;
    font-weight: 500;
    transform: translateY(-50%);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.bl-faq-item[open] summary::after {
    content: "−";
    background: #b3141e;
}

.bl-faq-answer {
    padding: 0 22px 20px;
}

.bl-faq-answer p {
    margin: 0;
    padding-top: 17px;
    border-top: 1px solid rgba(101, 8, 16, 0.09);
    color: #5f6673;
    font-size: 0.97rem;
    line-height: 1.8;
}

@media (max-width: 767px) {
    .bl-faq-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bl-faq-column {
        gap: 12px;
    }

    .bl-faq-item {
        border-radius: 14px;
    }

    .bl-faq-item summary {
        min-height: 62px;
        padding: 16px 52px 16px 17px;
        font-size: 0.94rem;
    }

    .bl-faq-item summary::after {
        right: 15px;
        width: 28px;
        height: 28px;
    }

    .bl-faq-answer {
        padding: 0 17px 17px;
    }

    .bl-faq-answer p {
        font-size: 0.92rem;
        line-height: 1.7;
    }
}
