/* ===========================
   SOLUTIONS HERO
=========================== */
.solutions-hero {
  background: linear-gradient(-45deg, #000000, #23988e, #0f3f3c, #000000);
  background-size: 400% 400%;
  animation: gradientBG 12s ease infinite;

  min-height: 22vh;
  padding: 40px 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.solutions-hero-content {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 2fr; /* heading right, paragraph left */
  gap: 40px;
  align-items: center;
}

/* Left column - Paragraph */
.solutions-hero-left p {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.7;
  text-align: left;
}

/* Right column - Heading */
.solutions-hero-right h1 {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  text-align: right;
}


/* ===========================
   SOLUTIONS SECTION
=========================== */
.solutions-section {
  background: #0b0b0b;
  padding: 70px 20px;
}

.solutions-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Solution Card */
.solution-card {
  display: flex;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
  transition: all 0.3s ease;
}

/* Reverse layout */
.solution-card.reverse {
  flex-direction: row-reverse;
}

.solution-image {
  flex: 1;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */
.solution-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.solution-content h3 {
  font-size: 22px; /* reduced */
  margin-bottom: 12px;
  color: #ffffff;
}

.solution-content p {
  font-size: 15px; /* reduced */
  color: #d0d0d0;
  line-height: 1.7;
}

/* Hover effect */
.solution-card:hover {
  transform: translateY(-5px);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 992px) {
  .solution-card,
  .solution-card.reverse {
    flex-direction: column;
  }

  .solution-content {
    padding: 28px;
  }

  .solutions-hero h1 {
    font-size: 30px;
  }

  .solutions-hero p {
    font-size: 15px;
  }
}


/* Static PNG on left */
.hero-png {
  position: absolute;
  left: 0; /* very left of the screen */
  top: 50%;
  transform: translateY(-50%);
  width: 150px; /* adjust size */
  opacity: 0.60;
  z-index: 0;
  pointer-events: none; /* doesn't block clicks */
}

/* Responsive - hide on small screens if needed */
@media (max-width: 992px) {
  .hero-png {
    display: none;
  }
}