:root {
  --primary-color: #07124D;
  --text-color: #3A3A3A;
  --max-width: 1200px;
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: var(--text-color);
}

.ecosystem {
  padding: 60px 20px;
 
}

.eco-container {
  max-width: var(--max-width);
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Header Section */
.eco-header {
  text-align: left; /* Ensure container aligns content to the left */
}

.eco-header h4 {
  margin: 0 0 10px;
  font-size: 14px;
  font-family: "poppins", sans-serif;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.2;
}

.with-box {
  position: relative;
  padding-left: 20px; /* Reduced space */
  display: inline-block;
  text-align: left;
  color: var(--primary-color);
}

.with-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: var(--primary-color);
  border-radius: 2px;
}


.eco-header h2 {
  font-size: 2rem;
  font-weight: 400;
  font-family: "Syne", sans-serif;
  color: var(--primary-color);
  margin: 0;
  line-height: 1.3;
  text-align: left;
}

.eco-header p {
  margin-top: 20px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  line-height: 1.7;
  color: #555;
  text-align: justify;
}

/* Card Grid */
.eco-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.eco-card {
  text-align: left;
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.eco-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.eco-card h3 {
  margin: 15px 0 10px;
  font-size: 1.1rem;
  font-family: "Syne", sans-serif;
  color: var(--primary-color);
  text-align: left;
}

.eco-card p {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #444;
  text-align: justify;
}

/* Responsive Layout */
@media (min-width: 768px) {
  .eco-header h2 {
  font-size: 2rem;
        font-family: "Syne", sans-serif;
        font-weight: 400;
     
  }

  .eco-header p {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
  }

  .eco-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .eco-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: -2rem;
  }

  .eco-card h3 {
    font-size: 1.3rem;
      font-family: "Syne", sans-serif;
  }

  .eco-card p {
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
  }
}

@media (min-width: 1200px) {
  .eco-header h2 {
    font-size: 3.2rem;
    font-weight: 400;
      font-family: "Syne", sans-serif;
  }

  .eco-header p {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
  }

  .eco-card h3 {
   font-size: 18px;
        font-weight: 200;
  }

  .eco-card p {
    font-size: 14px;
    font-family: 'poppins', sans-serif;
  }
}
