#background-image {
  width: 100%;
  height: 100%;
  background-image: url("../assets/proje1/1.jpg");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  transition: all 5s ease;
}

.navContainer {
  height: 100vh;
  width: 100%;

}

/* MAİN CSS START */
.maintext {
  position: absolute;
  width: auto;
  bottom: 3rem;
  left: 10rem;
  padding: 20px;
  border-radius: 2rem;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(3px);
}

.maintext h1 {
  color: #eee;
  font-size: 5rem;
  letter-spacing: 7px;
}

.maintext p {
  color: #eee;
  font-size: 20px;
}

.bolder {
  font-size: 55px;
  font-weight: 600;
}

.maincontact {
  background-color: #ffffff;
  margin-top: 1rem;
  display: inline-block;
  padding: 8px 40px;
  border-radius: 7px;
  font-size: 20px;
  color: #202020;
  transition: all 0.3s ease;
}
.maincontact:hover {
  background-color: #202020;
  color: #eee;
}

@media (max-width: 600px) {
  .maintext {
    left: 10px;
    width: 80%;
    font-size: 14px;
  }

  .maintext h1 {
    font-size: 28px;
  }

  .bolder {
    font-size: 16px;
  }

  .maintext p {
    font-size: 12px;
  }

  .maincontact {
    background-color: #ffffff;
    margin-top: 1rem;
    display: inline-block;
    padding: 5px 30px;
    border-radius: 7px;
    font-size: 14px;
    color: #202020;
    transition: all 0.3s ease;
  }
}

/* HAKKIMIZDA START*/

.hakkimizda {
  width: 100%;
  height: 100vh;
  background-color: #202020;
  justify-content: center;
  display: flex;
  margin-top: 80px;
}

.hakCon {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 70%;
}
.hakCon h1 {
  font-size: 80px;
  color: #eee;
  margin-left: 20px;
}
.hakCon p {
  font-size: 20px;
  color: #eee;
  padding: 20px;
  text-align: justify;
}

@media (max-width: 600px) {
  .hakkimizda {
    height: auto;
  }
  .hakCon {
    width: 100%;
  }
  .hakCon h1 {
    font-size: 35px;
    padding: 10px;
  }
  .hakCon p {
    margin-bottom: 30px;
  }
}


/* MAİN PROJELER START*/
.mainProjelerContainer {
  width: 100%;
  min-height: 70vh; 
  color: #eee;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.main-proje-baslik {
  text-align: center;
  font-size: 40px;
  margin-bottom: 50px;
}

.mainProjelerContainer .projeler {
  width: 100%;
  display: flex;
  justify-content: center;
}
.mainProjelerContainer .projeler .mainProje {
  width: 350px;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-right: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.proje-baslik {
  margin-bottom: 1rem;
}

.mainProjelerContainer .projeler img {
  width: 100%;
  height: 350px;
  border-radius: 2rem;
  box-shadow: rgba(196, 196, 197, 0.25) 0px 50px 100px -20px,
    rgba(223, 220, 220, 0.3) 0px 30px 60px -30px,
    rgba(124, 178, 231, 0.35) 0px -2px 6px 0px inset;
}

.mainProjelerContainer .projeler .mainProje:hover {
  transform: scale(1.1);
}

.mainProjelerContainer .projebutton {
  width: 150px;
  height: 35px;
  margin-top: 50px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mainProjelerContainer .projebutton:hover {
  background-color: #202020;
  color: #eee;
  border: #eee 1px solid;
}

@media (max-width: 870px) {
  .mainProjelerContainer {
    height: auto;
    display: flex;
    justify-content: center;
  }

  .projeler {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .main-proje-baslik {
    font-size: 20px;
    margin-top: 50px;
  }
}

@media (max-width: 400px) {
  .projeler{
    display: flex;
    align-items: center;
  }
  .mainProjelerContainer .projeler .mainProje {
    margin: 0px;
  }
  .mainProjelerContainer .projeler img {
    width: 70%;
    height: auto;
    align-items: center;
    
  }
}

/* HİZMETLER START*/

.hizmetContainer .hizmetlerimizBaslik {
  text-align: center;
  margin: 50px auto;
  color: #eee;
  font-size: 80px;
}

.hizmetContainer {
  width: 100%;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hizmet {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hizmetContainer .card {
  width: 300px;
  height: 500px;
  margin-right: 50px;
  background-color: #d1d0d0;
  text-align: center;
  border-radius: 2rem;
  box-shadow: rgba(196, 196, 197, 0.25) 0px 50px 100px -20px,
    rgba(223, 220, 220, 0.3) 0px 30px 60px -30px,
    rgba(124, 178, 231, 0.35) 0px -2px 6px 0px inset;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.hizmetContainer .card:hover {
  transform: scale(1.1);
}

.hizmetContainer .projebutton {
  width: 150px;
  height: 35px;
  margin-top: 50px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hizmetContainer .projebutton:hover {
  background-color: #202020;
  color: #eee;
  border: #eee 1px solid;
}

.hizmetContainer .card img {
  width: 100%;
  height: 450px;
  border-radius: 2rem 2rem 0 0;
  background-size: cover;
}

@media (max-width: 1000px) {
  .hizmetContainer {
    height: auto;
  }
  .hizmetContainer .hizmet {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
  }

  .hizmetContainer .card {
    margin: 0;
    padding: 0;
  }

  .hizmetContainer .hizmetlerimizBaslik {
    font-size: 40px;
  }
}

/* MAİN CSS END */

