 .blog-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        /* Featured Post (Left Column - Full Height) */
        .featured-post {
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .featured-post .post-image {
            width: 100%;
            height: 100%;
            min-height: 600px;
            object-fit: cover;
            display: block;
            filter: brightness(0.85);
            transition: filter 0.3s ease, transform 0.5s ease;
        }

        .featured-post:hover .post-image {
            filter: brightness(0.75);
            transform: scale(1.03);
        }

        .featured-post .post-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px;
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
        }

        .post-category {
            display: inline-block;
            color: #ffcc00;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 12px;
        }

        .featured-post h3 {
            font-size: 1.6rem;
            font-weight: 800;
            line-height: 1.2;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: -0.5px;
        }

        /* Right Column Grid */
        .right-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 16px;
        }

        .grid-post {
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .grid-post .post-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: brightness(0.85);
            transition: filter 0.3s ease, transform 0.5s ease;
        }

        .grid-post:hover .post-image {
            filter: brightness(0.75);
            transform: scale(1.05);
        }

        .grid-post .post-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 24px;
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
        }

        .grid-post .post-category {
            font-size: 0.6rem;
            margin-bottom: 8px;
        }

        .grid-post h3 {
            font-size: 0.95rem;
            font-weight: 800;
            line-height: 1.25;
            color: #fff;
            text-transform: uppercase;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .blog-grid {
                grid-template-columns: 1fr;
            }

            .featured-post .post-image {
                min-height: 400px;
            }

            .right-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 576px) {
            .right-grid {
                grid-template-columns: 1fr;
            }

            .featured-post h3 {
                font-size: 1.2rem;
            }

            .grid-post h3 {
                font-size: 0.85rem;
            }
        }
        
        
        
        
         /* ---------- UNIQUE CONTAINER ---------- */
        .gallery-2half-wrap {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            position: relative;
        }

        /* ---------- UNIQUE OWL OVERRIDES ---------- */
        .gallery-2half-wrap .owl-stage-outer {
            overflow: visible !important;
            padding: 10px 0 0px 0;
        }

        .gallery-2half-wrap .owl-item {
            opacity: 0.6;
            transform: scale(0.92);
            filter: blur(2px);
            transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            backface-visibility: hidden;
        }

        .gallery-2half-wrap .owl-item.active.center {
            opacity: 1;
            transform: scale(1);
            filter: blur(0px);
        }

        .gallery-2half-wrap .owl-item.active:not(.center) {
            opacity: 0.7;
            transform: scale(0.94);
            filter: blur(1px);
        }

        /* ---------- UNIQUE SLIDE CARD ---------- */
        .gallery-2half-slide {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
            background: #1a1a1e;
            transition: all 0.7s ease;
            height: 500px;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .gallery-2half-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.8s ease;
        }

        .gallery-2half-slide:hover img {
            transform: scale(1.05);
        }

        /* Glass overlay */
        .gallery-2half-slide::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            padding: 1.5px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 60%, transparent);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            -webkit-mask-composite: xor;
            pointer-events: none;
        }

        /* Soft gradient overlay */
        .gallery-2half-slide::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.4) 100%);
            pointer-events: none;
            z-index: 1;
        }

        /* ---------- UNIQUE CUSTOM NAVIGATION ---------- */
        .gallery-2half-nav {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            align-items: center;
            pointer-events: none;
            z-index: 20;
            padding: 0 10px;
        }

        .gallery-2half-nav .gallery-2half-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: #fff;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            pointer-events: all;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .gallery-2half-nav .gallery-2half-btn:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.25);
            transform: scale(1.1);
            box-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
        }

        .gallery-2half-nav .gallery-2half-btn:active {
            transform: scale(0.95);
        }

        .gallery-2half-nav .gallery-2half-btn i {
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
        }

        .gallery-2half-nav .gallery-2half-prev {
            margin-left: -20px;
        }

        .gallery-2half-nav .gallery-2half-next {
            margin-right: -20px;
        }

        /* Hide default Owl nav */
        .gallery-2half-wrap .owl-nav {
            display: none !important;
        }

        /* ---------- UNIQUE DOTS ---------- */
        .gallery-2half-wrap .owl-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            margin-top: 35px !important;
            position: relative;
            z-index: 10;
        }

        .gallery-2half-wrap .owl-dots .owl-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15) !important;
            transition: all 0.5s ease;
            border: none;
            cursor: pointer;
        }

        .gallery-2half-wrap .owl-dots .owl-dot:hover {
            background: rgba(255, 255, 255, 0.3) !important;
            transform: scale(1.1);
        }

        .gallery-2half-wrap .owl-dots .owl-dot.active {
            width: 40px;
            border-radius: 20px;
            background: linear-gradient(135deg, #f7c948, #f5a623) !important;
            box-shadow: 0 0 30px rgba(247, 201, 72, 0.25);
        }

        .gallery-2half-wrap .owl-dots .owl-dot span {
            display: none;
        }

        /* ---------- RESPONSIVE ---------- */
        @media (max-width: 992px) {
            .gallery-2half-slide { height: 400px; }
            .gallery-2half-nav .gallery-2half-btn {
                width: 50px;
                height: 50px;
                font-size: 17px;
            }
            .gallery-2half-nav .gallery-2half-prev { margin-left: -10px; }
            .gallery-2half-nav .gallery-2half-next { margin-right: -10px; }
        }

        @media (max-width: 768px) {
            .gallery-2half-slide { height: 320px; }
            .gallery-2half-nav .gallery-2half-btn {
                width: 44px;
                height: 44px;
                font-size: 15px;
            }
            .gallery-2half-nav .gallery-2half-prev { margin-left: -5px; }
            .gallery-2half-nav .gallery-2half-next { margin-right: -5px; }
            .gallery-2half-wrap .owl-dots { gap: 10px; }
            .gallery-2half-wrap .owl-dots .owl-dot { width: 10px; height: 10px; }
            .gallery-2half-wrap .owl-dots .owl-dot.active { width: 30px; }
        }

        @media (max-width: 576px) {
            .gallery-2half-slide { height: 250px; }
            .gallery-2half-nav .gallery-2half-btn {
                width: 38px;
                height: 38px;
                font-size: 13px;
            }
            .gallery-2half-nav .gallery-2half-prev { margin-left: 0px; }
            .gallery-2half-nav .gallery-2half-next { margin-right: 0px; }
            .gallery-2half-wrap .owl-dots { gap: 8px; margin-top: 25px !important; }
            .gallery-2half-wrap .owl-dots .owl-dot { width: 8px; height: 8px; }
            .gallery-2half-wrap .owl-dots .owl-dot.active { width: 24px; }
        }
        
        
        /* ============================================
   CONNECT WITH US DROPDOWN STYLES
   ============================================ */
.connect-dropdown {
   position: relative;
   display: inline-block;
}
.connect-dropdown .dropdown-menu {
   position: absolute;
   top: calc(100% + 12px);
   right: 0;
   min-width: 260px;
   background: #1a1a1a;
   border: 1px solid rgba(255, 204, 0, 0.2);
   border-radius: 12px;
   padding: 8px 0;
   opacity: 0;
   visibility: hidden;
   transform: translateY(-10px) scale(0.95);
   transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
   box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
   backdrop-filter: blur(20px);
   background: rgba(20, 20, 20, 0.95);
   z-index: 100;
}
.connect-dropdown .dropdown-menu::before {
   content: '';
   position: absolute;
   top: -8px;
   right: 20px;
   width: 0;
   height: 0;
   border-left: 8px solid transparent;
   border-right: 8px solid transparent;
   border-bottom: 8px solid rgba(255, 204, 0, 0.2);
}
.connect-dropdown .dropdown-menu::after {
   content: '';
   position: absolute;
   top: -6px;
   right: 22px;
   width: 0;
   height: 0;
   border-left: 6px solid transparent;
   border-right: 6px solid transparent;
   border-bottom: 6px solid #1a1a1a;
}
.connect-dropdown:hover .dropdown-menu {
   opacity: 1;
   visibility: visible;
   transform: translateY(0) scale(1);
}
.connect-dropdown .dropdown-item {
   display: flex;
   align-items: center;
   gap: 12px;
   padding: 10px 20px;
   color: #cccccc;
   font-family: 'Space Grotesk', sans-serif;
   font-size: 0.85rem;
   font-weight: 400;
   text-decoration: none;
   transition: all 0.2s ease;
   border-left: 3px solid transparent;
   letter-spacing: 0.02em;
}
.connect-dropdown .dropdown-item:hover {
   background: rgba(255, 204, 0, 0.08);
   color: #ffffff;
   border-left-color: #ffcc00;
}
.connect-dropdown .dropdown-item .icon {
   width: 18px;
   height: 18px;
   flex-shrink: 0;
   opacity: 0.6;
   transition: opacity 0.2s ease;
}
.connect-dropdown .dropdown-item:hover .icon {
   opacity: 1;
}
.connect-dropdown .dropdown-divider {
   height: 1px;
   background: rgba(255, 255, 255, 0.06);
   margin: 6px 16px;
}

a.nav-link 
{
    font-size:12px !important;
    font-family: 'OpenSansCondLight', sans-serif;
}


@font-face {
    font-family: 'OpenSansCondBold';
    src: url('../../fonts/OpenSans/OpenSans-CondBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'OpenSansCondLight';
    src: url('../../fonts/OpenSans/OpenSans-CondLight.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'OpenSansCondLightItalic';
    src: url('../../fonts/OpenSans/OpenSans-CondLightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

.heading {
    font-family: 'OpenSansCondBold', sans-serif;
}
h2.font-space
{
    font-size:50px !important;
    text-transform:uppercase;
}
.light-text, .font-space {
    font-family: 'OpenSansCondLight', sans-serif;
}

.italic-text {
    font-family: 'OpenSansCondLightItalic', sans-serif;
}



    /* ============================================================
           UNIQUE SLIDER WRAPPER
           All CSS is scoped to this slider only
           ============================================================ */
        
        
        /* ----- reset & base (only for slider) ----- */
        .bfa-slider-wrap * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .bfa-slider-wrap {
            font-family: 'Inter', sans-serif;
            max-width: 900px;
            width: 100%;
            margin: 0 auto;
            position: relative;
            padding: 0 20px;
            display: block;
        }

        /* ----- Slide ----- */
        .bfa-slider-wrap .bfa-hero-slide {
            position: relative;
            width: 100%;
            min-height: 480px;
            display: flex;
            align-items: center;
            background: #121212;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7), 0 8px 24px rgba(0, 0, 0, 0.3);
            transition: box-shadow 0.3s ease;
        }
        .bfa-slider-wrap .bfa-hero-slide:hover {
            box-shadow: 0 32px 80px rgba(0, 0, 0, 0.8), 0 8px 28px rgba(245, 197, 24, 0.08);
        }

        .bfa-slider-wrap .bfa-slide-inner {
            width: 100%;
            padding: 48px 52px;
            display: flex;
            align-items: center;
            gap: 44px;
            position: relative;
            z-index: 2;
        }

        /* ----- Left content ----- */
        .bfa-slider-wrap .bfa-content {
            flex: 0 0 52%;
            max-width: 460px;
        }

        .bfa-slider-wrap .bfa-label {
            display: inline-block;
            color: #f5c518;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            margin-bottom: 18px;
            background: rgba(245, 197, 24, 0.08);
            padding: 4px 14px 4px 12px;
            border-radius: 40px;
            backdrop-filter: blur(4px);
        }

        .bfa-slider-wrap .bfa-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.08;
            margin: 0 0 16px 0;
            color: #ffffff;
            letter-spacing: -0.02em;
        }

        .bfa-slider-wrap .bfa-desc {
            font-size: 15.5px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.78);
            margin: 0 0 34px 0;
            max-width: 420px;
        }

        /* ============================================================
            FUTURISTIC CTA BUTTONS (Unique)
            ============================================================ */
        .bfa-slider-wrap .bfa-btn-group {
            display: flex;
            gap: 16px;
            flex-wrap: nowrap;
            align-items: center;
        }

        .bfa-slider-wrap .bfa-btn-futuristic {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            height: 56px;
            padding: 0 32px;
            background: #000000;
            color: #ffffff;
            font-weight: 700;
            font-size: 0.95rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            text-decoration: none;
            border: 2px solid #FFD400;
            border-radius: 6px;
            transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
            cursor: pointer;
            box-shadow: 0 0 0 0 rgba(255, 212, 0, 0);
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
            -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
            background-clip: padding-box;
            will-change: transform, box-shadow, background-color, color;
            white-space: nowrap;
        }

        .bfa-slider-wrap .bfa-btn-futuristic i {
            font-size: 1.1rem;
            color: #FFD400;
            transition: color 0.3s ease, transform 0.3s ease;
            flex-shrink: 0;
        }

        .bfa-slider-wrap .bfa-btn-futuristic .bfa-btn-text {
            display: inline-block;
            transition: color 0.3s ease;
        }

        .bfa-slider-wrap .bfa-btn-futuristic:hover {
            background: #FFD400;
            color: #000000;
            transform: translateY(-4px);
            box-shadow: 0 12px 36px rgba(255, 212, 0, 0.35), 0 0 0 1px rgba(255, 212, 0, 0.2);
            border-color: #FFD400;
        }

        .bfa-slider-wrap .bfa-btn-futuristic:hover i {
            color: #000000;
            transform: translateX(2px);
        }

        .bfa-slider-wrap .bfa-btn-futuristic:hover .bfa-btn-text {
            color: #000000;
        }

        .bfa-slider-wrap .bfa-btn-futuristic::after {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 8px;
            background: transparent;
            z-index: -1;
            transition: box-shadow 0.3s ease;
            pointer-events: none;
        }

        .bfa-slider-wrap .bfa-btn-futuristic:hover::after {
            box-shadow: 0 0 28px 6px rgba(255, 212, 0, 0.25);
        }

        .bfa-slider-wrap .bfa-btn-futuristic:active {
            transform: translateY(0px) scale(0.97);
            box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(255, 212, 0, 0);
            background: #FFD400;
            color: #000000;
            border-color: #FFD400;
        }

        .bfa-slider-wrap .bfa-btn-futuristic:active i {
            color: #000000;
        }

        .bfa-slider-wrap .bfa-btn-futuristic:active .bfa-btn-text {
            color: #000000;
        }

        /* ----- Right image ----- */
        .bfa-slider-wrap .bfa-visual {
            flex: 0 0 48%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .bfa-slider-wrap .bfa-visual img {
            max-width: 100%;
            max-height: 340px;
            object-fit: contain;
            border-radius: 20px;
            filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 40px rgba(245, 197, 24, 0.06));
            transition: filter 0.4s ease, transform 0.4s ease;
        }
        .bfa-slider-wrap .bfa-hero-slide:hover .bfa-visual img {
            transform: scale(1.02);
            filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 60px rgba(245, 197, 24, 0.10));
        }

        .bfa-slider-wrap .bfa-glow {
            position: absolute;
            width: 340px;
            height: 340px;
            background: radial-gradient(circle, rgba(245, 197, 24, 0.10) 0%, transparent 70%);
            pointer-events: none;
            z-index: -1;
            border-radius: 50%;
            filter: blur(20px);
        }

        .bfa-slider-wrap .bfa-bottom-accent {
            position: absolute;
            bottom: 28px;
            left: 0;
            width: 38%;
            height: 6px;
            background: #f5c518;
            clip-path: polygon(0 0, 88% 0, 100% 100%, 0% 100%);
            z-index: 3;
            border-radius: 0 6px 6px 0;
            opacity: 0.85;
            transition: width 0.4s ease, opacity 0.3s;
        }
        .bfa-slider-wrap .bfa-hero-slide:hover .bfa-bottom-accent {
            width: 48%;
            opacity: 1;
        }

        /* ============================================================
            OWL CAROUSEL - UNIQUE CLASS "bfa-owl"
            All styles are scoped to .bfa-owl only
            ============================================================ */
        
        /* Hide default nav text */
       .bfa-slider-wrap .bfa-owl .owl-nav button span {
            display: none !important;
        }

        /* Navigation container */
        .bfa-slider-wrap .bfa-owl .owl-nav {
            position: absolute !important;
            top: 50% !important;
            left: -40px !important;
            right: -40px !important;
            transform: translateY(-50%);
            display: flex !important;
            justify-content: space-between !important;
            pointer-events: none;
            z-index: 30;
            margin: 0;
            padding: 0;
            width: calc(100% + 80px) !important;
        }

        /* Individual nav buttons */
        .bfa-slider-wrap .bfa-owl .owl-nav button.owl-prev, .bfa-slider-wrap .bfa-owl .owl-nav button.owl-next {
            position: relative;
            display: flex !important;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            background: #000000 !important;
            color: #ffffff;
            border: 2px solid #FFD400 !important;
            border-radius: 6px !important;
            cursor: pointer;
            pointer-events: all;
            transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 0 0 0 0 rgba(255, 212, 0, 0);
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
            -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
            margin: 0 !important;
            padding: 0 !important;
            opacity: 1 !important;
            flex-shrink: 0;
        }

        /* Arrow icons */
       .bfa-slider-wrap .bfa-owl .owl-nav button.owl-prev::after,
        .bfa-slider-wrap .bfa-owl .owl-nav button.owl-next::after {
            content: '';
            display: block;
            width: 16px;
            height: 16px;
            border-style: solid;
            border-color: #FFD400;
            border-width: 0 0 3px 3px;
            transition: border-color 0.3s ease, transform 0.3s ease;
        }

       .bfa-slider-wrap .bfa-owl .owl-nav button.owl-prev::after {
            transform: rotate(45deg);
            margin-left: 4px;
        }

       .bfa-slider-wrap .bfa-owl .owl-nav button.owl-next::after {
            transform: rotate(225deg);
            margin-right: 4px;
        }

        /* Hover state */
        .bfa-slider-wrap .bfa-owl .owl-nav button:hover {
            background: #FFD400 !important;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 36px rgba(255, 212, 0, 0.35), 0 0 0 1px rgba(255, 212, 0, 0.2);
            border-color: #FFD400 !important;
        }

       .bfa-slider-wrap .bfa-owl .owl-nav button:hover::after {
            border-color: #000000;
        }

        .bfa-owl .owl-nav button.owl-prev:hover::after {
            transform: rotate(45deg) translateX(-2px);
        }

        .bfa-owl .owl-nav button.owl-next:hover::after {
            transform: rotate(225deg) translateX(2px);
        }

        /* Active state */
        .bfa-owl .owl-nav button:active {
            transform: translateY(0px) scale(0.95);
            box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(255, 212, 0, 0);
            background: #FFD400 !important;
            border-color: #FFD400 !important;
        }

        .bfa-owl .owl-nav button:active::after {
            border-color: #000000;
        }

        /* Disabled state */
        .bfa-owl .owl-nav .disabled {
            opacity: 0.3 !important;
            cursor: not-allowed;
            pointer-events: none;
        }

        /* ============================================================
            OWL DOTS (Unique)
            ============================================================ */
       .bfa-slider-wrap .bfa-owl .owl-dots {
            position: absolute;
            bottom: 20px;
            right: 36px;
            display: flex;
            gap: 12px;
            z-index: 25;
            margin-top: 0;
            display:block !important;
        }

        .bfa-owl .owl-dot {
            width: 42px;
            height: 4px;
            background: rgba(255, 255, 255, 0.2) !important;
            border: none !important;
            border-radius: 20px !important;
            cursor: pointer;
            transition: background 0.3s ease, width 0.3s ease;
            padding: 0 !important;
            margin: 0 !important;
        }

        .bfa-owl .owl-dot.active {
            background: #f5c518 !important;
            width: 56px;
        }

        .bfa-owl .owl-dot span {
            display: none !important;
        }

        /* ============================================================
            ANIMATIONS (Unique)
            ============================================================ */
        .bfa-owl .owl-item.active .bfa-label {
            animation: bfaFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
        }
        .bfa-owl .owl-item.active .bfa-title {
            animation: bfaFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.30s both;
        }
        .bfa-owl .owl-item.active .bfa-desc {
            animation: bfaFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
        }
        .bfa-owl .owl-item.active .bfa-btn-group {
            animation: bfaFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.60s both;
        }
        .bfa-owl .owl-item.active .bfa-visual {
            animation: bfaFadeScale 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
        }

        @keyframes bfaFadeUp {
            from {
                opacity: 0;
                transform: translateY(28px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bfaFadeScale {
            from {
                opacity: 0;
                transform: scale(0.92);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* ============================================================
            RESPONSIVE (Unique)
            ============================================================ */
        @media (max-width: 820px) {
            .bfa-slider-wrap .bfa-slide-inner {
                padding: 36px 34px;
                gap: 32px;
            }
            .bfa-slider-wrap .bfa-title {
                font-size: 36px;
            }
            .bfa-slider-wrap .bfa-visual img {
                max-height: 260px;
            }
            .bfa-owl .owl-nav {
                left: -30px;
                right: -30px;
                width: calc(100% + 60px);
            }
            .bfa-owl .owl-nav button {
                width: 44px;
                height: 44px;
            }
            .bfa-owl .owl-dots {
                right: 24px;
                bottom: 16px;
            }
            .bfa-owl .owl-dot {
                width: 32px;
                height: 3px;
            }
            .bfa-owl .owl-dot.active {
                width: 44px;
            }
            .bfa-slider-wrap .bfa-bottom-accent {
                width: 44%;
                height: 5px;
                bottom: 22px;
            }
            .bfa-slider-wrap .bfa-btn-futuristic {
                padding: 0 24px;
                height: 50px;
                font-size: 0.85rem;
            }
            .bfa-slider-wrap .bfa-btn-futuristic i {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 640px) {
            .bfa-slider-wrap .bfa-slide-inner {
                flex-direction: column-reverse;
                padding: 32px 24px 76px;
                text-align: center;
                gap: 24px;
            }
            .bfa-slider-wrap .bfa-content {
                flex: 1;
                max-width: 100%;
            }
            .bfa-slider-wrap .bfa-title {
                font-size: 30px;
            }
            .bfa-slider-wrap .bfa-desc {
                margin-left: auto;
                margin-right: auto;
                max-width: 100%;
            }
            .bfa-slider-wrap .bfa-btn-group {
                justify-content: center;
                flex-wrap: wrap;
                gap: 12px;
            }
            .bfa-slider-wrap .bfa-btn-futuristic {
                padding: 0 20px;
                height: 46px;
                font-size: 0.8rem;
                gap: 8px;
            }
            .bfa-slider-wrap .bfa-btn-futuristic i {
                font-size: 0.85rem;
            }
            .bfa-slider-wrap .bfa-visual {
                flex: 1;
            }
            .bfa-slider-wrap .bfa-visual img {
                max-height: 180px;
            }
            .bfa-owl .owl-nav {
                left: -10px;
                right: -10px;
                width: calc(100% + 20px);
                top: 50%;
            }
            .bfa-owl .owl-nav button {
                width: 38px;
                height: 38px;
            }
            .bfa-owl .owl-nav button.owl-prev::after,
            .bfa-owl .owl-nav button.owl-next::after {
                width: 12px;
                height: 12px;
                border-width: 0 0 2px 2px;
            }
            .bfa-owl .owl-dots {
                right: 50%;
                transform: translateX(50%);
                bottom: 14px;
                gap: 10px;
            }
            .bfa-owl .owl-dot {
                width: 28px;
                height: 3px;
            }
            .bfa-owl .owl-dot.active {
                width: 38px;
            }
            .bfa-slider-wrap .bfa-bottom-accent {
                width: 56%;
                height: 5px;
                bottom: 16px;
            }
            .bfa-slider-wrap .bfa-label {
                font-size: 11px;
                padding: 3px 12px 3px 10px;
            }
        }

        @media (max-width: 400px) {
            .bfa-slider-wrap .bfa-title {
                font-size: 24px;
            }
            .bfa-slider-wrap .bfa-btn-futuristic {
                padding: 0 14px;
                height: 40px;
                font-size: 0.7rem;
                gap: 6px;
            }
            .bfa-slider-wrap .bfa-btn-futuristic i {
                font-size: 0.75rem;
            }
            .bfa-slider-wrap .bfa-slide-inner {
                padding: 20px 16px 64px;
            }
            .bfa-slider-wrap .bfa-hero-slide {
                border-radius: 24px;
            }
            .bfa-owl .owl-nav button {
                width: 32px;
                height: 32px;
            }
            .bfa-owl .owl-nav {
                left: -6px;
                right: -6px;
                width: calc(100% + 12px);
            }
            .bfa-owl .owl-nav button.owl-prev::after,
            .bfa-owl .owl-nav button.owl-next::after {
                width: 10px;
                height: 10px;
                border-width: 0 0 2px 2px;
            }
        }

        @media (max-width: 360px) {
            .bfa-slider-wrap .bfa-btn-futuristic {
                padding: 0 10px;
                height: 36px;
                font-size: 0.65rem;
                gap: 4px;
            }
            .bfa-slider-wrap .bfa-btn-futuristic i {
                font-size: 0.7rem;
            }
            .bfa-slider-wrap .bfa-btn-group {
                gap: 8px;
            }
            .bfa-owl .owl-nav {
                left: -4px;
                right: -4px;
                width: calc(100% + 8px);
            }
            .bfa-owl .owl-nav button {
                width: 28px;
                height: 28px;
            }
            .bfa-owl .owl-nav button.owl-prev::after,
            .bfa-owl .owl-nav button.owl-next::after {
                width: 8px;
                height: 8px;
                border-width: 0 0 1.5px 1.5px;
            }
        }
        
        
        
        
        /* swap slider */
        #bgCanvas {
            height:0px;
    /*position: relative;*/
    /*top: 0;*/
    /*left: 0;*/
    /*width: 100%;*/
    /*height: 100%;*/
    /*z-index: 0;*/
    /*pointer-events: none;*/
  }
  .catalog-flip-widget {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    padding: 24px 16px;
    user-select: none;
  }
  .cf-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 28px;
    padding: 0 4px;
  }
  .cf-title {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #f5c518;
  }
  .cf-subtitle {
    font-size: 12px;
    color: #b89a3e;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .cf-stage {
    position: relative;
    width: 100%;
    height: 540px;
    perspective: 1400px;
    perspective-origin: 50% 45%;
  }
  .cf-card {
    position: absolute;
    top: 0;
    left: 50%;
    width: 420px;
    height: 480px;
    margin-left: -160px;
    border-radius: 14px;
    overflow: hidden;
    background: #1a1a1a;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3);
    transform-style: preserve-3d;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease, filter 0.6s ease, z-index 0s;
    cursor: pointer;
    will-change: transform, opacity, filter;
  }
  .cf-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
  }
  .cf-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 20px 22px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    color: white;
    transition: opacity 0.4s ease;
  }
  .cf-card-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(245,197,24,0.15);
    backdrop-filter: blur(4px);
    margin-bottom: 8px;
  }
  .cf-card-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 4px 0;
  }
  .cf-card-desc {
    font-size: 13px;
    opacity: 0.85;
    line-height: 1.4;
    margin: 0;
  }

  .cf-card[data-pos="-3"] {
    z-index: 1;
    transform: translateX(-260px) translateZ(-220px) rotateY(28deg) scale(0.72);
    opacity: 0.35;
    filter: brightness(0.7);
  }
  .cf-card[data-pos="-2"] {
    z-index: 2;
    transform: translateX(-180px) translateZ(-150px) rotateY(22deg) scale(0.78);
    opacity: 0.5;
    filter: brightness(0.78);
  }
  .cf-card[data-pos="-1"] {
    z-index: 3;
    transform: translateX(-90px) translateZ(-80px) rotateY(14deg) scale(0.86);
    opacity: 0.7;
    filter: brightness(0.88);
  }
  .cf-card[data-pos="0"] {
    z-index: 5;
    transform: translateX(0) translateZ(0) rotateY(0deg) scale(1);
    opacity: 1;
    filter: brightness(1);
  }
  .cf-card[data-pos="1"] {
    z-index: 3;
    transform: translateX(90px) translateZ(-80px) rotateY(-14deg) scale(0.86);
    opacity: 0.7;
    filter: brightness(0.88);
  }
  .cf-card[data-pos="2"] {
    z-index: 2;
    transform: translateX(180px) translateZ(-150px) rotateY(-22deg) scale(0.78);
    opacity: 0.5;
    filter: brightness(0.78);
  }
  .cf-card[data-pos="3"] {
    z-index: 1;
    transform: translateX(260px) translateZ(-220px) rotateY(-28deg) scale(0.72);
    opacity: 0.35;
    filter: brightness(0.7);
  }

  .cf-card.exit-right {
    animation: exitRight 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  @keyframes exitRight {
    from { transform: translateX(0) translateZ(0) rotateY(0deg) scale(1); opacity: 1; filter: brightness(1); }
    to { transform: translateX(340px) translateZ(-100px) rotateY(-45deg) scale(0.6); opacity: 0; filter: brightness(1.2); }
  }
  .cf-card.exit-left {
    animation: exitLeft 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  @keyframes exitLeft {
    from { transform: translateX(0) translateZ(0) rotateY(0deg) scale(1); opacity: 1; filter: brightness(1); }
    to { transform: translateX(-340px) translateZ(-100px) rotateY(45deg) scale(0.6); opacity: 0; filter: brightness(1.2); }
  }

  /* Nav buttons — #f5c518 bg, black text */
  /* Navigation container */
.catalog-flip-widget .cf-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: #000;
    color: #fff;
    border: 2px solid #FFD400;
    border-radius: 6px;
    cursor: pointer;
    z-index: 100;
    transition: all .3s ease;
    clip-path: polygon(0 0,100% 0,100% calc(100% - 12px),calc(100% - 12px) 100%,0 100%);
}

.catalog-flip-widget .cf-nav-btn.prev{
    left: -40px;
}

.catalog-flip-widget .cf-nav-btn.next{
    right: -40px;
}

.catalog-flip-widget .cf-nav-btn:hover{
    background:#FFD400;
    color:#000;
    transform:translateY(-50%) scale(1.05);
    box-shadow:0 12px 36px rgba(255,212,0,.35);
}

.catalog-flip-widget .cf-nav-btn:active{
    transform:translateY(-50%) scale(.95);
}
  .cf-nav-btn svg {
    width: 20px;
    height: 20px;
  }
  .cf-nav-btn.prev { left: 8px; }
  .cf-nav-btn.next { right: 8px; }

  /* ===== STYLISH STRIP DOTS — #f5c518 theme ===== */
  .cf-strip-wrap {
    display: flex;
    justify-content: center;
    margin-top: 18px;
  }
  .cf-strip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 30px;
    background: rgba(245,197,24,0.06);
    border: 1px solid rgba(245,197,24,0.12);
    backdrop-filter: blur(12px);
  }
  .cf-strip-item {
    height: 4px;
    border-radius: 2px;
    background: rgba(245,197,24,0.18);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
  }
  .cf-strip-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    border-radius: 2px;
    background: #f5c518;
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .cf-strip-item.active {
    width: 32px;
    background: rgba(245,197,24,0.12);
  }
  .cf-strip-item.active::after {
    width: 100%;
  }
  .cf-strip-item:not(.active) {
    width: 12px;
  }
  .cf-strip-item:not(.active):hover {
    background: rgba(245,197,24,0.35);
  }
  .cf-strip-counter {
    font-size: 11px;
    color: #b89a3e;
    font-variant-numeric: tabular-nums;
    margin-left: 8px;
    padding-left: 10px;
    border-left: 1px solid rgba(245,197,24,0.15);
    letter-spacing: 0.05em;
  }
  .cf-strip-counter span {
    color: #f5c518;
    font-weight: 500;
  }

  .cf-hint {
    text-align: center;
    font-size: 12px;
    color: #b89a3e;
    margin-top: 16px;
  }

  @media (max-width: 560px) {
    .cf-card { width: 260px; height: 390px; margin-left: -130px; }
    .cf-card[data-pos="-3"] { transform: translateX(-180px) translateZ(-180px) rotateY(28deg) scale(0.68); }
    .cf-card[data-pos="-2"] { transform: translateX(-120px) translateZ(-120px) rotateY(22deg) scale(0.74); }
    .cf-card[data-pos="-1"] { transform: translateX(-60px) translateZ(-60px) rotateY(14deg) scale(0.82); }
    .cf-card[data-pos="1"] { transform: translateX(60px) translateZ(-60px) rotateY(-14deg) scale(0.82); }
    .cf-card[data-pos="2"] { transform: translateX(120px) translateZ(-120px) rotateY(-22deg) scale(0.74); }
    .cf-card[data-pos="3"] { transform: translateX(180px) translateZ(-180px) rotateY(-28deg) scale(0.68); }
    .cf-stage { height: 440px; }
    .cf-nav-btn { width: 38px; height: 38px; }
    .cf-nav-btn svg { width: 16px; height: 16px; }
    .cf-strip { padding: 8px 12px; gap: 5px; }
    .cf-strip-item.active { width: 26px; }
    .cf-strip-item:not(.active) { width: 10px; }
  }
  
  
  
  /* ============================================
   GLOBAL FUTURISTIC BUTTON - UNIQUE CLASS
   Class: .bfa-btn-futuristic-global
   Usage: <a class="bfa-btn-futuristic-global" href="#">
            <i class="fas fa-arrow-right"></i>
            <span class="bfa-btn-text">Button Text</span>
          </a>
   ============================================ */

.bfa-btn-futuristic-global {
    /* Layout & Positioning */
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    
    /* Sizing */
    height: 56px;
    padding: 0 32px;
    
    /* Typography */
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    
    /* Colors */
    background: #000000;
    color: #ffffff;
    
    /* Borders */
    border: 2px solid #FFD400;
    border-radius: 6px;
    
    /* Clip Path (Angled bottom-right corner) */
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
    background-clip: padding-box;
    
    /* Transitions */
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    
    /* Cursor & Interaction */
    cursor: pointer;
    
    /* Performance */
    will-change: transform, box-shadow, background-color, color;
    
    /* Box Shadow */
    box-shadow: 0 0 0 0 rgba(255, 212, 0, 0);
}

/* Icon Styles */
.bfa-btn-futuristic-global i {
    font-size: 1.1rem;
    color: #FFD400;
    transition: color 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

/* Text Span */
.bfa-btn-futuristic-global .bfa-btn-text {
    display: inline-block;
    transition: color 0.3s ease;
}

/* ===== HOVER STATE ===== */
.bfa-btn-futuristic-global:hover {
    background: #FFD400;
    color: #000000;
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(255, 212, 0, 0.35), 0 0 0 1px rgba(255, 212, 0, 0.2);
    border-color: #FFD400;
}

.bfa-btn-futuristic-global:hover i {
    color: #000000;
    transform: translateX(2px);
}

.bfa-btn-futuristic-global:hover .bfa-btn-text {
    color: #000000;
}

/* Glow Effect */
.bfa-btn-futuristic-global::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 8px;
    background: transparent;
    z-index: -1;
    transition: box-shadow 0.3s ease;
    pointer-events: none;
}

.bfa-btn-futuristic-global:hover::after {
    box-shadow: 0 0 28px 6px rgba(255, 212, 0, 0.25);
}

/* ===== ACTIVE STATE ===== */
.bfa-btn-futuristic-global:active {
    transform: translateY(0px) scale(0.97);
    box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(255, 212, 0, 0);
    background: #FFD400;
    color: #000000;
    border-color: #FFD400;
}

.bfa-btn-futuristic-global:active i {
    color: #000000;
}

.bfa-btn-futuristic-global:active .bfa-btn-text {
    color: #000000;
}

/* ===== FOCUS STATE (Accessibility) ===== */
.bfa-btn-futuristic-global:focus-visible {
    outline: 3px solid #FFD400;
    outline-offset: 3px;
}

/* ===== DISABLED STATE ===== */
.bfa-btn-futuristic-global:disabled,
.bfa-btn-futuristic-global.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(0.5);
}



 /* ensure carousel sits above texture */
        .carousel-unique-wrapper {
            position: relative;
            z-index: 1;
        }

        /* ----- unique wrapper & card classes ----- */
        .carousel-unique-wrapper .owl-stage { display: flex; align-items: stretch; }
        .carousel-unique-wrapper .owl-item { display: flex; height: auto; }

        /* card base – unique prefix "uc-" */
        .uc-card {
            height: 100%;
            min-height: 440px;
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
            transform: scale(0.88);
            box-shadow: 0 4px 12px rgba(0,0,0,0.4);
            border: 1px solid rgba(255,255,255,0.06);
        }
        .uc-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .uc-card .uc-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            transition: background 0.4s ease;
            backdrop-filter: blur(1px);
        }
        .uc-card:hover .uc-overlay { background: rgba(0, 0, 0, 0.35); }
        .uc-card:hover img { transform: scale(1.08); }

        .uc-content {
            position: absolute;
            bottom: 2.5rem;
            left: 2.5rem;
            z-index: 10;
            color: white;
        }
        .uc-content h2 {
            font-size: 2.2rem;
            line-height: 1.1;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
            text-shadow: 0 2px 12px rgba(0,0,0,0.7);
        }
        .uc-content h2 span { display: block; }

        .uc-play-btn {
            width: 44px;
            height: 44px;
            background-color: #f97316;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            transition: background 0.25s ease, transform 0.2s ease;
            box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
        }
        .uc-card:hover .uc-play-btn {
            background-color: #fb923c;
            transform: scale(1.04);
        }
        .uc-play-btn svg {
            width: 22px;
            height: 22px;
            fill: white;
            margin-left: 4px;
        }

        /* ---- ACTIVE ITEM (center) BIGGER – using unique classes ---- */
        .carousel-unique-wrapper .owl-item.active.center .uc-card {
            transform: scale(1.16) !important;
            box-shadow: 0 30px 60px -10px rgba(0,0,0,0.9), 0 0 0 1px rgba(249, 115, 22, 0.2);
            z-index: 10;
        }
        /* all other items (not active center) stay scaled down */
        .carousel-unique-wrapper .owl-item:not(.active.center) .uc-card {
            transform: scale(0.88);
        }
        /* active but not center (e.g. mobile 2 items) */
        .carousel-unique-wrapper .owl-item.active:not(.center) .uc-card {
            transform: scale(0.92);
        }

        /* ---- dots (unique override) ---- */
        .uc-dots .owl-dot span {
            background: #555 !important;
            width: 12px !important;
            height: 12px !important;
            margin: 0 5px !important;
            transition: background 0.2s;
        }
        .uc-dots .owl-dot.active span {
            background: #f97316 !important;
        }
        .carousel-unique-wrapper .owl-nav {
            display: block;
        }
        .carousel-unique-wrapper .owl-nav button {
            background: rgba(249, 115, 22, 0.15) !important;
            border-radius: 50% !important;
            width: 44px !important;
            height: 44px !important;
            transition: background 0.3s ease;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(249, 115, 22, 0.2) !important;
        }
        .carousel-unique-wrapper .owl-nav button:hover {
            background: rgba(249, 115, 22, 0.35) !important;
        }
        .carousel-unique-wrapper .owl-nav button span {
            font-size: 28px !important;
            color: #fff !important;
            line-height: 1;
        }

        /* spacing */
        .carousel-unique-wrapper .owl-item { padding: 0 8px; }
        .carousel-unique-wrapper .owl-stage-outer { padding: 20px 0; }
        
       .carousel-unique-wrapper .owl-nav
       {
           display:none !important;
       }

        @media (max-width: 640px) {
            .uc-content h2 { font-size: 1.8rem; }
            .uc-content { bottom: 1.8rem; left: 1.8rem; }
            .uc-play-btn { width: 38px; height: 38px; }
            .uc-play-btn svg { width: 18px; height: 18px; }
            .carousel-unique-wrapper .owl-item.active.center .uc-card {
                transform: scale(1.0) !important;
            }
            .carousel-unique-wrapper .owl-item:not(.active.center) .uc-card {
                transform: scale(0.92);
            }
            .carousel-unique-wrapper .owl-nav button {
                width: 34px !important;
                height: 34px !important;
            }
            .carousel-unique-wrapper .owl-nav button span {
                font-size: 22px !important;
            }
        }
        
        
        
        
        
        
        /* Hide default nav text */
.bfa-slider-nav-master.owl-carousel .owl-nav button span {
    display: none !important;
}

/* Navigation container - positioned outside the slider */
.bfa-slider-nav-master.owl-carousel .owl-nav {
    position: absolute !important;
    top: 50% !important;
    left: -40px !important;
    right: -40px !important;
    transform: translateY(-50%);
    display: flex !important;
    justify-content: space-between !important;
    pointer-events: none;
    z-index: 30;
    margin: 0;
    padding: 0;
    width: calc(100% + 80px) !important;
}

/* Individual nav buttons - clipped corner design */
.bfa-slider-nav-master.owl-carousel .owl-nav button.owl-prev,
.bfa-slider-nav-master.owl-carousel .owl-nav button.owl-next {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: #000000 !important;
    color: #ffffff;
    border: 2px solid #FFD400 !important;
    border-radius: 6px !important;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 0 0 0 rgba(255, 212, 0, 0);
    /* Clipped corner effect */
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
    margin: 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
    flex-shrink: 0;
}

/* Arrow icons using pseudo-elements */
.bfa-slider-nav-master.owl-carousel .owl-nav button.owl-prev::after,
.bfa-slider-nav-master.owl-carousel .owl-nav button.owl-next::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    border-style: solid;
    border-color: #FFD400;
    border-width: 0 0 3px 3px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

/* Left arrow - rotated to point left */
.bfa-slider-nav-master.owl-carousel .owl-nav button.owl-prev::after {
    transform: rotate(45deg);
    margin-left: 4px;
}

/* Right arrow - rotated to point right */
.bfa-slider-nav-master.owl-carousel .owl-nav button.owl-next::after {
    transform: rotate(225deg);
    margin-right: 4px;
}

/* Hover state - yellow background with lift effect */
.bfa-slider-nav-master.owl-carousel .owl-nav button:hover {
    background: #FFD400 !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 36px rgba(255, 212, 0, 0.35), 0 0 0 1px rgba(255, 212, 0, 0.2);
    border-color: #FFD400 !important;
}

/* Arrow color changes on hover */
.bfa-slider-nav-master.owl-carousel .owl-nav button:hover::after {
    border-color: #000000;
}

/* Left arrow - subtle slide on hover */
.bfa-slider-nav-master.owl-carousel .owl-nav button.owl-prev:hover::after {
    transform: rotate(45deg) translateX(-2px);
}

/* Right arrow - subtle slide on hover */
.bfa-slider-nav-master.owl-carousel .owl-nav button.owl-next:hover::after {
    transform: rotate(225deg) translateX(2px);
}

/* Active/Click state - pressed effect */
.bfa-slider-nav-master.owl-carousel .owl-nav button:active {
    transform: translateY(0px) scale(0.95);
    box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(255, 212, 0, 0);
    background: #FFD400 !important;
    border-color: #FFD400 !important;
}

.bfa-slider-nav-master.owl-carousel .owl-nav button:active::after {
    border-color: #000000;
}

/* Disabled state - when at first/last slide */
.bfa-slider-nav-master.owl-carousel .owl-nav .disabled {
    opacity: 0.3 !important;
    cursor: not-allowed;
    pointer-events: none;
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .bfa-slider-nav-master.owl-carousel .owl-nav {
        left: -20px !important;
        right: -20px !important;
        width: calc(100% + 40px) !important;
    }
    .bfa-slider-nav-master.owl-carousel .owl-nav button.owl-prev,
    .bfa-slider-nav-master.owl-carousel .owl-nav button.owl-next {
        width: 44px;
        height: 44px;
    }
    .bfa-slider-nav-master.owl-carousel .owl-nav button.owl-prev::after,
    .bfa-slider-nav-master.owl-carousel .owl-nav button.owl-next::after {
        width: 14px;
        height: 14px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .bfa-slider-nav-master.owl-carousel .owl-nav {
        left: -10px !important;
        right: -10px !important;
        width: calc(100% + 20px) !important;
        top: 50% !important;
    }
    .bfa-slider-nav-master.owl-carousel .owl-nav button.owl-prev,
    .bfa-slider-nav-master.owl-carousel .owl-nav button.owl-next {
        width: 36px;
        height: 36px;
        border-width: 1.5px !important;
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
        -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
    }
    .bfa-slider-nav-master.owl-carousel .owl-nav button.owl-prev::after,
    .bfa-slider-nav-master.owl-carousel .owl-nav button.owl-next::after {
        width: 12px;
        height: 12px;
        border-width: 0 0 2.5px 2.5px;
    }
}