body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.navbar {
    background-color: #121212;
    border-radius: 10px;
}
.navbar-brand {
    font-weight: 700;
    font-size: 1.5em;
}
.navbar-nav .nav-link {
    color: #fff;
    margin-right: 20px;
}
.about-section, .mission-section {
    padding: 40px 0;
    text-align: center;
}
.about-section h2, .mission-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}
.about-section img {
border-radius: 50%;
width: 200px;
height: 200px;
margin-bottom: 20px;
border: 1px solid #ffffff;  /* Changed to solid border */
box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);  /* Enhanced box-shadow for a subtle glow */
}

.about-section img:hover {
transform: scale(1.05); /* Slight zoom effect on hover */
}
.social-links {
    margin-bottom: 20px;
}
.social-links a {
    font-size: 2.0em;
    color: #fff;
    margin: 0 10px;
    transition: color 0.3s;
}
.social-links a:hover {
    color: #1e90ff;
}
.footer {
    background-color: #121212;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    width: 100%;
    flex-shrink: 0;
    margin-top: auto;
    border-radius: 10px;
}
.navbar-nav .nav-item {
    text-align: center;
}
.navbar-toggler-icon {
    color: aliceblue;
}
.contact-us:hover {
    color: #121212;
    font-weight: bolder;
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}