
   .about-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      padding: 60px 5%;
    }

    .about-left {
      flex: 1 1 50%;
      padding-right: 30px;
    }

    .about-left span {
      text-transform: uppercase;
      color: #ff9100;
      font-size: 18px;
      font-weight: 500;
      letter-spacing: 1px;

    }

    .about-left h1 {
      font-size: 58px;
      margin: 8px 0;
      line-height: 1.2;
      color: #0c1020;
            font-weight: 500;

    }
.feature-animate {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(6px);
  transition: all 0.8s ease;
}

/* Göründüğünde uygulanacak sınıf */
.feature-animate.show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
    .about-right {
      flex: 1 1 40%;
    }

    .about-right p {
      font-size: 16px;
      color: #444;
      margin-bottom: 20px;
    }

    .btn-contact {
      background-color: #414141;
      color: #fff;
      padding: 6px 12px;
      border-radius: 12px;
      text-decoration: none;
      display: inline-block;
      font-weight: 500;
    }

    .btn-contact::before {
      content: '+';
      margin-right: 10px;
    }

    .features {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin: 60px 5%;
    }

    .feature-box {
  background: #f8f8f8;
  border: 1.3px solid #ddd;
  padding: 50px;
  flex: 1 1 200px;
  max-width: 550px;
  text-align: left;
  transition: all 0.3s ease;
}
.feature-box:hover {
  background-color: #ff7300;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-color: transparent;
}

.feature-box:hover h3,
.feature-box:hover p {
  color: #fff;
}

.feature-box img {
  height: 50px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.feature-box:hover img {
  transform: scale(1.1) rotate(-3deg);
}
    

    .feature-box h3 {
      font-size: 18px;
      margin-bottom: 10px;
      color: #0c1020;
    }

    .feature-box p {
      font-size: 18px;
      color: #666;
    }

    @media (max-width: 768px) {
      .about-section {
        flex-direction: column;
      }
      .about-left,
      .about-right {
        flex: 1 1 100%;
        padding-right: 0;
      }
      .features {
        flex-direction: column;
        align-items: center;
      }
    }

/* Animasyon tanımları */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInBottom {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sınıflar */
.slide-in-left {
  animation: slideInLeft 1s ease-out forwards;
}

.slide-in-bottom {
  animation: slideInBottom 1.2s ease-out forwards;
}

/* Sayfa yüklenirken animasyon başlasın */
.slide-in-left,
.slide-in-bottom {
  opacity: 0;
  animation-delay: 0.3s;
}