.slider-ad-section {
            position: relative;
            width: 100%;
            max-width: 1600px;
            margin: auto;
            overflow: hidden;
        }
        .slider-ad-container {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        .ad-slider {
            min-width: 100%;
        }
        .ad-slider img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            font-size: 18px;
        }
        .prev { left: 10px; 
                z-index: 999;
              }
            
        .next { right: 10px; 
                
              }
        .dots {
            display: flex;
            position: absolute;
          width: -webkit-fill-available;
            align-items: center;
            justify-content: center;
            text-align: center;
            top: 80%;
          
            z-index: 2;
        }
        .dot {
            height: 10px;
            width: 10px;
            margin: 0 5px;
            background-color: white;
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            z-index: 2;
          
        }
        .active {
            background-color: lightgrey;
          z-index: 999;
        }