body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color:#005f73; /* Turquoise */
}
s
header {

    background-color:#005f73;
    color: #005f73;
    padding: 0;
    position: relative;
    text-decoration: double;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    text-align: center;
}

.toggle-menu {
    display: none;
    font-size: 30px;
    background: none;
    border:aqua;
    color: #fff;
    cursor:text;
}

header h1 {
    text-align: center;
    padding: 10px;
    margin: 0;
    color: #ffffff;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #ffddd2; /* Soft coral for links */
    text-decoration: none;
    font-weight:bold;
}

nav ul li a:hover {
    color: #ffcad4; /* Lighter coral hover effect */
    text-decoration: underline;
}

.marquee h1 {
    font-size: 2.5em;
    margin: 0;
    animation: slide 10s linear infinite;
    color: #f5f5f5;
    
}

.marquee {
    display: inline-block;
    white-space: nowrap;
    color: #f5f5f5;
    overflow: hidden;
    text-overflow: ellipsis;
    animation: marquee 10s linear infinite;
    padding-left: 100%;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* About Section */
#about {
    background-color: #fff; /* Clean white background */
    padding: 50px 0;
}

#about h2 {
    text-align: center;
    color: #005f73; /* Deep teal */
}

#about p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    color: #555;
}

#about img {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: auto;
}

/* Admissions Section */
#admissions {
    background-color: #f5f5f5; /* Light grey background */
    padding: 50px 0;
}

#admissions h2 {
    text-align: center;
    color: #005f73; /* Deep teal */
}

#admissions p, #admissions ol {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    color: #555;
}

#admissions ol {
    list-style: decimal inside;
    padding-left: 0;
}

/* Footer */
footer {
    background-color: #005f73; /* Deep teal */
    color: white;
    text-align: center;
    padding: 20px 0;
}
