/* ============================================
   UPCOMING PROJECTS - ENGLISH (LTR)
   ============================================ */

/* 1. Background & Section Setup */
.upcoming-hero {
  min-height: calc(100vh - 438px);
  background: linear-gradient(45deg, #eefff1, #fff9e5, #f3fff5);
  display: flex;
  align-items: center;
  padding-bottom: 180px !important;
}

/* 2. Titles & Text */
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  /* Completely Black */
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
}

/* The mark under "Upcoming" or "Projects" or the whole title */
.about-title-mark {
  color: #000000;
  /* Also black for the text itself */
  position: relative;
  display: inline-block;
  z-index: 1;
}

.about-title-mark::after {
  content: "";
  position: absolute;
  left: -20px;
  right: 0;
  bottom: -6px;
  margin-inline: auto;
  width: 90px;
  height: 10px;
  background: url("https://webdiv.net/LandinPage/assets/images/shape/header-shape.png")
    no-repeat center / contain;
  pointer-events: none;
  opacity: 1;
  z-index: -1;
}

/* 3. Project Cards */
.project-card {
  background: #fff;
  border: 1px solid #dcdcdc;
  /* Subtle border for the card */
  border-radius: 12px;
  padding: 16px;
  /* Padding inside the card so image has space */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  /* Gentle shadow */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.project-img-wrap {
  background: #fff;
  border-radius: 8px;
  /* Slightly smaller radius than card */
  overflow: hidden;
  margin-bottom: 20px;
  /* Optional: Border for the image itself if needed, or just let the card padding create the 'frame' effect */
}

.project-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.project-info {
  text-align: center;
  padding: 0 8px;
}

.project-name {
  font-size: 18px;
  font-weight: 700;
  color: #008c1b;
  /* Green for Project Title */
  margin-bottom: 12px;
}

.project-desc {
  font-size: 15px;
  font-weight: 600;
  color: #333333;
  /* Dark Grey/Black for description */
  line-height: 1.6;
  margin-bottom: 8px;
}

/* 4. Reveal Animations (on load/scroll) */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 800ms ease,
    transform 900ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

[data-reveal="fade"] {
  transform: none;
}

[data-reveal="right"] {
  transform: translateX(60px);
}

.reveal-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    transition: none;
    opacity: 1;
    transform: none;
  }
}
