*
{
	margin: 0;
	padding: 0;
}
.head
{
	text-align: center;
	font font-weight: bold;
	color: greenyellow;
	background-color: #27ae60;
	padding: 10px;
}
.navbar {
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    display: flex;
    justify-content: center; /* Centers the UL horizontally */
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Nav Links Wrapper */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem; /* Spaces out the links evenly */
}

/* Individual Link Styles */
.nav-links a {
    text-decoration: none;
    color: #555555;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

/* Hover & Active States */
.nav-links a:hover,
.nav-links a.active {
    color: #27ae60; /* A sleek coral/red accent color */
}

/* Beautiful Underline Animation Effect */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #27ae60;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Responsive design for smaller screens */
@media (max-width: 600px) {
    .nav-links {
        gap: 1.2rem;
    }
    .nav-links a {
        font-size: 0.85rem;
    }
}
.banner img
{
	width: 60%;
	align-items: center;
	display: block;
	margin: 0 auto;
	border: 2px solid #27ae60;
}
.faculty
{
	border: 2px solid #27ae60;
	padding: 5px;
	margin: 3px;
}
.faculty h2
{
	background-color: #27ae60;
	color: white;
	padding: 2px;
}
.faculty p
{
	color: #27ae60;
}