/* Genel Ayarlar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

/* Navbar */
.navbar {
  background: #0a1a3f; /* Lacivert */
  padding: 0.5rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.navbar .container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 100px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #f9d342; /* Altın rengi */
  font-weight: bold;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #fff;
}

/* Hero */
.hero {
  background: linear-gradient(to right, #0a1a3f, #1f3d7a);
  color: #fff;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  background: #f9d342;
  color: #0a1a3f;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #fff3a3;
}

/* Genel Bölümler */
.section {
  padding: 80px 20px;
  text-align: center;
}

.section h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0a1a3f;
}

/* Hizmetler */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h4 {
  margin-bottom: 10px;
  color: #1f3d7a;
}

/* İletişim */
.contact p {
  font-size: 1.1rem;
  margin: 10px 0;
}

/* Footer */
.footer {
  background: #0a1a3f;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  margin-top: 50px;
}
