/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  color: #333;
  background: #f9f9f9;
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
header {
  background: #222;
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 1.6rem;
  font-weight: bold;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #f0a500;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}


/* Hero Section */
.hero {
  background: #ffffff;
  text-align: center;
  padding: 5rem 1rem;
  
}

.hero h2 {
  font-size: 2.5rem;
  color: #000;
}

.hero p {
  margin-top: 1rem;
  color: #000;
}


/* About Section */
.about-section {
  padding: 4rem 0;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-bottom: 1rem;
  
}

.about-img img {
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
}

/* Mission Section */
.mission {
  background: #fff;
  padding: 3rem 1rem;
  text-align: center;
}

.mission h2 {
  margin-bottom: 1rem;
}


.partners-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.partners-section h2 {
  font-size: 2em;
  margin-bottom: 30px;
}

.partners-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.partners-container img {
  max-width: 150px;
  transition: transform 0.3s;
}

.partners-container img:hover {
  transform: scale(1.1);
}



/* Contact CTA */
.contact-cta {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}

.contact-cta .btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.4rem;
  background: #f0a500;
  color: #222;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.contact-cta .btn:hover {
  background: #fff;
}

/* Footer */
footer {
  background: #000000;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: #222;
    position: absolute;
    right: 10px;
    top: 70px;
    width: 200px;
    border-radius: 5px;
  }

  nav ul.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .about-content {
    flex-direction: column;
  }
}
