/* General Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #272727; /* Sleek dark background */
    color: #ffffff; /* White text for contrast */
    overflow-x: hidden; /* Prevent horizontal scrolling */
    line-height: 1.6; /* Improve text readability */
}

/* Navigation Bar */
.navbar {
    background-color: #1f1f1f; /* Dark gray background for the navbar */
    top: 0;
    left: 0;
    width: 100%; /* Full width of the screen */
    z-index: 10; /* Ensure it appears above other elements */
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); /* Subtle shadow for depth */
}

.navbar ul {
    display: flex; /* Align items horizontally */
    justify-content: space-around; /* Space items evenly */
    list-style: none; /* Remove bullet points */
    margin: 0;
    padding: 0;
}

.navbar ul li {
    display: inline; /* Inline list items */
}

.navbar ul li a {
    color: #ffffff; /* White text color */
    text-decoration: none; /* Remove underline */
    padding: 10px 15px;
    font-size: 18px; /* Consistent font size */
    font-weight: bold;
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover effect */
}

.navbar ul li a.active {
    background-color: #ffd700; /* Highlight active page with gold */
    color: #000; /* Black text for contrast */
}

.navbar ul li a:hover {
    background-color: #575757; /* Slightly lighter background on hover */
}

/* Container */
.container {
    padding: 20px;
    margin-top: 100px; /* Add space below the fixed navbar */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
}

/* Main Heading */
.main-heading {
    font-size: 42px;
    color: #ffd700; /* Gold/yellow text */
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase; /* Make the text uppercase */
    letter-spacing: 2px; /* Add spacing between letters */
    font-weight: bold;
}

/* Mission and Vision Sections */
.mission-vision {
    max-width: 1200px;
    text-align: center;
    background: rgba(31, 31, 31, 0.95); /* Semi-transparent background */
    padding: 40px;
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6); /* Subtle shadow for depth */
    color: #e0e0e0; /* Light text color for readability */
    margin-bottom: 30px; /* Add spacing between sections */
}

.mission-vision h1 {
    font-size: 36px;
    color: #ffd700; /* Gold color for the heading */
    margin-bottom: 20px;
    text-transform: uppercase; /* Make the heading uppercase */
    letter-spacing: 1.5px; /* Add spacing for a professional look */
}

.mission-vision p {
    font-size: 18px;
    line-height: 1.8;
    color: #d3d3d3; /* Slightly lighter text for better readability */
}

/* Picture Section */
.picture-section {
    text-align: center;
    margin-top: 30px;
}

.picture-section h1 {
    font-size: 36px;
    color: #ffd700; /* Gold color for the heading */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.picture-gallery {
    display: flex;
    flex-wrap: wrap; /* Allow images to wrap to the next line */
    justify-content: center; /* Center the images */
    gap: 15px; /* Add spacing between images */
    margin-top: 20px;
}

.gallery-image {
    width: 200px; /* Set a fixed width for the images */
    height: 150px; /* Set a fixed height for the images */
    object-fit: cover; /* Ensure the images maintain their aspect ratio */
    border-radius: 10px; /* Add rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Add a shadow for depth */
    transition: transform 0.3s ease; /* Smooth hover effect */
}

.gallery-image:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
}

/* Footer Section */
.footer {
    background-color: #1f1f1f; /* Dark gray background */
    color: #ffffff; /* White text for contrast */
    text-align: center;
    padding: 20px 10px;
    margin-top: 30px; /* Add spacing above the footer */
    border-top: 2px solid #ffd700; /* Gold border for a professional look */
}

.footer a {
    color: #ffd700; /* Gold color for links */
    text-decoration: none; /* Remove underline */
    font-weight: bold;
}

.footer a:hover {
    text-decoration: underline; /* Add underline on hover */
}

.footer-content p {
    margin: 5px 0; /* Add spacing between lines */
    font-size: 16px; /* Ensure readability */
}