:root {
    --primary-color: #d96324;
    --secondary-color: #6c757d;
    --background-color: #f8f9fa;
    --accent-color: #ff5733;
    --text-color: #343a40;
    --font-family: 'poppin', serif;
    --base-font-size: 18px;
    --heading-font-size: 2.5em;
    --navbar-bg-color: rgba(0, 0, 0, 0.4); /* Navbar arka plan rengi */
    --navbar-hover-color: #ff5733; /* Navbar link hover rengi */
}

body {
    font-family: var(--font-family);
    font-size: var(--base-font-size);
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

a {
    color: var(--primary-color);
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: var(--accent-color);
}

/* Genel Paragraf Stil Güncellemesi */
p {
    line-height: 1.7; /* Satır yüksekliğini artırarak aralığı artırıyoruz */
}

.navbar {
    background-color: var(--navbar-bg-color) !important; /* Şeffaf arka plan rengi */
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    z-index: 1000;
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.navbar-light .navbar-nav .nav-link {
    color: white !important;
    transition: color 0.3s ease-in-out;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--navbar-hover-color) !important; /* Hover rengi */
}

.navbar-light .navbar-brand {
    color: white !important;
    font-weight: bold;
    font-size: 1.5em;
    transition: color 0.3s ease-in-out;
}

.navbar-light .navbar-brand:hover {
    color: var(--navbar-hover-color) !important;
}

.hero-section {
    height: 100vh;
    background: url('images/hero-image.jpg') center center / cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    font-family: var(--font-family);
    transition: background 0.3s ease-in-out;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    transition: background 0.3s ease-in-out;
}

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

.hero-section h1 {
    font-size: var(--heading-font-size);
    animation: fadeIn 1s ease-in-out;
}

.hero-section p {
    font-size: 1.2em;
    animation: fadeIn 1.5s ease-in-out;
}

.hero-section .btn {
    animation: bounceIn 2s ease-in-out;
}

.about-section {
    padding: 60px 0;
    background-color: #ffffff;
    transition: background-color 0.3s ease-in-out;
}

.about-section h2 {
    font-size: var(--heading-font-size); /* Başlık yazı boyutu */
    margin-bottom: 20px;
    color: var(--primary-color);
    animation: fadeIn 1s ease-in-out;
}

.about-section p {
    font-size: 1.2em; /* Paragraf yazı boyutu */
    line-height: 1.6;
    animation: fadeIn 1.5s ease-in-out;
    color: var(--secondary-color);
}

.about-section img {
    width: 70%;
    height: auto;
    border-radius: 8px;
    animation: fadeIn 2s ease-in-out;
}

.services-section {
    height: 100vh;
    background: url('images/hero-image.jpg') center center / cover no-repeat fixed;
    color: white;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0; /* Bölüm aralarına boşluk ekleme */
    transition: background 0.3s ease-in-out;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    transition: background 0.3s ease-in-out;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

.services-section h2 {
    font-size: var(--heading-font-size); /* Başlık yazı boyutu */
    margin-bottom: 20px;
    color: var(--primary-color);
    animation: fadeIn 1s ease-in-out;
}

.services-section .card {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease-in-out;
}

.services-section .card:hover {
    transform: translateY(-10px);
}

.services-section .card-body {
    padding: 20px;
    font-size: 1.1em; /* Kart yazı boyutu */
    color: #000; /* Kart yazı rengi */
}

.team-section, .blog-section, .contact-section {
    padding: 60px 0; /* Bölüm aralarına boşluk ekleme */
    transition: background-color 0.3s ease-in-out;
}

.blog-section {
    background-color: var(--background-color);
}

.blog-post {
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

.blog-post:hover {
    transform: translateY(-10px);
}

.blog-post img {
    width: 100%;
    margin-bottom: 15px;
}

.blog-post h3, .blog-post p, .blog-post a {
    margin-bottom: 10px;
    font-size: 1.1em; /* Blog yazı boyutu */
}

.contact-section {
    height: 100vh;
    background: url('images/hero-image.jpg') center center / cover no-repeat fixed;
    color: white;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0; /* Bölüm aralarına boşluk ekleme */
    transition: background 0.3s ease-in-out;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    transition: background 0.3s ease-in-out;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    color: #333;
    position: relative;
    z-index: 1;
    transition: background-color 0.3s ease-in-out;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 20px 0;
    color: #333;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    transition: background-color 0.3s ease-in-out;
}

.contact-info .info-box {
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
    flex: 1 1 200px;
    transition: transform 0.3s ease-in-out;
}

.contact-info .info-box:hover {
    transform: translateY(-10px);
}

.contact-info .info-item {
    border-top: 1px solid #ddd;
    padding: 10px 0;
}

.contact-info .info-item:first-child {
    border-top: none;
}

.contact-info .info-box h4 {
    margin-bottom: 10px;
    font-size: 1.3em; /* İletişim bilgisi başlık yazı boyutu */
    color: var (--text-color);
}

.contact-info .info-box p {
    margin-bottom: 5px;
    font-size: 1.1em; /* İletişim bilgisi paragraf yazı boyutu */
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Genel Mobil Uyumluluk */
@media (max-width: 767px) {
  body {
    font-size: 16px; /* Temel yazı boyutunu küçült */
  }

  .navbar {
    background-color: var(--navbar-bg-color) !important; /* Navbar arka plan rengi */
    width: 100%; /* Navbar genişliği */
    position: fixed; /* Navbar sabitle */
    z-index: 9999;
  }
  
  .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--primary-color); /* Toggler icon rengi */
  }

  .navbar-toggler-icon {
    background-image: none;
    color: var(--primary-color);
  }

  .navbar-collapse {
    background-color: var(--navbar-bg-color); /* Navbar arka plan rengi */
  }

  .navbar-nav .nav-link {
    font-size: 0.9em; /* Menü öğelerinin yazı boyutu */
    color: white !important;
  }

  .navbar-brand {
    font-size: 1em; /* Daha küçük marka yazı boyutu */
    color: white !important;
  }

  .hero-section h1 {
    font-size: 2em; /* Başlık yazı boyutu */
  }

  .hero-section p {
    font-size: 1em; /* Paragraf yazı boyutu */
  }

  .hero-section .btn {
    font-size: 0.9em; /* Buton yazı boyutu */
    padding: 10px 20px;
  }

  .about-section, .services-section, .team-section, .testimonial-section, .blog-section, .contact-section {
    padding: 20px 10px;
  }

  .about-section h2, .services-section h2, .team-section h2, .testimonial-section h2, .blog-section h2, .contact-section h2 {
    font-size: 1.5em;
  }

  .about-section p, .services-section p, .team-section p, .testimonial-section p, .blog-section p, .contact-section p {
    font-size: 1em;
  }

  .services-section {
    height: auto; /* Yüksekliği otomatik yap */
  }

  .services-section .card {
    margin-bottom: 20px; /* Kartlar arası boşluk */
  }

  .services-section .btn {
    display: block; /* Butonu blok yap */
    margin: 20px auto; /* Butonu ortala ve üst-alt boşluk ekle */
  }

  .testimonial {
    width: 100%; /* Testimonial genişliği */
    margin-bottom: 20px; /* Testimonial arası boşluk */
  }

  .testimonial img {
    width: 60px;
    height: 60px;
  }

  .testimonial h3 {
    font-size: 1em;
  }

  .testimonial p {
    font-size: 0.9em;
  }

  .blog-post {
    margin-bottom: 20px; /* Blog post arası boşluk */
  }

  .blog-post img {
    width: 100%; /* Resim genişliği */
  }

  .blog-post h3, .blog-post p, .blog-post a {
    font-size: 1em; /* Yazı boyutu */
  }

  .contact-info .info-box {
    padding: 10px; /* Bilgi kutusu padding */
  }

  .contact-info .info-box h4 {
    font-size: 1.2em; /* Başlık yazı boyutu */
  }

  .contact-info .info-box p {
    font-size: 1em; /* Paragraf yazı boyutu */
  }

  .footer {
    text-align: center;
    padding: 20px;
  }

  .calisma-alanlarimiz-section {
    padding: 60px 0 20px 0; /* Üst ve alt boşlukları azalt */
  }

  .calisma-alanlarimiz-section .row {
    flex-direction: column; /* Kolonları dikey hizala */
    gap: 20px; /* Kartlar arasına boşluk ekle */
  }

  .calisma-alanlarimiz-section .col-md-4 {
    max-width: 100%; /* Kart genişliğini %100 yap */
  }
}

/* Yeni sınıfı ekleyin */
.calisma-alanlarimiz-section {
    height: auto; /* Yüksekliği otomatik yapalım */
    background: url('images/hero-image.jpg') center center / cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    font-family: var(--font-family);
    transition: background 0.3s ease-in-out;
    padding: 120px 0 60px 0; /* Üst boşluk ekleyelim */
}

.calisma-alanlarimiz-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    transition: background 0.3s ease-in-out;
}

.calisma-alanlarimiz-section .container {
    position: relative;
    z-index: 2;
}

.calisma-alanlarimiz-section .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Ortadan hizalamak için space-between kullanalım */
    gap: 20px;
}

.calisma-alanlarimiz-section .col-md-4 {
    display: flex;
    align-items: stretch;
    max-width: 31%; /* Kartlar arasında eşit boşluk bırakmak için genişliği %31 yapalım */
    margin-bottom: 20px; /* Kartlar arasında dikey boşluk ekleyelim */
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    overflow: hidden;
}

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

.card .card-body {
    padding: 20px;
    text-align: center;
}

.card .card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--primary-color);
    transition: color 0.3s ease-in-out;
}

.card:hover .card-title {
    color: var(--accent-color);
}

.card .card-text {
    font-size: 1.1em;
    color: var(--secondary-color);
}

.calisma-alanlarimiz-section h2 {
    font-size: var(--heading-font-size);
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

.calisma-alanlarimiz-section p {
    font-size: 1.2em;
    color: var(--text-color);
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
}

.calisma-alanlarimiz-section .container {
    position: relative;
    z-index: 2;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease-in-out;
}

.whatsapp-button img:hover {
    transform: scale(1.1);
}

/* Hero Section İçin Eklenen Yeni Stil */
.hero-section .container {
    position: relative;
    z-index: 2;
    background: rgba(0, 0,
 0, 0.4); /* Yarı saydam siyah arka plan */
    padding: 20px;
    border-radius: 10px; /* Kenarları yuvarlatma */
}

.hero-section h1,
.hero-section p {
    color: #fff; /* Yazı rengi beyaz */
}
/* Yeni Mobil Uyumluluk Düzenlemeleri */
@media (max-width: 767px) {
    .calisma-alanlarimiz-section {
      padding: 60px 0 20px 0; /* Üst ve alt boşlukları azalt */
    }
  
    .calisma-alanlarimiz-section .row {
      flex-direction: column; /* Kolonları dikey hizala */
      gap: 20px; /* Kartlar arasına boşluk ekle */
    }
  
    .calisma-alanlarimiz-section .col-md-4 {
      max-width: 100%; /* Kart genişliğini %100 yap */
    }
  
    .card {
      margin-bottom: 20px; /* Kartlar arasında dikey boşluk ekle */
    }
  
    .card .card-body {
      padding: 15px; /* Kart içi boşluğunu azalt */
    }
  }
  /* styles.css içeriği */

/* Daha önce tanımlanmış CSS kurallarınız */

/* styles.css içeriği */

/* Daha önce tanımlanmış CSS kurallarınız */

/* Navbar mobil uyumluluk ve buton stili düzenlemeleri */
@media (max-width: 767px) {
    .navbar {
      background-color: var(--navbar-bg-color) !important; /* Navbar arka plan rengi */
      width: 100%; /* Navbar genişliği */
      position: fixed; /* Navbar sabitle */
      z-index: 9999;
      padding: 10px;
    }
    
    .navbar-toggler {
      border-color: rgba(0, 0, 0, 0.1);
      color: var(--primary-color); /* Toggler icon rengi */
    }
  
    .navbar-toggler-icon {
      background-image: none;
      color: var(--primary-color);
    }
  
    .navbar-collapse {
      background-color: var(--navbar-bg-color); /* Navbar arka plan rengi */
      padding: 10px; /* Menü açıldığında padding ekleyelim */
    }
  
    .navbar-nav .nav-link {
      font-size: 1em; /* Menü öğelerinin yazı boyutu */
      color: white !important;
      padding: 10px 15px; /* Menü öğeleri arasına boşluk ekleyelim */
      display: block;
      background-color: var(--text-color);
      margin: 5px 0; /* Butonlar arasında dikey boşluk ekleyelim */
      border-radius: 5px; /* Butonları yuvarlak yapalım */
      text-align: center;
    }
  
    .navbar-nav .nav-link:hover {
      background-color: var(--secondary-color); /* Buton hover rengi */
      color: white !important;
    }
  
    .navbar-nav {
      text-align: center; /* Menü öğelerini ortala */
    }
  
    .navbar-brand {
      font-size: 1.2em; /* Daha küçük marka yazı boyutu */
      color: white !important;
    }
  }
  .makaleler-section .card {
  background: #fff;
  border: 1px solid #ddd;
  border-left: 5px solid var(--primary-color);
  margin-bottom: 20px;
  transition: box-shadow 0.3s ease;
}

.makaleler-section .card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.makaleler-section .card-title {
  font-family: 'Georgia', serif;
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.makaleler-section .card-text {
  font-style: italic;
  color: #555;
}

.makaleler-section .btn {
  margin-top: 10px;
}
