/* ===========================
   SERVICES HERO
=========================== */
.services-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;
}

.services-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 */
.services-hero-left p {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.7;
  text-align: left;
}

/* Right column - Heading */
.services-hero-right h1 {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  text-align: right;
}

/* ===========================
   HERO SHAPES
=========================== */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shapes .shape {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(35, 152, 142, 0.18);
  filter: blur(60px);
  animation-duration: 12s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.hero-shapes .left {
  left: -180px;
  top: 50%;
  transform: translateY(-50%);
  animation-name: slideLeft;
}

.hero-shapes .right {
  right: -180px;
  top: 40%;
  animation-name: slideRight;
}

@keyframes slideLeft {
  0%   { transform: translate(-40px, -50%) scale(1); }
  50%  { transform: translate(80px, -55%) scale(1.15); }
  100% { transform: translate(-40px, -50%) scale(1); }
}

@keyframes slideRight {
  0%   { transform: translate(40px, 0) scale(1); }
  50%  { transform: translate(-90px, -20px) scale(1.2); }
  100% { transform: translate(40px, 0) scale(1); }
}

@media (max-width: 992px) {
  .services-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .services-hero-left p,
  .services-hero-right h1 {
    text-align: center;
  }

  .services-hero-right h1 {
    font-size: 30px;
  }

  .services-hero-left p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .hero-shapes {
    display: none;
  }
}

/* ===========================
   SERVICES SECTION
=========================== */
.services-section {
  background: #0a0a0a;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.services-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  justify-items: center;
}

/* ===========================
   SERVICE CARD
=========================== */
.service-card {
  background: linear-gradient(180deg, #161616, #101010);
  padding: 35px 25px;
  border-radius: 20px;
  border: 1px solid rgba(35, 152, 142, 0.25);
  box-shadow: 0 18px 45px rgba(0,0,0,0.7);
  text-align: center;
  width: 100%;
  max-width: 340px; /* slightly bigger than before */
  transition: all 0.35s ease;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 65px rgba(35, 152, 142, 0.45);
}

.service-card img {
  height: 65px;
  margin-bottom: 20px;
}

.service-card h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 15px;
}

.service-card p {
  color: #f2f2f2;
  font-size: 15.5px;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
  .service-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .services-hero-right h1 {
    font-size: 32px;
  }

  .service-card {
    padding: 28px 20px;
  }
}




/* 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;
  }
}

