* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  background: #fff;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #0066cc;
  color: #fff;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: 600;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.navbar ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.cta {
  background: #fff;
  color: #0066cc;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* Hero */
.hero {
  height: 80vh;
  background: url("Ekran\ görüntüsü\ 2025-08-23\ 183949.png") no-repeat center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-buttons .btn {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  background: #0066cc;
  color: #fff;
  font-weight: 600;
}

.btn-whatsapp {
  background: #25D366;
}

/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  padding: 2rem;
}

.card {
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.card h3 {
  margin-bottom: 0.5rem;
}

/* About */
.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.about-img img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #0066cc;
  color: #fff;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar ul {
    display: none;
  }
  .hero h1 {
    font-size: 2rem;
  }
}
/* Responsive for services 
@media (max-width: 600px) {
  .services {
    grid-template-columns: 1fr;
  }
  .about {
    flex-direction: column;
    text-align: center;
  }
  .about-img img {
    max-width: 100%;
  }
}*/