/* Reset & Base */
* {
  margin: 0; padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #fefefe;
  color: #333;
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}
.logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: #C0392B;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: #C0392B;
}

/* Burger */
.burger {
  display: none;
  cursor: pointer;
}
.burger div {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 5px;
  transition: 0.4s;
}

/* Hero */
.hero {
  height: 100vh;
  background: url('assets/image1.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 80px;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 2rem;
  color: #fff;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.cta-btn {
  background: #C0392B;
  padding: 0.8rem 1.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: background 0.3s ease;
}
.cta-btn:hover {
  background: #A93226;
}

/* Animations */
.fade-slide {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlide 1s forwards;
}
.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 1s; }

@keyframes fadeSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 2rem;
    background: #fff;
    padding: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  .nav-links.active {
    display: flex;
  }
  .burger {
    display: block;
  }
}



/* About Us Section */
.about-section {
  background: #fff;
  padding: 6rem 2rem;
}
.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}
.about-image {
  flex: 1 1 40%;
  min-height: 400px;
  background: url('assets/image2.png') no-repeat center/cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.about-text {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #C0392B;
}
.about-block h3 {
  font-size: 1.3rem;
  color: #A93226;
  margin-bottom: 0.5rem;
}
.about-block p {
  color: #555;
  line-height: 1.6;
}
.about-text p {
  color: #444;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.3s; }
.delay-2 { transition-delay: 0.6s; }
.delay-3 { transition-delay: 0.9s; }

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }
  .about-image {
    width: 100%;
    min-height: 300px;
  }
}


/* Programs Section */
.programs-section {
  background: #f9f9f9;
  padding: 6rem 2rem;
}
.section-subtitle {
  max-width: 700px;
  margin: 0 auto 3rem auto;
  text-align: center;
  color: #666;
  font-size: 1.1rem;
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}
.program-card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  text-align: center;
}
.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.program-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #C0392B;
}
.program-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #222;
}
.program-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}


/* Impact Section */
.impact-section {
  background: #fff;
  padding: 6rem 2rem;
  text-align: center;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}
.impact-box {
  background: #fcebea;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}
.impact-box h3 {
  font-size: 2.5rem;
  color: #C0392B;
  margin-bottom: 0.5rem;
}
.impact-box p {
  color: #333;
  font-weight: 500;
}

.testimonial {
  max-width: 800px;
  margin: 3rem auto 0;
  background: #f9f9f9;
  padding: 2rem 2.5rem;
  border-left: 4px solid #C0392B;
  font-style: italic;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.testimonial cite {
  display: block;
  margin-top: 1rem;
  font-weight: 500;
  color: #777;
}


/* Contact Section */
.contact-section {
  background: #fefefe;
  padding: 6rem 2rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #C0392B;
}
.contact-form button {
  padding: 0.8rem 1.5rem;
  background: #C0392B;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact-form button:hover {
  background: #A93226;
}

.map-box {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* Mobile Layout */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}



/* Footer */
.site-footer {
  background: #F9F9F9;
  color: #f0f0f0;
  padding: 4rem 2rem 2rem 2rem;
  font-size: 0.95rem;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}
.footer-col h3,
.footer-col h4 {
  color: #000000;
  margin-bottom: 1rem;
}
.footer-col p, .footer-col a {
  color: #000000;
  line-height: 1.6;
  text-decoration: none;
}
.footer-col a:hover {
  color: #ffffff;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 0.5rem;
}
.socials a {
  color: #000000;
  margin-right: 0.8rem;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}
.socials a:hover {
  color: #ffffff;
}
.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .socials {
    justify-content: center;
  }
}


.gallery-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.gallery-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.image-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.image-gallery img {
  width: 120px;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
  object-fit: cover;
}

.image-gallery img:hover {
  transform: scale(1.05);
}

/* Modal (zoomed image) */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 8px;
}

.close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

@media (max-width: 768px) {
  .image-gallery img {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .image-gallery img {
    width: 90%;
  }
}




/* WhatsApp Button Styles */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.whatsapp-button img:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
}
