/* General */
body {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;

  background-image: url('images/Bg\ wall\ 5.svg'); /* your SVG file */
  background-repeat: no-repeat;
  background-size: cover; /* fills full width + height */
  background-position: center;
}

/* ================= HEADER ================= */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    padding: 0 40px; /* good spacing on desktop */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px; /* bigger to match 100px logo */
    z-index: 1000;
}

/* Logo */
.logo img {
    height: 100px; /* client’s requirement */
    object-fit: contain;
}

/* Navbar */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 50px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #007BFF;
}

/* Button */
.btn-blue {
    background-color: #004DA8;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.btn-blue:hover {
    background-color: #007BFF;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background-color: black;
    border-radius: 2px;
}

/* ================= RESPONSIVE ================= */
@media screen and (max-width: 1024px) {
    .header {
        padding: 0 20px;
        height: 100px; /* adjust for tablets */
    }

    .nav-menu, .header-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        flex-direction: column;
        gap: 20px;
        position: absolute;
        top: 100px; /* dropdown below taller header */
        right: 20px;
        background: white;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        width: 200px;
        border-radius: 8px;
    }

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

@media screen and (max-width: 768px) {
    .header {
        padding: 0 15px;
        height: 90px; /* slightly smaller for mobile */
    }

    .logo img {
        height: 80px; /* still big but fits on phones */
    }

    .first-section {
        padding-top: 120px; /* clear taller header */
    }
}


/*   ABOUT US   */
/* About Section */

.about-section {
  position: relative;
  width: 100%;
  padding: 100px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  ;
}
/* Responsive */
@media (max-width: 600px) {
  .about-section {
    padding-top: 120px; /* extra space for smaller screens */
  }

  .about-text h2 {
    font-size: 3rem;
  }
  .about-text p {
    font-size: 0.85rem;
  }
  .about-bg {
    height: 180px;
  }
}

/* Blue rectangle behind */
.about-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px; /* blue rectangle height */
  background: linear-gradient(90deg, #004aad, #004DA8);
  z-index: 0;
}

/* Container for image + text */
.about-container {
  position: relative;
  max-width: 1100px;
  width: 100%;
  height: 60%;
  z-index: 1;
  
}
/* Dark overlay on image */
.about-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6); /* darkness level */
  border-radius: 12px;
}
/* Text above overlay */
.about-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff; /* pure white */
  padding: 20px;
  width: 85%;
  z-index: 2; /* makes sure text is above overlay */
}

/* Image */
.about-image {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* Overlay text */
.about-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 20px;
  width: 85%;
}

.about-text h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .about-text h2 {
    font-size: 1.8rem;
  }
  .about-text p {
    font-size: 0.95rem;
  }
  .about-bg {
    height: 220px;
  }
}

@media (max-width: 600px) {
  .about-text h2 {
    font-size: 1.4rem;
  }
  .about-text p {
    font-size: 0.85rem;
  }
  .about-bg {
    height: 180px;
  }
}

/* Our mission */
/* Info Section */
.info-section {
  width: 100%;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  
}

.info-container {
  display: flex;
  align-items: center;       /* vertical centering */
  justify-content: space-between;
  max-width: 1100px;
  width: 100%;
  gap: 40px;
}

/* Image column */
.info-image {
  flex: 1;
}

.info-image img {
  width: 100%;              /* always responsive */
  max-width: 630px;         /* never bigger than figma size */
  max-height: 350px;        /* keeps height smaller */
  height: auto;             /* keeps proportions */
  object-fit: cover;        /* crop if needed */
  border-radius: 12px;
  display: block;
}

/* Text column */
.info-text {
  flex: 1;
  text-align: left; /* text aligned left inside the column */
}

.info-text h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #004aad;
}

.info-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

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

  .info-text {
    text-align: center;
  }

  .info-text h2 {
    font-size: 1.6rem;
  }

  .info-text p {
    font-size: 0.95rem;
  }
}
/* ---------- Our Vision Section ---------- */
/* Our Vision */
/* Vision Section */
.vision-section {
  width: 100%;
  padding: 30px 20px;
  display: flex;
  justify-content: center;
  
}

.vision-container {
  display: flex;
  align-items: center;       /* vertical centering */
  justify-content: space-between;
  max-width: 1100px;
  width: 100%;
  gap: 40px;
}

/* Text column */
.vision-text {
  flex: 1;
  text-align: left;
}

.vision-text h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #004DA8;
}

.vision-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* Image column */
.vision-image {
  flex: 1;
}

.vision-image img {
  width: 100%;
  max-width: 630px;
  max-height: 350px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Responsive */
@media (max-width: 992px) {
  .vision-container {
    flex-direction: column-reverse; /* stack with text above image */
    text-align: center;
  }

  .vision-text {
    text-align: center;
  }

  .vision-text h2 {
    font-size: 1.6rem;
  }

  .vision-text p {
    font-size: 0.95rem;
  }
}
/* Our Culture Section */
.culture-section {
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  
}

.culture-container {
  max-width: 900px;
  text-align: center;
}

.culture-container h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #004DA8;
}

.culture-container p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
}

.culture-image img {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  margin: 0 auto; /* keeps image centered */
}

/* Responsive */
@media (max-width: 768px) {
  .culture-container h2 {
    font-size: 1.6rem;
  }

  .culture-container p {
    font-size: 0.95rem;
  }
}




/*SDG*/
/* SDG SECTION */
.sdg-impact-section {
  text-align: center;
  padding: 20px 20px;
  background-color: #ffffff;
  background-image: url('images/Bg wall 5.svg'); /* same bg as your site */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #004DA8;
  }

/* Rows (same logic as hw-cards-row) */
.sdg-cards-row {
  display: flex;
  justify-content: center;   /* ✅ centers 3-card row */
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

/* Card */
.sdg-card {
  /*background: #ffffff;*/
  flex: 1 1 260px;
  max-width: 300px;
  border-radius: 12px;
  padding: 24px 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sdg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.04);
}

/* Icon */
.sdg-card img {
  height: 46px;
  margin-bottom: 12px;
}

/* Title */
.sdg-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: 700;
}

/* Text */
.sdg-card p {
  font-size: 14px;
  line-height: 1.4;
}
.sdg-1 h3, .sdg-1 p { color: #E5243B; }
.sdg-5 h3, .sdg-5 p { color: #DDA83A; }
.sdg-8 h3, .sdg-8 p { color: #FF3A21; }
.sdg-10 h3, .sdg-10 p { color: #A21942; }
.sdg-11 h3, .sdg-11 p { color: #FD6925; }
.sdg-16 h3, .sdg-16 p { color: #DD1367; }
.sdg-17 h3, .sdg-17 p { color: #19486A; }


@media (max-width: 1024px) {
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .sdg-card {
    flex: 1 1 90%;
    max-width: 480px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }

  .sdg-card h3 {
    font-size: 15px;
  }

  .sdg-card p {
    font-size: 13px;
  }
}




/* Our Team*/
/* Our Team */
/*

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Space Grotesk', sans-serif;
}

.team-section {
  background-color: #004DA8;
  padding: 60px 20px;
  color: white;
  text-align: center;
  width: 100%;
}

.team-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.team-header p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


.team-cards-wrapper {
  overflow: hidden;
}


.team-cards-container {
  display: flex;
  gap: 20px;
  animation: scrollCards 10s linear infinite;
}

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


.team-card {
  flex: 0 0 300px; 
  background-color: #004DA8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

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

.team-info {
  padding: 15px;
  background-color: #004DA8;
}

.team-info h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.team-info p {
  font-size: 1rem;
  opacity: 0.9;
}


@media (max-width: 1024px) {
  .team-header h2 { font-size: 2rem; }
  .team-header p { font-size: 1rem; }
  .team-card { flex: 0 0 250px; }
  .team-card img { height: 240px; }
}


@media (max-width: 768px) {
  .team-header h2 { font-size: 1.8rem; }
  .team-header p { font-size: 0.95rem; }
  .team-cards-container { gap: 15px; }
  .team-card { flex: 0 0 200px; }
  .team-card img { height: 200px; }
}


@media (max-width: 480px) {
  .team-header h2 { font-size: 1.5rem; }
  .team-header p { font-size: 0.9rem; margin-bottom: 20px; }
  .team-cards-container { gap: 12px; }
  .team-card { flex: 0 0 160px; }
  .team-card img { height: 160px; }
  .team-info h3 { font-size: 1rem; }
  .team-info p { font-size: 0.85rem; }
}


*/





/*Footer */
.footer-section {
  background-color: #ffffff;
  padding: 40px 20px;
  font-family: 'Space Grotesk', sans-serif;
}

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

/* Left Section */
.footer-left h3 {
  color: #000;
  margin-bottom: 15px;
}

.app-buttons a {
  display: inline-block;
  margin-right: 10px;
}

.app-buttons img {
  width: 120px;
  height: auto;
  border-radius: 8px;
}

/* Middle Section */
.footer-middle {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-column h4 {
  color: #333;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #555;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #007BFF;
}

/* Right Section */
.footer-right h4 {
  color: #333;
  margin-bottom: 10px;
}

.footer-right p {
  margin: 5px 0;
  color: #555;
}

.social-icons {
  margin: 10px 0;
}

.social-icons a {
  margin-right: 10px;
  display: inline-block;
}

.social-icons img {
  width: 30px;
  height: 30px;
}

.footer-right .copyright {
  margin-top: 10px;
  color: #777;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-middle {
    gap: 40px;
    margin: 20px 0;
  }

  .app-buttons a {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .app-buttons img {
    width: 100px;
  }

  .social-icons img {
    width: 25px;
    height: 25px;
  }
}
