* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Montserrat", sans-serif;
}

main {
  width: 100%;
  min-height: 100vh;
}

header {
  display: flex;
  justify-content: center;
  background: #fff;
  padding: 25px 0;
  overflow-x: hidden;
}

nav {
  width: fit-content;
  background: #000;
  box-shadow: 0px 0px 20px -10px #000000;
  border-radius: 50px;
  padding: 8px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo img {
  width: 110px;
}

.links {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin-top: 1px;
  padding: 0 30px;
}

nav .links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.4s ease-in-out;
}
nav .links li a:hover {
  background: linear-gradient(-135deg, #ffffff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

nav .links li a::after {
  content: "";
  display: block;
  margin: 2px auto;
  width: 50%;
  height: 2px;
  background: white;
  border-radius: 1px;
  opacity: 0;
  transition: opacity 0.3s;
}

nav .links li a:hover::after {
  opacity: 1;
}

.close-menu {
  display: none;
  cursor: pointer;
  font-size: 24px;
  transition: 1s ease-in-out;
}

.close-menu:hover {
  color: gray;
}

.bar-container {
  display: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

.home {
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow-x: hidden;
}

.home-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-left: 10%;
  margin-bottom: 4%;
}

.home h1 {
  width: 100%;
  font-size: 60px;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1.2;
  overflow-y: hidden;
  text-align: center;
}

.home h1 span {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px);
  overflow: hidden;
}

.buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.home .photo1 img {
  width: 90%;
  position: absolute;
  left: 10%;
  bottom: 0%;
}
.btn {
  width: 250px;
  text-align: center;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  background: black;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease-in;
  z-index: 10;
  opacity: 0;
}

.btn:hover {
  background: #fff;
  color: #000;
  border: 2px solid #000;
}
.btn-outline:hover {
  background: #000;
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 2px solid black;
  color: black;
}

.grediant1 {
  width: 100%;
  height: 120px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0.03) 10%,
    rgba(0, 0, 0, 0.08) 20%,
    rgba(0, 0, 0, 0.9) 90%,
    #000 100%
  );
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 100;
}

.photo2 {
  display: none;
}

.about-section {
  width: 100%;
  min-height: 100vh;
  background: url("IMG/black-texture-AboutUs.webp") no-repeat center center /
    cover;
  overflow: hidden;
  position: relative;
}

.about-title {
  font-size: 36px;
  text-align: center;
  margin-top: 5%;
  margin-bottom: 4%;
  font-weight: 800;
  color: #fff;
}

.about-item {
  position: relative;
  margin-bottom: 20px;
  color: #ffffff;
  width: 80%;
  margin-left: 20%;
}

.about-item::after {
  content: "";
  position: absolute;
  top: 115%;
  left: 0;
  height: 2px;
  width: 80%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.9),
    transparent
  );
  background-size: 200% 100%;
  animation: shineLine 3s linear infinite;
}

.photo3 img {
  position: absolute;
  width: 15%;
  top: 0;
  left: 4%;
}

@keyframes shineLine {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.about-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 15px 0;
  width: 80%;
  margin-top: 3%;
}

.about-question {
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
}

.about-arrow {
  transition: transform 0.3s ease;
  font-size: 20px;
}

.about-body {
  width: 60%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 300;
  text-transform: capitalize;
}

.about-item.active .about-body {
  max-height: 500px;
  opacity: 1;
  margin: 10px 0;
}

.about-item.active .about-arrow {
  transform: rotate(180deg);
}

.container-founders {
  width: 100%;
  display: flex;
  gap: 20px;
}
.found {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 40px;
  margin-top: 10%;
  margin-left: 7.2%;
}

.card-fo {
  text-align: center;
}

.card-fo img {
  width: 380px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.card-fo h4 {
  color: #fff;
  font-size: 20px;
}

.card-fo p {
  color: #fff;
  margin-top: 10px;
}

.txt-fo {
  max-width: 50%;
  margin-bottom: 4%;
}

.txt-fo p {
  font-size: 16px;
  line-height: 2;
  color: #ffffff;
  text-transform: capitalize;
  font-weight: 400;
  margin-right: 18%;
}

.txt-fo h3 {
  font-size: 24px;
  line-height: 1.8;
  color: #ffffff;
  text-transform: capitalize;
  font-weight: 700;
}

.cards {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 4% auto;
  justify-items: center;
  padding: 0px 142px;
}

.card {
  width: 100%;
  padding: 10px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.card p {
  font-size: 15px;
  font-weight: 400;
  color: #ccc;
  margin: 0;
}

.card:hover {
  transform: translateY(-6px);
  cursor: pointer;
  box-shadow: 0 6px 16px #8f8f8f2a;
}

.services-section {
  width: 100%;
  min-width: 0;
  min-height: 100vh;
  background: url("IMG/white-texture.webp") no-repeat center center / cover;
  padding: 80px 10%;
  box-sizing: border-box;
  position: relative;
  overflow-x: hidden;
}
.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(
    360deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0.03) 10%,
    rgba(0, 0, 0, 0.08) 20%,
    rgba(0, 0, 0, 0.9) 90%,
    #000 100%
  );
  z-index: 100;
}

.services-title {
  text-align: center;
  font-size: 36px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  margin-bottom: 5%;
  color: #000;
}

.services-grid {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  color: #fff;
  overflow: visible;
}

.service-card {
  background: #000000;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: transform 0.6s ease;
  box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transform-style: preserve-3d;
  position: relative;
  text-transform: capitalize;
}

.service-card:hover {
  transform: rotateY(20deg) rotateX(10deg);
  background-image: linear-gradient(135deg, black, #232323);
}

.service-text {
  transition: opacity 0.2s ease;
}

.service-word {
  width: 75%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  text-transform: capitalize;
}

.service-card:hover .service-text {
  opacity: 0;
}

.service-card:hover .service-word {
  opacity: 1;
}

.service-icon img {
  width: 60px;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin: 10px 0;
}

.service-card p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
}

.grediant2 {
  width: 100%;
  height: 120px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0.03) 10%,
    rgba(0, 0, 0, 0.08) 20%,
    rgba(0, 0, 0, 0.9) 90%,
    #000 100%
  );
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 100;
}

/* Projects Section */
.Projects {
  width: 100%;
  min-height: 100vh;
  background: #000000;
  background: url("IMG/black-texture-projects.webp") no-repeat center center /
    cover;

  padding: 50px 10%;
  position: relative;
}

.Projects::before {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0.03) 10%,
    rgba(0, 0, 0, 0.08) 20%,
    rgba(0, 0, 0, 0.9) 90%,
    #000 100%
  );
  z-index: 100;
}
.Projects::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0.03) 10%,
    rgba(0, 0, 0, 0.08) 20%,
    rgba(0, 0, 0, 0.9) 90%,
    #000 100%
  );
  z-index: 100;
}
.swiper {
  width: 98%;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
}

.projects-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 5%;
}
.swiper-slide {
  text-align: left;
  font-size: 18px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px;
  font-family: "Montserrat", sans-serif;
  gap: 10px;
}

.swiper-slide img {
  width: 200px;
  margin-bottom: 20px;
}

.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: #fff;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}

.swiper-pagination-bullet-active {
  background: #000;
}
.head-slider {
  font-weight: 700;
  display: block;
  margin: 15px 0;
}

.paragraph {
  display: block;
  max-width: 99%;
  font-weight: 500;
  line-height: 1.8;
  color: #000;
  text-transform: uppercase;
}
.swiper-slide .elfaye2-logo {
  width: 150px;
}
.Projects .photo4 img {
  width: 12%;
  position: absolute;
  left: 84.5%;
  bottom: 0%;
  z-index: 1000;
}
.swiper-slide .rashat {
  width: 120px;
}

.button-projects {
  width: 100%;
  justify-content: center;
  display: flex;
}

.btn-outline2 {
  width: 250px;
  margin-top: 5%;
  background: transparent;
  border: 2px solid rgb(255, 255, 255);
  color: rgb(255, 255, 255);
  font-family: "Montserrat", sans-serif;
  text-align: center;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  background: black;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease-in;
  z-index: 10;
}
.btn-outline2:hover {
  background: #ffffff;
  color: #000000;
}

.contact-us {
  width: 100%;
  min-height: 100vh;
  background: url("IMG/white-texture.webp") no-repeat center center / cover;
  background-color: #fff;
  padding: 60px 140px;
  overflow: hidden;
  position: relative;
}

.contact-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #000;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 5%;
  margin-top: 1%;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  position: relative;
}

.map-wrapper {
  position: relative;
  margin-right: 5%;
}

.mapback img {
  width: 100%;
  display: block;
}

.map {
  position: absolute;
  top: 10%;
  left: 57%;
  width: 550px;
  height: 530px;
  transform: translateX(-50%);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.responsive-Map {
  display: none;
}
.contact-form {
  border-radius: 12px;
  padding: 20px;
  text-transform: capitalize;
}

.contact-form h3 {
  font-size: 26px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 3%;
}

.contact-form p {
  width: 95%;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 4%;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid rgb(0, 0, 0);
  border-radius: 12px;
  outline: none;
  font-size: 14px;
  transition: border 0.3s ease;
  font-weight: 600;
  background-color: #ffffff5e;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #8f8f8f;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  font-family: "Montserrat", sans-serif;
  color: #000000e1;
  font-weight: 600;
}

.contact-form button {
  width: 120px;
  background: transparent;
  border: 2px solid rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  font-family: "Montserrat", sans-serif;
  text-align: center;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  background: black;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease-in;
  z-index: 10;
}

.contact-form button:hover {
  background: transparent;
  border: 2px solid rgb(0, 0, 0);
  color: rgb(0, 0, 0);
}

.contact-cards {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 7%;
  flex-wrap: wrap;
}

.contact-cards .cardCo {
  background: rgb(0, 0, 0);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px 15px;
  text-align: center;
  width: 260px;
  backdrop-filter: blur(10px);
  transition: all 0.6s ease-in-out;
}

.contact-cards .cardCo:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-cards .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 26px;
}

.contact-cards .cardCo h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: 800;
}

.contact-cards .cardCo p {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.6;
  font-weight: 700;
}

.social-Media {
  margin-top: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.social-Media .social-title {
  display: flex;
  font-size: 20px;
  font-weight: 800;
  color: #000;
  letter-spacing: 1px;
}
.social-Media .social-title i {
  margin-top: 2%;
}

.social-Media .social-icons {
  display: flex;
}

.social-Media a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 50px;
  height: 50px;
  margin: 0 10px;
  border-radius: 50%;
  background: rgb(0, 0, 0);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
}

.social-Media a:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

footer {
  width: 100%;
  height: 3vh;
}
.CopyR {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.CopyR h3 {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

@media (max-width: 730px) {
  /* Home-Section */
  .bar-container {
    display: block;
    align-items: center;
  }

  .close-menu {
    display: block;
    color: #fff;
  }

  .links {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    background: #000000e7;
    backdrop-filter: blur(15px);
    display: none;
    z-index: 1000;
    gap: 60px;
    opacity: 0;
  }

  .links.active {
    display: flex;
  }

  .links li {
    margin-bottom: 4%;
  }
  .home-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    gap: 5px;
  }

  .home-content h1 {
    margin: auto;
    font-size: 32px;
    position: absolute;
    top: 7.5%;
  }
  .buttons {
    width: 330px;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 20px;
    z-index: 5;
  }

  .btn {
    padding: 10px 0px;
    font-size: 16px;
  }

  .home .photo1 {
    display: none;
  }
  .photo2 img {
    width: 100%;
  }

  .photo2 {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
  }

  .home {
    position: relative;
    height: 90vh;
    overflow: hidden;
  }
  /* AboutUS-Section */

  .about-section {
    position: relative;
  }
  .photo3 img {
    position: absolute;
    width: 25%;
    top: 0;
    left: 3%;
  }

  .about-title {
    font-size: 32px;
    margin-top: 20%;
    margin-bottom: 4%;
    color: #fff;
  }

  .about-item {
    width: 80%;
    position: relative;
    color: #ffffff;
    margin-left: 20%;
    padding: 0px 0px 10px 0px;
  }

  .about-item::after {
    width: 80%;
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    height: 2px;
  }

  .about-header {
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15%;
    padding: 5px 0;
  }

  .about-question {
    font-size: 16px;
    font-weight: 500;
  }

  .about-arrow {
    transition: transform 0.3s ease;
    font-size: 20px;
    margin-right: 5%;
  }

  .about-body {
    width: 80%;
    line-height: 1.4;
    font-size: 14px;
    font-weight: 400;
  }

  .found {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 40px auto;
    padding: 20px;
  }
  .card-fo {
    margin: auto;
  }
  .card-fo img {
    width: 150px;
    margin-bottom: 20px;
  }

  .container-founders {
    flex-direction: row;
  }

  .card-fo h4 {
    font-size: 18px;
  }

  .card-fo p {
    font-size: 16px;
  }

  .txt-fo {
    max-width: 100%;
    margin: auto;
    margin-top: 20px;
    text-align: center;
  }

  .txt-fo h3 {
    font-size: 18px;
    line-height: 1.8;
    margin-top: 1%;
  }

  .txt-fo p {
    max-width: 100%;
    margin: auto;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
    margin: 25px 0 0 0;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 20px;
  }

  .card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
  }

  .card p {
    font-size: 14px;
    font-weight: 400;
    color: #ccc;
    margin: 0;
  }

  /* Services-Section */

  .services-section {
    width: 100%;
    padding: 80px 10%;
    position: relative;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #000;
  }

  .service-word {
    width: 90%;
    font-size: 20px;
  }

  .service-icon img {
    width: 55px;
  }

  .service-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 10px 0;
  }

  .service-card p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
  }

  /* projects-Section */

  #Projects {
    width: 100%;
    min-height: 100vh;
    padding: 10% 8%;
    position: relative;
  }

  .projects-title {
    font-size: 32px;
    margin-bottom: 12.5%;
  }
  .swiper-slide {
    text-align: left;
    font-size: 14px;
    gap: 5px;
    z-index: 10;
  }

  .swiper-slide img {
    width: 175px;
    margin-bottom: 15px;
  }

  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }

  .head-slider {
    font-size: 14px;
    font-weight: 700;
  }

  .paragraph {
    font-weight: 500;
    line-height: 1.4;
    font-size: 12px;
  }

  #Projects > div.photo4 > img {
    width: 28%;
    position: absolute;
    left: 72.5%;
    bottom: 0;
    z-index: 1000;
  }
  .swiper-slide .paragraph {
    max-width: 88%;
  }
  #elfaye2-logo {
    width: 120px;
  }

  #rashat {
    width: 90px;
  }
  .button-projects {
    width: 50%;
    display: flex;
    justify-content: center;
    margin: 5% auto;
  }
  .btn-outline2 {
    margin-top: 17.5%;
  }

  #Projects::before {
    content: "";
    position: absolute;
    bottom: 100%;
    right: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(0, 0, 0, 0.03) 10%,
      rgba(0, 0, 0, 0.08) 20%,
      rgba(0, 0, 0, 0.9) 90%,
      #000 100%
    );
    z-index: 100;
  }
  #Projects::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(0, 0, 0, 0.03) 10%,
      rgba(0, 0, 0, 0.08) 20%,
      rgba(0, 0, 0, 0.9) 90%,
      #000 100%
    );
    z-index: 100;
  }

  /* ContactUs-Section */

  .contact-us {
    background-color: #fff;
    padding: 10px;
  }

  .contact-title-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .contact-title {
    font-size: 32px;
    white-space: nowrap;
    margin: 10% auto;
  }

  .contact-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    align-items: center;
    justify-content: center;
  }

  .map {
    width: 300px;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10;
    margin: auto;
    position: absolute;
    top: 15%;
    left: 55%;
  }

  .mapback {
    width: 300px;
    height: 320px;
    display: block;
    position: relative;
    left: 5%;
  }
  .responsive-Map {
    display: none;
  }

  .map-wrapper {
    position: relative;
  }

  .contact-form {
    border-radius: 12px;
    padding: 20px;
    text-transform: capitalize;
    text-align: center;
  }

  .contact-form h3 {
    font-size: 24px;
    margin-bottom: 3%;
    margin-top: 10%;
  }

  .contact-form p {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 12.5%;
    margin-top: 12.5%;
  }

  .contact-form button {
    width: 100px;
    padding: 9px 12.5px;
    border-radius: 30px;
    margin: auto;
  }

  .contact-cards .cardCo h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 800;
  }

  .contact-cards .cardCo p {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 700;
  }

  .social-Media {
    margin-top: 10%;
  }

  .social-Media .social-title {
    width: 30%;
    position: relative;
    display: flex;
    font-size: 18px;
    font-weight: 800;
    color: #000;
    letter-spacing: 1px;
  }
  .social-Media .social-title i {
    font-size: 18px;
    position: absolute;
    margin-top: 25%;
    margin-left: 50%;
  }

  .social-Media .social-icons {
    display: flex;
  }

  .social-Media a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 40px;
    height: 40px;
    margin: 15px 5px;
  }
  footer {
    width: 100%;
    height: 5vh;
  }
  .CopyR {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .CopyR h3 {
    margin-top: 2%;
    font-size: 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
  }
}

@media (min-width: 731px) and (max-width: 1025px) {
  .home {
    height: 90vh;
    padding: 40px 30px 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  nav {
    width: 96%;
    background: #000;
    box-shadow: 0px 0px 20px -10px #000000;
    border-radius: 50px;
    padding: 8px 0px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    white-space: nowrap;
  }
  .links {
    gap: 50px;
    margin-right: 5%;
    padding: 0px;
  }

  nav .links li a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.5s ease-in-out;
  }
  .logo img {
    width: 120px;
    margin-left: 10%;
  }

  .home-content {
    margin: 4% auto;
    gap: 75px;
  }
  .home-content .buttons {
    margin-top: 8% auto;
  }

  .btn,
  .btn-outline {
    width: 320px;
    font-size: 17px;
    padding: 12px 0;
  }

  .photo1 img {
    display: none;
  }

  .photo2 img {
    width: 90%;
    position: relative;
  }
  .photo2 {
    display: block;
    width: 90%;
    position: absolute;
    bottom: 0;
    left: 19%;
  }

  .found {
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin: 40px auto;
    margin-left: 1%;
    margin: auto;
  }
  .card-fo {
    margin: 4% auto;
  }
  .card-fo img {
    width: 300px;
    border-radius: 12px;
    margin-bottom: 20px;
  }

  .txt-fo {
    max-width: 98%;
    margin: auto;
    margin-top: 2%;
    text-align: center;
  }

  .txt-fo p {
    max-width: 100%;
    margin: auto;
    margin: 10px 0 0 0;
    text-align: center;
  }

  .cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0 7%;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #Projects .photo4 img {
    width: 19%;
    position: absolute;
    left: 81%;
    bottom: 0%;
    z-index: 1000;
  }

  .contact-us {
    padding: 10px;
  }

  .contact-title {
    font-size: 36px;
    white-space: nowrap;
    margin: 7.5% auto;
  }

  .contact-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    align-items: center;
    justify-content: center;
  }
  .map-wrapper {
    position: relative;
  }
  .map {
    width: 500px;
    height: 490px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10;
    margin: auto;
    position: absolute;
    top: 15%;
    left: 52.5%;
  }

  .mapback {
    width: 500px;
    display: block;
    position: relative;
    left: 15%;
  }

  .map-wrapper {
    position: relative;
  }

  .contact-form {
    border-radius: 12px;
    padding: 20px;
    text-transform: capitalize;
    text-align: center;
  }

  .contact-form h3 {
    width: 90%;
    margin: auto;
    font-size: 24px;
    margin-bottom: 3%;
    margin-top: 7.5%;
  }

  .contact-form p {
    width: 80%;
    margin: auto;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 7.5%;
    margin-top: 5%;
  }

  .contact-form input,
  .contact-form textarea {
    width: 80%;
    margin: auto;
    padding: 14px;

    font-size: 14px;

  }

  .contact-form button {
    width: 150px;
    padding: 9px 12.5px;
    border-radius: 30px;
    margin: auto;
  }

  .contact-cards .cardCo h3 {
    font-size: 20px;
    color: #ffffff;
    font-weight: 800;
  }

  .contact-cards .cardCo p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 700;
  }

  .social-Media {
    margin-top: 5%;
  }

  .social-Media .social-title {
    width: 22.5%;
    display: flex;
    font-size: 20px;
    font-weight: 800;
    color: #000;
    letter-spacing: 1px;
  }

  .social-Media .social-icons {
    display: flex;
  }

  .social-Media a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 40px;
    height: 40px;
    margin: 15px 10px;
  }
  footer {
    width: 100%;
    height: 5vh;
  }
  .CopyR {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .CopyR h3 {
    margin-top: 2%;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
  }
}
