body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
/* Header Section */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #003377;
    color: white;
}
.header-left {
    display: flex;
    align-items: center;
}
.header-left img {
    height: 100px;
    margin-right: 10px;
}
.header-left .school-info {
    display: flex;
    flex-direction: column;
}
.header-right {
    display: flex;
    align-items: center;
}
.header-right .contact-info {
    display: block;
}
.header-right .toggle-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5em;
}
/* Top-Nav Bar  */
.nav {
    display: flex;
    justify-content: center;
    background-color: #004080;
}
.nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}
.nav ul li {
    position: relative;
}
.nav ul li a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
}
.nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #004080;
    min-width: 200px;
    z-index: 1000;
}
.nav ul li:hover ul {
    display: block;
}
.nav a:hover{
    background-color: #00a7ec; /* Hover color */
  }
.nav ul li ul li a {
    padding: 10px 20px;
}
/* Top Auto Image Slider  */
.slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.slider img {
    width: 100%;
    display: none;
    animation: slideAnimation 3s infinite;
}
.slider img:first-child {
    display: block;
}
/* Responsive Header */
@media (max-width: 768px) {
    .header {
        flex-direction: row;
        justify-content: space-between;
    }
    .header-left {
        flex: 1;
        justify-content: flex-start;
    }
    .header-right {
        display: flex;
        justify-content: flex-end;
    }
    .header-right .contact-info {
        display: none;
    }
    .header-right .toggle-btn {
        display: block;
    }
    .nav {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    .nav ul {
        flex-direction: column;
    }
    .nav ul li ul {
        position: relative;
    }
    .nav.active {
        display: flex;
    }
    .slider img {
        display: none;
    }
    .slider img:first-child {
        display: block;
    }
}
/* Menu Options */
.menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
    box-sizing: border-box;
    background-color: #2e5983ce;
}

.menu button {
    background-color: #003366;
    border: none;
    color: white;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    transition: transform 0.2s, background-color 0.2s;
    cursor: pointer;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin: 10px 20px;
}

.menu button:hover {
    background-color: #00a7ec;
    transform: scale(1.1);
}

.menu button:active {
    transform: scale(0.9);
}

  
  /* Contact Us Section */
 .contactus {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            flex-wrap: wrap;
            padding: 20px;
        }
        .map {
            flex: 1;
            height: 400px;
            background-color: #f0f0f0;
            margin-right: 20px;
            box-sizing: border-box;
        }
        .form {
            flex: 1;
            max-width: 100%;
        }
        .form input, .form textarea {
            width: 100%;
            margin-bottom: 10px;
            padding: 8px;
            box-sizing: border-box;
        }
        .form textarea {
            height: 100px;
        }
        .form button {
            padding: 10px 20px;
            background-color: #007bff;
            color: white;
            border: none;
            cursor: pointer;
        }
        .form button:hover {
            background-color: #0602ce;
        }
        .form h2{
            color:#004080;
        }
        /* Media query for small screens */
        @media screen and (max-width: 100%) {
            .contactus {
                flex-direction: column;
                align-items: center;
            }
            .map {
                margin-right: 0;
                margin-bottom: 20px;
            }
            .form {
                max-width: 100%;
            }
        }
        
        /* Footer Section */
  /* Footer Container */
.nvnfooter {
    background-color: #003377;
    padding: 20px 0;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Section */
.left {
    flex: 1;
    max-width: 100%; /* Adjust the max-width to make it responsive */
    text-align: center; /* Center align the content */
}

.left img {
    max-width: 100px; /* Adjust the max-width of the image */
    height: auto;
    margin-bottom: 10px; /* Add some bottom margin for spacing */
}

.left h2, .left h3, .left h4 {
    margin: 5px 0;
    color: white;
    font-size: 16px; /* Adjust font size for better readability */
}


.right h2 {
    margin-top: 0;
}

.links {
    list-style: none;
    padding: 0;
}

.links li {
    margin-bottom: 10px;
}

.links li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.links li a:hover {
    color: white;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    align-items: center;
}

.social-icons a {
    margin-right: 10px;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: white;
}

/* Copyright Section */
.copyright {
    text-align: center;
    margin-top: 20px;
    color: white;
}
.copyright a{
    color:aliceblue;
}
.copyright a:hover{
    color:wheat;
}

@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left, .right {
        max-width: 100%;
    }

    .links li {
        margin-bottom: 8px;
    }
}

h2, h3, h4 {
    color: white;
}

a {
    color: #0066cc;
}

a:hover {
    color: #004080;
}
 /* Back To Top Button */