/* About Us Başlık Stilleri */
.a-about-header {
  background-image: url('../images/backgroundheader.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  padding: 8rem 0 5rem 0;
  color: white;
  margin-top: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Gradient Overlay */
.a-about-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(2, 0, 53, 0.85) 0%, rgba(0, 174, 239, 0.4) 100%);
  z-index: -1;
}

.a-about-heading {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
  animation: fadeInUp 0.8s ease-out;
  position: relative;
  display: inline-block;
}

.a-about-heading::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #00aeef, transparent);
  border-radius: 2px;
  animation: fadeIn 1s ease-out 0.3s both;
}

.a-about-subheading {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 2rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Responsive Design */
@media (max-width: 768px) {
  .a-about-header {
    padding: 6rem 0 4rem 0;
    background-attachment: scroll;
  }
  
  .a-about-heading {
    font-size: 2.5rem;
  }
  
  .a-about-subheading {
    font-size: 1.1rem;
    margin-top: 1.5rem;
  }
}

@media (max-width: 480px) {
  .a-about-heading {
    font-size: 2rem;
  }
  
  .a-about-subheading {
    font-size: 1rem;
  }
}

/* About Us İçerik Stilleri */
#a-about-us {
  background-color: #E3E7ED;
}

#a-about-us .a-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  padding: 2rem 1rem;
}

/* Genel Metin Alanı */
.a-text-area {
  flex: 1;
  padding: 1rem;
  color: #333;
}

/* Founder Metni */
.a-founder-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: justify;
}

/* Info Kartları */
.a-info {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem; /* İkon ve metin arasındaki boşluğu optimize ettik */
  margin-bottom: 1.5rem; /* Kartlar arasındaki boşluğu azalttık */
  padding: 0.5rem 0;
  border-top: 1px solid #ddd;
}

.a-info:last-child {
  border-bottom: 1px solid #ddd;
}

/* İkonlar */
.a-info i {
  font-size: 2rem;
  color: #0073e6;
  flex-shrink: 0;
}

/* Bilgi Başlık ve Metin Alanı */
.a-info-content {
  flex: 1;
}

.a-info-content h4 {
  font-size: 1.4rem;
  margin: 0;
  font-weight: bold;
}

.a-info-content p {
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

/* Görsel Alan */
.a-image-area {
  flex: 1;
  padding: 1rem;
  text-align: center;
}

.a-image-wrapper img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Button Container */
.a-button-container {
  margin-top: 2rem;
  text-align: left; /* Sola hizala */
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Learn More Button */
.a-learn-more-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(144deg, #020035, #00aeef);
  border-radius: 8px;
  transition: background 0.3s ease;
}

.a-learn-more-button:hover {
  background: linear-gradient(153deg, #00aeef, #020035);
  transform: scale(1.05); /* Hafif büyüme efekti */
}

.a-learn-more-button:active {
  transform: scale(0.95); /* Tıklama efekti */
}

/* Portfolio Button */
.a-portfolio-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  color: #00aeef;
  background: transparent;
  border: 2px solid #00aeef;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.a-portfolio-button:hover {
  background: #00aeef;
  color: #fff;
  transform: scale(1.05);
}

.a-portfolio-button:active {
  transform: scale(0.95);
}


/* Mobil Uyumluluk */
@media (max-width: 768px) {
  #a-about-us .a-container {
    flex-direction: column;
  }

  .a-info {
    flex-direction: column; /* Mobilde ikonlar üstte */
    align-items: flex-start;
  }

  .a-image-area {
    text-align: center;
    margin-top: 1.5rem;
  }
}

#a-about-us div {
  animation: fadeIn 1s ease-in-out;
}

#a-about-us .a-info {
  animation: fadeIn 1s ease-in-out;
}

.a-mage-wrapper {
  animation: fadeIn 1s ease-in-out;
}

#a-company-stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 50px 20px;
  background: linear-gradient(135deg, #d8e2eb 0%, #c8d5e0 100%);
  position: relative;
  overflow: hidden;
  border-top: 3px solid rgba(0, 174, 239, 0.3);
  border-bottom: 3px solid rgba(0, 174, 239, 0.3);
  box-shadow: 
    0 -4px 15px rgba(0, 174, 239, 0.15),
    0 4px 15px rgba(0, 174, 239, 0.15);
}

/* Animated Background Elements - Subtle and Eye-Friendly */
#a-company-stats::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatCircle1 25s ease-in-out infinite;
  z-index: 0;
}

#a-company-stats::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(2, 0, 53, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatCircle2 30s ease-in-out infinite;
  z-index: 0;
}

/* Floating Particles */
#a-company-stats {
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(0, 174, 239, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(2, 0, 53, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 174, 239, 0.05) 0%, transparent 50%);
  background-size: 400% 400%, 350% 350%, 300% 300%;
  animation: gradientShift 20s ease infinite;
}

/* Additional floating elements using pseudo-elements on stat items */
.a-stat {
  position: relative;
  z-index: 1;
}

.a-stat::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: floatParticle 15s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

/* Animations */
@keyframes floatCircle1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  33% {
    transform: translate(-30px, 30px) scale(1.1);
    opacity: 0.8;
  }
  66% {
    transform: translate(20px, -20px) scale(0.9);
    opacity: 0.5;
  }
}

@keyframes floatCircle2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(40px, -40px) scale(1.15);
    opacity: 0.7;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%, 100% 50%, 50% 0%;
  }
  50% {
    background-position: 100% 50%, 0% 50%, 50% 100%;
  }
  100% {
    background-position: 0% 50%, 100% 50%, 50% 0%;
  }
}

@keyframes floatParticle {
  0%, 100% {
    transform: translateX(-50%) translateY(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateX(-50%) translateY(-30px) scale(1.2);
    opacity: 0.5;
  }
}

/* Çember ve İkon Konteyneri */
.a-circle-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

.a-circle {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(144deg); /* Çemberin başlangıcını 135 dereceye ayarla */
}

.a-progress {
  fill: none;
  stroke: #0073e6; /* Çember rengi */
  stroke-width: 8;
  stroke-dasharray: 300; /* Çemberin tam uzunluğu */
  stroke-dashoffset: 300; /* Çember başlangıçta tamamen gizli */
  transition: stroke-dashoffset 2s ease-out; /* Animasyon */
}

.a-stat-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #0073e6;
}

.a-stat-number {
  position: absolute;
  top: 85%; /* Çemberin altına hizala */
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(90deg, #0073e6, #4c98e4); /* Gradyan */
  background-clip: text; /* Standart tanım */
  -webkit-background-clip: text; /* Webkit tarayıcılar için */
  -webkit-text-fill-color: transparent; /* Sadece Webkit tarayıcılar için */
}


.a-stat-label {
  font-size: 1.3rem;
  color: #666;
  margin-top: 10px;
  text-align: center; /* Ortala */
  position: relative; /* Herhangi bir kaymayı önlemek için */
  top: 15px; /* Çemberin altına doğru hizala */
}

/* Responsive - Reduce animations on mobile for better performance */
@media (max-width: 768px) {
  #a-company-stats::before,
  #a-company-stats::after {
    animation-duration: 35s;
    opacity: 0.5;
  }
  
  #a-company-stats {
    animation-duration: 25s;
  }
  
  .a-stat::before {
    animation-duration: 20s;
    opacity: 0.2;
  }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  #a-company-stats::before,
  #a-company-stats::after,
  #a-company-stats,
  .a-stat::before {
    animation: none;
  }
}

/* ============================================================================================================================= */
/* ============================================ PARTNERS & CLIENTS DETAILED SECTION =========================================== */
/* ============================================================================================================================= */
/* COMMENTED OUT - Uncomment when Partners & Clients section is enabled */

/*
#a-partners-clients-detailed {
  padding: 5rem 2rem;
  background-color: #E0E8F0;
  position: relative;
  overflow: hidden;
}

.a-pc-detailed-container {
  max-width: 1200px;
  margin: 0 auto;
}

.a-pc-detailed-header {
  text-align: center;
  margin-bottom: 4rem;
}

.a-pc-detailed-title {
  font-size: 3rem;
  font-weight: 700;
  color: #020035;
  margin: 0 0 1rem 0;
  position: relative;
  display: inline-block;
}

.a-pc-detailed-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #00aeef, transparent);
  border-radius: 2px;
}

.a-pc-detailed-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-top: 2rem;
  font-weight: 300;
  line-height: 1.6;
}

.a-pc-detailed-section {
  margin-bottom: 4rem;
}

.a-pc-detailed-section:last-child {
  margin-bottom: 0;
}

.a-pc-section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #020035;
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.a-pc-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00aeef, transparent);
  border-radius: 2px;
}

.a-pc-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.a-pc-detailed-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.a-pc-detailed-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #020035, #00aeef);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.a-pc-detailed-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 174, 239, 0.2);
}

.a-pc-detailed-card:hover::before {
  transform: scaleX(1);
}

.a-pc-card-logo {
  width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.3s ease;
}

.a-pc-detailed-card:hover .a-pc-card-logo {
  background: linear-gradient(135deg, rgba(2, 0, 53, 0.05), rgba(0, 174, 239, 0.05));
  transform: scale(1.05);
}

.a-pc-card-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0.3);
  transition: all 0.3s ease;
}

.a-pc-detailed-card:hover .a-pc-card-logo img {
  filter: grayscale(0);
  transform: scale(1.1);
}

.a-pc-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #020035;
  margin: 0 0 1rem 0;
  transition: color 0.3s ease;
}

.a-pc-detailed-card:hover .a-pc-card-title {
  color: #00aeef;
}

.a-pc-card-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  #a-partners-clients-detailed {
    padding: 4rem 1.5rem;
  }

  .a-pc-detailed-title {
    font-size: 2.5rem;
  }

  .a-pc-detailed-subtitle {
    font-size: 1.1rem;
  }

  .a-pc-section-title {
    font-size: 1.75rem;
  }

  .a-pc-detailed-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .a-pc-detailed-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  #a-partners-clients-detailed {
    padding: 3rem 1rem;
  }

  .a-pc-detailed-title {
    font-size: 2rem;
  }

  .a-pc-detailed-subtitle {
    font-size: 1rem;
  }

  .a-pc-section-title {
    font-size: 1.5rem;
  }

  .a-pc-card-title {
    font-size: 1.2rem;
  }

  .a-pc-card-description {
    font-size: 0.9rem;
  }
}
*/

/* Force hide Partners & Clients section even if HTML is uncommented */
#a-partners-clients-detailed {
    display: none !important;
}
