   body {
      font-family: 'Segoe UI', sans-serif;
      background-color: #0d1117;
      color: #ffffff;
      scroll-behavior: smooth;
    }
    header {
      background: #161b22;
      padding: 20px 0;
      border-bottom: 2px solid #30363d;
      position: relative;
    }
    .logo-center {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background-color: #161B22;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 32px;
      color: #161B22;
      margin: 0 auto;
      user-select: none;
      box-shadow: 0 0 15px #161B22;
    }
    .header-social-icons {
      position: absolute;
      top: 22px;
      left: 20px;
      display: flex;
      gap: 15px;
    }
    .header-social-icons a {
      color: #ffffff;
      font-size: 22px;
      transition: color 0.3s ease;
    }
    .header-social-icons a:hover {
      color: #f39c12;
    }
    .lang-switcher {
      position: absolute;
      top: 22px;
      right: 20px;
      font-weight: 600;
      font-size: 16px;
      letter-spacing: 0.1em;
    }
    .lang-switcher a {
      color: #ccc;
      margin-left: 15px;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    .lang-switcher a:hover, .lang-switcher a.active {
      color: #f39c12;
    }
    nav.navbar {
      background: #0d1117;
      border-bottom: 1px solid #30363d;
    }
    .navbar-nav a {
      color: #ddd !important;
      margin: 0 12px;
      font-weight: 600;
      letter-spacing: 0.05em;
      font-size: 18px;
      transition: color 0.3s ease;
      text-transform: uppercase;
    }
    .navbar-nav a:hover, .navbar-nav .active > a {
      color: #f39c12 !important;
      text-shadow: 0 0 5px #f39c12;
    }
    .carousel-inner img {
      height: 500px;
      object-fit: cover;
      filter: brightness(0.85);
    }
    section {
      padding: 60px 0;
    }
    footer {
      background: #161b22;
      color: #9ca3af;
      padding: 30px 0;
    }
    .social-icons a {
      color: #ffffff;
      font-size: 26px;
      margin: 0 15px;
      transition: 0.3s;
    }
    .social-icons a:hover {
      color: #f39c12;
      transform: scale(1.1);
    }
    .stats {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 50px;
      margin-top: 40px;
    }
    .stat {
      text-align: center;
      min-width: 120px;
      user-select: none;
    }
    .stat-icon {
      font-size: 48px;
      color: #f39c12;
      margin-bottom: 12px;
      filter: drop-shadow(0 0 5px #f39c12);
    }
    .stat-number {
      font-size: 36px;
      font-weight: 900;
      letter-spacing: 0.05em;
      color: #fff;
      margin-bottom: 6px;
    }
    .stat-label {
      font-size: 16px;
      color: #9ca3af;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    /* Hizmetlerimiz Kısmı */
    #services {
      background: #0d1117;
      padding-top: 40px;
      padding-bottom: 40px;
    }
    #services h2 {
      text-align: center;
      font-weight: 900;
      font-size: 36px;
      color: #f39c12;
      margin-bottom: 40px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-shadow: 0 0 10px #f39c12;
    }
    .service-card {
      background: #161b22;
      border-radius: 15px;
      padding: 30px 20px;
      box-shadow: 0 0 20px rgba(243, 156, 18, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: default;
    }
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 0 30px #f39c12;
    }
    .service-icon {
      font-size: 50px;
      color: #f39c12;
      margin-bottom: 20px;
    }
    .service-title {
      font-weight: 700;
      font-size: 22px;
      margin-bottom: 10px;
      color: #fff;
      text-transform: uppercase;
    }
    .service-desc {
      color: #ccc;
      font-size: 16px;
      line-height: 1.5;
    }
    /* Sayaç animasyonu */
    .counter {
      font-size: 48px;
      font-weight: 900;
      color: #f39c12;
      margin-bottom: 10px;
      text-align: center;
      letter-spacing: 0.05em;
      user-select: none;
    }
    .counter-label {
      font-size: 16px;
      color: #9ca3af;
      text-transform: uppercase;
      text-align: center;
      letter-spacing: 0.1em;
      user-select: none;
    }

    /* Responsive adjustments */
    @media (max-width: 767px) {
      .stats {
        gap: 25px;
      }
      .stat-icon {
        font-size: 36px;
      }
      .stat-number {
        font-size: 28px;
      }
      .service-card {
        margin-bottom: 30px;
      }
      nav.navbar .navbar-nav {
        text-align: center;
      }
      .navbar-nav a {
        margin: 0 5px;
        font-size: 16px;
      }
    }
#loader {
  background: #0d1117;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bouncing-ball {
  font-size: 100px; /* Daha büyük top */
  color: #f39c12;
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-35px);
  }
}
.galeri-img {
    width: 128px;
    height: 128px;
    object-fit: cover;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
  }

  .galeri-img:hover {
    transform: scale(1.05);
  }