       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
    /* Banner Slider Section */
        .premium__banner__section {
            width: 100%;
            position: relative;
            background: #000;
            overflow: hidden;
        }

        /* Slider Container */
        .premium__slider__container {
            width: 100%;
            position: relative;
            aspect-ratio: 1349 / 500;
        }

        /* Slides Wrapper */
        .premium__slides__wrapper {
            width: 100%;
            height: 100%;
            position: relative;
        }

        /* Individual Slide */
        .premium__slide__item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: opacity, transform;
        }

        .premium__slide__item.pbs__active {
            opacity: 1;
            z-index: 2;
        }

        /* Image Wrapper for Ken Burns Effect */
        .premium__image__wrapper {
            width: 100%;
            height: 100%;
            overflow: hidden;
            position: relative;
        }

        .premium__slide__item.pbs__active .premium__image__wrapper {
            animation: premiumKenBurns 8s ease-out forwards;
        }

        /* Slide Image */
        .premium__slide__image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            display: block;
            background: #000;
        }

        /* Ken Burns Zoom Effect */
        @keyframes premiumKenBurns {
            0% {
                transform: scale(1) translateZ(0);
            }
            100% {
                transform: scale(1.08) translateZ(0);
            }
        }

        /* Parallax Depth Effect */
        .premium__slide__item.pbs__transitioning {
            animation: premiumParallaxDepth 1.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @keyframes premiumParallaxDepth {
            0% {
                transform: translateZ(0) scale(1);
                filter: blur(0px);
            }
            50% {
                transform: translateZ(-20px) scale(0.98);
                filter: blur(1px);
            }
            100% {
                transform: translateZ(0) scale(1);
                filter: blur(0px);
            }
        }

        /* Navigation Dots */
        .premium__dots__navigation {
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
            padding: 12px 24px;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            border-radius: 50px;
        }

        .premium__dot__indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            border: 2px solid rgba(255, 255, 255, 0.8);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .premium__dot__indicator:hover {
            background: rgba(255, 255, 255, 0.7);
            transform: scale(1.2);
        }

        .premium__dot__indicator.pbs__active {
            background: #fff;
            width: 32px;
            border-radius: 12px;
        }

        /* Reduced Motion Support */
        @media (prefers-reduced-motion: reduce) {
            .premium__slide__item {
                transition: opacity 0.3s ease;
            }
            
            .premium__slide__item.pbs__active .premium__image__wrapper {
                animation: none;
            }
            
            .premium__slide__item.pbs__transitioning {
                animation: none;
            }
            
            .premium__dot__indicator {
                transition: background 0.2s ease;
            }
        }

        /* Tablet Responsiveness */
        @media (max-width: 1024px) {
            .premium__dots__navigation {
                bottom: 20px;
                padding: 10px 20px;
                gap: 10px;
            }

            .premium__dot__indicator {
                width: 10px;
                height: 10px;
            }

            .premium__dot__indicator.pbs__active {
                width: 28px;
            }
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .premium__dots__navigation {
                bottom: 15px;
                padding: 8px 16px;
                gap: 8px;
            }

            .premium__dot__indicator {
                width: 8px;
                height: 8px;
                border-width: 1.5px;
            }

            .premium__dot__indicator.pbs__active {
                width: 24px;
            }
        }

        /* Small Mobile */
        @media (max-width: 600px) {
            .premium__banner__section {
  width: 100%;
  position: relative;
  background: #000;
  overflow: hidden;
  top: 105px;
  margin-bottom: 40px;
}
            .premium__dots__navigation {
                display : none;
                
            }

            .premium__dot__indicator {
                width: 7px;
                height: 7px;
            }

            .premium__dot__indicator.pbs__active {
                width: 20px;
            }
        }