* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #fff;
  color: #111;
}

/* Navbar */
.navbar {
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10%;
  position: sticky;
  top: 0;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar .logo img {
  width: 40px;
  height: 40px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: #00bfff;
}

/* Hero */
.hero {
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(to bottom, #000, #222);
  color: #fff;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #ccc;
}

.btn {
  background: #fff;
  color: #000;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #00bfff;
  color: #fff;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #000;
  color: #888;
  font-size: 0.9rem;
}
/* Genel container */
.container {
  width: 85%;
  margin: 80px auto;
  max-width: 1000px;
 
}
/* Genel ortalama */
.about,
.services {
  text-align: center;
}

.about p,
.services p {
  text-align: center;
}

/* Hakkımızda */
.about h1,
.services h1 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #000;
  text-align: center;
}

.about p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #333;
  font-size: 1.1rem;
  text-align: justify;
}

/* Hizmetler */
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.service-card {
  background-color: #f5f5f5;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-card h2 {
  margin-bottom: 10px;
  color: #000;
}

.service-card p {
  color: #555;
  line-height: 1.5;
}

/* Uygulamalar Bölümü */
.apps {
  text-align: center;
  padding: 80px 20px;
  background-color: #0f0f0f;
  color: #fff;
}

.apps h1 {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.apps p {
  font-size: 1.1em;
  color: #ccc;
  margin-bottom: 30px;
}

.app-button {
  display: inline-block;
  padding: 18px 45px;
  background-color: #fff;
  color: #000;
  border-radius: 8px;
  font-size: 1.3em;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.app-button:hover {
  background-color: #e4e4e4;
  transform: scale(1.05);
}
