/*=====================================
  ANA SAYFA SLIDER STİLLERİ
=======================================*/

#hero {
    position: relative;
    overflow: hidden;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-in-out;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.slider-item.active {
    opacity: 1;
}

.slider-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Resim üzerine yarı saydam siyah katman */
}

.slider-content {
    position: relative;
    color: #fff;
    z-index: 10;
    max-width: 800px;
    padding: 2rem;
}

.slider-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    animation: slideInUp 1s ease-out;
}

.slider-content p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    animation: slideInUp 1.2s ease-out;
}

/* Slider Navigasyon Butonları */
.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    transform: translateY(-50%);
    z-index: 20;
}

.nav-btn {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.nav-btn:hover {
    background: #2B3A64;
}

/* Animasyonlar */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hizmetler Bölümü */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card i {
    font-size: 3.5rem;
    color: #2B3A64;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.card:hover i {
    color: #4A6FA5;
}

/* Neden Biz Bölümü */
#why-us {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.why-us-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.why-us-item i {
    font-size: 2.5rem;
    color: #4A6FA5;
    margin-bottom: 1rem;
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*=====================================
  MÜŞTERİ YORUMLARI - home.css
=======================================*/
.testimonials {
    background-color: #f0f0f0;
    padding: 6rem 1rem;
    text-align: center;
}

.testimonial-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap; /* Mobil görünümde alt alta sıralanmasını sağlar */
}

.testimonial-item {
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    text-align: left;
}

.testimonial-item p {
    font-style: italic;
    color: #495057;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.client-info {
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
}

.client-name {
    font-weight: 700;
    color: #2B3A64;
    display: block;
    margin-bottom: 0.2rem;
}

.client-title {
    font-size: 0.9rem;
    color: #6c757d;
}




