.mutual-funds-section {
  position: relative;
  background: linear-gradient(to right, #f5fbff 0%, #ffffff 100%);
  overflow: hidden;
  padding: 0 20px;
  padding-bottom: 100px;

}

.mutual-funds-background {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.mutual-funds-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  z-index: 1;
}

#particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  z-index: 2;
}

.mutual-funds-card {
  position: relative;
  background: linear-gradient(135deg, #e9f7f5 0%, #ffffff 100%);
  border-radius: 24px;
  /* box-shadow: 0 10px 40px rgba(0,0,0,0.1); */
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 100px;
  z-index: 3;
}

.mutual-funds-content {
  flex: 1;
}

.mutual-funds-content h2 {
  font-size: 25px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.mutual-funds-content p {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}

.mutual-funds-content ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.mutual-funds-content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}

.mutual-funds-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  background: #00c56f;
  border-radius: 50%;
}

.mutual-funds-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.mutual-funds-btn {
  padding: 14px 24px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
}

.green-btn {
  font-size: 16px;
  background-color: #00c26f;
  border: 2px dashed rgba(0, 194, 111, 0.5);
  color: white;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 194, 111, 0.3);
  transition: all 0.3s ease;
}

.green-btn:hover {
  background: #00a95c;
}

.grey-btn {
  background-color: #eee;
  color: #333;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.grey-btn:hover {
  background: #ddd;
}

.mutual-funds-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.mutual-funds-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 24px;
}

/* Responsive */
@media (max-width: 992px) {
  .mutual-funds-card {
    flex-direction: column;
    padding: 30px;
  }

  .mutual-funds-image {
    margin-top: 30px;
  }

  .mutual-funds-content h2 {
    font-size: 26px; /* slightly smaller for tablet */
  }

  .mutual-funds-content p {
    font-size: 15px;
  }

  .mutual-funds-content ul li {
    font-size: 15px;
  }

  .mutual-funds-btn {
    padding: 10px 24px;
    font-size: 15px;
  }
}

/* Very Small Screens (Mobile devices) */
@media (max-width: 576px) {
  .mutual-funds-content h2 {
    font-size: 22px;
  }

  .mutual-funds-content p {
    font-size: 13px;
  }

  .mutual-funds-content ul li {
    font-size: 13px;
  }

  .mutual-funds-btn {
    padding: 8px 18px;
    font-size: 13px;
  }
}



.particle {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #00c56f;
  border-radius: 50%;
}

.particle:nth-child(even) {
  background-color: #0056ff;
}
