/******************************************************************/
/*home page banner */
/******************************************************************/
 .slideshow-container {
    position: relative;
    margin: auto;
}

.slide_pics {
    width: 100%;
    height: 500px; /* You can change this to 60vh to take 60% of the screen height */
    object-fit: cover; /* This prevents the image from looking "stretched" or "shrunk" */
    display: block;
}

/* Number text (1/3 etc) */
.numbertext {
    color: green; 
    font-size: 50px;
    margin-top:10%;
    padding: 8px 12px;
    position: absolute;
    width:100%;
    text-align: center;
    top: 20;

}

.numbertext h2 {
    color: white;
    /* Adds a soft dark glow around each letter */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

/* another color style */
/* .numbertext h2 {
color: #D4AF37; 

text-shadow: 
    1px 1px 2px rgba(0, 0, 0, 0.9), 
    0 0 15px rgba(0, 0, 0, 0.6), 
    0 0 30px rgba(0, 0, 0, 0.4);
font-weight: 800;
text-wrap: balance; 
} */

/* The dots/bullets/indicators */
.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

.active-banner {
    background-color: #717171;
}

@-webkit-keyframes fade {
from {opacity: .4} 
to {opacity: 1}
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

/* For screens smaller than 768px (tablets/phones) */
@media (max-width: 768px) {
    .slide_pics {
        height: 300px; /* Smaller height for mobile */
    }
    
    .numbertext h2 {
        font-size: 24px; /* Shrink text so it doesn't overlap everything */
    }
}