* {

    top: 0;        
	margin: 0;
    padding: 0;
    box-sizing: border-box;
        }
  body {
           margin: 0;
    padding: 0;
    height: auto;
    min-height: 50vh;
	  max-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
		}

        .slider-container {
            top: 0;   
	margin: 0;
    padding: 0;
	position: relative;
    width: 100%;
	/* backdrop-filter: blur(10px); */
          
        }

        .slider-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 0px;
            /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3); */
        }

        .slider {
			top: 0;   
	margin: 0;
    padding: 0;
            display: flex;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: grab;
            scroll-snap-type: x mandatory;
        }

        .slider.dragging {
            cursor: grabbing;
            transition: none;
        }

        .slide {
            flex: 0 0 auto;
            width: 100%;
            scroll-snap-align: start;
            position: relative;
        }

  

.slide img {
    width: 100%;
    max-height: 700px;
    object-fit: cover;
    display: block;
    user-select: none;
    margin-top: 20px; /* adjust this value for more/less space */
}

.slide-overlay {
            position: absolute;
			top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: white;
            
        }

        .slide-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .slide-description {
            font-size: 1rem;
            opacity: 0.9;
            line-height: 1.4;
        }

        /* Navigation Arrows */
        .nav-arrow {
				transition: all 0.3s ease;
    	display: none;
	position: absolute;
            
			/* position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.8);
            color: white;
            width: 40px;  
		smaller circle size 
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 28px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
            user-select: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .nav-arrow:hover {
            background: rgba(255, 255, 255, 0.9);
            color: #333;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 255, 255, 1);
        }

        .nav-arrow:active {
            transform: translateY(-50%) scale(0.95);
        }

        .nav-arrow.prev {
            left: 20px;
        }

        .nav-arrow.next {
            right: 20px;*/
        }

/* END OF Navigation Arrows */


/* Indicators */
.slider-indicators {
    display: flex;
    justify-content: center;
    margin-top: 35px; /* increased top space by ~20px (2 "spaces") */
    gap: 15px;
}

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .indicator.active {
            background: white;
            transform: scale(1.2);
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
        }

        .indicator:hover:not(.active) {
            background: rgba(107, 107, 107, 0.5);
            transform: scale(1.1);
        }
/* END OF Indicators */



 Loading Animation 
        .slide img {
            opacity: 0;
            animation: fadeIn 0.6s ease forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

 /* === Mobile Styles (max-width: 550px) === */
	   .slide picture img {
	top: 0px;   
	margin: 0;
    padding: 0;
    display: flex;
    display: block;
	   width: 100%;
     height: auto

            
} 

