* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #1d1d1d;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  background: #000000;
  box-shadow: 0 2px 8px rgb(246, 206, 74);
  padding: 20px 0;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo .seo {
  color: #ff2c2c;
  font-size: 14px;
  text-transform: uppercase;
}

.logo .text {
  color: #ffffff;
  font-size: 20px;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

nav a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
}

.hero {
  padding: 80px 0;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.left h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #2c2c2c;
}

.left p {
  font-size: 16px;
  margin-bottom: 28px;
  color: #666;
}

.cta-btn span {
  margin-left: 8px;
}

.form-box {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
  width: 350px;
}

.form-box h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #2d2d2d;
}

.form-box input {
  width: 100%;
  padding: 13px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.form-box button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(to right, #6f8ff8, #030bf6);
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 100, 0, 0.3);
}

.logo img {
  height: 70px; /* İstediğiniz yüksekliğe göre ayarlayın */
  margin-right: 15px;
  vertical-align: middle;
}
.logo {
  display: flex;
  align-items: center;
}

.info {
  background-color: #f9f9f9;  /* Arka plan rengini açtım, isteğe göre değiştirebilirsiniz */
  padding: 40px 0;            /* Üst ve alt boşluklar */
  text-align: center;         /* Metni ortalamak için */
}

.info h2 {
  font-size: 28px;            /* Başlık boyutunu büyüttüm */
  margin-bottom: 20px;        /* Başlık ile metin arasına boşluk ekledim */
}

.info p {
  font-size: 16px;            /* Metin boyutunu ayarladım */
  line-height: 1.6;           /* Satır yüksekliği ekledim */
  max-width: 800px;           /* Yazının genişliğini sınırladım */
  margin: 0 auto 20px;        /* Yazıyı ortaladım ve altına boşluk ekledim */
}

.logo img {
  opacity: 0;
  transform: translateY(-30px);
  animation: logoFadeIn 1s ease-out forwards;
}

@keyframes logoFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-box {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
  width: 350px;
  opacity: 0;
  transform: scale(0.8);
  animation: formSlideIn 1s ease-out forwards;
}

@keyframes formSlideIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero h1 {
  opacity: 0;
  transform: translateY(50px);
  animation: heroTitle 1.5s ease-out forwards;
}

@keyframes heroTitle {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero .left h1 {
  position: relative;
  z-index: 2;
}

.hero .right {
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  transform: translateZ(0);
  animation: parallaxEffect 10s infinite;
}

@keyframes parallaxEffect {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 2s ease-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

button:hover {
  background-color: #007BFF;
  transform: scale(1.1);
  transition: all 0.3s ease;
}

a:hover {
  color: #007BFF;
  text-decoration: underline;
}
body {
  animation: bodyFadeIn 1.5s ease-out forwards;
}

@keyframes bodyFadeIn {
  to {
    opacity: 1;
  }
}

footer {
  background-color: #333333;
  color: white;
  padding: 40px 0;
  text-align: center;
}

footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer p {
  font-size: 18px;
  margin-bottom: 20px;
}

.tech-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.tech-icons img {
  width: 170px;
  margin: 0 10px;
  transition: transform 0.3s ease-in-out;
}

.tech-icons img:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .left h1 {
    font-size: 36px;
  }

  .left p {
    font-size: 15px;
  }

  .form-box {
    width: 100%;
  }

  header .container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  nav ul {
    flex-direction: column;
    gap: 12px;
    padding-top: 10px;
  }

  .info p {
    padding: 0 10px;
    font-size: 15px;
  }

  .tech-icons img {
    width: 90px;
  }

  .tech-icons {
    gap: 10px;
  }

  footer p {
    font-size: 16px;
  }
}

.contact {
  padding: 60px 20px;
  background-color: #f4f4f4;
  border-top: 1px solid #ddd;
}

.contact h2 {
  margin-bottom: 20px;
  color: #333;
}
