   body {
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: #f0f0f0;
        }

        .poppins {
            font-family: 'Poppins', sans-serif;
        }


        .open_sans {
            font-family: 'Open Sans', sans-serif;
        }


        .swiper-container {
            width: 100%;
            height: 600px;
            position: relative;
            margin: 0 auto;
        }

        .swiper-slide {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            position: relative;
        }

        .slide-content {
            /* background-color: rgba(0, 0, 0, 0.4); */
            padding: 30px;
            /* border-radius: 8px; */
            max-width: 70%;
            z-index: 5;
        }

        .slide-content h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .slide-content p {
            font-size: 1.2rem;
            margin-top: 0;
        }

        .progress-bar-container {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 50%;
            height: 5px;
            background: rgba(255, 255, 255, 0.5);
            z-index: 10;
            border-radius: 5px;
            overflow: hidden;
        }

        .progress-bar {
            height: 100%;
            width: 0%;
            background: #00A24D;
            border-radius: 5px;
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: white !important;
            background-color: rgba(0, 0, 0, 0.3);
            border-radius: 50%;
            padding: 5px;
            width: 30px;
            height: 30px;
        }

        @media (max-width: 768px) {
            .swiper-container {
                height: 400px;
            }

            .slide-content h1 {
                font-size: 1.8rem;
            }

            .slide-content p {
                font-size: 1rem;
            }

            .progress-bar-container {
                width: 80%;
            }
        }