* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  background-image: url('T4 copy.jpg'); /* Replace with your actual image path */
  background-size: cover;         /* Ensures image covers entire screen */
  background-position: center;    /* Center the image */
  background-repeat: no-repeat;   /* Prevent image from repeating */
  background-attachment: fixed;   /* Makes the background static while content scrolls */
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}

body, html {
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
}

header {
  background: darkgreen;
  color: white;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem;
}

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

.logo img {
  height: 50px; /* Adjust as needed */
  width: auto;  /* Keeps aspect ratio */
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px; /* Rounded corners */
  border: 2px solid #eee; /* Optional subtle border */
  padding: 2px; /* Optional padding inside border */
  background-color: #fff; /* Optional background */
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #00c897;
}

.dropdown-menu {
  display: none;
  position: absolute;
  min-width: 220px; 
  background: black;
  border-radius: 10px;
  top: 100%;
  left: 0;
  padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 0.5rem 1rem;
  list-style: none;
  
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}

.slider {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slides {
  height: 100%;
  width: 100%;
  position: relative;
}

.slide {
  position: absolute;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  background-color: rgba(0,0,0,0.4);
  padding: 2rem;
  border-radius: 1rem;
}

/* Why We Exist Section */
.content-section {
  background: #f0f8f5; /* Light greenish background for warmth */
  padding: 3rem 1rem;
  text-align: left;
  max-width: 95%;
  margin: 2rem auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.content-section h2 {
  font-size: 2.5rem;
  color: darkgreen;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
  position: relative;
}

.content-section h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #00c897;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.content-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  white-space: pre-line;
}

@media (max-width: 768px) {
  .content-section {
    padding: 2rem 1rem;
    max-width: 100%;
  }

  .content-section h2 {
    font-size: 2rem;
  }

  .content-section p {
    font-size: 1rem;
  }
}

.partners-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #e8fdf5, #d9f2ff); /* Soft gradient background */
}

.partners-section h2 {
  font-size: 2.5rem;
  color: #001f5f;
  margin-bottom: 10px;
  position: relative;
}

.partners-section p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #333;
}

.logo-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logos-track {
  display: flex;
  width: calc(250px * 14); /* Adjust this based on number of logos */
  animation: scroll 40s linear infinite;
}

.logos-track img {
  height: 80px;
  margin: 0 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 12px; /* Rounded corners */
  cursor: pointer; /* Make logos clickable */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.logo-carousel:hover .logos-track {
  animation-play-state: paused;
}

.logos-track img:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}




.video-about-section {
  background-color: #f0f8f5;
  padding: 3rem 1rem;
}*/

.video-about-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}
.video-about-section {
  background-color: #f0f8f5;
  padding: 3rem 1rem;
}

.video-about-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap; /* Prevent wrapping */
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.video-box {
  flex: 0 0 50%; /* Don't grow or shrink, take exactly 50% */
  padding-right: 1rem;
}

.about-box {
  flex: 0 0 50%; /* Don't grow or shrink, take exactly 50% */
  padding-left: 1rem;
}

.video-box video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-box h3 {
  font-size: 1.8rem;
  color: darkgreen;
  margin-bottom: 1rem;
}

.about-box p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.read-more-btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background-color: #00c897;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}

.read-more-btn:hover {
  background-color: #009f79;
}

/* Make responsive */
@media (max-width: 768px) {
  .video-about-container {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .video-box,
  .about-box {
    flex: 1 1 100%;
    padding: 0;
  }
}

.impact-section {
  background-color: #ffffff;
  padding: 4rem 1rem;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: darkgreen;
  margin-bottom: 3rem;
  font-weight: 700;
}

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

.impact-card {
  background-color: #f0f8f5;
  border-radius: 12px;
  padding: 2rem;
  flex: 1 1 300px;
  max-width: 350px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.impact-card h3 {
  font-size: 1.5rem;
  color: #006a4e;
  margin-bottom: 1rem;
}

.impact-card p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.read-more-btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #00c897;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #009f79;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .impact-container {
    flex-direction: column;
    align-items: center;
  }
}




.contact-section {
  background-color: darkgreen;
  color: rgb(11, 196, 168);
  padding: 40px 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: auto;
}

.contact-card {
  flex: 1;
  min-width: 280px;
  margin: 20px;
   background: linear-gradient(135deg, #e8fdf5, #d9f2ff); /* Soft gradient background */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.contact-card h3 {
  color: #191502;
  margin-bottom: 15px;
}

.contact-card a {
  color: #00BFFF;
  text-decoration: none;
}
.contact-card a:hover {
  text-decoration: underline;
}


footer {
  background: linear-gradient(135deg, #e8fdf5, #d9f2ff); /* Soft gradient background */
  color: rgb(11, 196, 168);
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}





/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .dropdown-menu {
    position: static;
  }
}
@media (max-width: 600px) {
  .logo img {
    height: 40px;
  }
}
