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

/* ========== CUSTOM SCROLLBAR TASARIMI ========== */

/* Tüm tarayıcılar için temel scrollbar */
::-webkit-scrollbar {
  width: 8px; /* çubuğun kalınlığı */
}

/* Scrollbar arka planı */
::-webkit-scrollbar-track {
  background: #000; /* siyah zemin */
}

/* Scrollbar'ın kaydırılan kısmı */
::-webkit-scrollbar-thumb {
  background-color: #e63946; /* kırmızı renk */
  border-radius: 10px;
}

/* Hover efekti (isteğe bağlı) */
::-webkit-scrollbar-thumb:hover {
  background-color: #ff4c4c; /* hover olduğunda daha açık kırmızı */
}



/* ========== HERO SECTION ========== */
.hero {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff;
  text-align: center;
  padding: 160px 20px 120px; /* Üst padding header’a çarpmaması için yüksek */
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Başlık */
.hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #e63946;
}

/* Açıklama */
.hero p {
  color: #ccc;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Butonlar */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Kırmızı buton */
.btn-primary {
  background-color: #e63946;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: #ff4c4c;
}

/* Kenarlıklı buton */
.btn-outline {
  border: 1.5px solid #fff;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-outline:hover {
  background-color: #fff;
  color: #000;
}

/* ========== RESPONSIVE HERO ========== */
@media (max-width: 768px) {
  .hero {
    padding: 120px 20px 80px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }
}


/* ========== STATISTICS SECTION ========== */
.stats {
  background-color: #f8f9fa;
  padding: 80px 20px;
}

.stats-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
  gap: 30px;
}

.stat-box {
  flex: 1;
  min-width: 200px;
}

.stat-box h2 {
  color: #e63946;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-box p {
  color: #000;
  font-size: 16px;
  margin: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .stats {
    padding: 60px 20px;
  }

  .stat-box h2 {
    font-size: 32px;
  }

  .stat-box p {
    font-size: 14px;
  }
}




/* ========== HİZMETLERİMİZ ========== */
.services {
  padding: 100px 20px;
  background-color: #fff;
  text-align: center;
}

.services-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.services-header p {
  color: #666;
  font-size: 16px;
  margin-bottom: 50px;
}

/* Grid yapısı */
.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Kart tasarımı */
.service-card {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 30px 25px;
  text-align: left;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* İkon */
.service-card .icon {
  background-color: #e63946;
  color: #fff;
  font-size: 26px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* Başlık ve metin */
.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-card p {
  font-size: 15px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Link */
.detail-link {
  color: #e63946;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
}

.detail-link:hover {
  text-decoration: underline;
}

/* Alt buton */
.services-footer {
  margin-top: 60px;
}

.btn-dark {
  background-color: #000;
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-dark:hover {
  background-color: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-header h2 {
    font-size: 28px;
  }
  .service-card {
    text-align: center;
  }
  .service-card .icon {
    margin: 0 auto 15px;
  }
}


/* ========== EKİBİMİZ ========== */

.team {
  padding: 100px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.team-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.team-header p {
  color: #666;
  font-size: 16px;
  margin-bottom: 50px;
}

/* Grid yapısı */
.team-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Kart */
.team-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Fotoğraf */
.team-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* Bilgi alanı */
.team-info {
  padding: 20px;
  text-align: left;
}

.team-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 5px;
}

.team-info .role {
  color: #e63946;
  font-weight: 500;
  margin: 0 0 5px;
}

.team-info .speciality {
  color: #444;
  font-size: 14px;
  margin: 0;
}

/* Alt buton */
.team-footer {
  margin-top: 60px;
}

.btn-red {
  background-color: #e63946;
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-red:hover {
  background-color: #ff4c4c;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .team-header h2 {
    font-size: 28px;
  }
  .team-card img {
    height: 260px;
  }
  .team-info {
    text-align: center;
  }
}






/* ========== BLOG (SON YAZILAR) ========== */
.blog {
  padding: 100px 20px;
  background-color: #fff;
  text-align: center;
}

.blog-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-header p {
  color: #666;
  font-size: 16px;
  margin-bottom: 50px;
}

/* Grid yapısı */
.blog-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Kart */
.blog-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Görsel */
.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* İçerik */
.blog-content {
  padding: 20px;
  text-align: left;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.blog-meta .category {
  background-color: #ffeaea;
  color: #e63946;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 20px;
}

.blog-meta .date {
  color: #777;
  font-size: 13px;
}

.blog-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 8px 0 10px;
}

.blog-content p {
  color: #444;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Devamını oku linki */
.read-more {
  color: #e63946;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
}

.read-more:hover {
  text-decoration: underline;
}

/* Alt buton */
.blog-footer {
  margin-top: 60px;
}

.btn-dark {
  background-color: #000;
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-dark:hover {
  background-color: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .blog-header h2 {
    font-size: 28px;
  }
  .blog-content {
    text-align: center;
  }
  .blog-meta {
    flex-direction: column;
    gap: 4px;
  }
}



