#HeroOurworkPage{
    background-image: url(../image/ourwork.jpg);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    height: 110vh;
    margin-top: -200px;
    display: flex;
    align-items: center;
    justify-content: center;
}


#HeroworkPage-Content {
  display: flex;
  text-align: center;
  align-items: center;
  color: var(--scound);

}

.HeroServicesPageEndContent{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 250px;
  margin-bottom: -270px;
  width: 1360px;
}


.pageTitle{
  font-size: 56px;
  /* margin-bottom: 50px; */
}

.descWork{
    background-color: black;
    padding-top: 50px;
    padding-bottom: 100px;
}

/* ================= Responsive Design ================= */

/* Extra Small Devices (phones, <576px) */
@media (max-width: 575.98px) {
  #HeroOurworkPage {
    height: auto;
    margin-top: -100px;
    padding: 60px 15px;
    background-position: center center;
  }

  #HeroworkPage-Content {
    flex-direction: column;
    text-align: center;
  }

  .HeroServicesPageEndContent {
    flex-direction: column;
    width: 100%;
    margin-top: 80px;
    margin-bottom: 0;
    gap: 20px;
  }

  .pageTitle {
    font-size: 28px;
  }

  .descWork {
    padding: 30px 15px;
  }
}

/* Small Devices (tablets, ≥576px and <768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  #HeroOurworkPage {
    height: auto;
    margin-top: -120px;
    padding: 80px 20px;
  }

  #HeroworkPage-Content {
    flex-direction: column;
  }

  .HeroServicesPageEndContent {
    flex-direction: column;
    width: 100%;
    margin-top: 100px;
    margin-bottom: 0;
    gap: 25px;
  }

  .pageTitle {
    font-size: 34px;
  }

  .descWork {
    padding: 40px 20px;
  }
}

/* Medium Devices (small laptops, ≥768px and <1024px) */
@media (min-width: 768px) and (max-width: 1023.98px) {
  #HeroOurworkPage {
    height: 80vh;
    margin-top: -150px;
  }

  .HeroServicesPageEndContent {
    width: 90%;
    margin-top: 150px;
    margin-bottom: -100px;
    flex-wrap: wrap;
    gap: 20px;
  }

  .pageTitle {
    font-size: 44px;
  }

  .descWork {
    padding: 50px 30px;
  }
}

/* Large Devices (desktops, ≥1024px) */
@media (min-width: 1024px) {
  #HeroOurworkPage {
    height: 110vh;
    margin-top: -200px;
  }

  .HeroServicesPageEndContent {
    width: 1360px;
    margin-top: 250px;
    margin-bottom: -270px;
  }

  .pageTitle {
    font-size: 56px;
  }

  .descWork {
    padding: 50px 80px;
  }
}


