html {
    scroll-behavior: smooth;
}


body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: space-between; /* Logo on the left, text in the center */
    align-items: center;
    background-color: #333;
    color: white;
    padding: 20px;
}



.social-icons {
    position: fixed; /* Ensures it stays visible */
    top: 10px;
    right: 10px;
    z-index: 1000;
}

.social-icons a {
    font-size: 24px;
    color: white; /* Change this to any color that contrasts well */
    text-decoration: none;
}

.social-icons a:hover {
    color: #FFD700; /* Gold color on hover for better visibility */
}



.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 60px;
    margin-right: 15px; /* Space between logo and text */
}

.logo-container h1 {
    flex-grow: 1;
    
    text-align: center; /* Centers the website name */
    font-size: 28px;
    font-weight: bold;
}








nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.image-container {
    display: flex;
    flex-direction: column; /* Arrange child divs in a vertical order */
    align-items: center; /* Center images */
}

.top-images {
    display: flex;
    gap: 20px; /* Space between images */
}

.bottom-image {
    margin-top: 20px; /* Space below the top images */
}

.image-container img {
    width: 200px; /* Adjust image size */
    height: auto;
    margin: 20px; /* Adds space between images */
}

button {
    position: absolute;
    top: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    transform: translateY(-50%);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

#contact {
    text-align: left;
    padding: 40px;
    background-color: #f4f4f4;
    margin-bottom: 20px;
}

#about {
    text-align: left;
    padding: 40px;
    background-color: #f4f4f4;
    margin-bottom: 20px;
}

#vision {
    text-align: left;
    padding: 40px;
    background-color: #f4f4f4;
    margin-bottom: 20px;
}

#mission {
    text-align: left;
    padding: 40px;
    background-color: #f4f4f4;
    margin-bottom: 20px;
}
footer {
    background-color: #333;
    color: white;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}


