body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    margin: 0;
    padding: 0;
    
    
}

.container {
    width: 90%;
    margin: auto;
    
}

header {
    background: #ebebeb;
    color: #000000;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #b3b3b3 3px solid;
}

header a {
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header ul {
    padding: 0;
    list-style: none;
}

header li {
    display: inline;
    padding: 0 20px 0 20px;
    
}

.showcase {
    min-height: 400px;
    background: url('https://source.unsplash.com/random/1600x900') no-repeat 0 -400px;
    text-align: center;
    color: #000000;
}

.showcase h1 {
    margin-top: 100px;
    font-size: 55px;
    margin-bottom: 10px;
}

.showcase p {
    font-size: 20px;
}

.content {
    padding: 20px;
}

footer {
    background: #000000;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}
.nav-underline .nav-link {
    display: inline-block;
    padding: 10px 15px;
    color: #000000;
    text-decoration: none;
}

.nav-underline .nav-link:hover, .nav-underline .nav-link.active {
    border-bottom: 2px solid #000000;
    color: #000000;
}
.slider {
    width: auto;
    height: 350px;
    text-align: center;
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    color: white;
    overflow: hidden; /* Ensure quotes stay within the box */
}

h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
}

.quote-container {
    position: relative;
}

.quote {
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Smooth transition for opacity */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
}

.quote.active {
    opacity: 1;
    z-index: 1; /* Ensure active quote is on top */
}

.quote-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
}

.quote-text {
    font-size: 18px;
    margin: 20px 0;
    color: #f0f0f0;
}

.quote-author {
    font-size: 16px;
    font-style: italic;
    color: #bbb;
}

button {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0.8;
}

button:hover {
    opacity: 1;
}

button.prev {
    left: 10px;
}

button.next {
    right: 10px;
}
