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

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

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: background 0.3s ease;
  z-index: 1000;
}

.navbar.scrolled {
  background: linear-gradient(135deg, #558dc1, #001c31);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
  z-index: 1100;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, #558dc1, #001c31);
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 1rem 0;
  }

  .nav-links a:hover {
    color: #8fd0ff;
  }

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

  .mobile-toggle {
    display: block;
  }
}


/* Hero */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #558dc1, #001c31);
  padding-top: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-left: 2rem;
  padding-right: 2rem;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 2rem;
}

.hero-text {
  max-width: 50%;
  color: #fff;
}

.hero-text h1 {
  font-size: 3.5rem;
}

.hero-text p {
  margin: 1rem 0;
  font-size: 1.2rem;
}

.hero-image {
  position: relative;
  width: 50% !important;
}

.btn {
  padding: 0.75rem 1.5rem;
  background-color: #fff;
  color: #558dc1;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
}

.btn:hover {
  background-color: #0056b3;
  color: #fff;
}

.hero-image {
  position: relative;
  width: 40%;
}

.hero-image img {
  width: 100%;
  border-radius: 10px;
}

.app-buttons {
  position: absolute;
  top: 80%;
  left: -50px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app-btn {
  background: #fff;
  color: #558dc1;;
  padding: 0.5rem 0.9rem;
  border-radius: 15px;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.app-btn:hover {
  background-color: #0056b3;
  color: #fff;
  cursor: pointer;
}

.app-btn .icon {
  height: 20px;
  width: 20px;
  margin-right: 8px;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 4rem 1rem;
    text-align: center;
  }

  .hero-content {
    flex-direction: column;
    padding: 1.5rem 1rem;
    align-items: center;
    margin-top: 50px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

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

  .hero-image {
    width: 90% !important;
    margin-top: 2rem;
    position: relative;
  }

  .app-buttons {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 1rem;
    gap: 1rem;
  }

  .app-btn {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
  }
}

/* Info Section */
.info {
  display: flex;
  flex-wrap: wrap;
  padding: 5rem 2rem;
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-family: 'Poppins', sans-serif;
}

.info-left {
  flex: 1 1 50%;
  padding: 1rem;
  color: #2c3e50;
}

.info-left h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #001c31;
}

.info-left p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #333;
}

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

.info-left ul li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  position: relative;
  padding-left: 1.5rem;
  color: #444;
}

.info-left ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #001c31;
  font-weight: bold;
}

.info-right {
  flex: 1 1 40%;
  padding: 1rem;
  display: flex;
  justify-content: center;
}

.info-right img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Features */
.features-section {
  background: #f5f5f5;
  padding: 5rem 2rem;
  font-family: 'Poppins', sans-serif;
}

.features-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #001c31;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.card .icon {
  font-size: 2.5rem;
  color: #558dc1;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

@media (max-width: 992px) {
  .feature-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .feature-cards {
    grid-template-columns: 1fr;
  }
}


/* Business Section */
.business-section {
  background: #fff;
  padding: 0 2rem;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.business-section h2 {
  font-size: 2.5rem;
  color: #001c31;
  margin-bottom: 2rem;
}

.business-top {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  text-align: left;
  justify-content: center;
}

.video-left {
  flex: 1 1 40%;
  padding: 1rem;
  display: flex;
  justify-content: center;
}

.video-left video {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.content-right {
  flex: 1 1 50%;
  padding: 1rem;
  color: #2c3e50;
}

.content-right p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #333;
}

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

.content-right ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  color: #444;
}

.content-right ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #001c31;
  font-weight: bold;
}

.business-features {
  background: #f5f5f5;
  padding: 4rem 2rem;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  border-radius: 12px;
}

.business-features .features-heading {
  font-size: 2rem;
  color: #001c31;
  margin-bottom: 2.5rem;
}

.business-features .feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.business-features .card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.business-features .card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.business-features .card .icon {
  font-size: 2.2rem;
  color: #558dc1;
  margin-bottom: 1rem;
}

.business-features .card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

@media (max-width: 768px) {
  .business-features .feature-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .business-top {
    flex-direction: column;
    text-align: center;
  }

  .content-right {
    padding: 1rem 0;
  }

  .content-right ul {
    padding-left: 0;
  }

  .content-right ul li {
    padding-left: 1.5rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .business-features .feature-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .business-features .feature-cards {
    grid-template-columns: 1fr;
  }
}


/* Go Green */
.go-green {
  height: 100vh;
  max-height: 50rem;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #064d3b;
  padding: 1rem;
  font-family: 'Poppins', sans-serif;
}

.go-green h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.go-green p {
  max-width: 700px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #094b38;
  margin-bottom: 1rem;
}

.go-green img {
  width: 100%;
  max-width: 420px;
  transition: transform 0.4s ease;
}

.go-green img:hover {
  transform: scale(1.04);
}

/* About */
.about-section {
  background: #ffffff;
  padding: 6rem 2rem;
  font-family: 'Poppins', sans-serif;
}

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

.about-text {
  flex: 1 1 50%;
  color: #333;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #001c31;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.partner-btn {
  display: inline-block;
  background-color: #558dc1;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.partner-btn:hover {
  background-color: #0056b3;
}

.about-image {
  flex: 1 1 45%;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact-section {
  background: linear-gradient(135deg, #558dc1, #001c31);
  padding: 6rem 2rem;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #fff;
}

.contact-section form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-section input,
.contact-section textarea {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-section input:focus,
.contact-section textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
  outline: none;
}

.contact-section textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-section button {
  background-color: #558dc1;
  color: #fff;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-section button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: #002b47;
  color: #fff;
  padding: 3rem 2rem;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
}

.footer-contact,
.footer-links {
  flex: 1 1 45%;
}

.footer-contact h4,
.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #8fd0ff;
}

.footer-contact p,
.footer-links p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  height: 100%;
}

.social-icons {
  margin: 1rem 0;
}

.social-icons a {
  display: inline-block;
  margin-right: 0.7rem;
  color: #fff;
  font-size: 1.3rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #00baff;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-divider {
    display: none;
  }

  .footer-contact,
  .footer-links {
    text-align: center;
  }
}

/* Partner Section */
.partner-section {
  background: linear-gradient(135deg, #558dc1, #001c31);
  padding: 6rem 2rem;
  font-family: 'Poppins', sans-serif;
}

.partner-section::before {
  content: "";
  position: absolute;
  top: 70px;
  left: 80px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.partner-section::after {
  content: "";
  position: absolute;
  top: 150px;
  left: 20px;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.partner-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: space-between;
}

.partner-pitch {
  flex: 1 1 50%;
  color: #fff;
  position: relative;
  z-index: 1;
}

.partner-pitch h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.partner-pitch p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.partner-pitch ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.partner-pitch li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.partner-bg-image {
  position: absolute;
  top: -40px;
  left: -60px;
  width: 150px;
  z-index: -1;
  opacity: 0.8;
}

.partner-form {
  flex: 1 1 40%;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.partner-form h3 {
  margin-bottom: 1.5rem;
  color: #002b47;
  font-size: 1.5rem;
}

.partner-form input,
.partner-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.partner-form textarea {
  min-height: 150px;
  resize: vertical;
}

.partner-form button {
  width: 100%;
  background-color: #558dc1;
  color: #fff;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.partner-form button:hover {
  background-color: #0056b3;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .partner-container {
    flex-direction: column;
    align-items: center;
  }

  .partner-pitch, .partner-form {
    width: 100%;
    text-align: left;
  }

  .partner-pitch {
    padding-top: 4rem;
  }

  .partner-bg-image {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 1rem;
    width: 100px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .partner-form {
    padding: 1.5rem;
    margin-top: 2rem;
  }

  .partner-form input,
  .partner-form textarea {
    font-size: 0.95rem;
  }
}