/* Hero Section */
.about-hero {
    background: url('../images/aboutus.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: #fff;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.about-hero p {
    font-size: 1.25rem;
    z-index: 2;
    margin-top: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Dark overlay to improve text visibility */
.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust opacity for better contrast */
    z-index: 1;
}

/* Advanced Header Styling */
.navbar {
    font-size: 1rem;
    font-weight: 500;
}

.navbar-nav .nav-link {
    color: #333;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #007bff;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-item {
    padding: 10px 15px;
    font-size: 0.95rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #007bff;
    color: #fff;
}


/* Section Background Colors */
.mission-section {
    background-color: #f9f9f9; /* Light gray for a soft contrast */
}

.vision-section {
    background-color: #eef6ff; /* Light blue for a calming effect */
}

.impact-section {
    background-color: #fdf2e9; /* Light peach for warmth */
}

.commitment-section {
    background-color: #e8f5e9; /* Light green for a sense of trust */
}

/* Padding Adjustments for Better Spacing */
.mission-section,
.vision-section,
.impact-section,
.commitment-section {
    padding: 50px 15px;
    border-radius: 8px; /* Adds a modern touch */
}
