/* General */
body {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
}

/* ================= HEADER ================= */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    padding: 8px 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;

}

/* Logo */
.logo img {
    height: 100px;
}

/* Navbar */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 70px;
    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: 8px 15px;
    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 Header */

@media screen and (max-width: 1024px) {
    .nav-menu, .header-btn {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    /* hidden by default */
    .nav-menu {
        flex-direction: column;
        gap: 20px;
        position: absolute;
        top: 80px; /* below header */
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        width: 200px;
    }

    /* visible when active */
    .nav-menu.active {
        display: flex;
    }

}
@media screen and (max-width: 768px) {
  .first-section {
    padding-top: 120px; /* bigger gap for mobile navbar */
  }
}

/*   ABOUT US   */
/* About Section */

.about-section {
  position: relative;
  width: 100%;
  padding: 100px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}
/* 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;
  background-color: #ffffff;
}

.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;
  background-color: #ffffff;
}

.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;
  background-color: #ffffff;
}

.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;
  }
}
/* 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;
}

.team-header h2 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.team-header p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards Wrapper */
.team-cards-wrapper {
  overflow: hidden; /* Hide overflow for smooth scroll */
}

/* Cards Container */
.team-cards-container {
  display: flex;
  gap: 20px;
  animation: scrollCards 15s linear infinite;
}

@keyframes scrollCards {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* Scroll half to loop cards smoothly */
}

/* Team Card */
.team-card {
  min-width: calc((100% - 40px) / 3); /* 3 cards visible with gap */
  background-color: #004DA8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  flex-shrink: 0;
}

.team-card img {
  width: 100%;
  height: 250px;
  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;
}

/*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;
  }
}
