body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
    color: #333;
}

header {
    background-color: #4CAF50;
    padding: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header nav ul {
    list-style: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

header nav ul li a:hover {
    text-decoration: underline;
}

.header-content h1 {
    margin: 0;
    font-size: 36px;
}

.header-content p {
    margin: 5px 0;
    font-weight: bold;
}

.contact-info p {
    margin: 5px 0;
}
    .slider {
        width: 100%;
        overflow: hidden;
        background: #f2f2f2;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .slider-container {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }
    
    .slide {
        min-width: 100%;
        display: none;
        justify-content: center;
        align-items: center;
        transition: opacity 1s ease-in-out;
    }
    
    .slide img {
        width: 100%;
        max-width: 600px; /* Adjust as needed */
        display: block;
        margin: 0 auto;
    }
    
    .slide.visible {
        display: flex;
        opacity: 1;
    }
    

.free-counseling {
    background-color: #ff9800;
    padding: 30px;
    text-align: center;
    color: white;
}

.free-counseling h2 {
    margin-top: 0;
    font-size: 28px;
}

.courses {
    padding: 30px;
    text-align: center;
}

.courses-container {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.courses-container div {
    width: 45%;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.courses-container h3 {
    margin-top: 0;
    color: #4CAF50;
}

.courses-container ul {
    list-style: none;
    padding: 0;
}

.courses-container ul li {
    margin: 10px 0;
    padding: 10px;
    background: #f2f2f2;
    border-radius: 5px;
    transition: background 0.3s;
}

.courses-container ul li:hover {
    background: #e0e0e0;
}

.nios-admission {
    background: url('path_to_image/Screenshot 2024-06-22 180412.png') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 60px 20px;
    position: relative;
}

.nios-admission::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.nios-admission .nios-content {
    position: relative;
    z-index: 2;
    background: rgba(0, 128, 0, 0.8);
    display: inline-block;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nios-admission h2 {
    margin-top: 0;
    color: #ffeb3b;
    font-size: 32px;
}

.nios-admission ul {
    list-style: none;
    padding: 0;
}

.nios-admission ul li {
    margin: 10px 0;
    font-size: 18px;
}

.nios-admission .contact-number {
    margin-top: 20px;
    font-weight: bold;
    font-size: 22px;
}

footer {
    background-color: #4CAF50;
    padding: 20px;
    text-align: center;
    color: white;
}

footer p {
    margin: 5px 0;
}
.slide {
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.visible {
    display: block;
    opacity: 1;
}
/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
    color: #333;
}

header {
    background-color: #004080;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content h1 {
    margin: 0;
    font-size: 24px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.contact-info {
    background-color: #003366;
    color: #fff;
    padding: 10px;
    text-align: center;
}

.about-us {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about-us h2, .about-us h3 {
    color: #004080;
}

.about-us ul {
    list-style-type: disc;
    padding-left: 20px;
}

footer {
    background-color: #004080;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* Specific styles for About Us page */
.about-us p, .about-us ul {
    margin: 10px 0;
    line-height: 1.6;
}

.about-us strong {
    font-weight: bold;
}

.about-us h2 {
    text-align: center;
    margin-bottom: 20px;
}

.about-us h3 {
    margin-top: 20px;
}

.about-us ul {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .header-content, .about-us {
        padding: 10px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }
}
