 

        /* Main banner section */
        .banner-section {
            position: relative;
            width: 100%;
            margin: 0 auto;
            /* margin-top: 2%; */
            padding-left: 2%;
            padding-right:2%;
        }

        .banner-container {
            position: relative;
            width: 100%;
            height: 60vh;
            max-height: 600px;
            overflow: hidden;
            /* border-radius: 22px; */
        }

        @media (max-width: 768px) {
            .banner-container {
                height: 40vh;
                max-height: 400px;
            }
        }

        .banner-slides {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
        }

        .banner-item {
            min-width: 100%;
            height: 100%;
            position: relative;
        }

        .banner-img {
            width: 100%;
            height: 100%;
            /* object-fit: contain; */
            object-position: center;
            /* border-radius: 22px; */
        }

        .banner-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
            color: white;
            padding: 40px 5% 30px;
            transform: translateY(0);
            transition: transform 0.5s ease, opacity 0.5s ease;
        }

        @media (max-width: 768px) {
            .banner-content {
                padding: 25px 5% 20px;
            }
        }

        .banner-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
            opacity: 0;
            transform: translateY(20px);
            transition: transform 0.6s ease 0.2s, opacity 0.6s ease 0.2s;
        }

        @media (max-width: 768px) {
            .banner-title {
                font-size: 1.8rem;
            }
        }

        .banner-desc {
            font-size: 1.1rem;
            max-width: 600px;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(20px);
            transition: transform 0.6s ease 0.3s, opacity 0.6s ease 0.3s;
        }

        @media (max-width: 768px) {
            .banner-desc {
                font-size: 0.9rem;
            }
        }

        .banner-item.active .banner-content {
            transform: translateY(0);
        }

        .banner-item.active .banner-title,
        .banner-item.active .banner-desc {
            opacity: 1;
            transform: translateY(0);
        }

        .banner-fallback {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            background-color: #f0f0f0;
            color: #333;
            font-size: 1.5rem;
            text-align: center;
            padding: 20px;
        }

        .banner-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .banner-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .banner-dot.active {
            background-color: rgb(255, 0, 0);
            transform: scale(1.2);
        }

        .banner-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgb(255, 0, 0);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10;
            transition: background-color 0.3s ease;
        }

        .banner-arrow:hover {
            background-color: rgba(17, 0, 255, 0.5);
        }

        .banner-prev {
            left: 20px;
        }

        .banner-next {
            right: 20px;
        }

        @media (max-width: 768px) {
            .banner-arrow {
                width: 30px;
                height: 30px;
                font-size: 1.2rem;
            }
        }