/* Genel Ayarlar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Navbar */
.navbar {
  background-color: #2c3e50;
  padding: 10px 20px;
}

.navbar .navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
}

.navbar .nav-link {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover {
  color: #f39c12;
}

.navbar .nav-link.active {
  color: #f39c12;
  font-weight: bold;
}

/* Hero Section */
.hero {
  background: url('../images/hero.jpg') no-repeat center center/cover;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  z-index: 2;
  position: relative;
}

.hero h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.2rem;
  margin: 20px 0;
}


/* About Us ve Contact Us */
#about, #contact {
  padding: 50px 20px;
  display: flex;
  gap: 20px;
  align-items: center;
}

#about:nth-child(even),
#contact:nth-child(odd) {
  background-color: #f9f9f9;
}

#about .about-content,
#contact .contact-content {
  flex: 1;
}

#about .about-image img,
#contact .contact-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}


#about {
  background: linear-gradient(135deg, #f9f9f9, #eaeaea);
  padding: 50px 20px;
}

#contact {
  background: linear-gradient(135deg, #2c3e50, #1a252f);
  color: #fff;
  padding: 50px 20px;
}

#contact a.btn-custom {
  background-color: #f39c12;
}

#contact a.btn-custom:hover {
  background-color: #d35400;
}


/* Services Bölümü */
.service-box {
  background-color: #fff;
  text-align: center;
  padding: 20px;
  margin: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-box:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.service-box i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #f39c12;
}

.service-box h5 {
  font-size: 1.2rem;
  margin: 10px 0;
}

.service-box p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}


/* Footer */
footer {
  background-color: #2c3e50;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

footer a {
  color: #f39c12;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Genel Buton Tasarımı */
.btn-custom {
  background-color: #4A4A4A; /* Koyu gri ton */
  color: #fff; /* Beyaz yazı */
  border: none;
  padding: 12px 24px; /* Buton boyutları */
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-custom:hover {
  background-color: #2F2F2F; /* Daha koyu bir gri hover efekti */
  transform: scale(1.05); /* Hafif büyüme efekti */
  cursor: pointer;
}

/* Hizalama için About Us, Contact Us ve Our Services */
#about a.btn-custom, #contact a.btn-custom, .service-box .btn-custom {
  margin-top: 15px;
  display: inline-block;
}

/* About Us Section */
#about-us {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

#about-us .container {
  max-width: 1200px;
  margin: 0 auto;
}

#about-us .section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  color: #2c3e50;
}

#about-us .section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

#about-us .row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

#about-us .col-md-6 {
  flex: 1;
  margin: 10px;
}

#about-us h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

#about-us p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

#about-us .about-image {
  margin-top: 40px;
  text-align: center;
}

#about-us .about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#about-us .row div {
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  #about-us .row {
    flex-direction: column;
  }

  #about-us .col-md-6 {
    margin: 20px 0;
  }

  #about-us .section-title {
    font-size: 2rem;
  }

  #about-us .section-subtitle {
    font-size: 1rem;
  }
}

/* #services Genel Stil */
#services .card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#services .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

#services .card-title {
  font-size: 1.5rem;
  color: #0056b3;
  margin-bottom: 10px;
}

#services .card-text {
  font-size: 1rem;
  color: #666;
}

#services img {
  height: 200px;
  object-fit: cover;
}

#services .card:nth-child(odd) {
  background: linear-gradient(135deg, #f9f9f9, #eaeaea);
}

#services .card:nth-child(even) {
  background: linear-gradient(135deg, #2c3e50, #1a252f);
}

.page-header {
  background: linear-gradient(to right, #2c3e50, #4e5d6c);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.page-header p {
  font-size: 1.2rem;
}

/* Üst Form Bölümü */
.contact-container {
  background: linear-gradient(135deg, #2c3e50, #1a252f);
  color: #fff;
  padding: 60px 20px;
  border-radius: 10px;
}

.contact-container h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-container p {
  font-size: 1rem;
  margin-bottom: 30px;
}

.contact-container .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #ccc;
  color: #fff;
  border-radius: 5px;
  padding: 10px;
}

.contact-container .form-control:focus {
  border-color: #f39c12;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.contact-container .btn-custom {
  background-color: #f39c12;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border-radius: 5px;
}

.contact-container .btn-custom:hover {
  background-color: #d35400;
  transform: scale(1.05);
}

/* Görsel Stili */
.contact-container img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Harita Bölümü */
.map-container {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  border: none;
  width: 100%;
  height: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Contact Info Bölümü */
.contact-info {
  background-color: #f9f9f9;
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.contact-info .info-box {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info .info-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.contact-info .info-box i {
  font-size: 3rem;
  color: #f39c12;
  margin-bottom: 10px;
}

.contact-info .info-box h4 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.contact-info .info-box p {
  font-size: 1rem;
  color: #666;
}







