/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}


/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #19723a;
    --secondary-color: #ffffff;
    --accent-color: #0f5a2e;
    --text-dark: #333;
    --text-light: #666;
    --text-white: #fff;
    --bg-light: #f8fdf9;
    --bg-white: #fff;
    --shadow: 0 2px 10px rgba(25, 114, 58, 0.1);
    --shadow-hover: 0 5px 20px rgba(25, 114, 58, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-dark);
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: #0f2847;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-white);
}

.btn-secondary:hover {
    background-color: #e8935a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 40px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img img {
    height: 32px;
    width: auto;
    max-width: 32px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(25, 114, 58, 0.85), rgba(15, 90, 46, 0.85)),
                url('../assets/hero-bg.jpg') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-white);
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 4rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-item {
    margin-bottom: 2.5rem;
}

.about-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.program-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.program-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.program-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===== IMPACT SECTION ===== */
.impact {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.impact-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.impact-icon {
    margin-bottom: 1.5rem;
}

.impact-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.impact-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.impact-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.impact-description {
    color: var(--text-light);
    font-size: 0.9rem;
}

.success-stories {
    margin-top: 4rem;
}

.success-stories h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.story-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.story-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===== SCHOLARS SECTION ===== */
.scholars {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.scholar-showcase {
    margin-bottom: 4rem;
}

.scholar-featured {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    margin-bottom: 4rem;
}

.scholar-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.scholar-info h3 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.scholar-info h4 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.scholar-achievement {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.scholar-details {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.scholar-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.scholar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.scholar-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.scholar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.scholar-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.scholar-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(27, 54, 93, 0.9));
    color: var(--text-white);
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
}

.scholar-overlay h4 {
    margin-bottom: 0.5rem;
}

.testimonials {
    text-align: center;
}

.testimonials h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
}

.testimonial.active {
    display: block;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.testimonial cite {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== APPLICATION SECTION ===== */
.apply {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.apply-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.apply-timeline h3,
.eligibility h3,
.apply-process h3,
.application-process h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent-color);
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-date {
    background-color: var(--accent-color);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    min-width: 100px;
    text-align: center;
    margin-right: 2rem;
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.criteria-list {
    list-style: none;
}

.criteria-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
}

.criteria-list i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.requirements-list {
    list-style: none;
    padding-left: 0;
}

.requirements-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    padding: 0;
}

.requirements-list i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.eligibility-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f0f9ff;
    border-left: 4px solid var(--primary-color);
    border-radius: var(--border-radius);
}

.eligibility-note p {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.eligibility-note strong {
    color: var(--primary-color);
}

.process-steps {
    margin-bottom: 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    background-color: var(--primary-color);
    color: var(--text-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.apply-button {
    text-align: center;
}

.apply-note {
    margin-top: 1rem;
    font-style: italic;
    color: var(--text-light);
}

.curriculum-section {
    margin-bottom: 2.5rem;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.curriculum-section h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.application-info {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.application-info h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.application-status {
    display: grid;
    gap: 2rem;
}

.status-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.status-card.closed {
    background-color: #fef2f2;
    border-left: 4px solid #dc2626;
}

.status-card.upcoming {
    background-color: #f0f9ff;
    border-left: 4px solid var(--primary-color);
}

.status-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.status-card.closed .status-icon {
    background-color: #dc2626;
    color: white;
}

.status-card.upcoming .status-icon {
    background-color: var(--primary-color);
    color: white;
}

.status-icon i {
    font-size: 1.5rem;
}

.status-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.status-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.faq {
    margin-top: 4rem;
}

.faq h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===== SUPPORT SECTION ===== */
.support {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.support-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.support-icon {
    margin-bottom: 1.5rem;
}

.support-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.support-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.donation-amounts {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.amount-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.amount-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.volunteer-list,
.partner-list {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}

.volunteer-list li,
.partner-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.sponsor-benefits {
    margin: 1.5rem 0;
    text-align: left;
}

.sponsor-benefits p {
    margin-bottom: 0.5rem;
}

.impact-statement {
    text-align: center;
}

.impact-statement h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.impact-examples {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.impact-example {
    text-align: center;
}

.impact-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.impact-description {
    color: var(--text-light);
    max-width: 150px;
}

/* ===== TEAM SECTION ===== */
.team {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.team-member {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    gap: 1rem;
}

.member-social a {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.member-social a:hover {
    color: var(--accent-color);
}

.advisors {
    margin-top: 4rem;
}

.advisors h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.advisor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advisor {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.advisor h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* ===== NEWS SECTION ===== */
.news {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.news-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.news-card.featured {
    grid-row: span 2;
}

.news-image {
    position: relative;
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card.featured .news-image img {
    height: 300px;
}

.news-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
}

.news-content {
    padding: 2rem;
}

.news-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-color);
}

.upcoming-events {
    margin-bottom: 4rem;
}

.upcoming-events h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.event-list {
    max-width: 800px;
    margin: 0 auto;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.event-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.event-date {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    min-width: 80px;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.event-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.event-time {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.newsletter-signup {
    text-align: center;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: var(--border-radius);
}

.newsletter-signup h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    min-width: 300px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.contact .section-header {
    animation: fadeInUp 1s ease;
}

.contact-content {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    background-color: var(--primary-color);
    color: var(--text-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent-color);
}

.contact-form {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 32px;
    width: auto;
    max-width: 32px;
    object-fit: contain;
}

.footer-logo span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-white);
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-section p {
    color: var(--text-white);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-section p i {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    color: var(--text-white);
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    color: white;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Typography */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    /* Hero */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    /* Sections */
    .container {
        padding: 0 1rem;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .program-grid {
        grid-template-columns: 1fr;
    }

    /* Impact */
    .impact-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    /* Scholars */
    .scholar-featured {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .scholar-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    /* Application */
    .apply-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-date {
        margin-bottom: 1rem;
        margin-right: 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .curriculum-section {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }

    .curriculum-section h4 {
        font-size: 1.2rem;
    }

    .application-info {
        padding: 2rem;
    }

    .status-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .status-icon {
        width: 50px;
        height: 50px;
    }

    .status-icon i {
        font-size: 1.3rem;
    }

    .status-content h4 {
        font-size: 1.1rem;
    }

    /* Support */
    .support-options {
        grid-template-columns: 1fr;
    }

    .impact-examples {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* Team */
    .team-grid {
        grid-template-columns: 1fr;
    }

    .advisor-grid {
        grid-template-columns: 1fr;
    }

    /* News */
    .news-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input {
        min-width: 100%;
        margin-bottom: 1rem;
    }

    /* Contact */
    .contact-content {
        max-width: 100%;
        padding: 0 1rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .impact-number {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .donation-amounts {
        flex-direction: column;
        gap: 0.5rem;
    }

    .amount-btn {
        width: 100%;
    }

    .curriculum-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .curriculum-section h4 {
        font-size: 1.1rem;
    }

    .application-info {
        padding: 1.5rem;
    }

    .status-card {
        padding: 1rem;
    }

    .status-icon {
        width: 40px;
        height: 40px;
    }

    .status-icon i {
        font-size: 1.1rem;
    }

    .status-content h4 {
        font-size: 1rem;
    }

    .status-content p {
        font-size: 0.9rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.hidden { display: none; }
.visible { display: block; }

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000;
        --secondary-color: #ff6600;
        --accent-color: #008000;
        --text-dark: #000;
        --text-light: #333;
    }
}

/* ===== HOME PAGE STYLES ===== */
.home-page {
    min-height: 100vh;
    background: linear-gradient(rgba(38, 75, 31, 0.948), rgba(255, 255, 255, 0.726)),
                url('../assets/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    padding-top: 120px; /* Account for fixed navbar */
}

.home-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.home-logo-icon {
    width: 120px;
    height: 120px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-hover);
    animation: fadeInUp 1s ease;
}

.home-logo-icon img {
    height: 120px;      /* 4px less than container */
    max-width: 120px;
    width: auto;
    object-fit: contain;
}
@media (max-width: 768px) {
    .home-logo-icon {
        background-color: transparent !important;
      border-radius: 0 !important;
      box-shadow: none !important;
    }

    .home-logo-icon img {
        height: 96px;   /* 4px less than container */
        max-width: 96px;
    }
}
@media (max-width: 480px) {
    .home-logo-icon {
        width: 80px;
        height: 80px;
    }
    .home-logo-icon img {
        height: 76px;   /* 4px less than container */
        max-width: 76px;
    }
}

.home-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: var(--primary-color);
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    animation: fadeInUp 1s ease 0.2s both;
}

.home-tagline {
    font-size: 1.4rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Mobile responsive for home page */
@media (max-width: 768px) {
    .home-page {
        padding-top: 100px;
    }
    
    .home-logo-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 1.5rem;
    }
    
    .home-logo-icon i {
        font-size: 3rem;
    }
    
    .home-logo-icon img {
        height: 70px;
        max-width: 70px;
    }
    
    .home-title {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }
    
    .home-tagline {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .home-page {
        padding: 1rem;
        padding-top: 90px;
    }
    
    .home-logo-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .home-logo-icon i {
        font-size: 2.5rem;
    }
    
    .home-logo-icon img {
        height: 60px;
        max-width: 60px;
    }
    
    .home-title {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .home-tagline {
        font-size: 1rem;
    }
}

/* ===== ACHIEVEMENTS PAGE STYLES ===== */
.achievements {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.achievements .section-header {
    animation: fadeInUp 1s ease;
}

.achievement-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--border-radius);
    color: var(--text-white);
}

.achievement-stats .stat-item {
    text-align: center;
}

.achievement-stats .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.achievement-stats .stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.9;
}

.student-stories {
    margin-top: 4rem;
}

.student-story {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.student-story:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.student-story:nth-child(even) {
    flex-direction: row-reverse;
}

.student-image {
    flex-shrink: 0;
}

.student-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.student-info {
    flex: 1;
}

.university-name {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.student-hometown {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.student-story-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Mobile responsive for achievements page */
@media (max-width: 768px) {
    .achievement-stats {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .student-story {
        flex-direction: column !important;
        text-align: center;
        gap: 2rem;
        align-items: center;
    }
    
    .student-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    
    .student-photo {
        width: 120px;
        height: 120px;
        margin: 0 auto;
        display: block;
    }
    
    .university-name {
        font-size: 1.5rem;
    }
    
    .student-story-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .achievement-stats .stat-number {
        font-size: 2.5rem;
    }
    
    .achievement-stats .stat-label {
        font-size: 1rem;
    }
    
    .student-photo {
        width: 100px;
        height: 100px;
    }
    
    .university-name {
        font-size: 1.3rem;
    }
}

/* ===== FOUNDERS PAGE STYLES ===== */
.founders {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.founders .section-header {
    animation: fadeInUp 1s ease;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.founder-image {
    margin-bottom: 1.5rem;
}

.founder-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
    margin: 0 auto;
    display: block;
}

.founder-info {
    text-align: center;
}

.founder-name {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.founder-school {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.founder-study {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.founder-email {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

/* Mobile responsive for founders page */
@media (max-width: 768px) {
    .founders-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .founder-photo {
        width: 120px;
        height: 120px;
    }
    
    .founder-name {
        font-size: 1.2rem;
    }
    
    .founder-school {
        font-size: 1rem;
    }
    
    .founder-study {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .founder-card {
        padding: 2rem;
    }
    
    .founder-photo {
        width: 100px;
        height: 100px;
    }
    
    .founder-name {
        font-size: 1.1rem;
    }
}

/* ===== ABOUT PAGE REDESIGN STYLES ===== */
.about-hero {
    min-height: 100vh;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    display: flex;
    align-items: center;
}

.about-hero .section-header {
    animation: fadeInUp 1s ease;
}

/* Story Section */
.story-section {
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.story-content {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.story-content:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.story-content h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

.story-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Mission and Vision Grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 1rem;
}

.mission-vision-grid .about-item {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mission-vision-grid .about-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.mission-vision-grid .about-item h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.mission-vision-grid .about-item p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Legacy support for existing about-main-content */
.about-main-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.about-main-content .about-item {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-main-content .about-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.about-main-content .about-item h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.about-main-content .about-item p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.programs {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.programs .section-header {
    animation: fadeInUp 1s ease;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.programs .program-card {
    background-color: var(--bg-light);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.programs .program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.program-icon {
    margin-bottom: 1.5rem;
}

.program-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.programs .program-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.programs .program-card p {
    line-height: 1.6;
    color: var(--text-light);
}

/* Mobile responsive for about page */
@media (max-width: 768px) {
    .about-hero {
        min-height: auto;
        padding: 6rem 0 3rem;
    }
    
    .about-main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-main-content .about-item {
        padding: 2rem;
    }
    
    .programs .program-card {
        padding: 2.5rem 1.5rem;
    }

    /* New about page sections mobile styles */
    .story-section {
        margin-top: 2rem;
        margin-bottom: 3rem;
    }

    .story-content {
        padding: 2rem;
    }

    .story-content h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .story-content p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 1rem;
    }

    .mission-vision-grid .about-item {
        padding: 2rem;
    }

    .mission-vision-grid .about-item h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .about-main-content .about-item {
        padding: 1.5rem;
    }
    
    .programs .program-card {
        padding: 2rem 1rem;
    }
    
    .program-icon i {
        font-size: 2.5rem;
    }
}