/* WhatsApp ikonunu sağ altta sabitle */
.fixed-whatsapp-icon {
  position: fixed;
  bottom: 60px;
  right: 10px;
  z-index: 9999;
  font-size: 30px;
}

/* Çağrı ikonunu WhatsApp ikonunun üstünde sabitle */
.fixed-call-icon {
  position: fixed;
  bottom: 120px; /* WhatsApp ikonunun 60px yukarısında durması için ayar */
  right: 10px;
  z-index: 9999;
  font-size: 24px;
}

/* Ortak ikon stili */
.whatsapp-icon, .call-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;

  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

/* İkonların üzerine gelindiğinde büyüme efekti */
.whatsapp-icon:hover, .call-icon:hover {
    transform: scale(1.1);
}

/* WhatsApp ikonu rengi */
.whatsapp-icon {
  background-color: #25d366;
}

/* Çağrı ikonu rengi */
.call-icon {
  background-color: #dc3545;
}

.faqs {
  padding: 60px 0;
  background-color: #fff; /* Açık mavi-gri tonu */
}

.faqs .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.faqs .accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faqs .accordion-item {
  border: none;
  border-radius: 10px;
  margin-bottom: 15px;
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Hafif gölge */
  transition: all 0.3s ease;
}

.faqs .accordion-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); /* Daha belirgin gölge */
}

.faqs .accordion-header {
  border-bottom: none;
}
/* Çerez Bildirimi Konteyneri */
.cookie-notice-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    font-family: Arial, sans-serif;
    font-size: 14px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s ease-in-out;
}

/* Çerez bildirimi göründüğünde */
.cookie-notice-container.show {
    opacity: 1;
    transform: translateY(0);
}

/* Metin alanı */
.cookie-notice-text {
    flex-grow: 1;
    margin-right: 20px;
}

/* Gizlilik politikası linki */
.cookie-notice-text a {
    color: #f9a01b;
    text-decoration: underline;
}

/* Butonlar */
.cookie-notice-actions .btn {
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

.cookie-notice-actions .btn-primary {
    background-color: #f9a01b;
    color: #fff;
}

/* YouTube ve Instagram için temiz CSS */
.youtube-videos .swiper-slide,
.instagram-posts .swiper-slide {
    padding: 10px;
}

.youtube-videos .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.youtube-videos .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.youtube-videos iframe {
    border-radius: 15px;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    display: block;
}

.youtube-videos .card-body {
    padding: 20px;
}

.youtube-videos .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.youtube-videos .card-text {
    font-size: 0.9rem;
    color: #666;
}

  /* Hero Section butonu için yeni stil */
    .hero .btn-get-started {
        color: #ffffff; /* Beyaz metin rengi */
        background: #01073a; /* İstediğiniz buton rengi */
        font-family: var(--heading-font);
        font-weight: 500;
        font-size: 15px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 12px 36px;
        border-radius: 5px; /* Daha modern bir köşe */
        transition: 0.5s;
        margin: 10px;
        animation: fadeInUp 1s both 0.4s;
        border: 2px solid #01073a; /* Kenarlık ekleyerek hover efekti için zemin hazırlar */
    }

    .hero .btn-get-started:hover {
        background: transparent; /* Hover'da arka planı şeffaf yapar */
        color: #01073a; /* Hover'da metin rengini buton rengi yapar */
        border-color: #01073a; /* Hover'da kenarlık rengini buton rengi yapar */
    }

    
.portfolio .portfolio-content {
  height: 100%; /* İçerik kutusunun, kapsayıcı sütunu doldurmasını sağlar. */
  display: flex;
  flex-direction: column;
}

.portfolio .portfolio-content img {
  width: 100%;
  height: 250px; /* Görseli sabitleyin */
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.portfolio .portfolio-info {
  flex-grow: 1; /* Başlık ve açıklama kısmının kalan alanı doldurmasını sağlar */
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


