.elementor-1313 .elementor-element.elementor-element-b12f91c{--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;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1313 .elementor-element.elementor-element-c9888a9{--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;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-1313 .elementor-element.elementor-element-9084ae3 .elementor-heading-title{color:#FFFFFF;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-b3bf284 *//* ================= HERO SECTION ================= */
.projects-page-hero {
  position: relative;
  height: 380px;
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(122, 0, 38, 0.75);
}

.hero-content {
  position: relative;
  text-align: center;
  color: #ffffff;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  margin-bottom: 10px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.45);
}

.hero-content p {
  font-size: 18px;
  max-width: 620px;
  margin: auto;
}

/* ================= PROJECTS GRID ================= */
.projects-page {
  background: #FCFBF4;
  padding: 90px 0;
}

.projects-wrapper {
  width: 90%;
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 34px;
}

.project-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 38px 32px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.1);
  transition: all 0.35s ease;
}

.project-box:hover {
  transform: translateY(-10px);
}

.project-box h3 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: #7A0026;
  margin-bottom: 14px;
}

.project-box p {
  font-size: 15.5px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 22px;
}

.project-btn {
  display: inline-block;
  padding: 12px 26px;
  background: #7A0026;
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  transition: 0.3s;
}

.project-btn:hover {
  background: #8B1D3A;
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {

  .projects-page {
    padding: 40px 14px;
  }

  .projects-wrapper {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .project-box {
    padding: 26px 22px;
  }

  .project-box h3 {
    font-size: 21px;
  }

  .project-box p {
    font-size: 14.5px;
  }

  .project-btn {
    padding: 10px 22px;
    font-size: 13px;
  }

  .projects-page-hero {
    height: 240px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 15px;
  }
}

/* ================= TABLET ================= */
@media (min-width: 577px) and (max-width: 991px) {

  .projects-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }

  .projects-page {
    padding: 60px 20px;
  }

  .projects-page-hero {
    height: 300px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content p {
    font-size: 16px;
  }
}
/* ===============================
   OUR PROJECTS – FULL WIDTH FIX
================================ */

/* Main section full width */
.projects-page-hero {
  width: 100vw !important;
  max-width: 100vw !important;

  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Elementor boxed layout fix */
.elementor-section.projects-page-hero {
  max-width: 100% !important;
}

/* Inner container remove spacing */
.projects-page-hero .projects-wrapper,
.projects-page-hero .elementor-container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Background full cover */
.projects-page-hero {
  background-size: cover !important;
  background-position: center !important;
}
.project-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 18px;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}/* End custom CSS */