body{
    background-image: url('/images/projectwallpaper.jpg');
}
.wrapper {
    position: relative;
    overflow: hidden;
    background-image: url('/images/projectwallpaper.jpg');
}
.features-row {
    display: flex; /* Flexbox kullanarak öğeleri yan yana hizalar */
    flex-wrap: nowrap; /* Eğer sığmazsa, öğeleri alt satıra at */
    justify-content: space-between; /* Öğeler arasında eşit boşluk bırak */
}

.feature-box {
    text-align: left; /* İçeriği merkezle */
    margin-bottom: 20px; /* Öğeler arası boşluk */
    flex: 1 1 30%; /* Öğelerin esnekliği ve varsayılan genişlik ayarı */
    max-width: 30%; /* Maksimum genişlik belirleme */
}

.feature-box-content {
    margin-top: 10px; /* Başlık ve açıklama arasında boşluk */
}

@media (max-width: 768px) {
    .features-row {
        flex-direction: column; /* Küçük ekranlarda öğeleri alt alta sırala */
        align-items: center;
    }
    
    .feature-box {
        max-width: 70%; /* Küçük ekranlarda tam genişlik */
        flex-basis: 100%; /* Esneklik temel genişlik */
    }
}
.features {
  padding: 2rem 0;
}

.feature-box {
  display: flex;
  align-items: center;
  padding: 1rem;
  margin-bottom: 1rem;
  flex-direction: column; /* Mobil görünüm için başlangıçta dikey hizalama */
  text-align: center; /* Metinleri ortala */
  align-items: center;
}

.feature-icon {
  flex: 0 0 auto;
  margin-bottom: 1rem;
}

.feature-icon img {
  width: 50px; /* Görselin boyutunu ayarlayabilirsiniz */
  height: 50px; /* Görselin boyutunu ayarlayabilirsiniz */
  border-radius: 5px;
}

.feature-box-content {
  flex: 1;
}

.feature-box-content h3 {
  margin: 0 0 0.5rem;
}

.feature-box-content p {
  margin: 0;
}

@media (min-width: 768px) {
  .feature-box {
    flex-direction: row; /* Masaüstü görünümde yatay hizalama */
    text-align: left; /* Metinleri sola hizala */
  }
  .feature-icon {
    margin-right: 1rem;
    margin-bottom: 0;
  }
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.main {
  width: 100%;
 
}

.projects-section {
  width: 100%;
  text-align: center;
  background-image: url('public/images/projectwallpaper.jpg');
}

.projects-section h1 {
  font-size: 2em;
  margin: 20px 0;
}

.projects-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.project {
  background-color: rgba(255, 255, 255, 0);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
}

.project:nth-child(even) .project-content {
  order: 2;
}

.project:nth-child(even) .project-img {
  order: 1;
}

.project-content {
  flex: 1;
  padding: 20px;
  text-align: left;
}

.project-content h2 {
  margin: 0 0 10px;
  font-size: 2em;
  color: #ffffff;
}

.project-content p {
  margin: 0;
  color: #ffffff;
}

.project-img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 0;
}

@media (max-width: 992px) {
  .project {
    flex-direction: column;
    height: auto;
  }

  .project:nth-child(even) .project-content,
  .project:nth-child(even) .project-img {
    order: unset;
  }

  .project-img {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 992px) {
  .project-content {
    padding: 100px;
  }
}

@media (max-width: 992px) {
  .project {
    flex-direction: column;
    height: auto;
  }

  .project:nth-child(even) .project-content,
  .project:nth-child(even) .project-img {
    order: unset;
  }

  .project-img {
    width: 100%;
    height: auto;
  }
}
.main {
  width: 100%;
}

.projects-section {
  width: 100%;
  text-align: center;
}

.projects-section h1 {
  font-size: 2em;
  margin: 20px 0;
}

.projects-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.project {
  background-color: rgba(255, 255, 255, 0);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  opacity: 0;
  animation: slideIn 1s forwards;
}

.project:nth-child(even) {
  animation: slideInLeft 1s forwards;
}

.project:nth-child(odd) {
  animation: slideInRight 1s forwards;
}

.project:nth-child(even) .project-content {
  order: 2;
}

.project:nth-child(even) .project-img {
  order: 1;
}

.project-content {
  flex: 1;
  padding: 20px;
  text-align: left;
}

.project-content h2 {
  margin: 0 0 10px;
  font-size: 2em;
  color: #ffffff;
}

.project-content p {
  margin: 0;
  color: #ffffff;
  text-align: justify;
}

.project-img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 0;
  opacity: 0;
  animation: fadeIn 1s forwards 2s;
}

@media (min-width: 992px) {
  .projects-container {
    max-width: 65%;
    margin: 0 auto;
  }

  .project-content {
    padding: 20px;
  }
}

@media (max-width: 992px) {
  .project {
    flex-direction: column;
    height: auto;
  }

  .project:nth-child(even) .project-content,
  .project:nth-child(even) .project-img {
    order: unset;
  }

  .project-img {
    width: 100%;
    height: auto;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.project-gallery {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.gallery-img {
  width: 30%;
  height: auto;
  border-radius: 8px;
  opacity: 0;
  animation: fadeIn 1s forwards 1s;
  object-fit: cover;
}

@media (min-width: 992px) {
  .projects-container {
    max-width: 65%;
    margin: 0 auto;
  }

  .project-content {
    padding: 20px;
  }
}

@media (max-width: 992px) {
  .project {
    flex-direction: column;
    height: auto;
  }

  .project:nth-child(even) .project-content,
  .project:nth-child(even) .project-img {
    order: unset;
  }

  .project-img {
    width: 100%;
    height: auto;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}