.contanier {
  max-width: 1200px;
  margin: 0 auto 3rem auto;
  padding: 2rem;
  text-align: center;
}

.contanier .image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
  padding: 1rem;
  max-width: 800px;
  width: 90%;
  animation: fadeInRight 1s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.contanier .image img {
  width: 100%;
  height: auto;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.headerhakkimizda {
  text-align: center;
  font-size: 4.2rem;
  color: var(--primary-color);
  margin: 6rem 0 3rem 0;
  position: relative;
  font-weight: 700;
  letter-spacing: 1px;
  animation: fadeInDown 1s ease forwards;
  opacity: 0;
}

.headerhakkimizda::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--gold-color);
  border-radius: 2px;
}

.title-decoration {
  width: 60px;
  height: 3px;
  background: var(--gold-color);
  display: inline-block;
  position: relative;
}

.title-decoration::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--gold-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.title-decoration:first-child::before {
  right: -4px;
}

.title-decoration:last-child::before {
  left: -4px;
}

.content {
  font-size: 1.8rem;
  line-height: 1.8;
  margin: 4rem auto;
  max-width: 900px;
  padding: 0 2rem;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.content p {
  margin-bottom: 2rem;
  margin: 2rem 0;
}

.row3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
  padding: 0 1rem;
}

.card {
  background: var(--primary-color);
  color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 2px solid var(--gold-color);
  transition: transform 0.3s ease;
  cursor: pointer;
  opacity: 0;
}

.card:nth-child(1) {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.7s;
}

.card:nth-child(2) {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.9s;
}

.card:nth-child(3) {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1.1s;
}

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

.goldrenk {
  color: var(--gold-color);
}

.row3 .card strong {
  font-size: 1.75rem;
  display: block;
  margin: 1rem 0;
}

.row3 .card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.row3 .card p {
  font-size: 1.6rem;
  line-height: 1.6;
}

/* Çalıştığımız Firmalar Bölümü */
.client-section {
  padding: 6rem 2rem;
  background-color: var(--white);
  text-align: center;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1.3s;
  opacity: 0;
}

.section-title {
  font-size: 3.2rem;
  color: var(--primary-color);
  margin-bottom: 4rem;
  position: relative;
  animation: fadeInDown 1s ease forwards;
  animation-delay: 1.5s;
  opacity: 0;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gold-color);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.client-card {
  background: #fff;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.client-card:nth-child(1) {
  animation-delay: 1.7s;
}

.client-card:nth-child(2) {
  animation-delay: 1.9s;
}

.client-card:nth-child(3) {
  animation-delay: 2.1s;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.client-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold-color);
  padding: 1rem;
  background: white;
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.client-info h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.client-info p {
  color: var(--secondary-color);
  font-size: 1.6rem;
  line-height: 1.6;
}

.small-logo .img {
  max-width: 90%; /* Konteynerin %90'ını geçmez */
  max-height: 90%;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
  .headerhakkimizda {
    font-size: 3.6rem;
  }

  .content {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .headerhakkimizda {
    font-size: 3.2rem;
    margin: 4rem 0 2rem 0;
  }

  .headerhakkimizda::after {
    width: 80px;
    height: 3px;
  }

  .content {
    font-size: 1.5rem;
    padding: 0 1.5rem;
  }

  .row3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .client-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .client-logo {
    width: 100px;
    height: 100px;
  }

  .client-info h3 {
    font-size: 1.6rem;
  }

  .client-info p {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .headerhakkimizda {
    font-size: 2.8rem;
  }

  .content {
    font-size: 1.4rem;
    padding: 0 1rem;
  }

  .client-card {
    padding: 2rem;
  }

  .client-logo {
    width: 80px;
    height: 80px;
  }
}

/* About Us Page Styles */
.about-section {
  padding: 8rem 0;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--white);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-title {
  font-size: 4.2rem;
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  padding-bottom: 2rem;
}

.about-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: var(--gold-color);
  border-radius: 2px;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  align-items: center;
}

.about-text {
  font-size: 1.8rem;
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 2rem;
}

.about-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.about-image:hover {
  transform: scale(1.02);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  backdrop-filter: blur(5px);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--gold-color);
  margin-bottom: 1rem;
}

.stat-label {
  font-size: 1.6rem;
  color: var(--white);
}

@media (max-width: 768px) {
  .about-section {
    padding: 6rem 0;
  }

  .about-title {
    font-size: 3.2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-text {
    font-size: 1.6rem;
  }

  .stat-number {
    font-size: 2.8rem;
  }
}
