/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: #4A90E2;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #357ABD, #2563EB);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #4A90E2;
    border: 2px solid #4A90E2;
}

.btn-secondary:hover {
    background: #4A90E2;
    color: white;
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Top Header - White Background with Logo and Action Buttons */
.top-header {
    background: white;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.top-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Blue Navigation Sub-header */
.nav {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    padding: 0.75rem 0;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4A90E2;
    margin: 0;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.2;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-donate {
    background: linear-gradient(135deg, #7ED321, #5CB811);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(126, 211, 33, 0.3);
}

.btn-donate:hover {
    background: linear-gradient(135deg, #6BB01A, #4A9209);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(126, 211, 33, 0.4);
}

.btn-enroll {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.btn-enroll:hover {
    background: linear-gradient(135deg, #357ABD, #2563EB);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #00D4FF;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #00D4FF;
    border-radius: 1px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #374151;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #4A90E2;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #7ED321;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Programs Section */
.programs {
    padding: 100px 0;
    background: white;
}

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

.program-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00D4FF, #4A90E2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.program-icon i {
    font-size: 2rem;
    color: white;
}

.program-title {
    font-size: 1.5rem;
    color: #4A90E2;
    margin-bottom: 0.5rem;
}

.program-subtitle {
    font-size: 1rem;
    color: #7ED321;
    font-weight: 600;
    margin-bottom: 1rem;
}

.program-description {
    color: #6b7280;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8fafc;
}

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

.about-description {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.founder-info {
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.founder-info h3 {
    color: #4A90E2;
    margin-bottom: 1rem;
}

.founder h4 {
    color: #4A90E2;
    margin-bottom: 0.5rem;
}

.founder-title {
    color: #7ED321;
    font-weight: 600;
    margin-bottom: 1rem;
}

.founder-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Enhanced Founder Experience Styling */
.founder-experience {
    margin: 1.5rem 0;
}

.founder-experience h5 {
    color: #4A90E2;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.experience-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.positions h6,
.companies h6,
.geographic-reach h6 {
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.position-list,
.company-list,
.location-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.position-list li,
.company-list li,
.location-list li {
    position: relative;
    padding: 0.3rem 0 0.3rem 1.2rem;
    color: #4b5563;
    font-size: 0.95rem;
}

.position-list li::before {
    content: "▶";
    color: #7ED321;
    font-size: 0.8rem;
    position: absolute;
    left: 0;
    top: 0.35rem;
}

.company-list li::before {
    content: "◆";
    color: #4A90E2;
    font-size: 0.8rem;
    position: absolute;
    left: 0;
    top: 0.35rem;
}

.location-list li::before {
    content: "📍";
    font-size: 0.8rem;
    position: absolute;
    left: 0;
    top: 0.3rem;
}

.experience-summary {
    color: #6b7280;
    font-style: italic;
    margin: 1rem 0;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 6px;
    border-left: 3px solid #4A90E2;
}

.geographic-reach {
    margin-top: 1.5rem;
}

.location-note {
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.founder-mission {
    margin-top: 2rem;
}

.founder-mission h5 {
    color: #4A90E2;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.founder-quote {
    background: #f0f9ff;
    border-left: 4px solid #7ED321;
    padding: 1.5rem;
    margin: 0;
    border-radius: 0 8px 8px 0;
    color: #374151;
    font-style: italic;
    line-height: 1.7;
    position: relative;
}

.founder-quote::before {
    content: """;
    font-size: 3rem;
    color: #7ED321;
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    line-height: 1;
}

/* Mobile responsiveness for founder section */
@media (max-width: 768px) {
    .experience-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .founder-quote {
        padding: 1rem;
    }
    
    .founder-quote::before {
        font-size: 2rem;
        top: -0.3rem;
        left: 0.5rem;
    }
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Impact Section */
.impact {
    padding: 100px 0;
    background: white;
}

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

.impact-card {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.impact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7ED321, #6BB01A);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.impact-icon i {
    font-size: 1.8rem;
    color: white;
}

.impact-card h3 {
    color: #4A90E2;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.impact-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #f8fafc;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #4b5563;
    font-style: italic;
    line-height: 1.6;
    position: relative;
}

/* Removed quote styling */

.testimonial-author {
    margin-top: auto;
}

.testimonial-author h4 {
    color: #4A90E2;
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    color: #6b7280;
    font-size: 0.9rem;
}

.success-image {
    text-align: center;
    margin-top: 3rem;
}

.success-image img {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background: white;
}

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

.partners-text h3 {
    color: #4A90E2;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.partners-text > p {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.partner-types {
    margin-bottom: 2rem;
}

.partner-type {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #4A90E2;
}

.partner-type h4 {
    color: #4A90E2;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.partner-type h4 i {
    color: #7ED321;
}

.partner-type p {
    color: #6b7280;
    margin: 0;
}

.partner-cta {
    background: linear-gradient(135deg, #4A90E2, #00D4FF);
    padding: 2rem;
    border-radius: 16px;
    color: white;
    text-align: center;
}

.partner-cta h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.partner-cta p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.partners-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Enrollment Section */
.enrollment {
    padding: 100px 0;
    background: #f8fafc;
}

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

.enrollment-benefits {
    margin-top: 2rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit i {
    color: #10b981;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit span {
    color: #4b5563;
    line-height: 1.5;
}

/* Forms */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #4A90E2;
    margin-bottom: 2rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input[readonly] {
    background: #f8fafc;
    color: #6b7280;
    cursor: not-allowed;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-group label {
    position: absolute;
    left: 0.75rem;
    top: -0.25rem;
    color: #4A90E2;
    font-size: 0.8rem;
    pointer-events: none;
    background: white;
    padding: 0 0.5rem;
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label,
.form-group select:valid + label,
.form-group input[readonly] + label {
    top: -0.25rem;
    left: 0.75rem;
    font-size: 0.8rem;
    color: #4A90E2;
    background: white;
    padding: 0 0.5rem;
}

/* New Enrollment Form Styles */
.enroll-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.enroll-form:hover {
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
}

.form-header h3 {
    color: #4A90E2;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.form-header p {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group.full-width {
    grid-column: 1 / -1;
}

.input-group label {
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    display: block;
}

.input-group input,
.input-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
    background: white;
}

.input-group input[readonly] {
    background: #f8fafc;
    color: #4A90E2;
    font-weight: 500;
    cursor: not-allowed;
    border-color: #d1d5db;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #9ca3af;
    font-style: italic;
}

.input-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #357ABD, #2563EB);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn i {
    font-size: 1rem;
}

.form-note {
    margin-top: 1rem;
    color: #6b7280;
    font-size: 0.9rem;
    font-style: italic;
}

/* NEW ENROLLMENT FORM - Clean, No Floating Labels */
.enrollment-form-new {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.enrollment-form-new:hover {
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.enrollment-form-new .form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
}

.enrollment-form-new .form-header h3 {
    color: #4A90E2;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.enrollment-form-new .form-header p {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
}

.enrollment-form-new .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.enrollment-form-new .field-group {
    display: flex;
    flex-direction: column;
}

.enrollment-form-new .field-group.full-width {
    grid-column: 1 / -1;
}

.enrollment-form-new .field-group label {
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    display: block;
    position: static;
    background: none;
    padding: 0;
}

.enrollment-form-new .field-group input,
.enrollment-form-new .field-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
    width: 100%;
}

.enrollment-form-new .field-group input:focus,
.enrollment-form-new .field-group textarea:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
    background: white;
}

.enrollment-form-new .field-group input[readonly] {
    background: #f8fafc;
    color: #4A90E2;
    font-weight: 500;
    cursor: not-allowed;
    border-color: #d1d5db;
}

.enrollment-form-new .field-group input::placeholder,
.enrollment-form-new .field-group textarea::placeholder {
    color: #9ca3af;
    font-style: italic;
}

.enrollment-form-new .field-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.enrollment-form-new .form-submit {
    text-align: center;
    margin-top: 2rem;
}

.enroll-submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.enroll-submit-btn:hover {
    background: linear-gradient(135deg, #357ABD, #2563EB);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.4);
}

.enroll-submit-btn:active {
    transform: translateY(-1px);
}

.enroll-submit-btn i {
    font-size: 1rem;
}

.enrollment-form-new .form-note {
    margin-top: 1rem;
    color: #6b7280;
    font-size: 0.9rem;
    font-style: italic;
}

/* NEW CONTACT FORM - Clean, No Floating Labels */
.contact-form-new {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-form-new:hover {
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.contact-form-new .form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
}

.contact-form-new .form-header h3 {
    color: #4A90E2;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.contact-form-new .form-header p {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
}

.contact-form-new .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form-new .field-group {
    display: flex;
    flex-direction: column;
}

.contact-form-new .field-group.full-width {
    grid-column: 1 / -1;
}

.contact-form-new .field-group label {
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    display: block;
    position: static;
    background: none;
    padding: 0;
}

.contact-form-new .field-group input,
.contact-form-new .field-group textarea,
.contact-form-new .field-group select {
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
    width: 100%;
}

.contact-form-new .field-group input:focus,
.contact-form-new .field-group textarea:focus,
.contact-form-new .field-group select:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
    background: white;
}

.contact-form-new .field-group input::placeholder,
.contact-form-new .field-group textarea::placeholder {
    color: #9ca3af;
    font-style: italic;
}

.contact-form-new .field-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.contact-form-new .field-group select {
    cursor: pointer;
}

.contact-form-new .field-group select option {
    padding: 0.5rem;
}

.contact-form-new .form-submit {
    text-align: center;
    margin-top: 2rem;
}

.contact-submit-btn {
    background: linear-gradient(135deg, #7ED321, #6BB01A);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 6px 20px rgba(126, 211, 33, 0.3);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, #6BB01A, #5CB811);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(126, 211, 33, 0.4);
}

.contact-submit-btn:active {
    transform: translateY(-1px);
}

.contact-submit-btn i {
    font-size: 1rem;
}

.contact-form-new .form-note {
    margin-top: 1rem;
    color: #6b7280;
    font-size: 0.9rem;
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #4A90E2;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4A90E2, #00D4FF);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details h3 {
    color: #4A90E2;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
}

.contact-details a {
    color: #4A90E2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #00D4FF;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 40px 0 15px;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.footer-brand h3 {
    color: white;
    margin: 0;
}

.footer-tagline {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

.footer-contact {
    margin-top: 1rem;
}

.footer-contact p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: #00D4FF;
    width: 16px;
}

.footer-contact a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: white;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #4A90E2;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .partners-content,
    .enrollment-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .top-header {
        padding: 1rem 0;
    }
    
    .top-header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    
    .nav-brand {
        gap: 10px;
        flex: 1;
    }
    
    .brand-tagline {
        display: none;
    }
    
    .action-buttons {
        flex-direction: row;
        gap: 0.5rem;
        flex-shrink: 0;
        align-items: center;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 140px;
        flex-direction: column;
        background: linear-gradient(135deg, #4A90E2, #357ABD);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        gap: 0;
        z-index: 999;
        height: calc(100vh - 140px);
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 0;
    }
    
    .nav-link {
        color: white !important;
        font-size: 1.1rem;
        padding: 1.5rem 2rem;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        text-decoration: none;
        font-weight: 500;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 255, 255, 0.1);
        color: white !important;
    }
    
    .nav-link::after {
        display: none;
    }

    .nav {
        background: transparent;
        box-shadow: none;
        position: relative;
        z-index: 1000;
    }
    
    .nav-container {
        display: block;
        position: relative;
    }
    
    .nav-toggle {
        display: flex;
        background: linear-gradient(135deg, #4A90E2, #357ABD);
        color: white;
        border-radius: 6px;
        padding: 0;
        min-width: 40px;
        width: 40px;
        height: 31px;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 1.5px;
        box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    }
    
    .nav-toggle span {
        background: white;
        width: 14px;
        height: 1.5px;
    }

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

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

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

    .logo {
        width: 50px;
        height: 50px;
    }
    
    .brand-name {
        font-size: 1.0rem;
    }
    
    
    .btn-donate,
    .btn-enroll {
        padding: 8px 12px;
        font-size: 0.8rem;
        width: auto;
        min-width: 85px;
        white-space: nowrap;
    }

    .hero {
        padding: 100px 0 60px;
    }

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

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

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

    .hero-buttons {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .programs-grid,
    .impact-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .enroll-form {
        padding: 2rem;
    }
    
    .form-header h3 {
        font-size: 1.75rem;
    }
    
    .submit-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* New enrollment form responsive */
    .enrollment-form-new .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .enrollment-form-new {
        padding: 2rem;
    }
    
    .enrollment-form-new .form-header h3 {
        font-size: 1.75rem;
    }
    
    .enroll-submit-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Contact form responsive */
    .contact-form-new .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form-new {
        padding: 2rem;
    }
    
    .contact-form-new .form-header h3 {
        font-size: 1.75rem;
    }
    
    .contact-submit-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .top-header {
        padding: 0.75rem 0;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .program-card,
    .contact-form {
        padding: 1.5rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .logo {
        width: 40px;
        height: 40px;
    }
    
    .brand-name {
        font-size: 0.95rem;
    }
    
    .action-buttons {
        gap: 0.25rem;
    }
    
    .btn-donate,
    .btn-enroll {
        padding: 6px 10px;
        font-size: 0.7rem;
        min-width: 75px;
    }
    
    .nav-toggle {
        padding: 0;
        min-width: 35px;
        width: 35px;
        height: 25px;
        gap: 1px;
    }
    
    .nav-toggle span {
        width: 12px;
        height: 1px;
    }
    
    .nav-menu {
        top: 60px;
    }
    
    .enroll-form {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-header p {
        font-size: 0.9rem;
    }
    
    .input-group label {
        font-size: 0.9rem;
    }
    
    .input-group input,
    .input-group textarea {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
    
    /* New enrollment form mobile */
    .enrollment-form-new {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .enrollment-form-new .form-header h3 {
        font-size: 1.5rem;
    }
    
    .enrollment-form-new .form-header p {
        font-size: 0.9rem;
    }
    
    .enrollment-form-new .field-group label {
        font-size: 0.9rem;
    }
    
    .enrollment-form-new .field-group input,
    .enrollment-form-new .field-group textarea {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .enroll-submit-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
    
    /* Contact form mobile */
    .contact-form-new {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .contact-form-new .form-header h3 {
        font-size: 1.5rem;
    }
    
    .contact-form-new .form-header p {
        font-size: 0.9rem;
    }
    
    .contact-form-new .field-group label {
        font-size: 0.9rem;
    }
    
    .contact-form-new .field-group input,
    .contact-form-new .field-group textarea,
    .contact-form-new .field-group select {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .contact-submit-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for better accessibility */
button:focus,
.btn:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #4A90E2;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: white;
    }
    
    .program-card,
    .impact-card,
    .testimonial-card {
        border: 2px solid #000;
    }
}