/* Custom Styles for Katkat Yazılım */

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

/* Services Section */
.services {
  padding: 80px 0;
}

.service-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card .card-body {
  text-align: center;
}

.service-card i {
  font-size: 3rem;
  color: #667eea;
  margin-bottom: 20px;
}

/* About Section */
.about {
  background-color: #f8f9fa;
  padding: 80px 0;
}

/* Contact Section */
.contact {
  padding: 80px 0;
}

.contact-form {
  background-color: #f8f9fa;
  padding: 40px;
  border-radius: 10px;
}

/* Footer */
footer {
  margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
