* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

header {
    background-color: rgba(26, 95, 122, 0.9);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.5rem 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffa500;
}

.hero {
    background-image: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

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

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.5s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #ffa500;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: bold;
    /* FIX: Added border: none and cursor: pointer */
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #ff8c00;
}

.cause {
    padding: 4rem 0;
    text-align: center;
    background-color: #f8f8f8;
}

.cause h2 {
    color: #1a5f7a;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cause p {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 3rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffa500;
    margin-bottom: 0.5rem;
}

.progress-section {
    padding: 4rem 0;
    text-align: center;
    background-color: #fff;
}

.progress-bar {
    width: 100%;
    max-width: 600px;
    height: 30px;
    background-color: #e0e0e0;
    border-radius: 15px;
    margin: 2rem auto;
    overflow: hidden;
    position: relative;
}

.progress {
    width: 0%;
    height: 100%;
    background-color: #ffa500;
    animation: fillProgress 2s ease-out;
    position: relative;
}

.progress::after {
    content: '0%';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
}

@keyframes fillProgress {
    from { width: 0; }
    to { width: 0%; }
}

.founders {
    padding: 4rem 0;
    background-color: #1a5f7a;
    color: white;
}

.founders h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.founder-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.founder-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    margin: 1rem;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    transition: transform 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-10px);
}

.founder-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.founder-card h3 {
    margin-bottom: 0.5rem;
}

.testimonials {
    padding: 4rem 0;
    background-color: #f8f8f8;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #1a5f7a;
}

.testimonial-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    margin: 1rem;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.cta {
    background-color: #1a5f7a;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.donation-form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
}

.donation-form input {
    margin: 0.5rem 0;
    padding: 0.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
}

.donation-amounts {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
}

.amount-btn {
    background-color: #ffa500;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.amount-btn:hover {
    background-color: #ff8c00;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.footer-links ul li {
    margin: 0 1rem;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffa500;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero h1 {
      font-size: 3rem;
    }
    
    .founder-cards {
      justify-content: center;
    }
  }
  
  @media (max-width: 768px) {
    .header-content {
      flex-direction: column;
      gap: 1rem;
    }
    
    nav ul {
      flex-wrap: wrap;
      justify-content: center;
    }
    
    nav ul li {
      margin: 0.5rem;
    }
    
    .hero {
      height: 60vh;
    }
    
    .hero h1 {
      font-size: 2.5rem;
    }
    
    .hero p {
      font-size: 1rem;
    }
    
    .stats {
      flex-direction: column;
      gap: 2rem;
    }
    
    .stat-item {
      margin-bottom: 1rem;
    }
    
    .donation-amounts {
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    
    .amount-btn {
      flex: 1;
      min-width: 45%;
      margin-bottom: 0.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 0 1rem;
    }
    
    .hero {
      height: 50vh;
    }
    
    .hero h1 {
      font-size: 2rem;
    }
    
    .cause h2, 
    .founders h2,
    .progress-section h2,
    .cta h2 {
      font-size: 1.8rem;
    }
    
    .founder-card {
      min-width: 100%;
    }
    
    .footer-content {
      flex-direction: column;
      gap: 1rem;
    }
    
    .footer-links ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .footer-links ul li {
      margin: 0.25rem 0;
    }
  }
/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
  }
  
  @media (max-width: 768px) {
    .header-content {
      position: relative;
    }
    
    .mobile-menu-toggle {
      display: block;
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      z-index: 1001;      
    }
    
    nav {
      width: 100%;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: rgba(26, 95, 122, 0.95);
      padding: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
      z-index: 1000;
    }
    
    nav.show {
      max-height: 300px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    nav ul {
      flex-direction: column;
      width: 100%;
      padding: 0.5rem 0;
    }
    
    nav ul li {
      margin: 0;
      width: 100%;
      text-align: center;
    }
    
    nav ul li a {
      padding: 0.75rem 1rem;
      display: block;
      width: 100%;
    }
  }
