/* ===== Base Styles ===== */
:root {
  --primary-color: #FF6B35; /* Vibrant orange for CTAs */
  --secondary-color: #004E89; /* Trust-building blue */
  --accent-color: #FFD166; /* Highlight color */
  --dark-color: #333333;
  --light-color: #FFFFFF;
  --success-color: #4BB543;
  --text-color: #333333;
  --text-light: #777777;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #f9f9f9;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn:hover {
  background-color: #e05a2b;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background-color: var(--secondary-color);
  box-shadow: 0 4px 15px rgba(0, 78, 137, 0.3);
}

.btn-secondary:hover {
  background-color: #003d6d;
  box-shadow: 0 6px 20px rgba(0, 78, 137, 0.4);
}

.text-center {
  text-align: center;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
}

/* ===== Header Styles ===== */
header {
  background-color: var(--light-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 60px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 30px;
  position: relative;
}

.nav-menu a {
  font-weight: 600;
  color: var(--dark-color);
  padding: 5px 0;
  position: relative;
}

.nav-menu a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-menu a:hover:after {
  width: 100%;
}

.nav-menu .donate-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  margin-left: 20px;
}

.nav-menu .donate-btn:hover {
  background-color: #e05a2b;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: var(--dark-color);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/hero-bg.jpg') no-repeat center center/cover;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  margin-top: 80px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===== Impact Counter ===== */
.impact-counter {
  background-color: var(--secondary-color);
  color: white;
  padding: 40px 0;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.counter-item {
  text-align: center;
}

.counter-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.counter-text {
  font-size: 1.1rem;
}

/* ===== About Section ===== */
.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/about-hero.jpg') no-repeat center center/cover;
  height: 50vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  margin-top: 80px;
}

.about-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-section {
  padding: 80px 0;
  background-color: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-size: 2rem;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.registration-badge {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid var(--primary-color);
  margin-top: 30px;
}

/* ===== Video Section ===== */
.video-section {
  background-color: #f5f7fa;
  padding: 80px 0;
  text-align: center;
}

.video-container {
  max-width: 800px;
  margin: 40px auto 0;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* ===== Initiatives Section ===== */
.initiatives-section {
  padding: 80px 0;
  background-color: white;
}

.initiatives-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.initiative-card {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.initiative-card:hover {
  transform: translateY(-5px);
}

.initiative-card h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.initiative-card ul {
  list-style-position: inside;
  margin-top: 15px;
}

.initiative-card li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* ===== Future Plans Section ===== */
.future-plans-section {
  background-color: var(--secondary-color);
  color: white;
  padding: 80px 0;
}

.future-plans-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.future-plans-image img {
  width: 100%;
  border-radius: 10px;
}

.acquisition-highlight {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
  margin-top: 30px;
}

/* ===== Team Section ===== */
.team-section {
  padding: 80px 0;
  background-color: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team-member {
  text-align: center;
  background-color: #f8f9fa;
  padding: 30px 20px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 5px solid var(--primary-color);
}

.team-member h3 {
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.team-member p {
  color: #666;
  font-style: italic;
}

/* ===== Get Involved Page ===== */
.involvement-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/get-involved-hero.jpg') no-repeat center center/cover;
  height: 50vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  margin-top: 80px;
}

.involvement-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.ways-to-help {
  padding: 80px 0;
  background-color: white;
}

.ways-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.ways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.way-card {
  background-color: #f8f9fa;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.way-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.way-image {
  height: 200px;
  overflow: hidden;
}

.way-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.way-card:hover .way-image img {
  transform: scale(1.1);
}

.way-content {
  padding: 30px;
}

.way-content h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.bank-details {
  background-color: #e9ecef;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.bank-details p {
  margin-bottom: 5px;
  font-size: 0.9rem;
}

/* ===== Donation Impact ===== */
.donation-impact {
  background-color: var(--secondary-color);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.impact-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
}

.impact-item i {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.impact-item h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* ===== Volunteer Section ===== */
.volunteer-section {
  padding: 80px 0;
  background-color: white;
}

.volunteer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.volunteer-image img {
  width: 100%;
  border-radius: 10px;
}

.volunteer-form .form-group {
  margin-bottom: 20px;
}

.volunteer-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.volunteer-form input,
.volunteer-form textarea,
.volunteer-form select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.volunteer-form textarea {
  height: 120px;
}

/* ===== Shop Preview ===== */
.shop-preview {
  background-color: #f5f7fa;
  padding: 80px 0;
}

.shop-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.shop-item {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.shop-item:hover {
  transform: translateY(-5px);
}

.shop-item-image {
  height: 200px;
  overflow: hidden;
}

.shop-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-item-content {
  padding: 20px;
}

.shop-item-content h4 {
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.shop-item-content .price {
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* ===== Contact Page ===== */
.contact-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/contact-hero.jpg') no-repeat center center/cover;
  height: 50vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  margin-top: 80px;
}

.contact-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.contact-section {
  padding: 80px 0;
  background-color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  background-color: #f8f9fa;
  padding: 40px;
  border-radius: 8px;
}

.contact-info h2 {
  color: var(--secondary-color);
  margin-bottom: 30px;
  font-size: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 20px;
  width: 30px;
  text-align: center;
}

.contact-text h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.contact-form {
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
  color: var(--secondary-color);
  margin-bottom: 30px;
  font-size: 2rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.form-group textarea {
  height: 150px;
}

.map-section {
  padding: 0 0 80px;
}

.map-container {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== Shop Page ===== */
.shop-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/shop-hero.jpg') no-repeat center center/cover;
  height: 50vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  margin-top: 80px;
}

.shop-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.shop-intro {
  padding: 80px 0;
  background-color: white;
  text-align: center;
}

.impact-banner {
  background-color: var(--primary-color);
  color: white;
  padding: 30px;
  border-radius: 8px;
  margin-top: 30px;
}

.products-section {
  padding: 60px 0;
  background-color: #f5f7fa;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 10px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: bold;
}

.product-content {
  padding: 20px;
}

.product-content h3 {
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.product-description {
  color: #666;
  margin-bottom: 15px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.product-price {
  font-weight: bold;
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 15px;
}

.product-rating {
  color: var(--accent-color);
}

/* ===== Programs Page ===== */
.programs-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/programs-hero.jpg') no-repeat center center/cover;
  height: 50vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  margin-top: 80px;
}

.programs-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.programs-intro {
  padding: 80px 0;
  background-color: white;
  text-align: center;
}

.program-categories {
  padding: 60px 0;
  background-color: #f5f7fa;
}

.program-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.program-tab {
  padding: 12px 25px;
  background-color: #e9ecef;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.program-tab:hover {
  background-color: #ddd;
}

.program-tab.active {
  background-color: var(--secondary-color);
  color: white;
}

.program-content {
  display: none;
}

.program-content.active {
  display: block;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.program-item {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.program-image {
  height: 200px;
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.program-item:hover .program-image img {
  transform: scale(1.1);
}

.program-details {
  padding: 25px;
}

.program-details h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.program-details p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.program-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.8rem;
  color: #666;
}

.future-program {
  padding: 80px 0;
  background-color: var(--secondary-color);
  color: white;
  text-align: center;
}

.land-highlight {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Testimonials ===== */
.testimonials-section {
  padding: 80px 0;
  background-color: white;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-item {
  text-align: center;
  padding: 0 20px;
}

.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 30px;
  position: relative;
}

.testimonial-text:before,
.testimonial-text:after {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.3;
  position: absolute;
}

.testimonial-text:before {
  top: -20px;
  left: -15px;
}

.testimonial-text:after {
  bottom: -40px;
  right: -15px;
}

.testimonial-author {
  font-weight: 700;
  color: var(--secondary-color);
}

/* ===== Newsletter ===== */
.newsletter {
  background-color: var(--secondary-color);
  color: white;
  text-align: center;
  padding: 60px 0;
}

.newsletter-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
}

.newsletter-input {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
}

.newsletter-btn {
  padding: 15px 30px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
}

/* ===== Delivery Info ===== */
.delivery-info {
  background-color: var(--secondary-color);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.whatsapp-btn {
  background-color: #25D366;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-btn:hover {
  background-color: #128C7E;
  color: white;
}

/* ===== Footer ===== */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 20px;
}

.footer-about p {
  color: #bbb;
}

.footer-links h3,
.footer-contact h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bbb;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-icon {
  margin-right: 10px;
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #bbb;
  font-size: 0.9rem;
}

/* ===== Floating Donate Button ===== */
.floating-donate {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--primary-color);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.5);
  z-index: 999;
  transition: all 0.3s ease;
}

.floating-donate:hover {
  transform: scale(1.1);
  background-color: #e05a2b;
}

/* ===== Modal ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1001;
  overflow-y: auto;
}

.modal-content {
  background-color: white;
  max-width: 600px;
  margin: 50px auto;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
}

.modal-title {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.donation-form .form-group {
  margin-bottom: 20px;
}

.donation-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.donation-form input,
.donation-form select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.donation-form button {
  width: 100%;
  margin-top: 10px;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .counter-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .initiatives-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hamburger {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    transition: left 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    margin: 15px 0;
  }
  
  .nav-menu .donate-btn {
    margin-left: 0;
    margin-top: 10px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .about-grid,
  .future-plans-content,
  .volunteer-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .programs-grid,
  .products-grid,
  .shop-items {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero,
  .about-hero,
  .involvement-hero,
  .contact-hero,
  .shop-hero,
  .programs-hero {
    height: 40vh;
  }
  
  .hero h1,
  .about-hero-content h1,
  .involvement-hero-content h1,
  .contact-hero-content h1,
  .shop-hero-content h1,
  .programs-hero-content h1 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .counter-grid,
  .impact-grid,
  .programs-grid,
  .products-grid,
  .shop-items,
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .hero-btns {
    flex-direction: column;
    gap: 15px;
  }
  
  .program-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .program-tab {
    width: 100%;
    text-align: center;
  }
}