
        :root {
    --primary: #39d377;
    --primary-dark: #39d377;
    --primary-light: #4fdb87;

    --text-dark: #222;
    --text-light: #666;
    --bg-light: #f0f2f5;
    --bg-white: #ffffff;
    --bg-hovar: #dfe2e1;
    --border-color: #e0e0e0;

}

html[data-theme="dark"] {
    --text-dark: #eee;
    --text-light: #aaa;
    --bg-light: #374151;
    --bg-white: #4b5563;
    --bg-hovar: #3f4a5a;
    --border-color: #9df8c1;
   
}
.img-slide-container {
    padding: 100px;
    margin-top: 20px;
    text-align: center;
    width: 100%;
}
        


        
        .slider-container {
            position: relative;
            width: 100%;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .slider {
            display: flex;
            transition: transform 0.8s ease;
            height: 500px;
        }
        
        .slide {
            min-width: 100%;
            height: 100%;
            position: relative;
        }
        
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .slide-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 20px;
            text-align: left;
        }
        
        .slide-info h3 {
            font-size: 1.8rem;
            margin-bottom: 5px;
        }
        
        .slide-info p {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        .dots-container {
            display: flex;
            justify-content: center;
            margin-top: 25px;
        }
        
        .dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: #bbb;
            margin: 0 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .dot.active {
            background: var(--primary);
            transform: scale(1.3);
        }
        
        .nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.8);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            color: #1a2a6c;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }
        
        .nav-button:hover {
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .prev {
            left: 20px;
        }
        
        .next {
            right: 20px;
        }

        
 

        

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

            .nav-button {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .slide-info h3 {
                font-size: 1.5rem;
            }
            .img-slide-container {
            padding: 20px;
            margin-top: 10px;
           }
        }
        
        @media (max-width: 576px) {
            .slider {
                height: 300px;
            }
            
       .img-slide-container {
       padding: 20px;
       width: 100%;
       margin-top: 10px;
      }
     }
