* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange-500: #ff6a00ff;
    --yellow-500: #eab308;
    --black: #000000;
    --white: #ffffff;
    --gray-100: #f3f4f6;
    --gray-600: #4b5563;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.video-background {
    position: absolute;
    inset: 0;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0,0,0,0.7), rgba(249,115,22,0.2), rgba(234,179,8,0.3));
}

.video-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent, transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem 1rem;
}

.hero-text {
    max-width: 64rem;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(to right, var(--orange-500), var(--yellow-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(to right, var(--orange-500), var(--yellow-500));
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
}

.hero-quote {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    font-style: italic;
    border-left: 4px solid var(--yellow-500);
    padding-left: 1.5rem;
    max-width: 40rem;
    margin: 0 auto;
}

/* Section Heading */
.section-heading {
    margin-bottom: 2.5rem;
    text-align: center;
}

.section-heading h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--black);
}

.section-heading h2.text-white {
    color: white;
}

.section-heading .accent {
    color: var(--orange-500);
}

.heading-line {
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(to right, var(--orange-500), var(--yellow-500), var(--orange-500));
    margin: 0.75rem auto 0;
}

/* What We Do Section */
.what-we-do-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, rgba(234,179,8,0.05), rgba(249,115,22,0.05));
}

.section-intro {
    max-width: 48rem;
    margin: 0 auto 4rem;
    text-align: center;
    color: rgba(0,0,0,0.8);
    font-size: 1.125rem;
    line-height: 1.8;
}

.programs-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.program-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: all 0.5s;
}

.program-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.program-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.program-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: linear-gradient(to bottom right, var(--orange-500), var(--yellow-500));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.program-card:hover .program-icon {
    transform: scale(1.1);
}

.program-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--orange-500), var(--yellow-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.75rem;
}

.program-info p {
    color: rgba(0,0,0,0.8);
    line-height: 1.6;
}

.program-activities h4 {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.program-activities ul {
    list-style: none;
}

.program-activities li {
    display: flex;
    align-items: flex-start;
    color: rgba(0,0,0,0.75);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.program-activities li::before {
    content: "•";
    color: var(--yellow-500);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    font-size: 1.25rem;
}

.wave-background {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      background: linear-gradient(to bottom, #ededec, #fefefe);
    }

    .wave {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 200%;
      height: 100%;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%2306b6d4"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%2306b6d4"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%2310b981"/></svg>') repeat-x;
      animation: wave 15s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
    }

    .wave:nth-of-type(2) {
      bottom: -10px;
      animation: wave 20s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 7s ease -1.25s infinite;
      opacity: 0.8;
    }

    .wave:nth-of-type(3) {
      bottom: -20px;
      animation: wave 25s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.25s infinite, swell 9s ease -2.5s infinite;
      opacity: 0.6;
    }

    @keyframes wave {
      0% { transform: translateX(0); }
      50% { transform: translateX(-25%); }
      100% { transform: translateX(-50%); }
    }

    @keyframes swell {
      0%, 100% { transform: translateY(0) translateX(0); }
      50% { transform: translateY(-15px) translateX(-25%); }
    }

    .impact-box {
      max-width: 1200px;
      margin: 0 auto;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-radius: 2rem;
      overflow: hidden;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
      position: relative;
    }

    .impact-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 6px;
      background: linear-gradient(90deg, #f97316, #eab308, #f97316);
      background-size: 200% 100%;
      animation: gradientMove 3s ease infinite;
    }

    @keyframes gradientMove {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    .impact-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
    }

    @media (min-width: 768px) {
      .impact-content {
        grid-template-columns: 1fr 1fr;
      }
    }

    .text-section {
      padding: 3rem 2.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(234, 179, 8, 0.05) 100%);
    }

    .text-section h3 {
      font-size: 2.5rem;
      font-weight: 800;
      background: linear-gradient(135deg, #f97316 0%, #eab308 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
    }

    .text-section h3::after {
      content: '';
      position: absolute;
      bottom: -0.5rem;
      left: 0;
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, #f97316, #eab308);
      border-radius: 2px;
    }

    .text-section p {
      font-size: 1.125rem;
      line-height: 1.8;
      color: #374151;
      margin-top: 1rem;
    }

    .image-section {
      position: relative;
      min-height: 400px;
      overflow: hidden;
    }

    .image-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(234, 179, 8, 0.2) 100%);
      z-index: 1;
      pointer-events: none;
    }

    .image-section img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .impact-box:hover .image-section img {
      transform: scale(1.05);
    }

    .decorative-circle {
      position: absolute;
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(234, 179, 8, 0.1));
      z-index: 0;
    }

    .circle-1 {
      top: -50px;
      right: -50px;
    }

    .circle-2 {
      bottom: -30px;
      left: -30px;
      width: 100px;
      height: 100px;
    }

    @media (max-width: 767px) {
      .text-section {
        padding: 2rem 1.5rem;
      }

      .text-section h3 {
        font-size: 2rem;
      }

      .text-section p {
        font-size: 1rem;
      }

      .image-section {
        min-height: 300px;
      }
    }

    .stats-highlight {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 2px solid rgba(249, 115, 22, 0.1);
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-size: 1.75rem;
      font-weight: 800;
      background: linear-gradient(135deg, #f97316 0%, #eab308 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .stat-label {
      font-size: 0.875rem;
      color: #6b7280;
      margin-top: 0.25rem;
    }

/* About Section */
.about-section {
    padding: 5rem 0;
    background: white;
}

.services-box {
    background: linear-gradient(to bottom right, rgba(234,179,8,0.1), rgba(249,115,22,0.1));
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.services-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2rem;
    text-align: center;
}

.services-grid {
    display: grid;
    gap: 1.5rem;
}

.service-item {
    text-align: center;
}

.service-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(to bottom right, var(--orange-500), var(--yellow-500));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
}

.service-item h4 {
    font-weight: 700;
    font-size: 1.125rem;
    background: linear-gradient(to right, var(--orange-500), var(--yellow-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.service-item p {
    color: rgba(0,0,0,0.8);
    font-weight: 500;
}

/* Latest News Section */
.latest-news-section {
    padding: 5rem 0;
    background: white;
}

.news-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all 0.5s;
}

.news-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    border-color: rgba(249,115,22,0.3);
}

.news-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.75rem;
}

.news-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.news-card:hover h3 {
    color: var(--orange-500);
}

.news-content p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.875rem;
}

.read-more {
    color: var(--orange-500);
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--yellow-500);
}

.text-center {
    text-align: center;
}

/* Give Section */
.give-section {
    padding: 5rem 0;
    background: var(--black);
    color: white;
    text-align: center;
}

.give-description {
    max-width: 40rem;
    margin: 0 auto 3rem;
    color: rgba(255,255,255,0.85);
}

.give-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1rem;
}

.give-note {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
}

/* Contact Section */
.contact-sections {
    padding: 5rem 0;
    background: white;
}

.contact-form-wrapper {
    max-width: 40rem;
    margin: 0 auto;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(0,0,0,0.2);
    border-radius: 0.75rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--orange-500);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .give-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .contact-form button {
        width: auto;
        margin: 0 auto;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .section-heading h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}