* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ================================
   Navbar
================================= */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  position: relative;
}

.logo img {
  width: 150px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  color: #6cdb34;
}

.nav-buttons a {
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 12px;
  font-weight: 500;
  margin-left: 10px;
  transition: 0.3s;
}

.login-btn {
  border: 1px solid #6cdb34;
  color: #6cdb34;
}

.login-btn:hover {
  background: #6cdb34;
  color: #fff;
}

.signup-btn {
  background: #6cdb34;
  color: #fff;
}

.signup-btn:hover {
  background: #57b628;
}

/* ===== Toggle Button ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  cursor: pointer;
  padding: 4px;
  transition: transform 0.3s ease;
}

.menu-toggle span {
  width: 100%;
  height: 4px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-links.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {

  /* Navbar */
  .menu-toggle {
    display: flex;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }

  .nav-links {
    display: none;
    width: 100%;
    margin-top: 20px;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .nav-buttons {
    width: 100%;
    margin-top: 20px;
    justify-content: center;
  }

  .nav-buttons a {
    width: 100%;
    text-align: center;
    margin: 0 5px;
  }
}

/* banner */
/* Generic container (re-use this if not already defined) */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Banner section */
.about-banner {
  background: url("../images/about/banner.png") center/cover no-repeat;
  position: relative;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* align text to the left */
  text-align: left;
  padding-left: 30px;
  /* space from left edge */
}

/* Dark overlay */
.about-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(41, 41, 41, 0.45); */
  z-index: 1;
}

/* Title */
.banner-title {
  font-size: 78px;
  color: #FFFFFF;
  /* white color */
  z-index: 2;
  letter-spacing: 12px;
  font-weight: 600;
  margin: 0;
}

/* Mobile responsive */
@media (max-width: 600px) {
  .about-banner {
    height: 180px;
    padding-left: 20px;
    /* smaller padding on mobile */
  }

  .banner-title {
    font-size: 28px;
  }
}

/* choose drone */
/* Section */
.why-section {
  background: #F5F3FF;
  /* same light background as screenshot */
  padding: 50px 0;
}

/* Wrapper */
.why-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Image grid */
.why-image {
  width: 50%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  transform: skewX(-10deg);
}

.why-image img {
  width: 100%;
  border-radius: 30px;
  display: block;
  object-fit: cover;
  height: 450;
}

/* Content */
.why-content {
  width: 55%;
}

.why-content h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

.why-content p {
  line-height: 1.6;
  color: #666;
}

/* Mobile */
@media (max-width:768px) {
  .why-wrapper {
    flex-direction: column;
  }

  .why-image,
  .why-content {
    width: 100%;
  }

  .why-image {
    transform: none;
  }

  .why-image img {
    height: 450px;
  }

  .why-content h2 {
    text-align: center;
  }
}

/* mission section */
.mission-section {
  background: #F5F3FF;
  padding: 60px 0;
}

.mission-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

/* left text */
.mission-text {
  width: 55%;
}

.mission-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.mission-text p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* grid right */
.mission-grid {
  width: 45%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.grid-item {
  height: 160px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* first image */
.img1 {
  background-image: url("../images/about/mission1.png");
}

/* second image */
.img2 {
  background-image: url("../images/about/mission2.png");
}

/* stat cards */
.stat1 {
  background-image:
    url("../images/about/rectangle.png");
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.stat2 {
  background-image: url("../images/about/circle.png");
  background-size: cover;
  background-position: center;
  height: 230px;
  width: 220px;
  background-size: 76%;
  background-repeat: no-repeat;
  bottom: 12%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.number {
  font-size: 36px;
  font-weight: 700;
}

.label {
  font-size: 15px;
  margin-top: 5px;
}

/* mobile */
@media(max-width:768px) {
  .mission-wrapper {
    flex-direction: column;
  }

  .mission-text,
  .mission-grid {
    width: 100%;
  }
}

/* team */

.team-section {
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.team-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.team-section p {
  font-size: 1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 40px;
}

.team-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.slider-container {
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.team-member {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  width: 280px;
  flex-shrink: 0;
  text-align: center;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.team-member:hover {
  transform: translateY(-8px);
}

.team-member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-bottom: 15px;
}

.team-member h3 {
  margin: 10px 0 5px;
  font-size: 1.2rem;
}

.team-member p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  background: #b2f5b2;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
  z-index: 10;
}

.arrow:hover {
  background: #8ee28e;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

/* Responsive */
@media(max-width: 900px) {
  .team-member {
    width: 220px;
  }
}

@media(max-width: 600px) {
  .team-member {
    width: 90%;
  }
}



/* Footer */
.footer {
  background: #4F6600;
  color: #e9ffe4;
  padding: 50px 0 25px;
  font-size: 15px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 0 25px;
}

.footer h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.footer h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer p {
  margin-bottom: 15px;
}

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

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

.footer a {
  color: #e9ffe4;
  text-decoration: none;

}

.footer a:hover {
  color: #bed47b;
  /* light green */
  text-decoration: none;
}

/* Email input */
.footer form {
  display: flex;
  gap: 10px;
}

.footer input[type="email"] {
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  width: 100%;
}

.footer button {
  padding: 8px 18px;
  background: #bed47b;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: #203900;
  font-weight: 600;
}

.footer-bottom {
  margin-top: 25px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 15px;
  font-size: 14px;
}

.footer-bottom a {
  color: #e9ffe4;
  text-decoration: none;
  margin-left: 5px;
}

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

/* Responsive */
@media(max-width:768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer form {
    flex-direction: column;
  }

  .footer button {
    width: 100%;
  }
}