/* GLOBAL */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #F9F7F4;
  color: #1A1A1A;
}
/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  transition: 0.4s;
}

/* SCROLL EFFECT */
.navbar.scrolled {
  background: #0B1F3A;
}

/* LOGO */
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li {
  position: relative;
  color: #632407;
}

.nav-links a {
  text-decoration: none;
  color: rgb(227, 237, 235);
  font-weight: 500;
  transition: 0.3s;
}

/* UNDERLINE HOVER EFFECT */
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #4CAF7D;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* CTA BUTTON */
.nav-cta {
  padding: 10px 20px;
  margin-right: 100px;  
  background: #4CAF7D;
  border: none;
  border-radius: 20px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.nav-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px #4CAF7D;
}

/* HAMBURGER (MOBILE) */
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #0B1F3A;
    flex-direction: column;
    width: 200px;
    display: none;
    padding: 20px;
  }

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

  .hamburger {
    display: block;
  }

  .nav-cta {
    display: none;
  }
}

/* HERO */
.hero {
  height: 100vh;
  background: linear-gradient(-45deg, #0B1F3A, #4CAF7D, #A65D3A, #0B1F3A);
  background-size: 400% 400%;
  animation: gradientMove 10s ease infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  overflow: hidden;
}


/* GRADIENT ANIMATION */
@keyframes gradientMove {
  0% {background-position: 0%}
  50% {background-position: 100%}
  100% {background-position: 0%}
}

/* TEXT ANIMATION */
.headline {
  font-size: 5rem;
  color: white;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.subtext {
  color: #dddddd;
  font-size: 2em;
  margin-top: 10px;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.5s;
}

/* CTA BUTTON */
.cta {
  margin-top: 20px;
  padding: 12px 24px;
  background: #4CAF7D;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 30px;
  transition: 0.3s;
}

.cta:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #4CAF7D;
}

/* FLOATING SHAPES */
.floating-shapes span {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  animation: float 6s infinite ease-in-out;
}

.floating-shapes span:nth-child(1) {
  top: 20%;
  left: 10%;
}

.floating-shapes span:nth-child(2) {
  top: 60%;
  left: 80%;
}

.floating-shapes span:nth-child(3) {
  top: 80%;
  left: 30%;
}

/* FLOAT ANIMATION */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

/* FADE ANIMATION */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  color: white;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* SECTIONS */
.section {
  padding: 80px 20px;
  text-align: center;
}

.section.alt {
  background: #f0ece6;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* CTA SECTION */
.cta-section {
  background: #375882;
  color: white;
  padding: 80px;
  text-align: center;
  font-size: 2em;
}
cta-section1{
      background: #000101;
  color: white;
  padding: 80px;

}
/* PROBLEM SECTION */
.problem-section {
  padding: 80px 20px;
  text-align: center;
}

.problem-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

/* GRID */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px,1fr));
  gap: 35px;
}

/* CARD DESIGN */
.card { 
  background: white;
  padding: 30px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

/* ICON */  
.icon {
  font-size: 5rem;
  margin-bottom: 15px;
}

/* HOVER EFFECT */
.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* CLICK ANIMATION */
.card.active {
  background: linear-gradient(135deg, #4CAF7D, #0B1F3A);
  color: white;
  transform: scale(1.05);
}

/* GLOW EFFECT */
.card.active::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: rgba(255,255,255,0.1);
  top: -50%;
  left: -50%;
  animation: glow 1.5s ease;
}

@keyframes glow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* SOLUTION SECTION */
.solution-section h2 {
    font-size: 2.5rem;
  padding: 80px 20px;
  text-align: center;
  background: #f0ece6;
}

.solution-intro {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #555;
}

/* GRID */
.solution-cards {
   
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px,1fr));
  gap: 35px;
}


/* CARD DESIGN */
.solution-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

/* ICON */
.solution-card .icon {
  font-size: 5rem;
  margin-bottom: 15px;
}

/* HOVER EFFECT */
.solution-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ACTIVE (CLICKED) */
.solution-card.active {
  background: linear-gradient(135deg, #0B1F3A, #4CAF7D);
  color: white;
  transform: scale(1.05);
}

/* GLOW EFFECT */
.solution-card.active::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: rgba(255,255,255,0.08);
  top: -50%;
  left: -50%;
  animation: glowSpin 1.5s ease;
}

@keyframes glowSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* FOOTER */
.footer {
  background: #0B1F3A;
  color: #fff;
  padding: 60px 20px 20px;
}

/* CONTAINER */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 40px;
  margin-bottom: 40px;
}

/* BRAND */
.footer-brand h2 {
  font-size: 1.8rem;
}

.footer-brand p {
  color: #ccc;
}

/* LINKS */
.footer-links h3,
.footer-contact h3 {
  margin-bottom: 15px;
}

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

.footer-links li {
  margin: 8px 0;
}

.footer-links a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #4CAF7D;
}

/* CONTACT */
.footer-contact p {
  margin: 5px 0;
}

/* SOCIAL ICONS */
.socials span {
  font-size: 1.5rem;
  margin-right: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.socials span:hover {
  transform: scale(1.2);
  color: #4CAF7D;
}

/* NEWSLETTER */
.footer-newsletter {
  text-align: center;
  margin-bottom: 30px;
}

.footer-newsletter input {
  padding: 10px;
  border-radius: 20px;
  border: none;
  margin-right: 10px;
  width: 200px;
}

.footer-newsletter button {
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  background: #4CAF7D;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.footer-newsletter button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px #4CAF7D;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
  font-size: 0.9rem;
  color: #aaa;
}

 

/* IMPACT SECTION */
    .impact-section {
      padding: 80px 20px;
      background: linear-gradient(to right, #f4f8f4, #eef5ee);
    }

.impact {
  height: 60vh;
  background: linear-gradient(-45deg, #0B1F3A, #4CAF7D, #632407, #548ad0);
  background-size: 400% 400%;
  animation: gradientMove 10s ease infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  overflow: hidden;
}
    .container {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      font-size: 1.2em;
    }



    .section-subtitle {
      color: #4c7a57;
      font-size: 14px;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 10px;
    }

    .section-title {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #1f3b2d;
    }

    .section-description {
      max-width: 750px;
      margin: 0 auto 50px;
      font-size: 1.05rem;
      color: #555;
    }

    .impact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .impact-card {
      background: #fff;
      padding: 30px 20px;
      border-radius: 18px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      opacity: 0;
      transform: translateY(30px);
    }

    .impact-card.show {
      opacity: 1;
      transform: translateY(0);
    }

    .impact-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
    }

    .impact-icon {
      font-size: 2.5rem;
      margin-bottom: 15px;
    }

    .impact-card h3 {
      font-size: 1.3rem;
      margin-bottom: 12px;
      color: #1f3b2d;
    }

    .impact-card p {
      font-size: 0.98rem;
      color: #666;
    }

    .impact-highlight {
      margin-top: 60px;
      background: #1f3b2d;
      color: white;
      padding: 35px 25px;
      border-radius: 20px;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
    }

    .impact-highlight h3 {
      font-size: 1.8rem;
      margin-bottom: 15px;
    }

    .impact-highlight p {
      max-width: 800px;
      margin: 0 auto;
      font-size: 1rem;
      color: #e6f0e8;
    }

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

      .impact-highlight h3 {
        font-size: 1.5rem;
      }

    .feature-icon {
  font-size: 32px;
  margin-bottom: 10px;
}
    }

/* Join */
    /* BUTTON */
.primary-btn {
  margin-top: 15px;
  padding: 12px 25px;
  background: #00c896;
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 6px;
}

/* ALT BACKGROUND */
.alt-bg {
  background: #f9f9f9;
}

/* FORM */
.form-container {
  text-align: center;
}

.join-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: 20px auto;
}

.join-form input,
.join-form select {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* INNER HERO SECTION */
.inner-hero {
  position: relative;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #0f172a, #00c896);
  overflow: hidden;
}

/* Optional overlay for depth */
.inner-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://www.transparenttextures.com/patterns/cubes.png');
  opacity: 0.05;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: auto;

}

/* TITLE */
.inner-hero h1 {
  font-size: 3em;
  margin-bottom: 15px;
  font-weight: 700;
}

/* TEXT */
.inner-hero p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
}

/* BUTTON */
.inner-hero .primary-btn {
  margin-top: 20px;
  padding: 12px 28px;
  background: #fff;
  color: #00c896;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

/* HOVER EFFECT */
.inner-hero .primary-btn:hover {
  background: #00c896;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .inner-hero {
    padding: 70px 15px;
  }

  .inner-hero h1 {
    font-size: 32px;
  }

  .inner-hero p {
    font-size: 16px;
  }
}

.logo img {
         height: 100px; /* adjust size */
         width: auto;
         text-align: center;
         display: block;
         margin: auto;
}