 .banner {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        /* Carousel Container */
        .carousel-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        /* Carousel Slides */
        .carousel-slides {
            display: flex;
            width: 300%; /* 3 slides × 100% */
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-slide {
            width: 33.333%; /* 100% / 3 slides */
            height: 100%;
            position: relative;
        }

        /* Video Background Sections */
        .videobg {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .videobg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Desktop and Mobile Show/Hide */
        .desktopshow {
            display: block;
        }

        .mobshow {
            display: none;
        }

        @media (max-width: 768px) {
            .desktopshow {
                display: none;
            }
            
            .mobshow {
                display: block;
            }
        }

        /* Overlay Bottom */
        .overlaybottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 200px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
            z-index: 2;
        }

        /* Banner Text Position */
        .banpostext {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 3;
            width: 100%;
        }

        .bannertexthm {
            text-align: center;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .align-items-center {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .cpationlogo {
            margin-bottom: 2rem;
        }

        .cpationlogo img {
            max-width: 300px;
            height: auto;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
        }

        /* Carousel Indicators */
        .carousel-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 4;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .indicator.active {
            background-color: #ffffff;
            transform: scale(1.2);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        .indicator:hover {
            background-color: rgba(255, 255, 255, 0.8);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .banner {
                height: 70vh;
            }

            .cpationlogo img {
                max-width: 250px;
            }

            .carousel-indicators {
                bottom: 20px;
                gap: 12px;
            }

            .indicator {
                width: 10px;
                height: 10px;
            }
        }

        @media (max-width: 480px) {
            .banner {
                height: 60vh;
            }

            .cpationlogo img {
                max-width: 200px;
            }

            .carousel-indicators {
                bottom: 15px;
                gap: 10px;
            }

            .indicator {
                width: 8px;
                height: 8px;
            }
        }

        /* Auto-play animation */
        @keyframes autoSlide {
            0% { transform: translateX(0); }
            33.33% { transform: translateX(-33.333%); }
            66.66% { transform: translateX(-66.666%); }
            100% { transform: translateX(0); }
        }

        .carousel-slides.auto-play {
            animation: autoSlide 9s infinite;
        }