.slide-carousel {
            position: relative;
            width: 100%;
            height: auto;
            overflow: hidden;
        }


        .carousel-track {
            display: flex;
            /* height: 100%; */
            transition: transform 0.5s ease-out;
        }


        .carousel-slide {
            min-width: 100%;
            /* height: 100%; */
            position: relative;
        }

        .carousel-slide img {
            width: 100%;
            height: auto;
            display: block;
        }

        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            color: white;
        }

  
        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.2);
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            transition: background 0.3s;
            z-index: 10;
        }

        .carousel-control:hover {
            background: rgba(255,255,255,0.4);
        }

        .control-prev {
            left: 30px;
        }

        .control-next {
            right: 30px;
        }

        .carousel-dots {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 8px;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ffffffcc;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
        }

        .dot.active {
            background: #0d3e8b;
            transform: scale(1.3);
        }