/* DEĞİŞKENLER VE TEMEL AYARLAR */

@import url('https://fonts.googleapis.com/css2?family=Anta:wght@200..800&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: 'Poppins', sans-serif; -> ESKİSİ */
  font-family: "Anta", sans-serif;
  font-optical-sizing: auto;
    font-style: normal;

    background-color: #756d6d;
    color: #fff;
    overflow-x: hidden;
}

/* Geri kalan kodlar aynı... */

a {
    color: #fff;
    text-decoration: none;
}

/* HEADER (Logo ve Menü Butonu) */
.site-header {
    position: fixed; /* Sayfa kaysa bile sabit kalsın */
    background-color: #8d847888;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100; /* Diğer her şeyin üstünde olsun */
}

.logo a {
    font-weight: 500;
    font-size: 1.2rem;
}


/* ANA GİRİŞ BÖLÜMÜ (HERO) */
.hero {
    height: 100vh; /* Ekran yüksekliği kadar olsun */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url('images/i1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Bu basit bir paralaks efekti yaratır */
}

.hero h1 {
    font-size: 4rem;
    font-weight: 400;
    max-width: 800px;
}

/* EKRANI KAPLAYAN MENÜ (OVERLAY MENU) */
/* Ana Overlay Konteyneri */
.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.95);
    z-index: 99;
    
    display: flex;
    padding: 120px 80px 50px 80px;

    /* BAŞLANGIÇ POZİSYONU: Görünmez ve ekranın solunda */
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    
    /* ANİMASYON: transform ve opacity özelliklerindeki değişimleri izle */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
                opacity 0.6s ease, 
                visibility 0s 0.6s;
}

/* MENÜ AÇILDIĞINDAKİ DURUMU */
.overlay-menu.active {
    /* HEDEF POZİSYON: Görünür ve orijinal yerinde */
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    
    /* Geri giderkenki animasyon için */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
                opacity 0.6s ease;
}

/* Menü açıldığında içindeki linklere animasyon verelim */
.overlay-menu.active .overlay-main-nav ul li a,
.overlay-menu.active .overlay-footer {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

/* Gecikmeli animasyon için her bir linke farklı bir delay verelim */
.overlay-menu.active .overlay-main-nav ul li:nth-child(1) a { animation-delay: 0.3s; }
.overlay-menu.active .overlay-main-nav ul li:nth-child(2) a { animation-delay: 0.4s; }
.overlay-menu.active .overlay-main-nav ul li:nth-child(3) a { animation-delay: 0.5s; }
.overlay-menu.active .overlay-main-nav ul li:nth-child(4) a { animation-delay: 0.6s; }
.overlay-menu.active .overlay-footer { animation-delay: 0.7s; }

/* Animasyonun kendisi */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MENÜ BUTONUNUN STİLİ */

/* MENÜ AÇIKKEN KAYDIRMAYI ENGELLEME */
body.noscroll {
    overflow: hidden; /* Dikey scroll bar'ı gizle */
}

/* PROJELER BÖLÜMÜ */
.projects {
    padding: 100px 50px;
    display: grid;
    /* İki sütunlu bir grid yapısı oluşturuyoruz */
    grid-template-columns: repeat(2, 1fr);
    gap: 100px 50px; /* Satırlar arası 100px, sütunlar arası 50px boşluk */
    max-width: 1600px;
    margin: 0 auto; /* Bölümü yatayda ortala */
}

.project-item {
    text-align: left;
}

.project-image {
    overflow: hidden; /* Resimlerin taşmasını engelle */
    margin-bottom: 20px;
}

.project-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.2, 1); /* Yumuşak zoom efekti için geçiş */
}

.project-item:hover .project-image img {
    transform: scale(1.05); /* Üzerine gelince resim hafifçe büyüsün */
}

.project-info h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.project-info p {
    font-size: 1rem;
    color: #d5ffa0;
    font-weight: 300;
}

/* Mobil Cihazlar İçin Ayarlama (Responsive) */
@media (max-width: 768px) {
    .projects {
        /* Küçük ekranlarda grid'i tek sütuna düşür */
        grid-template-columns: 1fr;
        padding: 50px 25px;
        gap: 80px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .site-header {
        padding: 20px 25px;
        background-color: #33333344;// burlywood;
    }
}

/* FOOTER (ALT BİLGİ) */
.site-footer-bottom {
    padding: 100px 50px 50px 50px;
    background-color: #111; /* Ana arka plandan hafif farklı bir ton */
    color: #888;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 eşit sütun */
    gap: 30px;
    margin-bottom: 80px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-column h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column p, .footer-column a {
    color: #888;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #fff;
}

.social-links a {
    display: block; /* Linkleri alt alta getir */
    margin-bottom: 10px;
}

.footer-copyright {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 40px;
    max-width: 1600px;
    margin: 0 auto;
}

/* Mobil için Footer Ayarlaması */
@media (max-width: 768px) {
    .site-footer-bottom {
        padding: 80px 25px 40px 25px;
    }
    .footer-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
        gap: 50px;
    }
}

/* İÇ SAYFA STİLLERİ (Hakkımızda vb.) */
.page-header {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative; /* Overlay için gerekli */
    color: #fff; /* Yazı renginin beyaz olduğundan emin olalım */

    /* Arkaplan resmi için temel ayarlar */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Resmin üzerine siyah bir katman ekleyerek yazının okunurluğunu artırır */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5); /* Siyah, %50 şeffaf */
    z-index: 1;
}

/* Başlığın (h1) overlay katmanının üzerinde kalmasını sağlar */
.page-header h1 {
    font-size: 4rem;
    font-weight: 400;
    color: #fff;
    /* Artık pozisyonlama veya z-index'e ihtiyacı yok, bunu kapsayıcısı yapacak */
}

/* YENİ - Başlığı saran yarı saydam kutu */
.page-header-title-box {
    position: relative; /* z-index'in çalışması için */
    z-index: 2;         /* Arkaplan overlay'inin üzerinde kalsın */
    padding: 20px 40px; /* İçeriden boşluk vererek kutuyu büyütelim */
    
    /* Yarı saydam arka plan */
    background-color: rgba(0, 0, 0, 0.5); /* Siyah, %50 şeffaf */

    /* Modern bir görünüm için cam efekti (backdrop-filter) */
    -webkit-backdrop-filter: blur(5px); /* Safari için */
    backdrop-filter: blur(5px);         /* Arkasındaki resmi 5px bulanıklaştırır */
    
    --border-radius: 5px; /* Kenarları hafifçe yuvarlayalım */
}

/* Mobil için başlık font boyutunu ayarlayalım */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    .page-header-title-box {
        padding: 15px 25px;
    }
}

.page-content {
    padding: 50px 50px;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-text h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.4;
}

.content-text p {
    color: #ccc;
    line-height: 1.9;
    margin-bottom: 20px;
}

.content-image img {
    width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr; /* Orta boy ekranlarda tek sütun */
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    .page-content {
        padding: 80px 25px;
    }
}

/* PROJE DETAY SAYFASI */
.project-detail-header {
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Paralaks efekti */
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Başlığı alta yasla */
    padding-bottom: 80px;
}

.project-title-box {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 30px 50px;
    text-align: center;
    backdrop-filter: blur(10px); /* Arka planı bulanıklaştır (modern etki) */
    -webkit-backdrop-filter: blur(10px);
}

.project-title-box h1 {
    font-size: 3rem;
    font-weight: 500;
    color: #fff;
}

.project-title-box p {
    font-size: 1.2rem;
    color: #ccc;
    margin-top: 10px;
}

.project-detail-content {
    padding: 100px 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.project-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(17, 17, 17, 0.95);
    margin-bottom: 80px;
    text-align: center;
}

.project-gallery .gallery-item {
    margin-bottom: 50px;
}

.project-gallery .gallery-item img {
    width: 100%;
    height: auto;
}

/* Ana sayfadaki proje linkleri için küçük bir stil */
a.project-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* LIGHTBOX GALERİ İÇİN İMLEÇ AYARI */
.project-gallery .gallery-item {
    display: block; /* a etiketinin tam blok olarak yer kaplaması için */
    cursor: zoom-in; /* Üzerine gelince büyütme imleci çıksın */
}

/* İLETİŞİM SAYFASI STİLLERİ */
.contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* İki eşit sütun */
    gap: 60px;
}

.contact-info-block {
    margin-bottom: 50px;
}

.contact-info-block h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #fff;
}

.contact-info-block p {
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 30px;
}

.contact-info-block ul {
    list-style: none;
    padding: 0;
}

.contact-info-block ul li {
    margin-bottom: 15px;
    color: #ccc;
}

.contact-info-block ul li strong {
    color: #fff;
    margin-right: 10px;
}

.contact-info-block a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-info-block a:hover {
    color: #aaa;
}


/* İLETİŞİM FORMU */
.contact-form-block h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: #fff;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: #222;
    border: 1px solid #444;
    color: #fff;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fff;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #fff;
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
    background-color: #888;
    color: #fff;
}

/* HARİTA */
.contact-map {
    min-height: 600px;
}

/* Mobil için İletişim Sayfası Ayarı */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
    }
    .contact-map {
        /* Formun altında daha az yer kaplasın */
        height: 400px;
    }
}
/* FORM DURUM MESAJLARI */
.form-status-message {
    max-width: 1400px;
    margin: 0 auto 40px auto;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}
.form-status-message p.success {
    background-color: #28a74520; /* Yeşil arka plan */
    border: 1px solid #28a745;
    color: #d4edda;
    padding: 15px;
}
.form-status-message p.error {
    background-color: #dc354520; /* Kırmızı arka plan */
    border: 1px solid #dc3545;
    color: #f8d7da;
    padding: 15px;
}

/* BARBA.JS GEÇİŞ ANİMASYONLARI */
.fade-out {
    animation: fadeOut 0.5s ease-out forwards;
}

.fade-in {
    animation: fadeIn 0.5s 0.3s ease-in forwards; /* 0.3s gecikmeli başla */
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(20px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 404 HATA SAYFASI */
.error-page-section {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 50px;
}

.error-content h1 {
    font-size: 10rem;
    font-weight: 500;
    color: #fff;
    line-height: 1;
}

.error-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin: 20px 0;
}

.error-content p {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* --- YENİ MENÜ STİLLERİ --- */

/* Ana Overlay Konteyneri */
.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Orijinaldeki gibi tam siyah değil, hafif şeffaf */
    background-color: rgba(17, 17, 17, 0.95);
    z-index: 99;
    
    /* Başlangıçta gizli */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0s 0.5s;
    
    /* İçeriği (nav ve footer) dikeyde yaymak için */
    display: flex;
    padding: 120px 80px 50px 80px;
}

.overlay-menu.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease;
}

.overlay-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Ana Navigasyon Linkleri */
.overlay-main-nav ul {
    list-style: none;
}

.overlay-main-nav ul li {
    margin-bottom: 15px;
    /* Animasyon için */
    overflow: hidden; 
}

.overlay-main-nav ul li a {
    font-size: 2.5rem; /* Büyük font boyutu */
    font-weight: 300;  /* İnce font */
    color: #fff;
    text-decoration: none;
    text-transform: uppercase; /* BÜYÜK HARF */
    letter-spacing: 2px; /* Harf aralığı */
    display: inline-block; /* Hover efekti için önemli */
    position: relative;
    padding-bottom: 10px;
    transition: color 0.4s ease;
}

/* Hover Çizgi Efekti */
.overlay-main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0; /* Başlangıçta genişliği 0 */
    height: 1px;
    background-color: #fff;
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* Yumuşak bir animasyon */
}

.overlay-main-nav ul li a:hover::after {
    width: 100%; /* Hover olunca genişliği %100 yap */
}

/* Sağ Alt Bilgi Bölümü */
.overlay-footer {
    align-self: flex-end; /* Kendini flex container'ın sonuna (sağa) yasla */
    text-align: right;
    color: #888;
}

.overlay-footer p {
    margin-bottom: 10px;
}

.overlay-footer .socials a {
    color: #888;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.overlay-footer .socials a:hover {
    color: #fff;
}

/* Mobil Görünüm için Ayarlamalar */
@media (max-width: 768px) {
    .overlay-menu {
        padding: 100px 40px 40px 40px;
    }
    .overlay-main-nav ul li a {
        font-size: 2.5rem;
    }
}

/* --- YENİ HERO SLIDER STİLLERİ --- */
.hero-slider {
    width: 100%;
    height: 85vh; /* Tam ekran yüksekliği */
    position: relative;
    overflow: hidden;
}

.hero-slider .swiper {
    width: 100%;
    height: 100%;
}

.hero-slider .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* Resimlerin üzerine hafif koyu bir katman ekleyerek yazının okunurluğunu artırır */
    filter: brightness(0.7);
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.slide-content h1 {
    font-size: 4rem;
    font-weight: 400;
    color: #fff;
    max-width: 900px;
    line-height: 1.2;
}

/* Swiper Navigasyon Okları ve Noktalarını Özelleştirme */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: #fff; /* Okların rengi */
    transition: opacity 0.3s ease;
}

.hero-slider:hover .swiper-button-next,
.hero-slider:hover .swiper-button-prev {
    opacity: 1; /* Sadece slider üzerine gelince okları tam görünür yap */
}

.hero-slider .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5); /* Pasif noktaların rengi */
    width: 10px;
    height: 10px;
    opacity: 1;
}

.hero-slider .swiper-pagination-bullet-active {
    background: #fff; /* Aktif noktanın rengi */
}

/* Mobil için font boyutu ayarı */
@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }
}   

/* PROJELER LİSTELEME SAYFASI GRID'İ */
.projects-page-grid {
    padding: 100px 50px;
    display: grid;
    /* Geniş ekranlarda 3 sütunlu bir yapı */
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 50px; /* Satırlar ve sütunlar arası boşluk */
    max-width: 1800px;
    margin: 0 auto; /* Bölümü yatayda ortala */
}

/* Orta boy ekranlarda (tabletler) 2 sütuna düşür */
@media (max-width: 1200px) {
    .projects-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Küçük ekranlarda (mobilde) tek sütuna düşür */
@media (max-width: 768px) {
    .projects-page-grid {
        grid-template-columns: 1fr;
        padding: 50px 25px;
    }
}

/* HEADER LOGO STİLİ */
.logo img {
    /* Logonun yüksekliğini ayarlayalım, genişlik otomatik olarak orantılanacaktır */
    height: 50px; /* Bu değeri logonuzun en iyi göründüğü yüksekliğe göre ayarlayın */
    width: auto;  /* Genişliğin orantılı kalmasını sağlar */
    display: block; /* Resimlerin altındaki istenmeyen boşlukları engeller */
}

/* ==========================================================================
   MENU TETİKLEYİCİ (HAMBURGER / YAZI) - (Final Versiyon)
   ========================================================================== */

/* 1. Ortak Taşıyıcı Kutu */
.menu-toggle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center; /* İçeriği her zaman ortala */
    width: 60px;   /* Sabit bir genişlik verelim */
    height: 40px;  /* Sabit bir yükseklik verelim */
    cursor: pointer;
    transition: all 0.3s ease; /* Genel yumuşak geçiş */
}


/* 2. MASAÜSTÜ stilleri (Varsayılan olarak çalışacak) */
.menu-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    transition: opacity 0.2s ease;
}

/* Masaüstünde menü açıkken "Menu" yazısını GİZLE */
.menu-toggle.active .menu-text {
    opacity: 0;
}

/* Masaüstünde menü açıkken "Kapat" yazısını OLUŞTUR */
.menu-toggle.active::after {
    content: 'Kapat';
    position: absolute;
    /* Konumu tam ortalamak için */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Diğer stiller */
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
}


/* 3. MOBİL stilleri (Sadece 992px altında devreye girecek) */
@media (max-width: 992px) {

    /* Masaüstü yazısını gizle */
    .menu-text {
        display: none;
    }
    
    /* Masaüstü için olan 'Kapat' yazısını da mobilde engelle */
    .menu-toggle.active::after {
        content: ''; /* İçeriği boşaltarak yok et */
    }

    /* Hamburger ikonunu oluştur ve göster */
    .hamburger-icon {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
    }

    .hamburger-icon span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: #fff;
        border-radius: 9px;
        left: 0;
        transition: all 0.25s ease-in-out;
    }

    .hamburger-icon span:nth-child(1) { top: 0; }
    .hamburger-icon span:nth-child(2) { top: 50%; transform: translateY(-50%); }
    .hamburger-icon span:nth-child(3) { bottom: 0; }

    /* Mobilde menü açıkken 'X' animasyonu */
    .menu-toggle.active .hamburger-icon span:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .menu-toggle.active .hamburger-icon span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .hamburger-icon span:nth-child(3) {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }
}

/* =================================== */
/* Müşteri Yorumları Bölümü Stilleri
/* =================================== */
.testimonial-section {
    background-color: #f8f9fa; /* Neden Biz bölümü ile aynı veya farklı bir renk */
}

.testimonial-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    text-align: center;
    margin-bottom: 40px; /* Pagination ile arasında boşluk bırakır */
    height: 90%; /* Eşit yükseklik için */
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #0d6efd; /* Sitenizin ana rengi */
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto; /* Ortalamak için */
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-text::before {
    content: '“';
    font-size: 2.5rem;
    font-family: Georgia, serif;
    color: #e0e0e0;
    position: relative;
    top: 15px;
    left: -5px;
}

.testimonial-author {
    font-weight: 600;
    margin-bottom: 0;
}

/* Swiper pagination noktalarını özelleştirme */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #deb887; /* Aktif noktanın rengi */
}

.testimonial-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    height: 100%;
}
.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: #deb887;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
}
.testimonial-author {
    font-size: 1.2rem;
    font-weight: bold;
}
.testimonial-title {
    font-size: 0.9rem;
}