* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Baloo Chettan 2", sans-serif;
    line-height: 1.6;
    background: white;
  }

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background 0.3s ease, padding 0.3s ease;
    padding: 5px 0;
  }
  
   .header.transparent {
    background: transparent;
    color: white;
  }

.header.scrolled {
    background: #226b34;
    color: white;
  }
/* Update only the container and nav section */

/* Update only the container and nav section */

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
  }
  
  /* Logo styling */
.logo {
  height: 50px;
  width: auto;
  max-height: 60px;
}
  
  
  .nav {
    display: flex;
    align-items: center;
    flex: 1; /* 👈 This pushes nav items away from the logo */
    justify-content: space-between;
  }
  
  .nav-center,
  .nav-end {
    display: flex;
    gap: 28px;
    list-style: none;
  }
  
  .nav a {
    color: inherit;
    text-decoration: none;
    font-weight: 700; /* 👈 Bold */
    transition: color 0.3s ease;
  }
  
  .btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .btn:hover {
    background: white;
    color: black;
  }
  
  .menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: inherit;
  }
  
  /* Mobile Styles */
  @media (max-width: 768px) {
    .container {
      flex-wrap: wrap;
    }
  
    .nav {
      flex-direction: column;
      align-items: stretch;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100vw;
      background-color: black;
      display: none;
    }
  
    .nav.open {
      display: flex;
    }
  
    .nav-center,
    .nav-end {
      background-color: black;
      display: flex;
      flex-direction: column;
      padding: 16px;
      gap: 16px;
    }
  
    .nav-center {
      align-items: flex-start;
    }
  
    .nav-end {
      align-items: flex-start;
      border-top: 1px solid #444;
    }
  
    .menu-toggle {
      display: block;
    }
  
    .nav a {
      color: white;
    }
    .logo {
    height: 40px;
    max-height: 45px;
  }
  }


.about-hero {

    background-image: url('image/image1.jpg'); /* Replace with your image path */

    background-size: cover;
    background-position: center;
    height: 50vh;
    color: white;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .about-hero .overlay {
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
  }
  
  .about-hero .content {
    position: relative;
    z-index: 1;
  }
  
  .about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .about-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
  }
  
  .about-hero .btn {
    background-color: #ff6600;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .about-hero .btn:hover {
    background-color: #e65500;
  }
  


  .about-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    color: #333;
  }
  
  .about-section .container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0b1d0d;
  }
  
  .about-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  
  .about-section ul {
    list-style: disc inside;
    margin-bottom: 1.5rem;
  }
  
  .about-section li {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
  }

  
  .mission-section {
    padding: 4rem 2rem;
    background-color: #fff;
    color: #222;
  }
  
  .mission-section .container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .mission-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .mission-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  
  .mission-section ul {
    list-style: disc inside;
    margin-bottom: 1.5rem;
  }
  
  .mission-section li {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
  }

  



.partner-cta-section {

  background-color: white;

  color: #fff;
  padding: 60px 20px;
}

.partner-cta-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.partner-cta-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
}

.partner-cta-content {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
}

.partner-cta-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: black;
}

.partner-cta-content p {
  font-size: 16px;
  margin-bottom: 24px;
  color: black;
}

.partner-btn {
  background-color: #226b34;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.partner-btn:hover {
  background-color: #1f8fff;
}




.projects-section {
  padding: 50px 20px;
  background-color: white;
}

.projects-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #4CAF50;
  font-weight: 600;
}

.section-description {
  font-size: 1rem;
  margin-bottom: 40px;
  color: black;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.project-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  text-align: left;
}

.card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #4CAF50;
}

.card-content p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 15px;
}

.learn-more {
  text-decoration: none;
  color: #fff;
  background-color: #4CAF50;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s;
}

.learn-more:hover {
  background-color: #005f45;
}








/* Contact Us Section */
.contact-us {
  padding: 4rem 2rem;
  background-color: #004aad;
  color: #fff;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
}

.contact-text {
  max-width: 500px;
}

.contact-heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.contact-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-button {
  background-color: #25d366;
  color: #fff;
  padding: 1rem 3rem;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #128c7e;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-image img {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .contact-text {
    max-width: 100%;
  }
}


/* Signup Banner Styling */
.signup-banner {
  background: linear-gradient(to right, #004aad, #0073e6);
  padding: 6rem 2rem;
  color: #fff;
}

.banner-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.banner-image {
  flex: 1;
  text-align: center;
}

.banner-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.banner-content {
  flex: 1;
  text-align: left;
}

.banner-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.banner-description {
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 2.5rem;
}

.banner-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #ffcc00;
  color: #004aad;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.banner-btn:hover {
  background-color: #ffc107;
  color: #002f6c;
}

/* Responsive Design */
@media (max-width: 768px) {
  .banner-container {
    flex-direction: column;
    text-align: center;
  }

  .banner-content {
    text-align: center;
  }

  .banner-title {
    font-size: 2.5rem;
  }

  .banner-description {
    font-size: 1.2rem;
  }

  .banner-btn {
    font-size: 1.2rem;
    padding: 0.8rem 2rem;
  }

  .banner-image img {
    max-width: 80%;
  }
}



/* Sticky WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25D366; /* WhatsApp green */
  color: white;
  font-size: 22px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 1000;
}

/* Hover Effect */
.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
}



/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #004225; /* Deep green */
  color: white;
  font-size: 18px;
  width: 45px;
  height: 45px;
  display: none; /* Hidden by default */
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 1000;
}

/* Hover Effect */
.back-to-top:hover {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
}



/* Footer Section */
.footer-section {
  background-color: #224222;
  color: #fff;
  padding: 4rem 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  text-align: left;
}

.footer-heading {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
}

.social-link:hover {
  text-decoration: underline;
}

.footer-links {
  list-style-type: none;
  padding: 0;
}

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

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-contact {
  list-style-type: none;
  padding: 0;
}

.footer-contact li {
  font-size: 1rem;
  margin: 0.5rem 0;
}

.subscribe-form {
  display: flex;
  gap: 1rem;
}

.email-input {
  padding: 0.8rem;
  font-size: 1rem;
  border-radius: 5px;
  border: none;
  width: 200px;
}

.subscribe-button {
  background-color: #004aad;
  color: #fff;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.subscribe-button:hover {
  background-color: #00317a;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  font-size: 1rem;
}

.footer-bottom p {
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
