/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Loading Bar */
#loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 5px;
    background-color: #007bff;
    z-index: 9999;
    animation: load 2s ease-in-out forwards;
}

@keyframes load {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Hero Section */
.hero-section {
    background: url('images/banner.jpg') no-repeat center center/cover;
    opacity: 50%;
    padding: 150px 0;
    color: black;
}

/* Section Headings */
section h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* Gallery Images */
#gallery img {
    transition: transform 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #f8f9fa;
    color: #6c757d;
}