/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
}

.navbar .logo img {
    width: 320px;
    height:100px;
    object-fit:contain;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 1rem;
}

.nav-links a {
    text-decoration: none;
    color: #800000;
    font-weight: bold;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Banner Section */
.banner {
    position: relative;
    height: 60vh;
    background-color: #121212;
}

/* Sliding banner styles */
.slide-container {
    display: flex;
    transition: transform 0.5s ease-in-out; /* Smooth sliding effect */
    width: 100%; /* 100% for each slide, assuming 3 slides */
}

.slide {
    min-width: 100%;
    transition: opacity 0.5s ease-in-out;
}

.slide img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    object-position: center center; /* Center the image both horizontally and vertically */
}

.fade {
    animation: fade 1.5s ease-in-out;
}

@keyframes fade {
    from { opacity: 0.4; } 
    to { opacity: 1; }
}

/* About Section */
.about {
    padding: 4rem 2rem;
    background-color: #f4f4f9;
    text-align: center;
}

.about h2 {
    font-size: 2rem;
    color: #800000;
    margin-bottom: 1rem;
}

.about p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #333;
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    background-color: #fff;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    color: #800000;
    margin-bottom: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    max-width: 500px;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    padding: 0.75rem 1.5rem;
    background-color: #800000;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #888888;
}
/* Footer Styling */
.footer {
    padding: 1rem;
    background-color: #800000;
    color: white;
    display: flex;
    justify-content: space-between; /* Align items to left and right */
    align-items: center;
    flex-wrap: wrap; /* For responsive stacking */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap; /* Ensures the links stack under the text on small screens */
}

/* Footer Links Styling */
.footer-links {
    display: flex;
    gap: 1rem; /* Space between links */
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    text-decoration: underline; /* Underline links on hover */
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        margin-top: 1rem;
    }
}



.container {
            max-width: 900px;
            margin: 50px auto;
            background-color: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
        }

        h1 {
            text-align: center;
            color: #2c3e50;
            font-size: 36px;
            margin-bottom: 20px;
        }

        p {
            line-height: 1.8;
            margin-bottom: 15px;
            font-size: 16px;
        }

        ul {
            list-style-type: disc;
            margin-left: 20px;
            margin-bottom: 20px;
        }

        ul li {
            margin-bottom: 10px;
        }

        h2 {
            color: #34495e;
            font-size: 24px;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .highlight {
            background-color: #ecf0f1;
            padding: 10px;
            border-left: 4px solid #3498db;
            margin-bottom: 20px;
            font-style: italic;
        }

        a {
            color: #3498db;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        .container {
            max-width: 1200px;
            margin: auto;
            padding: 20px;
            background-color: white;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
        }

        h1, h2 {
            color: #0056b3;
        }

        .content-section {
            margin-bottom: 30px;
        }

        .content-section h2 {
            margin-bottom: 10px;
            border-bottom: 2px solid #0056b3;
            padding-bottom: 5px;
        }

        .document ul {
            list-style-type: none;
            padding-left: 0;
        }
