/* === Global Styles === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth; /* Enables smooth scroll */
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #222;
}

/* === Navbar Container === */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* === Logo === */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
}

.logo b {
  color: #0cb65f; /* eco green accent */
}

.logo-img {
  width: 40px;
  height: 40px;
}

/* === Navigation Links === */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

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

.nav-links a:hover {
  color: #0cb65f;
}

/* === Call To Action Button === */
.cta-btn {
  background: #0cb65f;
  color: #fff !important;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.cta-btn:hover {
  background: #09984e;
  transform: translateY(-2px);
}

/* === Mobile Menu Toggle === */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  height: 3px;
  width: 25px;
  background-color: #1a1a1a;
  margin: 4px 0;
  transition: 0.3s;
}

/* === Responsive Design === */
@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: -100%;
    background-color: #fff;
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 1rem;
    padding: 2rem 0;
    transition: right 0.4s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }
}

/* === HERO SECTION === */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  background: #000; /* fallback */
}

/* Background video or image */
.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(60%);
}

/* Overlay with gradient */
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom right, rgba(15, 15, 15, 0.8), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1.5rem;
  animation: fadeIn 1.2s ease-out;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #e9ffe9;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #d0f5d0;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.learn-btn {
  background: transparent;
  border: 2px solid #3cc47c;
  color: #3cc47c;
}

.learn-btn:hover {
  background: #3cc47c;
  color: #fff;
}

.partner-btn {
  background: #3cc47c;
  color: #fff;
}

.partner-btn:hover {
  background: #2f9a63;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

.hero-fallback {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  display: none;
}

@media (max-width: 768px) {
  .hero-video { display: none; }
  .hero-fallback { display: block; }
}

/* === ABOUT SECTION === */
.about-section {
  padding: 100px 5%;
  background: #f8fbf9; /* soft green-tinted white */
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
}

/* Left Column */
.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0a3d2c; /* deep green for identity */
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 2rem;
}

/* Highlights */
.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.highlight {
  flex: 1 1 250px;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-align: center;
  transition: all 0.4s ease;
  border-left: 4px solid transparent;
}

.highlight:hover {
  transform: translateY(-5px);
  border-left: 4px solid #00b67a; /* clean green accent */
}

.highlight i {
  font-size: 2rem;
  color: #00b67a;
  margin-bottom: 0.7rem;
}

.highlight h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: #111;
}

.highlight p {
  color: #555;
  font-size: 0.95rem;
}

/* Right Column */
.about-media {
  flex: 1 1 400px;
  position: relative;
}

.about-video,
.about-fallback {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .about-video { display: none; }
  .about-fallback { display: block; }
}

/* === Fix horizontal overflow on mobile === */
html, body {
  overflow-x: hidden;
  width: 100%;
}
/* === OUR SOLUTION SECTION === */
.solution-section {
  padding: 100px 5%;
  background: linear-gradient(to bottom right, #f5f7f6, #ffffff);
  text-align: center;
}

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

.solution-container h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0b3d2e; /* dark green tone */
  margin-bottom: 3rem;
  position: relative;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.solution-card {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  text-align: center;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 128, 0, 0.15);
}

.solution-card h3 {
  font-size: 1.5rem;
  color: #1b5e20;
  margin-bottom: 1rem;
}

.solution-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* Subtle section animation fade-in */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.solution-card {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.solution-card:nth-child(1) { animation-delay: 0.2s; }
.solution-card:nth-child(2) { animation-delay: 0.4s; }
.solution-card:nth-child(3) { animation-delay: 0.6s; }

@media (max-width: 768px) {
  .solution-container h2 {
    font-size: 2rem;
  }
  .solution-card {
    padding: 1.5rem;
  }
}

/* === IMPACT SECTION === */
.impact-section {
  background: linear-gradient(to bottom right, #064e3b, #065f46);
  color: #fff;
  padding: 100px 5%;
  text-align: center;
}

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

.impact-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.impact-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem 1rem;
  font-size: 1.1rem;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.impact-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.impact-card h4 {
  margin-top: 0.75rem;
  font-weight: 600;
  font-size: 1.1rem;
}

/* === Responsive === */
@media (max-width: 768px) {
  .impact-section h2 {
    font-size: 1.8rem;
  }
  .impact-card {
    font-size: 1rem;
    padding: 1.5rem;
  }
}
/* === NETWORK SECTION === */
.network-section {
  background: #f8faf9;
  color: #111;
  text-align: center;
  padding: 100px 5%;
}

.network-container {
  max-width: 1000px;
  margin: 0 auto;
}

.network-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #065f46; /* deep green accent */
}

.network-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
}

.network-map img {
  width: 100%;
  max-width: 700px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.network-map img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* === Responsive === */
@media (max-width: 768px) {
  .network-section h2 {
    font-size: 1.8rem;
  }

  .network-section p {
    font-size: 1rem;
  }
}

/* === IMPACT STATS SECTION === */
.impact-stats-section {
  background: #ffffff;
  color: #111;
  text-align: center;
  padding: 100px 5%;
}

.impact-stats-container {
  max-width: 1200px;
  margin: 0 auto;
}

.impact-stats-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #065f46; /* deep green tone */
  margin-bottom: 3rem;
}

/* Grid Layout */
.impact-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.impact-stat h3 {
  font-size: 3rem;
  font-weight: 700;
  color: #059669; /* vibrant green */
  margin-bottom: 0.5rem;
}

.impact-stat p {
  font-size: 1.1rem;
  color: #333;
}

/* Hover effect */
.impact-stat {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .impact-stats-section h2 {
    font-size: 1.8rem;
  }

  .impact-stat h3 i {
  margin-right: 0.5rem;
  color: #10b981; /* matching vibrant green */
}

  .impact-stat p {
    font-size: 1rem;
  }
}


/* === Call To Action === */
.partner-cta {
  display: inline-block;
  margin-top: 3rem;
  padding: 0.75rem 2rem;
  background: #00c3ff;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.partner-cta:hover {
  background: #0082b9;
  transform: translateY(-3px);
}

/* === Responsive === */
@media (max-width: 768px) {
  .partners-title {
    font-size: 1.8rem;
  }
  .partners-subtitle {
    font-size: 1rem;
  }
}
/* === Investors Section === */
.investors-section {
  background: linear-gradient(135deg, #000814, #001f3f, #003566);
  color: #fff;
  padding: 6rem 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.investors-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  width: 100%;
}

/* Left Column */
.investors-text {
  flex: 1 1 450px;
  z-index: 1;
}

.investors-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #00c3ff, #a9c8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.investors-text p {
  font-size: 1.1rem;
  color: #d7e3ff;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* CTA Button */
.investor-btn {
  background: #00c3ff;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.investor-btn:hover {
  background: #0082b9;
  transform: translateY(-3px);
}

/* Right Column: Cards */
.investor-cards {
  flex: 1 1 450px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.investor-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 195, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
  animation: glowPulse 5s infinite ease-in-out;
}

.investor-card:hover {
  transform: translateY(-5px);
  border-color: #00c3ff;
  box-shadow: 0 0 20px rgba(0, 195, 255, 0.4);
}

.investor-card i {
  font-size: 2.5rem;
  color: #00c3ff;
  margin-bottom: 0.75rem;
}

.investor-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.3rem;
}

.investor-card p {
  color: #b0d4ff;
  font-size: 1rem;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(0, 195, 255, 0.2); }
  50% { box-shadow: 0 0 25px rgba(0, 195, 255, 0.4); }
}

/* Responsive */
@media (max-width: 900px) {
  .investors-container {
    flex-direction: column;
    text-align: center;
  }
  .investors-text h2 {
    font-size: 1.8rem;
  }
  .investor-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}
.contact-section {
  background: linear-gradient(135deg, #0d1b2a, #1b263b);
  color: #fff;
  padding: 100px 10%;
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #00b894;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #dcdcdc;
  margin-bottom: 60px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
  align-items: flex-start;
}

.contact-form {
  flex: 1;
  min-width: 320px;
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  margin-bottom: 20px;
  border: none;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  outline: none;
}

.contact-form textarea {
  min-height: 120px;
}

.submit-btn {
  background: #00b894;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #019874;
  transform: translateY(-3px);
}
.form-message {
    margin: 1rem 0;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-weight: 500;
    display: none; /* hidden by default */
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #f87171;
}

.contact-info {
  flex: 1;
  min-width: 320px;
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 20px;
}

.contact-info h3 {
  color: #00b894;
  margin-bottom: 15px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.contact-info li {
  margin: 10px 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-container iframe {
  width: 100%;
  height: 250px;
  border-radius: 15px;
  border: none;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  font-size: 28px;
  padding: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 999;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    gap: 30px;
  }
}
.footer {
  background: #0d1b2a;
  color: #dcdcdc;
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer p {
  margin: 0;
  font-size: 1rem;
  color: #b8b8b8;
}

.footer-socials {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.footer-socials a {
  color: #00b894;
  font-size: 1.3rem;
  transition: 0.3s;
}

.footer-socials a:hover {
  color: #ffffff;
  transform: scale(1.2);
}

.footer-links {
  margin-top: 10px;
  display: flex;
  gap: 15px;
}

.footer-links a {
  color: #b8b8b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #00b894;
}

/* Optional floating gradient glow behind footer for subtle motion */
.footer::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle at center, rgba(0,184,148,0.15), transparent 70%);
  top: -50%;
  left: -25%;
  animation: rotateGlow 15s linear infinite;
}

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

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    gap: 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}



