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

body {
  background: #fff;
}

html {
  scroll-behavior: smooth;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  background: #fff;
  z-index: 100;
  border-bottom: #f0f0f0 1px solid;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-container img {
  width: 80%;
  height: auto;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.hamburger {
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 2px;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: #000;
  transition: all 0.3s ease;
}

.menu {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  background: #fff;
  padding: 2rem;
  transition: right 0.6s ease;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu.active {
  right: 0;
}

.menu ul {
  text-align: left;
}

.menu ul li a {
  font-family: "Unbounded", cursive;
  text-decoration: none;
  color: #000;
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
  transition: color 0.3s ease;
  font-size: 2rem;
}

.menu ul li a:hover {
  color: #713fff;
}

.hero {
  margin-top: 100px;
  padding: 2rem;
  text-align: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 {
  font-family: "Unbounded", cursive;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 1.2;
  color: #6c5ce7;
  margin-bottom: 2rem;
  background: #713fff;
  background: linear-gradient(to top right,
      #713fff 0%,
      #8d90fb 36%,
      #8d90fb 74%,
      #713fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.25rem);
  color: #333;
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* .cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 10px !important;
  font-size: clamp(2rem, 2vw, 1.5rem);
  font-weight: 500;
  font-family: "Inter", sans-serif;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #713fff !important;
} */

/* .star-logo {
  width: auto;
  height: auto;
  margin: 4rem auto;
}

.star-logo img {
  max-width: 100%;
  height: auto;
  animation: 2s ease-in-out 1s 2 alternate both running HeroLogoAnimation;
}

@keyframes HeroLogoAnimation {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
} */

/* Container ayarları */
.hero-logo {
  max-width: 1200px;
  /* Maksimum genişlik */
  width: 100%;
  /* Responsive için */
  height: 60vh;
  position: relative;
  margin: 0 auto;
  /* Ortalanmış container */
  overflow: hidden;
  display: flex;
  /* Ortalamak için flex kullanıyoruz */
  justify-content: center;
  /* Yatayda ortalama */
  align-items: center;
  /* Dikeyde ortalama */
}

.animated-image {
  position: absolute;
  opacity: 0;
  /* Başlangıçta görünmez */
  max-width: 25vw;
  /* Resim boyutu viewport'a göre */
  height: auto;
  transform: translateX(0);
  /* Ortadan hareket için translate kullanıyoruz */
  animation:
    initialFadeIn 1s forwards,
    /* İlk fade-in sadece bir kez */
    imageAnimation 12s infinite 1s;
  /* Ana animasyon 1 saniye gecikmeyle */
}

/* İlk yüklenmedeki fade-in */
@keyframes initialFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Ana animasyon - 50px alanda hareket */
@keyframes imageAnimation {

  /* Başlangıç pozisyonu (ortada) */
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  /* Sağ 50px hareket + soluklaşma (3 saniye) */
  25% {
    /* 3 saniye / 12 saniye */
    opacity: 0.5;
    transform: translateX(30px);
  }

  /* 4 saniye bekleme */
  58.33% {
    /* 7 saniye / 12 saniye */
    opacity: 0.5;
    transform: translateX(30px);
  }

  /* Geri dönüş (tam opak, ortada) */
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive ayarlar */
@media (max-width: 1200px) {
  .container {
    width: 90%;
    /* Küçük ekranlarda margin için yer bırak */
  }
}

@media (max-width: 768px) {
  .animated-image {
    max-width: 30vw;
    /* Tabletler için */
  }

  .hero-logo {
    width: 100%;
    height: 25vh;
  }
}

@media (max-width: 480px) {
  .animated-image {
    max-width: 40vw;
    /* Telefonlar için */
  }

  .hero-logo {
    width: 100%;
    height: 25vh;
  }
}

.clients {
  background: #fafafa;
  padding: 2rem 0;
  overflow: hidden;
}

.client-slider {
  display: flex;
  gap: 1rem;
  animation: slide 20s linear infinite;
  white-space: nowrap;
}

.client-slider:hover {
  animation-play-state: paused;
}

.client-logo {
  max-width: 200px;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}


.logo-slider {
  /* overflow: hidden; */
  /* padding: 30px 0 0 0; */
  white-space: nowrap;
  position: relative;

  background: #fafafa;
  padding: 2rem 0;
  overflow: hidden;
}

.logo-slider:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.logos-slide img {
  /* width: 183px;
  height: 83px;
  margin: 0 10px; */
  max-width: 200px;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.logos-slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
}


@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.services {
  background-color: #0b0b0b;
  padding: 6rem 1rem;
  color: white;
  /* border: 1px solid #ffffff; */
}

.services-header,
.works-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-header h2,
.works-header h2 {
  font-family: "Unbounded", cursive;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.services-header p,
.works-header p {
  font-family: "Inter", sans-serif;
  color: #fff;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  border: 1px solid #ffffff;
  padding: 2rem;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card .icon {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ffffff;
  position: relative;
}

.service-card .icon::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -2rem;
  right: -2rem;
  height: 1px;
  background-color: #ffffff;
}

.service-card .icon svg {
  width: 40px;
  height: 40px;
  stroke: white;
}

.service-card h3 {
  font-family: "Unbounded", cursive;
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #ffffff;
}

.service-card p {
  font-family: "Inter", sans-serif;
  /* color: #888; */
  line-height: 1.6;
  flex-grow: 1;
  font-size: 14px;
}

.works {
  background-color: #ffffff;
  padding: 6rem 2rem;
  color: #0b0b0b;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.work-item {
  margin-bottom: 4rem;
}

.work-image {
  background-color: #f4f3f9;
  padding: 8rem 8rem 0;
  text-align: center;
  margin-bottom: 2rem;
}

.work-image img {
  max-width: 100%;
  height: auto;
}

.work-content h3 {
  font-family: "Unbounded", cursive;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.work-content p {
  font-family: "Inter", sans-serif;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.work-link {
  font-family: "Inter", sans-serif;
  color: #0b0b0b;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
}

.work-link:hover {
  color: #6c5ce7;
}

.work-link svg {
  margin-left: 0.5rem;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-header h2,
  .works-header h2 {
    font-size: 2rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card .icon::after {
    left: -1.5rem;
    right: -1.5rem;
  }



  .menu ul {
    text-align: left;
  }
}

.testimonials {
  /* background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%); */
  background: rgb(113, 63, 255);
  background: -moz-linear-gradient(270deg,
      rgba(113, 63, 255, 1) 0%,
      rgba(75, 33, 198, 1) 49%,
      rgba(36, 1, 139, 1) 100%);
  background: -webkit-linear-gradient(270deg,
      rgba(113, 63, 255, 1) 0%,
      rgba(75, 33, 198, 1) 49%,
      rgba(36, 1, 139, 1) 100%);
  background: linear-gradient(270deg,
      rgba(113, 63, 255, 1) 0%,
      rgba(75, 33, 198, 1) 49%,
      rgba(36, 1, 139, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#713fff", endColorstr="#24018b", GradientType=1);
  padding: 6rem 2rem;
  color: white;
  text-align: center;
}

.testimonial-container {
  max-width: 800px;
  margin: 0 auto;
}

.testimonials h2 {
  font-family: "Unbounded", cursive;
  font-size: 3rem;
  margin-bottom: 2rem;
}

.testimonial-text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  font-weight: 400;
}

.customer-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.customer-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.customer-info {
  text-align: left;
}

.customer-info h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  margin: 0;
}

.customer-info p {
  font-family: "Inter", sans-serif;
  margin: 0;
  opacity: 0.8;
  text-align: center;
}

.cta {
  padding: 6rem 2rem;
  text-align: center;
  background: #fbfafd;
}

.cta h2 {
  font-family: "Unbounded", cursive;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #000;
}

.cta p {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 3rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 500;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background: #713fff;
}

.footer {
  padding: 4rem 2rem 2rem;
  background: white;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.footer-logo {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-branding {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #000;
}

.footer-tagline {
  font-family: "Inter", sans-serif;
  color: #6c5ce7;
  font-size: 0.875rem;
  line-height: 1.4;
  background: #713fff;
  background: linear-gradient(to top right,
      #713FFF 0%,
      #8D90FB 36%,
      #8D90FB 74%,
      #713FFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  font-family: "Unbounded", cursive;
  color: #000;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #6c5ce7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #eee;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #666;
}

.social-links {
  display: flex;
  gap: 2rem;
}

.social-links a {
  font-family: "Inter", sans-serif;
  color: #000;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #6c5ce7;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .testimonials h2 {
    font-size: 2rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .cta h2 {
    font-size: 2rem;
  }

  .footer-main {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

.cursor-trail {
  position: absolute;
  width: 5rem;
  height: 5rem;
  background: radial-gradient(circle,
      rgba(141, 141, 251, 0.1),
      rgba(0, 255, 255, 0));
  /* Neon cyan renk */
  border-radius: 50%;
  pointer-events: none;
  /* Tıklama olaylarını engelle */
  filter: blur(1rem);
  /* Bulanıklık efekti */
  transform: translate(-50%, -50%);
  /* Merkezleme */
  animation: fadeOut 0.5s ease forwards;
  /* Solma animasyonu */
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    scale: 1;
  }

  100% {
    opacity: 0;
    scale: 1.5;
    /* Hafif büyüme */
  }
}

/* Contact form container için genel stil */
.contact-form {
  max-width: 1200px;
  margin-top: 100px;
  padding: 2rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

/* Sol taraf (Metin bölümü) */
.left-content {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.left-content h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: 4rem;
  margin-bottom: 20px;
}

.left-content p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
}

.left-content h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: 2rem;
  margin-bottom: 10px;
  margin-top: 3rem;
  font-weight: 400;
}

.left-content a {
  /* display: block;
  color: #333;
  text-decoration: none;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif; */
  display: block;
  font-family: "Inter", sans-serif;
  color: #000;
  text-decoration: none;
  font-size: 0.875rem;
  margin-bottom: 10px;
  transition: color 0.3sease;
}

.left-content a:hover {
  color: #6c5ce7;
  text-decoration: underline;
}

/* Sağ taraf (Form bölümü) */
.right-form {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.right-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Label'lar için stil */
.right-form label {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 5px;
  font-weight: 400;
}

/* Form elemanlarının stilini revize et (tasarıma uygun) */
.right-form input,
.right-form select,
.right-form textarea {
  padding: 12px;
  border: 1px solid #F7F7F7;
  /* border-radius: 6px; */
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  background-color: #F7F7F7;
  opacity: 0.5;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.right-form input:focus,
.right-form select:focus,
.right-form textarea:focus {
  border-color: #000;
  outline: none;

  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.right-form select {
  appearance: none;
  background: url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 10px center;
  padding-right: 30px;
  cursor: pointer;
}

/* Option elemanları için stil (modern tarayıcılarda çalışır) */
.right-form option {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: 10px;
  background-color: #fff;
  color: #333;
  border-bottom: 1px solid #ddd;
  /* Opsiyonlar arasında ince bir çizgi */
  transition: background-color 0.2s ease;
}

.right-form option:hover {
  background-color: #f5f5f5;
  /* Hover efekti */
}

.right-form option:disabled {
  color: #999;
  /* Devre dışı seçeneklerin rengi */
  background-color: #fff;
}

/* Seçili seçenek için stil (varsa) */
.right-form option:checked {
  background-color: #e0e0e0;
  font-weight: 500;
}

.right-form textarea {
  height: 150px;
  resize: vertical;
}

.right-form button {
  padding: 14px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.right-form button:hover {
  background-color: #333;
}

/* reCAPTCHA Checkbox için stil */
.g-recaptcha {
  margin: 15px 0;
}

/* reCAPTCHA çerçevesini biraz daha uyumlu hale getir */
.g-recaptcha iframe {
  border-radius: 6px !important;
}

/* Mesaj alanı için stil */
.message-area {
  margin: 10px 0;
  padding: 10px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  display: none;
  /* Varsayılan olarak gizli, JavaScript ile gösterilecek */
}

.message-area p {
  margin: 0;
}

.message-area.success {
  display: flex;
  background-color: #d4edda;
  /* Yeşil arka plan başarı için */
  color: #155724;
  /* Koyu yeşil metin */
  border: 1px solid #c3e6cb;
}

.message-area.error {
  display: flex;
  background-color: #f8d7da;
  /* Kırmızı arka plan hata için */
  color: #721c24;
  /* Koyu kırmızı metin */
  border: 1px solid #f5c6cb;
}

/* Yeni form butonu için stil */
.new-form-button {
  margin-top: 10px;
  padding: 12px 20px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.new-form-button:hover {
  background-color: #333;
}

/* Responsive tasarım için medya sorguları */
@media screen and (max-width: 768px) {
  .contact-form {
    flex-direction: column;
    padding: 10px;
  }

  .left-content,
  .right-form {
    width: 100%;
    padding: 10px;
  }

  .left-content h1 {
    font-size: 2rem;
  }

  .left-content h2 {
    font-size: 1.5rem;
  }

  .left-content p {
    font-size: 1rem;
  }

  .right-form label {
    font-size: 0.9rem;
  }

  .right-form input,
  .right-form select,
  .right-form textarea {
    font-size: 0.9rem;
    padding: 10px;
  }

  .right-form button {
    font-size: 1rem;
    padding: 12px;
  }

  .right-form select {
    background-position: right 8px center;
    padding-right: 25px;
  }

  .right-form option {
    font-size: 0.9rem;
    padding: 8px;
  }
}

@media screen and (max-width: 480px) {
  .left-content h1 {
    font-size: 2rem;
  }

  .left-content h2 {
    font-size: 1.5rem;
  }

  .right-form label {
    font-size: 0.8rem;
  }

  .right-form textarea {
    height: 100px;
  }

  .right-form input,
  .right-form select,
  .right-form textarea {
    font-size: 0.8rem;
  }

  .right-form button {
    font-size: 0.9rem;
  }

  .right-form option {
    font-size: 0.8rem;
    padding: 6px;
  }
}