/* Keyframes for fade-in and slide-up */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Styling */
.overview-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff; /* pure white background */
}

/* Container Animation */
.overview-container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0,0,0,0.1);
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.2s;
}

/* Left: Images */
.elevation-images {
  flex: 1;
  min-width: 300px;
  overflow: hidden;
}

.elevation-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.elevation-images img:hover {
  transform: scale(1.05);
}

/* Right: Text Content */
.project-overview {
  flex: 1;
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.4s;
}

.project-overview h2 span {
  font-size: 32px;
  font-weight: bold;
  color: #d4af37; /* classic gold */
  border-bottom: 3px solid #d4af37;
  padding-bottom: 5px;
  display: inline-block;
  transition: color 0.3s ease;
}

.project-overview h3 {
  font-size: 20px;
  margin-top: 20px;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
}

.project-overview p {
  margin-top: 15px;
  line-height: 1.6;
  font-size: 16px;
  color: #444;
  transition: color 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .overview-container {
    flex-direction: column;
  }

  .elevation-images,
  .project-overview {
    width: 100%;
  }

  .project-overview {
    padding: 30px 20px;
  }
}


