.Website_Title {
    display: flex;
    flex-direction: column;
    margin-top: 120px;
    text-align: center;
    justify-content: center;
}

.Website_Title h1 {
    font-size: 50px;
    text-decoration: underline;
    font-weight: bold;
}

.Website_Title h2 {
    font-size: 28px;
    margin-left: 10px;
    margin-right: 10px;
}


/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    background-color: #A6A6A6;
    margin-bottom: 0;
    margin-top: 20px;
    padding-bottom: 10px;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

    .mySlides:first-child {
        display: block;
    }

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

    /* On hover, add a black background color with a little bit see-through */
    .prev:hover, .next:hover {
        background-color: rgba(0,0,0,0.8);
    }

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 24px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */

.dot {
    cursor: pointer;
    height: 5px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    padding-top: 10px;
    border: 1px solid white;
}

    .active, .dot:hover {
        background-color: #717171;
    }

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}


.slide-content {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Left half: image */
.slide-image {
    flex: 1;
    max-width: 50%;
}

    .slide-image img {
        width: 100%;
        height: auto;
        display: block;
    }

/* Right half: text */
.slide-text {
    flex: 1;
    padding: 20px;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

    .slide-text h2 {
        margin-top: 0;
        font-size: 28px;
    }

    .slide-text p {
        font-size: 16px;
        line-height: 1.5;
    }

@media(max-width: 768px) {
    .slide-content {
        flex-direction: column;
        text-align: center;
    }

    .slide-image, .slide-text {
        max-width: 100 %;
    }
}

.Who_We_Are {
    max-width: 1000px;
    width: 100%;
    margin: 0px auto;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 20px;
    box-sizing: border-box;
}

.Who_We_Are_Header {
    text-decoration: underline;
    margin-top: 0;
    font-size: 36px;
}

.Who_We_Are_Body {
}

.Explore_header {
    text-decoration: underline;
    margin-top: 0;
    font-size: 36px;
    text-align: left;
}

.Explore_Box_Container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px; /* spacing between h1 and boxes */
}

.Explore_Box {
    width: 250px;
    height: auto;
    margin: 10px;
    padding: 10px;
    text-align: center;
    background-color: #f9f9f9; /* Optional: background for box */
    border: 1px solid #ccc; /* Optional: border for clarity */
    border-radius: 8px; /* Optional: rounded corners */
    display: inline-block; /* Allows multiple boxes side-by-side */
    box-shadow: 2px 2px 6px rgba(0,0,0,0.1); /* Optional: subtle shadow */
    transition: background-color 0.8s ease;
    text-decoration: none;
}

.Explore_Box:hover {
    background-color: lightgray;
}

    /* Image fills the width of the box */
    .Explore_Box img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 6px; /* Optional: rounded image */
    }

/* Caption centered below image */
.Category_Caption {
    margin-top: 10px;
    font-size: 18px;
    color: #333;
    text-align: center;
    text-decoration: none;
}

.Explore_Section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    margin-bottom: 20px;
}