@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
}

.container {
  background-image: url("images/yazilim.jpg");
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.navbar {
  width: 100%;
  height: 80px;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
}

.logo img {
  height: 50px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  padding: 8px 15px;
  border-radius: 4px;
  transition: 0.3s;
}

.navbar ul li a.active,
.navbar ul li a:hover {
  background-color: #ff6e00;
  color: #fff;
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 1px 1px 5px #000;
}

.center h1 {
  font-size: 60px;
  margin-bottom: 20px;
}

.center h2 {
  font-size: 40px;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.buttons button {
  padding: 15px 30px;
  font-size: 18px;
  border: none;
  border-radius: 30px;
  background: #ff6e00;
  color: white;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s;
}

.buttons button:hover {
  background: white;
  color: #ff6e00;
  transform: scale(1.1);
}

/* About Section */
.about-section {
  max-width: 1000px;
  margin: 100px auto;
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #333;
  font-family: 'Orbitron', sans-serif;
}

.about-section h1 {
  text-align: center;
  color: #ff6e00;
  font-size: 40px;
  margin-bottom: 20px;
}

.about-section h2 {
  margin-top: 30px;
  color: #444;
  font-size: 28px;
}

.about-section p {
  font-size: 18px;
  line-height: 1.6;
  margin-top: 10px;
}

/* Ürünler Section */
.products-section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 20px;
  text-align: center;
}

.products-section h1 {
  color: #ff6e00;
  margin-bottom: 30px;
  font-size: 36px;
}

.product-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.product-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 300px;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: scale(1.05);
}

.product-card img {
  width: 100%;
  border-radius: 10px;
}

.product-card h3 {
  margin: 15px 0 10px;
  color: #333;
}

.product-card p {
  color: #666;
  font-size: 15px;
  margin-bottom: 15px;
}

.product-card button {
  padding: 10px 20px;
  border: none;
  background-color: #ff6e00;
  color: white;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.product-card button:hover {
  background-color: #ff4500;
}

/* Hizmetler Bölümü */
.services-section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 20px;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

.services-section h1 {
  color: #ff6e00;
  margin-bottom: 40px;
  font-size: 36px;
}

.service-box {
  display: flex;
  align-items: center;
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  border-radius: 10px;
  overflow: hidden;
}

.service-box img {
  width: 300px;
  height: auto;
  object-fit: cover;
}

.service-text {
  padding: 30px;
  text-align: left;
}

.service-text h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.service-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* İletişim Bölümü */
.contact-section {
  max-width: 600px;
  margin: 80px auto;
  padding: 20px;
  font-family: 'Roboto', sans-serif;
  text-align: center;
}

.contact-section h1 {
  color: #ff6e00;
  font-size: 36px;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap:




