
    <!-- Custom CSS -->
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f5f5f5;
        }

        /* Swiper Container */
        .swiper {
            width: 100%;
            height: 400px;
            margin-top: 20px;
        }

        .swiper-slide {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #ddd;
        }

        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 6px;
        }

        .swiper_sw {
            color: white;
            font-size: 30px;
            font-family: Times new roman;
            text-align: center;
        }

        .swiper-sl{
            background-color: black;
            width: 100%;
            height: 100%;
        }

        .slide-content {
        position: relative;
        text-align: center;
        }

        .slide-content img {
            width: 100%;
            height: auto;
            display: block;
        }   

        .slide-text {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 5px 10px;
            font-size: 19px;
            font-family: Times new roman;
            border-radius: 5px;
        }


        /* Swiper Navigation Arrows */
        .swiper-button-next,
        .swiper-button-prev {
            color: yellow;
        }

        /* Swiper Pagination */
        .swiper-pagination-bullet {
            background: #fff;
        }