.elementor-1166 .elementor-element.elementor-element-6e569be{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-dcb0e2e */.featured-projects {
  padding: 40px 20px;
  background-color: #fff;
}

.section-title {
  text-align: center;
  font-size: 2em;
  color: #D4AF37; /* Golden-Beige Color */
  margin-bottom: 30px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.project-card {
  text-decoration: none;
  color: inherit;
  border: 2px solid #D4AF37; /* Golden-Beige Border */
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.image-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  position: relative;
  overflow: hidden;
}

.image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-title {
  text-align: center;
  font-weight: bold;
  color: #D4AF37; /* Golden-Beige Color */
  padding: 15px;
  font-size: 1.1em;
}/* End custom CSS */