/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Header */
.header {
    background-color: #333;
    padding: 1rem 2rem;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
}

.logo-img {
    max-height: 60px; /* Adjust this value to fit your design */
    width: auto; /* Keep the aspect ratio */
    display: block; /* Ensure it takes up space */
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #f8b400;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
}

/* Slideshow Section */
.slideshow-section {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
}

.fade {
    animation: fadeEffect 1.5s;
}

@keyframes fadeEffect {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

.background-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.intro-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.intro-content {
    color: #fff;
    padding: 1.5rem;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.intro-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.footer-content h3 {
    margin-bottom: 1rem;
}

.footer-content p {
    margin-bottom: 0.5rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        padding-top: 1rem;
        align-items: center;
    }

    .btn-primary {
        margin-top: 1rem; /* Adjust space for better visual alignment */
    }

    .logo {
        margin-bottom: 1rem;
    }
}



.footer {
    background-color: #333;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.footer-content h3 {
    margin-bottom: 1rem;
}

.footer-content p {
    margin-bottom: 0.5rem;
}



