        :root {
            --primary-color: #014E9A;
            --secondary-color: #0170BF;
            --accent-color: #00A8E8;
            --white: #ffffff;
            --dark-gray: #2a2a2a;
            --light-gray: #f8f9fa;
            --text-gray: #666;
        }

        /* Remove any gaps or lines above banner section */
        #bn-banner-section {
            margin-top: 0 !important;
            padding-top: 0 !important;
            border-top: none !important;
            position: relative;
        }

        /* Ensure no gap between header and banner */
        body {
            margin: 0;
            padding: 0;
        }

        .bn-banner-section {
            margin: 0;
            padding: 0;
        }

        /* Remove header shadow that might appear as a line */
        .header-area {
            box-shadow: none !important;
        }

        .background-header {
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15) !important;
        }


        .bn-banner-section {
            margin: 0;
            padding: 0;
        }

        .bn-main-banner {
            min-height: 100vh;
            height: auto;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 120px 0 80px;
            margin: 0;
        }

        /* Parallax Background Layers */
        .bn-parallax-layer {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .bn-parallax-shape {
            position: absolute;
            border-radius: 50%;
            transition: transform 0.3s ease-out;
        }

        .bn-shape-1 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(1, 78, 154, 0.08) 0%, transparent 70%);
            top: -150px;
            right: -150px;
            animation: float 6s ease-in-out infinite;
        }

        .bn-shape-2 {
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(1, 112, 191, 0.06) 0%, transparent 70%);
            bottom: -100px;
            left: -100px;
            animation: float 8s ease-in-out infinite reverse;
        }

        .bn-shape-3 {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(0, 168, 232, 0.05) 0%, transparent 70%);
            top: 40%;
            left: 10%;
            animation: float 7s ease-in-out infinite;
        }

        .bn-shape-4 {
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(1, 78, 154, 0.04) 0%, transparent 70%);
            bottom: 20%;
            right: 15%;
            animation: float 9s ease-in-out infinite reverse;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) scale(1);
            }

            50% {
                transform: translateY(-20px) scale(1.03);
            }
        }

        .bn-main-banner .container {
            position: relative;
            z-index: 2;
        }

        .bn-owl-carousel .item {
            padding: 0;
        }

        /* Ensure Owl Carousel works properly */
        .bn-owl-carousel.owl-carousel .owl-stage-outer {
            overflow: hidden;
            position: relative;
        }

        .bn-owl-carousel.owl-carousel .owl-stage {
            display: flex;
            align-items: center;
        }

        .bn-owl-carousel.owl-carousel .owl-stage-outer {
            overflow: visible !important;
        }

        .bn-owl-carousel.owl-carousel .owl-item {
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            opacity: 1;
        }

        .bn-owl-carousel.owl-carousel .owl-item.active {
            opacity: 1;
        }

        .bn-owl-carousel.owl-carousel .owl-item:not(.active) {
            opacity: 0;
        }

        .bn-header-text {
            position: relative;
            width: 100%;
        }

        /* ENHANCED SMOOTH ANIMATIONS */

        /* Subtitle Animation - Slide from Left */
        .bn-owl-carousel .owl-item.active .bn-header-text h6 {
            animation: slideFromLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
        }

        /* Main Heading Animation - Fade Scale Up */
        .bn-owl-carousel .owl-item.active .bn-header-text h2 {
            animation: fadeScaleUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
        }

        /* Emphasized words animation */
        .bn-owl-carousel .owl-item.active .bn-header-text h2 em,
        .bn-owl-carousel .owl-item.active .bn-header-text h2 span {
            animation: highlightPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s both;
        }

        /* Paragraph Animation - Fade from Bottom */
        .bn-owl-carousel .owl-item.active .bn-header-text p {
            animation: fadeFromBottom 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
        }

        /* Buttons Container Animation */
        .bn-owl-carousel .owl-item.active .bn-down-buttons {
            animation: fadeFromBottom 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s both;
        }

        /* Individual Button Animations */
        .bn-owl-carousel .owl-item.active .bn-main-blue-button-hover {
            animation: bounceScaleIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s both;
        }

        .bn-owl-carousel .owl-item.active .bn-call-button {
            animation: bounceScaleIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 1.05s both;
        }

        /* KEYFRAME ANIMATIONS */

        /* Slide from Left */
        @keyframes slideFromLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Fade Scale Up */
        @keyframes fadeScaleUp {
            from {
                opacity: 0;
                transform: translateY(20px) scale(0.95);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Fade from Bottom */
        @keyframes fadeFromBottom {
            from {
                opacity: 0;
                transform: translateY(25px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Highlight Pop - For emphasized text */
        @keyframes highlightPop {
            0% {
                opacity: 0;
                transform: scale(0.8);
            }

            50% {
                transform: scale(1.08);
            }

            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Bounce Scale In - For Buttons */
        @keyframes bounceScaleIn {
            0% {
                opacity: 0;
                transform: scale(0.5);
            }

            50% {
                opacity: 1;
                transform: scale(1.1);
            }

            70% {
                transform: scale(0.95);
            }

            100% {
                transform: scale(1);
            }
        }

        /* Reset for non-active slides */
        .bn-owl-carousel .owl-item:not(.active) .bn-header-text h6,
        .bn-owl-carousel .owl-item:not(.active) .bn-header-text h2,
        .bn-owl-carousel .owl-item:not(.active) .bn-header-text p,
        .bn-owl-carousel .owl-item:not(.active) .bn-down-buttons {
            opacity: 0;
        }

        /* Prevent white lines during transition */
        .bn-owl-carousel.owl-carousel {
            position: relative;
            background: transparent;
        }

        .bn-owl-carousel .owl-stage-outer {
            background: transparent;
        }

        .bn-header-text h6 {
            color: var(--secondary-color);
            font-size: clamp(11px, 2vw, 14px);
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            position: relative;
            display: inline-block;
            padding-left: clamp(35px, 5vw, 50px);
        }

        .bn-header-text h6::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }

        .bn-header-text h2 {
            color: var(--dark-gray);
            font-size: clamp(24px, 5vw, 48px);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 18px;
            overflow: hidden;
        }

        .bn-header-text h2 em {
            color: var(--primary-color);
            font-style: normal;
            position: relative;
            display: inline-block;
        }

        .bn-header-text h2 em::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            opacity: 0.15;
            border-radius: 3px;
        }

        .bn-header-text h2 span {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-style: normal;
            display: inline-block;
            position: relative;
        }

        /* Text reveal animation */
        .bn-owl-carousel .owl-item.active .bn-header-text h2 em,
        .bn-owl-carousel .owl-item.active .bn-header-text h2 span {
            animation: textReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
        }

        @keyframes textReveal {
            from {
                opacity: 0;
                transform: translateY(100%);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .bn-header-text p {
            color: var(--text-gray);
            font-size: clamp(13px, 2vw, 16px);
            line-height: 1.7;
            margin-bottom: clamp(25px, 4vw, 35px);
            max-width: 100%;
        }

        .bn-down-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            align-items: center;
        }

        /* Button hover effects with ripple */
        .bn-main-blue-button-hover {
            position: relative;
            overflow: hidden;
        }

        .bn-main-blue-button-hover a {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: var(--white);
            padding: 16px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.4s ease;
            display: inline-block;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .bn-main-blue-button-hover a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
            transition: left 0.4s ease;
            z-index: -1;
        }

        .bn-main-blue-button-hover a::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .bn-main-blue-button-hover a:hover::before {
            left: 0;
        }

        .bn-main-blue-button-hover a:hover::after {
            width: 300px;
            height: 300px;
        }

        .bn-main-blue-button-hover a:hover {
            transform: translateY(-3px);
        }

        /* Secondary Button Style */
        .bn-secondary-button-hover {
            position: relative;
            overflow: hidden;
        }

        .bn-secondary-button-hover a {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            padding: 14px 34px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.4s ease;
            display: inline-block;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .bn-secondary-button-hover a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            transition: left 0.4s ease;
            z-index: -1;
        }

        .bn-secondary-button-hover a::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .bn-secondary-button-hover a:hover::before {
            left: 0;
        }

        .bn-secondary-button-hover a:hover::after {
            width: 300px;
            height: 300px;
        }

        .bn-secondary-button-hover a:hover {
            color: white;
            transform: translateY(-3px);
        }

        .bn-call-button {
            position: relative;
        }

        .bn-call-button a {
            color: var(--primary-color);
            padding: 16px 32px;
            border: 2px solid var(--primary-color);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        .bn-call-button a::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: var(--primary-color);
            transform: translate(-50%, -50%);
            transition: width 0.5s, height 0.5s;
            z-index: -1;
        }

        .bn-call-button a:hover::before {
            width: 300px;
            height: 300px;
        }

        .bn-call-button a:hover {
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(1, 78, 154, 0.3);
        }

        .bn-call-button a i {
            transition: transform 0.3s ease;
            font-size: 14px;
        }

        .bn-call-button a:hover i {
            transform: rotate(15deg) scale(1.1);
            animation: phoneRing 0.5s ease-in-out;
        }

        @keyframes phoneRing {

            0%,
            100% {
                transform: rotate(0deg);
            }

            25% {
                transform: rotate(15deg);
            }

            50% {
                transform: rotate(-15deg);
            }

            75% {
                transform: rotate(10deg);
            }
        }

        .bn-right-image {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
            padding: 20px;
        }

        .bn-image-container {
            position: relative;
            width: 100%;
            max-width: min(500px, 90vw);
            height: auto;
            aspect-ratio: 1/1;
            transition: transform 0.3s ease-out;
        }

        /* Initial load animation */
        .bn-image-container {
            animation: imageInitialLoad 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
        }

        @keyframes imageInitialLoad {
            from {
                opacity: 0;
                transform: scale(0.9) translateY(30px);
            }

            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        /* Image animations on carousel change */
        .bn-image-container.animate-slide-1 {
            animation: imageSlideFromRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
        }

        .bn-image-container.animate-slide-2 {
            animation: imageZoomIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
        }

        .bn-image-container.animate-slide-3 {
            animation: imageSlideFromLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
        }

        /* Slide from Right */
        @keyframes imageSlideFromRight {
            from {
                opacity: 0;
                transform: translateX(60px) scale(0.95);
            }

            to {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
        }

        /* Slide from Left */
        @keyframes imageSlideFromLeft {
            from {
                opacity: 0;
                transform: translateX(-60px) scale(0.95);
            }

            to {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
        }

        /* Zoom In */
        @keyframes imageZoomIn {
            from {
                opacity: 0;
                transform: scale(0.85);
            }

            50% {
                transform: scale(1.03);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Decorative elements animations */
        .bn-image-container .bn-gradient-blob {
            animation: blobFloat 8s ease-in-out infinite;
        }

        .bn-image-container .bn-blob-1 {
            animation-delay: 0s;
        }

        .bn-image-container .bn-blob-2 {
            animation-delay: 2s;
        }

        @keyframes blobFloat {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            33% {
                transform: translate(15px, -15px) scale(1.1);
            }

            66% {
                transform: translate(-10px, 10px) scale(0.9);
            }
        }

        /* Decorative circles pulse */
        .bn-image-container .bn-decorative-circle {
            animation: circlePulse 4s ease-in-out infinite;
        }

        .bn-image-container .bn-circle-1 {
            animation-delay: 0s;
        }

        .bn-image-container .bn-circle-2 {
            animation-delay: 1.3s;
        }

        .bn-image-container .bn-circle-3 {
            animation-delay: 2.6s;
        }

        @keyframes circlePulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.3;
            }

            50% {
                transform: scale(1.15);
                opacity: 0.6;
            }
        }

        /* Decorative dots rotation */
        .bn-image-container .bn-decorative-dots {
            animation: dotsRotate 20s linear infinite;
        }

        @keyframes dotsRotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        /* Play button enhanced animation */
        .bn-play-button {
            animation: playButtonAppear 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s both;
        }

        @keyframes playButtonAppear {
            0% {
                opacity: 0;
                transform: scale(0);
            }

            50% {
                transform: scale(1.2);
            }

            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Shine effect animation */
        .bn-shine-effect {
            animation: shineMove 6s ease-in-out infinite;
        }

        @keyframes shineMove {
            0% {
                left: -100%;
            }

            20%,
            100% {
                left: 150%;
            }
        }

        .bn-main-image {
            position: relative;
            width: 100%;
            height: 100%;
            clip-path: url(#bn-clipShape);
            background: linear-gradient(135deg, rgba(1, 78, 154, 0.05) 0%, rgba(1, 112, 191, 0.03) 100%);
            overflow: hidden;
            box-shadow:
                0 30px 80px rgba(1, 78, 154, 0.25),
                0 15px 40px rgba(0, 168, 232, 0.15),
                inset 0 0 0 1px rgba(255, 255, 255, 0.1);
            filter: drop-shadow(0 10px 30px rgba(1, 78, 154, 0.2));
        }

        .bn-main-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
            opacity: 0.06;
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 0.06;
            }

            50% {
                opacity: 0.10;
            }
        }

        .bn-main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: relative;
            z-index: 2;
            transition: opacity 0.3s ease;
        }



        .bn-play-button {
            position: absolute;
            bottom: 20px;
            right: 30px;
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: 0 12px 35px rgba(1, 78, 154, 0.35);
            animation: playPulse 2s ease-in-out infinite;
            transition: all 0.3s ease;
            z-index: 100;
            pointer-events: auto;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
        }

        /* Template mode: center the play button */
        .bn-play-button[data-mode="template"] {
            top: 50%;
            left: 50%;
            right: auto;
            bottom: auto;
            transform: translate(-50%, -50%);
        }

        .bn-play-button::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            animation: ripple 2s ease-out infinite;
            opacity: 0;
        }

        @keyframes playPulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        @keyframes ripple {
            0% {
                transform: scale(1);
                opacity: 0.6;
            }

            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        .bn-play-button:hover {
            box-shadow: 0 15px 45px rgba(1, 78, 154, 0.45);
        }

        .bn-play-button[data-mode="template"]:hover {
            transform: translate(-50%, -50%) scale(1.1);
        }

        .bn-play-button[data-mode="custom"]:hover {
            transform: translate(-50%, -50%) scale(1.1);
        }

        .bn-play-button i {
            color: var(--white);
            font-size: 26px;
            position: relative;
            z-index: 11;
        }



        .bn-decorative-dots {
            position: absolute;
            width: 80px;
            height: 80px;
            bottom: 40px;
            left: -15px;
            background-image: radial-gradient(circle, var(--primary-color) 2px, transparent 2px);
            background-size: 18px 18px;
            opacity: 0.25;
            animation: rotate 20s linear infinite;
        }

        .bn-decorative-circle {
            position: absolute;
            border-radius: 50%;
            border: 3px solid;
            animation: pulse-border 3s ease-in-out infinite;
        }

        .bn-circle-1 {
            width: 120px;
            height: 120px;
            top: -20px;
            right: 60px;
            border-color: rgba(1, 112, 191, 0.3);
            animation-delay: 0s;
        }

        .bn-circle-2 {
            width: 80px;
            height: 80px;
            bottom: 150px;
            left: -30px;
            border-color: rgba(0, 168, 232, 0.25);
            animation-delay: 1s;
        }

        .bn-circle-3 {
            width: 60px;
            height: 60px;
            top: 50%;
            right: -20px;
            border-color: rgba(1, 78, 154, 0.2);
            animation-delay: 2s;
        }

        @keyframes pulse-border {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.3;
            }

            50% {
                transform: scale(1.1);
                opacity: 0.6;
            }
        }

        .bn-gradient-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.15;
            animation: blob-float 8s ease-in-out infinite;
        }

        .bn-blob-1 {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            top: -50px;
            right: -50px;
            animation-delay: 0s;
        }

        .bn-blob-2 {
            width: 180px;
            height: 180px;
            background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
            bottom: -40px;
            left: -40px;
            animation-delay: 2s;
        }

        @keyframes blob-float {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            33% {
                transform: translate(20px, -20px) scale(1.1);
            }

            66% {
                transform: translate(-15px, 15px) scale(0.9);
            }
        }

        .bn-shine-effect {
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg,
                    transparent 0%,
                    rgba(255, 255, 255, 0.3) 50%,
                    transparent 100%);
            transform: skewX(-20deg);
            animation: shine 6s ease-in-out infinite;
        }

        @keyframes shine {
            0% {
                left: -100%;
            }

            20%,
            100% {
                left: 150%;
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .bn-owl-carousel .owl-nav {
            position: absolute;
            bottom: -80px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
        }

        .bn-owl-carousel .owl-nav button {
            position: relative;
            background: var(--white) !important;
            color: var(--primary-color) !important;
            border: 2px solid var(--primary-color) !important;
            border-radius: 50% !important;
            width: 50px !important;
            height: 50px !important;
            font-size: 18px !important;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 5px 20px rgba(1, 78, 154, 0.15);
            overflow: hidden;
        }

        .bn-owl-carousel .owl-nav button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: var(--primary-color);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.4s ease, height 0.4s ease;
            z-index: -1;
        }

        .bn-owl-carousel .owl-nav button:hover::before {
            width: 120%;
            height: 120%;
        }

        .bn-owl-carousel .owl-nav button:hover {
            color: var(--white) !important;
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 30px rgba(1, 78, 154, 0.3);
            border-color: var(--primary-color) !important;
        }

        .bn-owl-carousel .owl-nav button i {
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }

        .bn-owl-carousel .owl-nav button:hover i {
            transform: scale(1.2);
        }

        /* Add animation on appear */
        .bn-owl-carousel .owl-nav button {
            animation: navButtonPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
        }

        .bn-owl-carousel .owl-nav button:first-child {
            animation-delay: 1.2s;
        }

        .bn-owl-carousel .owl-nav button:last-child {
            animation-delay: 1.35s;
        }

        @keyframes navButtonPop {
            0% {
                opacity: 0;
                transform: scale(0) translateY(-20px);
            }

            50% {
                transform: scale(1.15) translateY(0);
            }

            100% {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .bn-owl-carousel .owl-dots {
            text-align: center;
            margin-top: 50px;
            position: relative;
            z-index: 5;
        }

        .bn-owl-carousel .owl-dots .owl-dot {
            display: inline-block;
            margin: 0 6px;
        }

        .bn-owl-carousel .owl-dots .owl-dot span {
            display: block;
            width: 10px;
            height: 10px;
            background: rgba(1, 78, 154, 0.25);
            border-radius: 50%;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
        }

        .bn-owl-carousel .owl-dots .owl-dot span::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            border: 2px solid transparent;
            border-radius: 50%;
            transition: all 0.4s ease;
        }

        .bn-owl-carousel .owl-dots .owl-dot.active span {
            background: var(--primary-color);
            width: 12px;
            height: 12px;
            box-shadow: 0 0 0 4px rgba(1, 78, 154, 0.15);
        }

        .bn-owl-carousel .owl-dots .owl-dot.active span::before {
            border-color: var(--primary-color);
            animation: dotPulse 2s ease-in-out infinite;
        }

        .bn-owl-carousel .owl-dots .owl-dot:hover span {
            background: var(--secondary-color);
            transform: scale(1.3);
        }

        @keyframes dotPulse {

            0%,
            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }

            50% {
                transform: translate(-50%, -50%) scale(1.5);
                opacity: 0;
            }
        }

        /* Dots appear animation */
        .bn-owl-carousel .owl-dots .owl-dot {
            animation: dotFadeIn 0.5s ease both;
        }

        .bn-owl-carousel .owl-dots .owl-dot:nth-child(1) {
            animation-delay: 1.5s;
        }

        .bn-owl-carousel .owl-dots .owl-dot:nth-child(2) {
            animation-delay: 1.6s;
        }

        .bn-owl-carousel .owl-dots .owl-dot:nth-child(3) {
            animation-delay: 1.7s;
        }

        @keyframes dotFadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .bn-video-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.92);
            backdrop-filter: blur(8px);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
            padding: 20px;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .bn-video-modal.active {
            display: flex;
        }

        .bn-video-modal-content {
            position: relative;
            background: #000;
            border-radius: 20px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
            animation: scaleIn 0.3s ease;
        }

        @keyframes scaleIn {
            from {
                transform: scale(0.9);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Portrait mode - Reels IG style (9:16) */
        .bn-video-modal-content.portrait {
            width: 90%;
            max-width: 420px;
            height: 75vh;
            max-height: 750px;
        }

        /* Landscape mode - Horizontal */
        .bn-video-modal-content.landscape {
            width: 90%;
            max-width: 1200px;
            aspect-ratio: 16/9;
        }
        
        .bn-video-modal-content.landscape #bn-videoContainer {
            width: 100%;
            height: 100%;
            aspect-ratio: 16/9;
        }

        .bn-video-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            color: white;
            font-size: 32px;
            cursor: pointer;
            z-index: 10001;
            transition: all 0.3s ease;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.7);
            border-radius: 50%;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .bn-video-modal-close:hover {
            background: rgba(0, 0, 0, 0.85);
            border-color: rgba(255, 255, 255, 0.8);
        }

        .bn-video-modal-close::after {
            content: 'Tutup';
            position: absolute;
            bottom: -35px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.5px;
            opacity: 0.8;
            white-space: nowrap;
            background: rgba(0, 0, 0, 0.6);
            padding: 5px 12px;
            border-radius: 20px;
        }

        .bn-video-modal iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 20px;
            display: block;
        }

        #bn-videoContainer {
            width: 100%;
            height: 100%;
            display: block;
            position: relative;
        }

        /* Mobile adjustments */
        @media (max-width: 768px) {
            .bn-video-modal {
                padding: 15px;
            }

            .bn-video-modal-content.portrait {
                width: 95%;
                max-width: 100%;
                height: 70vh;
            }

            .bn-video-modal-content.landscape {
                width: 95%;
                max-width: 100%;
                aspect-ratio: 16/9;
            }
            
            .bn-video-modal-content.landscape #bn-videoContainer {
                aspect-ratio: 16/9;
            }

            .bn-video-modal-close {
                top: 12px;
                right: 12px;
                width: 45px;
                height: 45px;
                font-size: 28px;
                background: rgba(0, 0, 0, 0.8);
                border: 2px solid rgba(255, 255, 255, 0.6);
            }

            .bn-video-modal-close::after {
                bottom: -32px;
                font-size: 10px;
                padding: 4px 10px;
            }
        }

        /* Very small mobile */
        @media (max-width: 576px) {
            .bn-video-modal-content.portrait {
                height: 65vh;
            }

            .bn-video-modal-close {
                top: 10px;
                right: 10px;
                width: 42px;
                height: 42px;
                font-size: 24px;
                background: rgba(0, 0, 0, 0.85);
            }

            .bn-video-modal-close::after {
                display: none;
            }
        }

        @media (max-width: 1400px) {
            .bn-owl-carousel .owl-nav {
                bottom: -70px;
            }
        }

        @media (max-width: 1200px) {
            .bn-owl-carousel .owl-nav {
                bottom: -65px;
            }

            .bn-owl-carousel .owl-nav button {
                width: 48px !important;
                height: 48px !important;
                font-size: 16px !important;
            }

            .bn-play-button {
                width: clamp(55px, 8vw, 65px);
                height: clamp(55px, 8vw, 65px);
            }

            .bn-play-button i {
                font-size: clamp(20px, 3vw, 26px);
            }

            .bn-image-container {
                max-width: min(450px, 85vw);
            }
        }

        @media (max-width: 992px) {
            .bn-owl-carousel .item {
                padding: 40px 0;
            }

            .bn-image-container {
                max-width: min(400px, 80vw);
            }

            .bn-play-button {
                width: clamp(50px, 7vw, 60px);
                height: clamp(50px, 7vw, 60px);
            }

            .bn-play-button i {
                font-size: clamp(18px, 2.5vw, 22px);
            }

            .bn-owl-carousel .owl-nav {
                bottom: -60px;
            }
        }

        @media (max-width: 768px) {
            .bn-main-banner {
                min-height: auto;
                padding: 100px 0 60px;
            }

            .bn-header-text h6::before {
                width: clamp(25px, 4vw, 35px);
            }

            .bn-down-buttons {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
                width: 100%;
            }

            .bn-main-blue-button-hover,
            .bn-secondary-button-hover,
            .bn-call-button {
                width: 100%;
            }

            .bn-main-blue-button-hover a,
            .bn-secondary-button-hover a,
            .bn-call-button a {
                width: 100%;
                text-align: center;
                justify-content: center;
                padding: clamp(12px, 3vw, 16px) clamp(24px, 5vw, 36px);
                font-size: clamp(12px, 2.5vw, 14px);
            }

            .bn-owl-carousel .owl-nav {
                bottom: -55px;
            }

            .bn-owl-carousel .owl-nav button {
                width: 44px !important;
                height: 44px !important;
                font-size: 16px !important;
            }

            .bn-right-image {
                display: none;
            }

            .bn-video-modal-content {
                max-width: 100%;
            }

            .bn-video-modal-close {
                top: 15px;
                right: 15px;
                width: 40px;
                height: 40px;
                font-size: 24px;
            }

            .bn-owl-carousel .owl-dots {
                display: none !important;
            }
        }

        @media (max-width: 576px) {
            .bn-main-banner {
                min-height: auto;
                padding: 90px 0 50px;
            }

            .bn-header-text h2 {
                line-height: 1.3;
                margin-bottom: clamp(14px, 3vw, 18px);
            }

            .bn-header-text h6 {
                margin-bottom: clamp(14px, 3vw, 18px);
            }

            .bn-header-text h6::before {
                width: clamp(25px, 4vw, 35px);
            }

            /* Hide navigation buttons on mobile, only show dots */
            .bn-owl-carousel .owl-nav {
                display: none;
            }

            .bn-down-buttons {
                width: 100%;
                gap: 10px;
            }

            .bn-owl-carousel .item {
                padding: 20px 0;
            }

            .bn-owl-carousel .owl-dots {
                display: none !important;
            }
        }

        /* ============================================
           MOBILE VIDEO SECTION - CLEAN & RESPONSIVE
           ============================================ */

        .bn-mobile-video-section {
            padding: 40px 0 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 30px;
        }

        .bn-mobile-video-container {
            position: relative;
            width: 100%;
            max-width: 450px;
            margin: 0 auto;
        }

        .bn-mobile-video-thumbnail {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 
                0 20px 60px rgba(1, 78, 154, 0.25),
                0 10px 30px rgba(0, 168, 232, 0.15);
            background: linear-gradient(135deg, rgba(1, 78, 154, 0.05) 0%, rgba(1, 112, 191, 0.03) 100%);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .bn-mobile-video-thumbnail:hover {
            transform: translateY(-5px);
            box-shadow: 
                0 25px 70px rgba(1, 78, 154, 0.3),
                0 15px 40px rgba(0, 168, 232, 0.2);
        }

        .bn-mobile-video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease, opacity 0.3s ease;
        }

        .bn-mobile-video-thumbnail:hover img {
            transform: scale(1.05);
        }

        .bn-mobile-play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                135deg,
                rgba(1, 78, 154, 0.7) 0%,
                rgba(1, 112, 191, 0.6) 50%,
                rgba(0, 168, 232, 0.7) 100%
            );
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 15px;
            cursor: pointer;
            transition: all 0.4s ease;
            backdrop-filter: blur(2px);
        }

        .bn-mobile-play-overlay:hover {
            background: linear-gradient(
                135deg,
                rgba(1, 78, 154, 0.8) 0%,
                rgba(1, 112, 191, 0.75) 50%,
                rgba(0, 168, 232, 0.8) 100%
            );
            backdrop-filter: blur(3px);
        }

        .bn-mobile-play-button {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 
                0 10px 40px rgba(0, 0, 0, 0.3),
                0 0 0 0 rgba(255, 255, 255, 0.4);
            animation: mobilePulse 2s ease-in-out infinite;
            transition: all 0.3s ease;
        }

        .bn-mobile-play-overlay:hover .bn-mobile-play-button {
            transform: scale(1.15);
            box-shadow: 
                0 15px 50px rgba(0, 0, 0, 0.4),
                0 0 0 15px rgba(255, 255, 255, 0.2);
        }

        .bn-mobile-play-button i {
            color: var(--primary-color);
            font-size: 32px;
            margin-left: 5px;
            transition: all 0.3s ease;
        }

        .bn-mobile-play-overlay:hover .bn-mobile-play-button i {
            color: var(--secondary-color);
            transform: scale(1.1);
        }

        @keyframes mobilePulse {
            0%, 100% {
                box-shadow: 
                    0 10px 40px rgba(0, 0, 0, 0.3),
                    0 0 0 0 rgba(255, 255, 255, 0.4);
            }
            50% {
                box-shadow: 
                    0 10px 40px rgba(0, 0, 0, 0.3),
                    0 0 0 20px rgba(255, 255, 255, 0);
            }
        }

        .bn-mobile-play-text {
            color: white;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            opacity: 0.95;
        }

        .bn-mobile-play-overlay:hover .bn-mobile-play-text {
            opacity: 1;
            transform: translateY(-3px);
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        }

        /* Tablet Responsive */
        @media (max-width: 768px) {
            .bn-mobile-video-section {
                padding: 35px 0 25px;
                margin-top: 25px;
            }

            .bn-mobile-video-container {
                max-width: 400px;
            }

            .bn-mobile-video-thumbnail {
                border-radius: 18px;
            }

            .bn-mobile-play-button {
                width: 75px;
                height: 75px;
            }

            .bn-mobile-play-button i {
                font-size: 30px;
            }

            .bn-mobile-play-text {
                font-size: 15px;
                letter-spacing: 1.2px;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 576px) {
            .bn-mobile-video-section {
                padding: 30px 0 20px;
                margin-top: 20px;
            }

            .bn-mobile-video-container {
                max-width: 100%;
                padding: 0 5px;
            }

            .bn-mobile-video-thumbnail {
                border-radius: 16px;
                box-shadow: 
                    0 15px 50px rgba(1, 78, 154, 0.2),
                    0 8px 25px rgba(0, 168, 232, 0.12);
            }

            .bn-mobile-play-button {
                width: 70px;
                height: 70px;
            }

            .bn-mobile-play-button i {
                font-size: 28px;
            }

            .bn-mobile-play-text {
                font-size: 14px;
                letter-spacing: 1px;
            }
        }

        /* Small Mobile Responsive */
        @media (max-width: 480px) {
            .bn-mobile-video-section {
                padding: 25px 0 15px;
                margin-top: 15px;
            }

            .bn-mobile-video-thumbnail {
                border-radius: 14px;
            }

            .bn-mobile-play-button {
                width: 65px;
                height: 65px;
            }

            .bn-mobile-play-button i {
                font-size: 26px;
            }

            .bn-mobile-play-text {
                font-size: 13px;
                letter-spacing: 0.8px;
            }
        }

        /* Extra Small Mobile Responsive */
        @media (max-width: 400px) {
            .bn-mobile-video-section {
                padding: 20px 0 12px;
                margin-top: 12px;
            }

            .bn-mobile-video-thumbnail {
                border-radius: 12px;
            }

            .bn-mobile-play-button {
                width: 60px;
                height: 60px;
            }

            .bn-mobile-play-button i {
                font-size: 24px;
                margin-left: 4px;
            }

            .bn-mobile-play-text {
                font-size: 12px;
                letter-spacing: 0.6px;
            }
        }

        /* Carousel Image Styling */
        .bn-image-carousel.owl-carousel {
            position: relative;
            background: transparent;
        }

        .bn-image-carousel.owl-carousel .owl-stage-outer {
            overflow: hidden;
            position: relative;
            background: transparent;
        }

        .bn-image-carousel.owl-carousel .owl-stage {
            display: flex;
            align-items: center;
        }

        .bn-image-carousel.owl-carousel .owl-item {
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            opacity: 1;
        }

        .bn-image-carousel.owl-carousel .owl-item.active {
            opacity: 1;
        }

        .bn-image-carousel.owl-carousel .owl-item:not(.active) {
            opacity: 0;
        }

        .bn-image-carousel .item {
            padding: 0;
        }

        /* Mobile Video Carousel */
        .bn-mobile-video-carousel.owl-carousel {
            position: relative;
            background: transparent;
        }

        .bn-mobile-video-carousel.owl-carousel .owl-stage-outer {
            overflow: hidden;
            position: relative;
            background: transparent;
        }

        .bn-mobile-video-carousel.owl-carousel .owl-stage {
            display: flex;
            align-items: center;
        }

        .bn-mobile-video-carousel.owl-carousel .owl-item {
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            opacity: 1;
        }

        .bn-mobile-video-carousel.owl-carousel .owl-item.active {
            opacity: 1;
        }

        .bn-mobile-video-carousel.owl-carousel .owl-item:not(.active) {
            opacity: 0;
        }

        .bn-mobile-video-carousel .item {
            padding: 0;
        }


        /* ============================================
           CUSTOM IMAGE MODE STYLES
           ============================================ */

        /* Custom mode - hapus semua efek, fokus gambar PNG murni */
        .bn-main-image.bn-custom-mode {
            clip-path: none;
            box-shadow: none;
            filter: none;
            background: transparent;
        }

        .bn-main-image.bn-custom-mode img {
            object-fit: contain;
        }

        /* Hilangkan shine effect di custom mode */
        .bn-main-image.bn-custom-mode .bn-shine-effect {
            display: none;
        }

        /* Hilangkan pulse overlay di custom mode */
        .bn-main-image.bn-custom-mode::before {
            display: none;
        }

        /* Play button positioning for custom mode */
        .bn-play-button[data-mode="custom"] {
            left: var(--play-x, 50%) !important;
            top: var(--play-y, 50%) !important;
            right: auto !important;
            bottom: auto !important;
            transform: translate(-50%, -50%) !important;
        }

        .bn-image-container .bn-play-button[data-mode="custom"] {
            transition: left 0.3s ease, top 0.3s ease, transform 0.3s ease;
        }
