/* Global Styles */
:root {
    --primary: #6a1b9a; /* Purple */
    --secondary: #ffd700; /* Gold */
    --dark: #333;
    --light: #f9f9f9;
    --highlight: #f0e6ff;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    background: #fff;
    color: var(--dark);
    line-height: 1.6;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .btn-primary {
    background: var(--primary);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
    background: #4a148c;
    transform: translateY(-3px);
  }
  
  .btn-secondary {
    background: var(--secondary);
    color: var(--dark);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .btn-secondary:hover {
    background: #e6c200;
    transform: translateY(-3px);
  }
  
  /* Header */
  .header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
  }
  
  .navbar ul {
    display: flex;
    list-style: none;
    align-items: center;
  }
  
  .navbar ul li {
    margin-left: 30px;
    position: relative;
  }
  
  .navbar ul li a {
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .navbar ul li a:hover {
    color: var(--primary);
  }
  
  .dropdown {
    position: absolute;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    top: 30px;
    left: 0;
    width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .navbar ul li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    top: 40px;
  }
  
  .dropdown li {
    margin: 0;
    padding: 10px 20px;
  }
  
  .dropdown li:hover {
    background: var(--highlight);
  }
  
  .menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px;
  }
  .hero-content{
    height: 100vh;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    
  }
  .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    
  }
  
  .hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
  }
  
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  /* Initiatives */
  .initiatives {
    padding: 80px 0;
    background: var(--light);
  }
  
  .initiatives h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--primary);
  }
  
  .initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .initiative-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }
  
  .initiative-card.highlight {
    border-top: 5px solid var(--primary);
  }
  
  .initiative-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .initiative-card .icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
  }
  
  .initiative-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
  
  .initiative-card p {
    color: #666;
  }
  
  .initiative-card.highlight a {
    color: var(--primary);
    font-weight: 600;
  }
  
/* Partners Section */
.partners {
  padding: 80px 0;
  background: var(--light);
}
.section-title{
  text-align: center;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.partners-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: #555;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  align-items: center;
  justify-items: center;
}

.partner-logo {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.partner-logo img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .partner-logo {
    height: 80px;
    padding: 15px;
  }
}


  /* Stats */
  .stats {
    padding: 60px 0;
    background: var(--primary);
    color: white;
    text-align: center;
  }
  
  .stats .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  
  .stat-item {
    padding: 20px;
  }
  
  .stat-item h3 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  /* Stories */
  .stories {
    padding: 80px 0;
  }
  
  .stories h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--primary);
  }
  
  .story-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
  }
  
  .story-card {
    min-width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    text-align: center;
    scroll-snap-align: start;
  }
  
  .story-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
  }
  
  .story-card h4 {
    margin-bottom: 10px;
    color: var(--primary);
  }
  
  /* Donate */
  .donate {
    padding: 80px 0;
    background: var(--light);
    text-align: center;
  }
  
  .donate h2 {
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: var(--primary);
  }
  
  .progress-bar {
    background: #e0e0e0;
    height: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto 30px;
    position: relative;
  }
  
  .progress {
    background: var(--secondary);
    height: 100%;
    border-radius: 10px;
  }
  
  .progress-bar span {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
  }
  
  .donation-options {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  /* Footer */
  .footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 0;
  }
  
  .footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
  }
  
  .footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--secondary);
  }
  
  .footer-links ul {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a:hover {
    color: var(--secondary);
  }
  
  .footer-social {
    display: flex;
    gap: 20px;
  }
  
  .footer-social a {
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }
  
  .footer-social a:hover {
    color: var(--secondary);
  }
  
  .copyright {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #444;
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .navbar {
      position: fixed;
      top: 80px;
      left: -100%;
      background: white;
      width: 80%;
      height: calc(100vh - 80px);
      padding: 40px;
      transition: all 0.5s ease;
    }
  
    .navbar.active {
      left: 0;
    }
  
    .navbar ul {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .navbar ul li {
      margin: 15px 0;
    }
  
    .dropdown {
      position: static;
      opacity: 1;
      visibility: visible;
      box-shadow: none;
      width: 100%;
      padding: 0;
      margin-top: 10px;
    }
  
    .menu-toggle {
      display: block;
    }
  
    .hero-content h1 {
      font-size: 2.5rem;
    }
  }
  
  @media (max-width: 768px) {
    .hero-buttons, .donation-options {
      flex-direction: column;
      align-items: center;
    }
  
    .btn-primary, .btn-secondary {
      width: 100%;
      max-width: 250px;
      margin-bottom: 15px;
    }
  }
  /* Mission Section */
.mission {
    padding: 80px 0;
    background: var(--light);
  }
  
  .mission h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--primary);
  }
  
  .mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .mission-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .mission-card:hover {
    transform: translateY(-10px);
  }
  
  .mission-card .icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
  }
  
  .mission-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
  
  /* Timeline */
  .timeline {
    padding: 80px 0;
    background: white;
  }
  
  .timeline h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--primary);
  }
  
  .timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--primary);
    transform: translateX(-50%);
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
  }
  
  .timeline-item:nth-child(odd) {
    padding-right: 50%;
    text-align: right;
  }
  
  .timeline-item:nth-child(even) {
    padding-left: 50%;
    text-align: left;
  }
  
  .timeline-year {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .timeline-content {
    background: var(--light);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Swiper Carousel */
  .hero-swiper, .testimonial-swiper {
    width: 100%;
    height: 100%;
  }
  
  .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .swiper-pagination-bullet-active {
    background: var(--secondary) !important;
  }
  
  /* AOS Animations */
  [data-aos] {
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  [data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(20px);
  }
  
  [data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-20px);
  }
  
  [data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(20px);
  }
  
  [data-aos].aos-animate {
    opacity: 1;
    transform: translate(0);
  }
  
  
  /* Dropdown styles */
.navbar ul li {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 200px;
  z-index: 999;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-menu li {
  display: block;
}

.dropdown-menu li a {
  padding: 10px;
  display: block;
  color: #333;
  text-decoration: none;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Optional: Style tweaks */
.dropdown-menu li a:hover {
  background-color: #f0f0f0;
}


@media (max-width: 768px) {
  .partners-grid, .mission-grid, .initiatives-grid {
    flex-direction: column;
    gap: 1rem;
  }
}


/* Add this to styles.css */
.navbar.active {
  display: block; /* Show nav on toggle */
}



.contact-hero {
  background: linear-gradient(to right, #f4f4f4, #e9f5f4);
  padding: 60px 0;
  text-align: center;
}
.contact-info {
  background-color: #fff;
  padding: 40px 0;
}
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.contact-box {
  flex: 1 1 30%;
}
.contact-form-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
}
.contact-form button {
  padding: 12px 24px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}
.map-section iframe {
  width: 100%;
  border-radius: 10px;
}
.social-follow .social-icons {
  text-align: center;
  margin-top: 20px;
}
.social-icons a {
  margin: 0 10px;
  font-size: 24px;
  color: #444;
}




.contact-info-section {
  padding: 50px 20px;
  background: #f5f7fa;
  font-family: 'Segoe UI', sans-serif;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-box {
  background: white;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-box h3 {
  margin-bottom: 15px;
  color: #2c3e50;
  font-size: 20px;
  font-weight: 600;
}

.contact-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

.contact-box a {
  color: #0077cc;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 3+ columns responsive */
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  max-width: 600px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid a {
  display: block;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

