/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; 
}

#program {
  scroll-margin-top: 180px; /* modern way, supported in most browsers */
}

body {
    line-height: 1.6;
    color: #333;
    padding-top: 130px; /* Adjust based on header height */
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Utility Classes */
.section-padding {
    padding: 60px 0;
}

.bg-light-gray {
    background-color: #f9f9f9;
}
.bg-light-blue {
     background-color: #f0f8ff; /* aliceblue */
}
.bg-light-yellow {
     background-color: #fffacd; /* lemonchiffon */
}


.text-center {
    text-align: center;
}

.section-title {
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
    text-align: center;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #e74c3c; /* Red accent */
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
}


/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px; /* Maintain height */
    width: auto; /* Let width adjust */
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    margin-left: 10px;
    color: #333;
}

.header-contact-donate {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info-header p {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}
.contact-info-header p strong {
    color: #333;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #666;
    font-size: 16px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #f7b731; /* Orange accent */
}

.search-icon {
    color: #f7b731;
    font-size: 16px;
    cursor: pointer;
    margin-left: 10px;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #f7b731; /* Orange accent */
    color: #fff;
}
.btn-primary:hover {
    background-color: #e69c1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-secondary {
    background-color: #e74c3c; /* Red accent */
    color: #fff;
}
.btn-secondary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-outline {
    background-color: transparent;
    color: #f7b731;
    border: 2px solid #f7b731;
}
.btn-outline:hover {
    background-color: #f7b731;
    color: #fff;
}


/* Navigation Styles */
.nav-container {
    background-color: white;
    /* border-top: 1px solid #eee; Removed as border is now on header-top */
}

.main-nav {
    display: flex;
    justify-content: space-between; /* Adjust as needed, maybe flex-start or center */
}

.main-nav > li {
    position: relative;
}

.main-nav > li > a {
    display: block;
    padding: 15px 20px; /* Increased padding */
    font-weight: bold;
    color: #333;
    font-size: 15px; /* Slightly larger */
    text-transform: uppercase;
    transition: color 0.3s, background-color 0.3s;
    position: relative; /* For hover effect */
}
.main-nav > li > a::after { /* Underline hover effect */
    content: '';
    position: absolute;
    bottom: 10px; /* Adjust position */
    left: 20px; /* Match padding */
    right: 20px; /* Match padding */
    height: 2px;
    background-color: #f7b731;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
    transform-origin: center;
}


.main-nav > li > a:hover {
    color: #f7b731; /* Orange accent */
}
.main-nav > li > a:hover::after {
    transform: scaleX(1);
}


.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* Softer shadow */
    min-width: 220px; /* Wider dropdown */
    display: none;
    z-index: 10;
    border-radius: 0 0 5px 5px; /* Slightly rounded bottom corners */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px; /* Increased padding */
    color: #333;
    transition: background-color 0.3s, color 0.3s;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background-color: #f7b731; /* Orange accent */
    color: #fff;
}

.main-nav > li:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.red-bar {
    height: 5px;
    background-color: #e74c3c; /* Red accent */
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none; /* Hidden by default */
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 10px;
}

/* Mission Banner Styles */
.mission-banner {
    /* background-color: #ffd54f;  Lighter yellow */
	background: linear-gradient(135deg, #a5d8ff 0%, #ffe3f3 100%);
    padding: 50px 0; /* Increased padding */
    width: 100%;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.mission-text {
    flex: 1 1 500px; /* Allow text to take more space */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mission-text h2 {
    font-size: 36px; /* Larger heading */
    font-weight: bold;
    color: #333;
    line-height: 1.3;
}

.mission-image {
    flex: 1 1 40%;
    display: flex;
    justify-content: flex-end; /* Align image to the right */
    align-items: flex-end;     /* Align image to bottom */
    max-width: 500px;
}

.mission-image img {
    width: 100%;
    max-width: 700px;   /* Control max image size */
    height: auto;
    object-fit: contain;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.mission-image-small img {
    
    max-width: 400px;   /* Control max image size */
    height: auto;
    object-fit: contain;
    border: none;
    border-radius: 0;
    box-shadow: none;
}


/*
.mission-image {
    flex: 1 1 300px; 
    display: flex;
    justify-content: center; 
    align-items: center;
}

.mission-image img {
    max-width: 350px; 
    width: 100%;
    border: 4px solid #fff;
    border-radius: 10px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

*/

.donate-button-mission {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #e74c3c; /* Red accent */
    color: #fff; /* White text */
    padding: 15px 30px; /* Larger button */
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    max-width: fit-content;
    font-size: 16px;
}

.donate-button-mission:hover {
    background-color: #c0392b; /* Darker red */
    transform: translateY(-3px); /* Increased hover effect */
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
.donate-button-mission i {
    transition: transform 0.3s ease;
}
.donate-button-mission:hover i {
    transform: translateX(5px);
}


/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
    height: 600px; /* Increased height */
    overflow: hidden;
    background-color: #ddd; /* Fallback color */
}

.carousel-slides {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Smoother transition */
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex; /* Use flexbox for content alignment */
    align-items: center; /* Vertically center content */
    justify-content: flex-start; /* Align content to the left */
}
/* Dimming overlay */
.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Adjust darkness */
    z-index: 1;
}


.carousel-content {
    position: relative; /* Change from absolute */
    z-index: 2;
    color: white;
    padding-left: 10%; /* Adjust padding as needed */
    max-width: 60%; /* Limit content width */
}

.carousel-content h2 {
    font-size: 56px; /* Larger font size */
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7); /* Text shadow for readability */
    line-height: 1.2;
}

.carousel-content h2 span {
    color: #f7b731; /* Orange accent */
    font-size: 1.1em; /* Slightly larger span */
    display: block; /* Make span appear on new line */
    margin-top: 5px;
}

.carousel-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.7;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}


/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 30px; /* Increased spacing */
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px; /* Increased gap */
    z-index: 5;
}

.carousel-dot {
    width: 14px; /* Larger dots */
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7); /* Slightly transparent */
    border: 1px solid rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background-color: #e74c3c; /* Red accent for active */
    border-color: #e74c3c;
    transform: scale(1.2);
}
.carousel-dot:hover {
     background-color: rgba(255, 255, 255, 1);
}


/* About Section Styles (Homepage) */
.about-section-home {
    padding: 60px 0;
}

.about-content-home {
    display: flex;
    align-items: center; /* Center items vertically */
    gap: 50px; /* Increased gap */
    text-align: left;
    flex-wrap: wrap;
}

.about-text-home {
    flex: 1 1 55%; /* Allow text to take slightly more space */
}
.about-text-home h2 { /* Specific title for this section */
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
}


.about-text-home p {
    margin-bottom: 20px;
    color: #555; /* Slightly darker grey */
    font-size: 16px;
}

.about-video-home {
    flex: 1 1 40%; /* Adjust video width */
    border: 1px solid #ddd;
    position: relative; /* For play button */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-height: 300px; /* Ensure minimum height */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eee;
}

.about-video-home img {
    /* Ensure image covers the container if used as thumbnail */
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Optional Play Button Overlay */
.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: rgba(255, 255, 255, 0.9);
    background-color: rgba(0, 0, 0, 0.5);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    z-index: 5;
}
.play-button-overlay:hover {
    background-color: rgba(231, 76, 60, 0.8); /* Red hover */
    transform: translate(-50%, -50%) scale(1.1);
}


.read-more {
    display: inline-block;
    color: #f7b731; /* Orange accent */
    font-weight: bold;
    margin-top: 15px;
    position: relative;
    padding-bottom: 3px;
    font-size: 16px;
    border-bottom: 2px solid transparent; /* Placeholder for underline */
    transition: color 0.3s, border-color 0.3s;
}

.read-more:hover {
    color: #e74c3c; /* Red accent on hover */
    border-bottom-color: #e74c3c;
}
.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}
.read-more:hover i {
    transform: translateX(4px);
}


/* Programs Section Styles (Homepage) */
.programs-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Responsive grid */
    gap: 30px; /* Increased gap */
    margin-top: 40px;
}

.program-card {
    background-color: white;
    border-radius: 8px; /* Slightly more rounded */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08); /* Softer shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column; /* Ensure content stacks vertically */
}

.program-card:hover {
    transform: translateY(-8px); /* Increased lift */
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}


.program-image {
    height: 220px; /* Taller image */
    background-size: cover;
    background-position: center;
}

.program-content {
    padding: 25px; /* Increased padding */
    flex-grow: 1; /* Allow content to fill space */
    display: flex;
    flex-direction: column;
}

.program-title {
    font-size: 20px; /* Larger title */
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
}

.program-text {
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1; /* Push read more link down */
    font-size: 15px;
    line-height: 1.7;
}

.program-card .read-more {
    display: block;
    text-align: right;
    margin-top: auto; /* Push to bottom */
}

/* Stats Section Styles */
.stats-section {
    padding: 60px 0;
    background-color: #f0f8ff; /* Light blue background */
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive grid */
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    padding: 30px 20px; /* Increased padding */
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.stat-card:hover {
    transform: scale(1.05);
}

.stat-icon {
    font-size: 40px;
    color: #e74c3c; /* Red accent */
    margin-bottom: 15px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #f7b731; /* Orange accent */
    margin-bottom: 5px;
    line-height: 1.1;
}

.stat-title {
    font-size: 16px; /* Larger title */
    color: #555;
    margin-bottom: 10px;
    font-weight: bold;
}

.stat-description {
    font-size: 14px; /* Larger description */
    color: #888;
}

/* Stories Section Styles */
.stories-section {
    padding: 60px 0;
}

.stories-header {
    text-align: center;
    margin-bottom: 40px;
}

.stories-intro {
    max-width: 700px; /* Wider intro text */
    margin: 0 auto 30px auto; /* Centered */
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}
.stories-header .read-more {
    margin-top: 20px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.story-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}


.story-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}
/* Optional overlay for story images */
.story-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 50%);
}


.story-content {
    padding: 25px;
}

.story-name {
    font-size: 22px; /* Larger name */
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

.story-role {
    color: #e74c3c; /* Red accent for role */
    font-size: 14px;
    margin-bottom: 15px;
    font-style: italic;
}

.story-text {
    color: #555;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
}
.story-card .read-more {
    display: block;
    text-align: left; /* Align left for story */
}


/* Partners Section Styles */
.partners-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.partners-grid {
    display: flex;
    justify-content: center; /* Center logos */
    align-items: center;
    flex-wrap: wrap;
    gap: 40px; /* Spacing between logos */
    margin-top: 40px;
}

.partner-logo img { /* Style the image directly */
    max-width: 160px; /* Slightly larger logos */
    max-height: 70px; /* Control height */
    width: auto;
    filter: grayscale(100%) opacity(0.6); /* Start grayscale and slightly transparent */
    transition: filter 0.4s ease, transform 0.3s ease;
}

.partner-logo img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Footer Styles */
footer {
    background-color: #333; /* Darker footer */
    color: #ccc; /* Light text */
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Responsive footer grid */
    gap: 40px; /* Increased gap */
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 18px; /* Larger heading */
    margin-bottom: 20px;
    color: #fff; /* White heading */
    position: relative;
    padding-bottom: 10px;
}
.footer-column h4::after { /* Underline effect for footer headings */
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #f7b731; /* Orange accent */
}


.footer-links li {
    margin-bottom: 12px; /* Increased spacing */
}

.footer-links a {
    color: #ccc; /* Light grey links */
    font-size: 14px;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
    color: #f7b731; /* Orange accent */
    padding-left: 5px; /* Indent on hover */
}

.contact-info-footer p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #ccc;
    line-height: 1.7;
}
.contact-info-footer i { /* Add icons to contact info */
    margin-right: 8px;
    color: #f7b731;
    width: 15px; /* Align icons */
    text-align: center;
}


.footer-social {
    margin-top: 20px;
}
.footer-social a {
    color: #ccc;
    font-size: 20px; /* Larger social icons */
    margin-right: 15px;
    transition: color 0.3s, transform 0.3s;
}
.footer-social a:hover {
    color: #f7b731;
    transform: scale(1.2);
}


.copyright {
    text-align: center;
    padding-top: 30px; /* Increased padding */
    border-top: 1px solid #555; /* Darker border */
    font-size: 14px;
    color: #aaa; /* Lighter grey copyright */
}
.copyright a {
    color: #f7b731;
    text-decoration: underline;
}
.copyright a:hover {
    text-decoration: none;
}


/* Generic Page Header */
.page-header {
    padding: 40px 0;
    background-color: #e74c3c; /* Red accent */
    color: #fff;
    text-align: center;
}
.page-header h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}
.page-header p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Content Section Styles for Inner Pages */
.content-section {
    padding: 60px 0;
}
.content-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
}
.content-section h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #e74c3c; /* Red accent for subheadings */
}
.content-section p, .content-section li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}
.content-section ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}
.content-section ul li {
     margin-bottom: 10px;
}
.content-section strong {
    color: #333;
}
.content-section img.inline-image {
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.content-grid-item {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
}

/* Leadership Page Specific Styles */
.leader-story {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}
.leader-story:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.leader-image {
    flex: 0 0 200px; /* Fixed width for image container */
    text-align: center;
}
.leader-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f7b731;
    margin-bottom: 10px;
}
.leader-image figcaption {
    font-size: 14px;
    color: #555;
    font-style: italic;
}
.leader-text {
    flex: 1 1 60%; /* Allow text to take more space */
}
.leader-text h3 {
    margin-top: 0; /* Remove top margin for leader name */
    color: #333; /* Black for name */
}
.leader-quote {
    font-style: italic;
    color: #e74c3c;
    margin: 15px 0;
    padding-left: 20px;
    border-left: 3px solid #f7b731;
    font-size: 16px;
}

/* Montessori Page Specific Styles 
.principle-card {
    background-color: #fffacd; 
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}
.principle-card h3 {
    color: #333; 
    margin-top: 0;
}
.principle-card i { 
    font-size: 30px;
    color: #f7b731;
    margin-right: 15px;
    float: left; 
}

*/

.principle-card {
            display: flex;
            background: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            gap: 20px;
        }
        .principle-card:hover {
            transform: scale(1.02);
        }
        .principle-card img {
            width: 100px;
            height: 100px;
            border-radius: 12px;
            object-fit: cover;
        }
        .principle-content {
            max-width: 800px;
        }
        .principle-content h3 {
            margin: 0;
            font-size: 1.4rem;
            color: #333;
        }
        .principle-content p {
            color: #666;
            line-height: 1.6;
        }
		
		
        .highlight-section {
            background-color: #fffbf0;
            border-radius: 15px;
            padding: 30px;
            margin: 30px auto;
            width: 80%;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
        }
        .highlight-section h2 {
            font-size: 2rem;
            margin-bottom: 15px;
            color: #333;
        }
        .highlight-section p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
        }
        .highlight-section img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 12px;
            margin-top: 20px;
        }

/* Get Involved Page Styles */
.involvement-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.option-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.option-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.option-card i {
    font-size: 48px;
    color: #e74c3c;
    margin-bottom: 20px;
}
.option-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}
.option-card p {
    color: #555;
    margin-bottom: 25px;
    font-size: 15px;
}

/* Form Styles */
.form-container {
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
    font-size: 14px;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #f7b731;
    outline: none;
    box-shadow: 0 0 5px rgba(247, 183, 49, 0.5);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Donation Form Specifics */
.donation-amounts {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.donation-amounts label {
    display: block;
    padding: 10px 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
.donation-amounts input[type="radio"] {
    display: none; /* Hide radio button */
}
.donation-amounts input[type="radio"]:checked + label {
    background-color: #f7b731;
    border-color: #f7b731;
    color: #fff;
    font-weight: bold;
}
.donation-amounts label:hover {
     border-color: #f7b731;
}

/* Responsive Styles */
@media (max-width: 992px) {
    body {
        padding-top: 110px; /* Adjust for potentially smaller fixed header */
    }
    .main-nav {
        display: none; /* Hide main nav */
        position: absolute;
        top: 100%; /* Position below header */
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        flex-direction: column;
        padding-bottom: 10px;
    }
    .main-nav.active {
        display: flex; /* Show when active */
    }
     .main-nav > li > a {
        padding: 12px 20px;
        border-bottom: 1px solid #eee;
    }
     .main-nav > li > a::after {
        display: none; /* Hide underline effect on mobile */
    }

    .dropdown-menu {
        position: static; /* Change dropdown position */
        box-shadow: none;
        border-radius: 0;
        min-width: 100%;
        display: block; /* Always visible when parent is hovered/toggled */
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: #f9f9f9; /* Slight background change */
        padding-left: 20px; /* Indent dropdown items */
        transition: none; /* Remove transition */
        max-height: 0; /* Start collapsed */
        overflow: hidden;
        transition: max-height 0.4s ease-out;
    }
    .main-nav > li.open .dropdown-menu {
        max-height: 500px; /* Adjust max height as needed */
    }
     .dropdown-menu li a {
        padding: 10px 20px;
    }
    .menu-toggle {
        display: block; /* Show hamburger icon */
        position: absolute; /* Position relative to header-top */
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1100; /* Above nav */
    }
    .header-top {
        position: relative; /* Needed for absolute positioning of toggle */
    }
    .nav-container {
         position: absolute;
         top: 100%;
         left: 0;
         width: 100%;
         z-index: 999;
         /* Add background if needed when nav is open */
    }


    .programs-grid, .stories-grid, .stats-grid, .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adjust minmax for smaller screens */
    }
    .carousel-content {
        padding-left: 8%;
        max-width: 75%;
    }
    .carousel-content h2 {
        font-size: 42px;
    }
    .carousel-content p {
        font-size: 16px;
    }
    .leader-story {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .leader-image {
        flex: 0 0 auto; /* Reset flex basis */
        margin-bottom: 20px;
    }
    .leader-text {
        flex: 1 1 100%;
    }
     .header-contact-donate {
         gap: 10px; /* Reduce gap */
     }
     .contact-info-header { display: none; } /* Hide contact details in header */
     .social-icons { display: none; } /* Hide social icons in header */
     .header-top { padding: 15px 0; } /* Increase padding for logo/button */
     .logo img { height: 45px; }


}

@media (max-width: 768px) {
    body {
        padding-top: 80px; /* Further adjust padding */
    }
    .section-padding { padding: 40px 0; }
    .section-title { font-size: 28px; margin-bottom: 30px; }
    .section-subtitle { font-size: 16px; margin-bottom: 30px; }

    .mission-content {
        flex-direction: column; /* Stack vertically */
        text-align: center;
    }
     .mission-text {
        order: 2; /* Text below image */
        align-items: center; /* Center button */
     }
     .mission-image {
         order: 1;
         margin-bottom: 30px;
     }
     .mission-text h2 { font-size: 28px; }


    .hero-carousel { height: 450px; }
    .carousel-content {
        padding-left: 5%;
        max-width: 90%;
        text-align: center; /* Center text on mobile */
    }
    .carousel-content h2 {
        font-size: 36px;
    }
    .carousel-content h2 span {
        font-size: 1em; /* Same size span */
    }
     .carousel-content p { display: none; } /* Hide paragraph on small screens */
     .carousel-dots { bottom: 20px; }
     .carousel-dot { width: 10px; height: 10px; }


    .about-content-home {
        flex-direction: column;
        gap: 30px;
    }
    .about-text-home, .about-video-home {
        flex: 1 1 100%;
    }
    .about-video-home { min-height: 250px; }
    .play-button-overlay { font-size: 50px; width: 80px; height: 80px; }

    .programs-grid, .stories-grid {
        grid-template-columns: 1fr; /* Single column */
    }
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Smaller cards */
    }
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Slightly wider columns */
         text-align: center;
    }
     .footer-column h4::after {
         left: 50%;
         transform: translateX(-50%);
     }
     .footer-links a:hover {
         padding-left: 0; /* No indent */
     }
    .page-header h1 { font-size: 36px; }
    .page-header p { font-size: 16px; }
}

@media (max-width: 576px) {
     body { padding-top: 70px; }
     .logo img { height: 40px; }
     .btn { padding: 8px 20px; font-size: 13px; }
     .donate-button-mission { padding: 12px 25px; font-size: 14px; }
     .hero-carousel { height: 400px; }
     .carousel-content h2 { font-size: 28px; }

    .stats-grid, .involvement-options {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
     .form-container { padding: 20px; }
     .donation-amounts label { padding: 8px 12px; font-size: 14px; }

}
