/****************************************************
  GLOBAL & RESET
*****************************************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #eee;
    color: #333;
  }
  img {
    display: block;
    max-width: 100%;
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  ul {
    list-style: none;
  }
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /****************************************************
    HEADER
  *****************************************************/
  .header {
    background-color: #fff;
    box-shadow: 0 1px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 99;
  }

  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    position: relative;
  }

  .logo img {
    max-height: 30px;
  }

  /* Navigation Links */
  .nav-menu .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
  }

  .nav-links li a {
    font-weight: bold;
    position: relative;
    padding: 0.5rem;
    color: #333;
    text-decoration: none;
  }

  .nav-links li a:hover {
    color: #000000;
  }

  /* Burger Menu Icon */
  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .burger span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
  }

  /* Responsive Styles */
  @media (max-width: 768px) {
    .nav-menu {
      position: absolute;
      top: 70px;
      left: 0;
      right: 0;
      background: #fff;
      display: none;
      flex-direction: column;
      align-items: center;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
      display: flex;
    }
    
    .nav-links {
      flex-direction: column;
      gap: 1rem;
      width: 100%;
      padding: 1rem 0;
    }
    
    .burger {
      display: flex;
    }
  }
  
  /****************************************************
    HERO SECTION
  *****************************************************/
  .impact-hero {
    position: relative;
    background: radial-gradient(circle at top left, #909090 0%, #cdcdcd 100%);
    min-height: 50vh;
    overflow: hidden;
  }
  .impact-hero-content {
    text-align: center;
    padding: 4rem 0 6rem;
    position: relative;
    z-index: 1;
  }
  .impact-hero-content h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
  }
  .impact-hero-content h1 span {
    color: #000000;
  }
  .impact-hero-content p {
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.5;
  }
  
  /* FLOATING SHAPES */
  .floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    animation: float 6s ease-in-out infinite alternate;
  }
  .shape1 {
    width: 120px;
    height: 120px;
    background: #cdcdcd;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
  }
  .shape2 {
    width: 180px;
    height: 180px;
    background: #cdcdcd;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
  }
  .shape3 {
    width: 100px;
    height: 100px;
    background: #c1c1c1;
    bottom: 10%;
    left: 45%;
    animation-delay: 4s;
  }
  @keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-30px) translateX(20px); }
  }
  
  /****************************************************
    IMPACT SECTIONS
  *****************************************************/
  .impact-sections {
    position: relative;
    background: #eee;
  }
  /* Wave decorations */
  .wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: url('https://svgshare.com/i/ux7.svg') no-repeat center top;
    background-size: cover;
    transform: translateY(-100%);
  }
  .wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: url('https://svgshare.com/i/ux6.svg') no-repeat center bottom;
    background-size: cover;
    transform: translateY(100%);
  }
  
  /* Single impact item */
  .impact-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 4rem 0.2;
    gap: 2rem;
  }
  .impact-illustration {
    flex: 1 1 400px;
    text-align: center;
  }
  .impact-illustration img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
  }
  .impact-text {
    flex: 1 1 400px;
    text-align: left;
  }
  .impact-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #000000;
  }
  .impact-text h2 i {
    color: #000000;
    font-size: 1.6rem;
  }
  .impact-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1rem;
    color: #555;
  }
  
  /* Reverse order for alternating layout */
  .order-1 {
    order: 1;
  }
  .order-2 {
    order: 2;
  }
  
  /* ============ FOOTER ============ */
.footer {
  background-color: #000;
  color: #fff;
  padding: 3rem 1rem;
  margin-top: 3rem;
}

.footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.footer a:hover {
  color: #007bff;
}
.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: start;
}
/* Logo Styles */
.footer-logo {
  grid-column: 1 / -1;
}
.footer-logo img {
  max-width: 100px;
}
/* Column Titles and Lists */
.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}
.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column li {
  margin-bottom: 0.5rem;
}
/* WhatsApp Button Styles */
.whatsapp-btn {
  background-color: #25D366;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
}
.whatsapp-btn i {
  margin-right: 0.5rem;
}
/* Social Icons Styles */
.social-icons {
  margin-top: 1rem;
}
.social-icons a {
  color: #fff;
  margin-right: 0.5rem;
  font-size: 1.2rem;
  display: inline-block;
}
/* Footer Bottom */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  border-top: 1px solid #333;
  padding-top: 1rem;
}
.footer-bottom p {
  margin-bottom: 0.5rem;
}

/* App Store Links */
.btn-app {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 0.5rem 1rem;
  margin-right: 0.5rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: background-color 0.3s, border-color 0.3s;
}
.btn-app i {
  margin-right: 0.5rem;
}
.btn-app:hover {
  background-color: #007bff;
  border-color: #007bff;
}
.store-links img {
  width: 100px;
}
  
  /****************************************************
    RESPONSIVE
  *****************************************************/
  @media (max-width: 992px) {
    .impact-hero-content h1 {
      font-size: 2.2rem;
    }
    .impact-text h2 {
      font-size: 1.6rem;
    }
  }
  @media (max-width: 768px) {
    .impact-item {
      flex-direction: column;
      text-align: center;
    }
    .impact-text {
      text-align: center;
    }
  }
  @media (max-width: 576px) {
    .impact-hero-content h1 {
      font-size: 1.8rem;
    }
    .impact-hero-content p {
      font-size: 1rem;
    }
  }
  