/* ===========================
   ABOUT HERO
=========================== */
.about-hero {
  background: linear-gradient(-45deg, #000000, #23988e, #0f3f3c, #000000);
  background-size: 400% 400%;
  animation: gradientBG 12s ease infinite;

  min-height: 22vh;
  padding: 20px 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;


  position: relative;
  overflow: hidden;

}

.about-hero-content {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

/* Left column */
.about-hero h1 {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  /*text-align: right;*/
}

/* Right column */
.about-hero p {
  font-size: 16px;
  color: #ffffff;
  opacity: 0.95;
  line-height: 1.7;
  /*text-align: left;*/
}

/* ===========================
   ABOUT SECTION
=========================== */
.about-section {
  background: #0a0a0a;
  padding: 90px 20px;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* ===========================
   ABOUT CARD
=========================== */
.about-card {
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #161616, #101010);
  border-radius: 18px;
  border: 1px solid rgba(35,152,142,0.25);
  box-shadow: 0 18px 45px rgba(0,0,0,0.7);
  overflow: hidden;
  height: 300px;
  transition: all 0.35s ease;
}

.about-card.reverse {
  flex-direction: row-reverse;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(35,152,142,0.45);
}

/* Image 50% */
.about-card-image {
  flex: 1;
  height: 100%;
}

.about-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text 50% */
.about-card-text {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-card h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 12px;
}

.about-card h3::after {
  content: "";
  width: 45px;
  height: 3px;
  background: #23988e;
  display: block;
  margin-top: 8px;
  border-radius: 2px;
}

.about-card p,
.about-card ul li {
  color: #f2f2f2;
  font-size: 15.5px;
  line-height: 1.75;
}

/* List */
.about-card ul {
  list-style: none;
  padding-left: 0;
  margin-top: 8px;
}

.about-card ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.about-card ul li::before {
  content: "✔";
  color: #23988e;
  margin-right: 10px;
  font-weight: 600;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 992px) {

  .about-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-hero h1 {
    font-size: 30px;
  }

  .about-card,
  .about-card.reverse {
    flex-direction: column;
    height: auto;
  }

  .about-card-image {
    height: 220px;
  }

  .about-card-text {
    padding: 24px;
    text-align: center;
  }

  .about-card h3::after {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {

  .about-hero {
    padding: 28px 16px;
  }

  .about-hero h1 {
    font-size: 26px;
  }

  .about-hero p {
    font-size: 15px;
  }
}



/* ===========================
   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;
}

/* Left shape */
.hero-shapes .left {
  left: -180px;
  top: 50%;
  transform: translateY(-50%);
  animation-name: slideLeft;
}

/* Right shape */
.hero-shapes .right {
  right: -180px;
  top: 40%;
  animation-name: slideRight;
}

/* ===========================
   SHAPE ANIMATIONS
=========================== */
@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: 768px) {
  .hero-shapes {
    display: none;
  }
}



/* Static PNG on left */
.hero-png {
  position: absolute;
  left: 0; /* very left of the screen */
  top: 50%;
  transform: translateY(-50%);
  width: 160px; /* adjust size */
  /*height: 100px;*/
  opacity: 0.70;
  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;
  }
}