.hero-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  display: block;
}

.hero-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  padding: 20px;
}

.hero-caption h2 {
  font-size: 40px;
  font-weight: 700;
  font-family: 'SF Pro Display';
}

.hero-caption p {
  font-size: 24px;
  margin-top: 0px;
  margin-bottom: 20px;
  font-family: 'SF Pro Display';
  text-transform: capitalize;
}

/* Optional: make it responsive */
@media (max-width: 768px) {
  .hero-caption h2 {
    font-size: 1.8rem;
  }
  .hero-caption p {
    font-size: 0.9rem;
  }
}



.projectTitle
{
    margin-bottom: 4px;
}


.projectTitle {
  font-size: 36px;
  margin-bottom: 24px;
}

/* Card wrapper */
.project-card {
  display: block;
}

/* Image full width */
.project-image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 16px;
}

/* Title centered under image */
.project-name {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
  /* color: #1A3C5C; */
  /* color: #2F94BE; */
  color:rgba(47, 148, 190, 50);
  font-family: "Poppins", sans-serif;
}

/* Description starts from left */
.project-desc {
  margin: 0;
 font-family: 'SF Pro Display';
 font-size: 18px !important;
 color: rgba(0, 0, 0, 0.6);
 text-align: justify;
}

/* Optional: spacing on small screens */
@media (max-width: 767.98px) {
  #project_section {
    padding: 40px 0;
  }
}

.max-w-projects{
    max-width: 1024px;
    margin-inline: auto;
}

.readmore a
{
    border-radius: 50px;
}