/* Genel Stiller */
:root {
    --primary-color: #e74c3c;
    --primary-color-rgb: 231, 76, 60;
    --secondary-color: #34495e;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --danger-color: #e74c3c;
    --success-color: #2ecc71;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-color);
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo p {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 8px 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Mobil menü butonu */
.mobile-menu-btn {
    background: transparent; /* Arka planı şeffaf yap */
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 8px;
    display: none;
    z-index: 1001;
}

/* Hover durumunda arka planı kaldır */
.mobile-menu-btn:hover, 
.mobile-menu-btn:focus {
    background: transparent;
    outline: none;
}

/* Hero Section - Slider */
.hero {
    position: relative;
    height: calc(100vh - 80px);
    min-height: 450px;
    margin-top: 0;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.slide-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Slider Kontrolleri */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(231, 76, 60, 0.8);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Slider Noktaları */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
}

/* Mobil Responsive */
@media (max-width: 768px) {
    header {
        position: relative;
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 1001;
    }

    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: white;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        z-index: 1000;
    }

    .logo {
        margin-bottom: 10px;
    }

    .hero {
        height: calc(100vh - 60px);
        min-height: 400px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: white;
}

.service-container {
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.service-scroll {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0 30px;
    -webkit-overflow-scrolling: touch;
    gap: 30px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f1f1f1;
    padding-left: 50px;
    padding-right: 50px;
}

.service-scroll::-webkit-scrollbar {
    height: 8px;
}

.service-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.service-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.service-scroll .service-card {
    min-width: 250px;
    flex: 0 0 calc(25% - 30px);
    box-sizing: border-box;
}

.service-grid {
    display: none;
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid #e02c2d;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card .category-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #e02c2d;
    transition: transform 0.3s ease;
    text-align: right !important;
}

.service-card:hover .category-icon {
    transform: scale(1.2);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

/* Masaüstünde bannerlar alt alta */
.about-banners {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.banner-container {
    display: block; /* Masaüstünde alt alta gösterim */
    width: 100%;
}

.banner {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.banner:last-child {
    margin-bottom: 0;
}

.banner img {
    display: block;
    width: 100%;
    height: auto;
}

.banner-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 15px;
    z-index: 2;
}

.banner-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.banner-text p {
    font-size: 0.9rem;
}

/* Kaydırma butonlarını tamamen kaldır */
.banner-scroll-btn {
    display: none !important;
}

/* Scrollbar özelliklerini kaldır */
.banner-container::-webkit-scrollbar {
    display: none;
}

/* Mobil görünüm düzenlemeleri */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-banners {
        order: -1;
        margin-bottom: 30px;
        overflow: hidden;
    }
    
    .banner-container {
        flex-direction: column;
        overflow-x: hidden;
        overflow-y: visible;
    }
    
    .banner {
        min-width: 100%;
        width: 100%;
        margin-bottom: 40px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        border-radius: 10px;
    }
    
    .banner:last-child {
        margin-bottom: 0;
    }
    
    .banner img {
        height: 220px;
        object-fit: cover;
    }
    
    /* Kaydırma için görsel gösterge */
    .banner-container::-webkit-scrollbar {
        height: 6px;
    }
    
    .banner-container::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .banner-container::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 10px;
    }
    
    /* Kaydırma butonlarını gizle - artık gerek yok */
    .banner-scroll-btn {
        display: none;
    }
}

/* Banner'lar arasında daha fazla boşluk - mobil ekranlar için */
@media (max-width: 768px) {
    /* Banner container alt alta gösterim */
    .about-banners .banner-container {
        display: block !important; /* Flexbox iptal edildi */
        overflow-x: visible !important;
    }
    
    /* Her banner arasında geniş boşluk */
    .about-banners .banner {
        min-width: 100%;
        width: 100%;
        margin-bottom: 60px !important; /* Çok daha fazla boşluk */
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        border-radius: 10px;
        overflow: hidden;
        display: block;
    }
    
    /* Son banner'ın altında boşluk olmaması için */
    .about-banners .banner:last-child {
        margin-bottom: 20px !important; /* Son banner'ın altında da biraz boşluk */
    }
    
    /* Scroll butonları gizli */
    .about-banners .banner-scroll-btn {
        display: none !important;
    }
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.about-text p {
    margin-bottom: 20px;
}

.about-features {
    list-style: none;
    margin-top: 20px;
}

.about-features li {
    margin-bottom: 12px;
    font-weight: 500;
}

.about-features li i {
    color: var(--success-color);
    margin-right: 10px;
}

/* Projects Section */
.projects {
    padding: 80px 0;
    background-color: white;
}

.project-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.project-gallery {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 10px 0 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f1f1f1;
}

/* Projeler scrollbar tasarımı */
.project-gallery::-webkit-scrollbar {
    height: 8px;
}

.project-gallery::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.project-gallery::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.project-item {
    flex: 0 0 300px;
    min-width: 300px;
    margin-right: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.project-item:last-child {
    margin-right: 0;
}

.project-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-item:hover img {
    transform: scale(1.1);
}

/* Sadece proje bilgilerini gizle, banner yazılarını değil */
.project-info {
    display: none; /* Sadece projeler bölümündeki yazıları gizle */
}

/* İsterseniz sadece başlığı gizlemek için: */
.project-info h4 {
    display: none; /* Sadece başlıkları gizle */
}

.project-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
    display: none; /* Gereksiz açıklamaları gizle */
}

.project-item:hover .project-info {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.contact-card {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-banners {
        order: -1;
        margin-bottom: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        position: relative;
    }

    .logo {
        text-align: center;
        margin-bottom: 15px;
        width: 100%;
        padding-top: 0;
    }

    .logo h1 {
        text-align: center;
        margin-top: 0;
    }

    .logo p {
        text-align: center;
        margin-top: 5px;
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 1001;
    }

    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: white;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        z-index: 1000;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
    }

    nav ul li {
        margin: 15px 0;
    }

    .hero h2 {
        font-size: 2.2rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .scroll-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .banner img {
        height: 220px;
        object-fit: cover;
    }
    
    .banner-scroll-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        color: white;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 5;
        background-color: rgba(243, 156, 18, 0.7);
    }
    
    .banner-scroll-left {
        left: 10px;
    }
    
    .banner-scroll-right {
        right: 10px;
    }
    
    .about-banners {
        position: relative;
        width: 100%;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 25px;
    }
    
    .project-gallery {
        padding: 10px 5px 20px;
    }
    
    .project-item {
        flex: 0 0 85%;
        min-width: 85%;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .project-gallery {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h4::after,
    .footer-social h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Services Section - Kaydırma Butonları */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 5;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.scroll-btn:hover {
    background-color: #c0392b;
    transform: translateY(-50%) scale(1.1);
}

.scroll-left {
    left: 0;
}

.scroll-right {
    right: 0;
}

/* Mobil Uyum İyileştirmeleri */

/* Genel Mobil Düzenlemeler */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
}

/* Mobil Menü İyileştirmeleri */
@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo p {
        font-size: 0.9rem;
    }
    
    nav ul li a {
        font-size: 1.1rem;
        padding: 10px 0;
        display: block;
        border-bottom: 1px solid #f1f1f1;
    }
    
    /* Hizmetler Bölümü Mobil */
    .service-scroll {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    /* İletişim Formu Mobil */
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .banner-dot {
        width: 10px;
        height: 10px;
    }
}

/* Daha Küçük Mobil Cihazlar */
@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.8rem;
        padding: 0 10px;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .service-scroll {
        padding-left: 35px;
        padding-right: 35px;
    }
    
    .scroll-btn {
        width: 30px;
        height: 30px;
    }
    
    .banner-text {
        padding: 10px;
    }
    
    .banner img {
        height: 180px;
    }
    
    .banner-scroll-btn, .project-scroll-btn {
        top: calc(90px - 16px);
        width: 32px;
        height: 32px;
    }
}

/* Tüm banner bölümleri için kaydırma butonları */
.banner-scroll-btn, .project-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    display: none; /* Masaüstünde gizli */
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 5;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.banner-scroll-left, .project-scroll-left {
    left: 5px;
}

.banner-scroll-right, .project-scroll-right {
    right: 5px;
}

/* Mobil için banner container düzenlemesi */
@media (max-width: 768px) {
    .banner-container, .project-gallery {
        display: flex;
        flex-wrap: nowrap;
        transition: transform 0.3s ease;
    }
    
    .banner {
        min-width: 100%;
        flex: 0 0 100%;
        margin-bottom: 0;
    }
    
    .project-item {
        min-width: 85%;
        margin: 0 10px;
    }
    
    .banner-scroll-btn, .project-scroll-btn {
        display: flex; /* Mobilde görünür */
    }
    
    .about-banners, .project-container {
        position: relative;
    }
}

/* Mobil için görsel boyutları */
@media (max-width: 768px) {
    .banner img {
        height: 220px; /* Mobilde sabit yükseklik */
        object-fit: cover;
    }
    
    .project-item img {
        height: 180px;
        object-fit: cover;
    }
}

/* Daha küçük mobil cihazlar */
@media (max-width: 480px) {
    .banner img {
        height: 180px;
    }
    
    .project-item img {
        height: 160px;
    }
    
    .banner-scroll-btn, .project-scroll-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

/* Banner ve Proje Container Düzenlemeleri */
.about-banners, .project-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

/* Kaydırma Butonları Pozisyon Düzeltmesi */
.banner-scroll-btn, .project-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
}

.banner-scroll-left, .project-scroll-left {
    left: 10px;
}

.banner-scroll-right, .project-scroll-right {
    right: 10px;
}

/* Mobil Görünüm İyileştirmeleri */
@media (max-width: 768px) {
    /* Hakkımızda bölümünde içerik tek sütun */
    .about-content {
        grid-template-columns: 1fr;
    }
    
    /* Bannerlar üstte */
    .about-banners {
        order: -1;
        margin-bottom: 30px;
    }
    
    /* Banner container mobil görünümü */
    .banner-container {
        display: flex; /* Mobilde yan yana kaydırma */
        transition: transform 0.3s ease;
        overflow-x: hidden;
    }
    
    /* Her banner tam genişlikte, margin yok */
    .banner {
        min-width: 100%;
        width: 100%;
        flex: 0 0 100%;
        margin-bottom: 0; /* Mobilde alt margin yok */
    }
    
    /* Banner görseli sabit yükseklikte */
    .banner img {
        height: 220px;
        object-fit: cover;
    }
    
    /* Kaydırma butonları görünür */
    .banner-scroll-btn {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
        z-index: 10;
        background-color: rgba(243, 156, 18, 0.7);
        border: none;
        color: white;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
    }
    
    .banner-scroll-left {
        left: 10px;
    }
    
    .banner-scroll-right {
        right: 10px;
    }
}

/* Daha küçük mobil cihazlarda ayarlamalar */
@media (max-width: 480px) {
    .banner img {
        height: 180px;
    }
    
    .banner-scroll-btn {
        width: 30px;
        height: 30px;
    }
}

/* Proje kaydırma butonlarını kaldırma */
.project-scroll-btn {
    display: none !important;
}

/* Mobil görünümde proje düzenlemeleri */
@media (max-width: 768px) {
    .project-item {
        flex: 0 0 85%;
        min-width: 85%;
    }
}

/* Referanslarımız - Metin Formatında */
.references {
    padding: 80px 0;
    background-color: white;
}

.reference-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

/* Yazı formatında referans düzeni */
.reference-text-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f1f1f1;
    align-items: center;
}

/* Scrollbar tasarımı */
.reference-text-grid::-webkit-scrollbar {
    height: 8px;
}

.reference-text-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.reference-text-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

/* Referans metni */
.reference-text-item {
    flex: 0 0 auto;
    padding: 0 25px;
    text-align: center;
    white-space: nowrap;
}

.reference-text-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.reference-text-item:hover h3 {
    color: var(--primary-color);
}

/* Ayraç çizgisi */
.divider {
    height: 30px;
    width: 2px;
    background-color: #ddd;
    margin: 0 5px;
    flex-shrink: 0;
}

/* Mobil görünüm */
@media (max-width: 768px) {
    .reference-text-item {
        padding: 0 15px;
    }
    
    .reference-text-item h3 {
        font-size: 1.2rem;
    }
    
    .divider {
        height: 25px;
    }
}

/* Proje altındaki başlık metni için stil */
.project-caption {
    padding: 10px;
    text-align: center;
    font-weight: bold;
    background-color: var(--secondary-color);
    color: white;
    display: none; /* Varsayılan olarak gizli */
}

/* Mobil ekranlarda görünür yapma */
@media (max-width: 768px) {
    .project-caption {
        display: block; /* Mobilde görünür */
    }
    
    /* Mobilde info kısmını gizle - zaten caption gösteriyoruz */
    .project-info {
        display: none;
    }
}

/* Footer SEO metni için stil - yazı rengi beyaz yapıldı */
.footer-seo-text {
    margin: 30px 0;
    padding: 20px;
    /* background-color: #f8f9fa; - kaldırıldı */
    border-radius: 5px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ffffff; /* Yazı rengi beyaz yapıldı */
}

.footer-seo-text p {
    margin-bottom: 15px;
}

.footer-seo-text p:last-child {
    margin-bottom: 0;
}

.footer-seo-text strong {
    color: #ffffff; /* Vurgulanan metin de beyaz olacak */
    font-weight: 700; /* Kalınlık ile ayırt edilecek */
}

/* Mobil görünüm düzenlemesi */
@media (max-width: 768px) {
    .footer-seo-text {
        padding: 15px;
        font-size: 0.85rem;
    }
}

/* Blog Bölümü Stilleri - Yatay Kaydırmalı Versiyon */
.blog {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.blog-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.blog-scroll {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f1f1f1;
    gap: 25px;
}

/* Scrollbar tasarımı */
.blog-scroll::-webkit-scrollbar {
    height: 8px;
}

.blog-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.blog-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.blog-card {
    flex: 0 0 350px;
    min-width: 350px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-content {
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    line-height: 1.4;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.date {
    color: #888;
    font-size: 0.9rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: var(--secondary-color);
}

.blog-footer {
    text-align: center;
    margin-top: 30px;
}

/* Kaydırma butonları */
.blog-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.blog-scroll-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.blog-scroll-left {
    left: 10px;
}

.blog-scroll-right {
    right: 10px;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .blog-card {
        flex: 0 0 85%;
        min-width: 85%;
    }

    .blog-scroll-btn {
        width: 35px;
        height: 35px;
    }
}

/* Sayılarla Hakkarot Bölümü */
.stats-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/background/stats-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    margin: 15px;
    flex: 1 1 200px;
    max-width: 250px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.stat-title {
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobil görünüm için uyarlamalar */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        margin: 10px 0;
        width: 80%;
        max-width: none;
    }
}

/* Sayılarla Hakkarot başlığı için beyaz renk */
.stats-section .section-title {
    color: white;
}

/* Referanslar Bölümü için Stil Güncellemesi */
.references-list {
    display: none; /* Bu şekilde eski stiller etkin olacak */
}

.reference-item {
    display: none; /* Bu şekilde eski stiller etkin olacak */
}

/* Galeri Sayfası Stilleri */
.gallery-page {
    padding: 120px 0 80px;
    background-color: #f9f9f9;
}

.gallery-page .section-title {
    margin-bottom: 10px;
}

.gallery-page .section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #666;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 250px;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-info h3 {
    margin: 0 0 5px;
    font-size: 1.2rem;
}

.gallery-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Mobil responsive ayarları */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 220px;
    }
}

/* Mobil cihazlar için galeri padding ayarı */
@media (max-width: 768px) {
    .gallery-page {
        padding: 40px 0;
    }
}

/* Mobil Responsive İyileştirmeleri */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text, .about-image {
        width: 100%;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-text {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-form, .contact-info {
        width: 100%;
    }
    
    .contact-info {
        margin-top: 40px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-info, .footer-contact {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    /* Navigation bar için mobil düzenlemeler */
    header {
        padding: 15px 0;
    }
    
    .logo {
        display: flex;
        align-items: center;
    }
    
    .logo img {
        height: 35px;
    }
    
    .logo p {
        font-size: 0.9rem;
        margin-left: 10px;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    nav ul li {
        margin: 0;
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #f1f1f1;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* Hero section mobil düzenlemeler */
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    /* Grid yapılar için mobil düzenlemeler */
    .service-grid, 
    .project-grid, 
    .stats-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Diğer elementlerin mobil düzenlemeleri */
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card {
        height: auto;
        padding: 20px;
    }
    
    .project-card {
        height: 250px;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .stats-card {
        padding: 20px;
    }
    
    .counter {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-text h2 {
        font-size: 1.6rem;
    }
    
    .contact-form form {
        padding: 20px;
    }
    
    .blog-card {
        height: auto;
    }
    
    .blog-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 30px 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 180px;
    }
    
    .footer-bottom {
        padding: 15px 0;
        font-size: 0.8rem;
    }
    
    /* Form elementleri için mobil düzenlemeler */
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        margin-bottom: 5px;
    }
    
    input, textarea, select {
        padding: 10px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Blog detay sayfası mobil düzenlemeleri */
    .blog-detail {
        padding: 30px 0;
    }
    
    .blog-header h1 {
        font-size: 1.5rem;
    }
    
    .blog-content {
        padding: 15px;
    }
    
    .blog-content h2 {
        font-size: 1.3rem;
    }
    
    .blog-content h3 {
        font-size: 1.1rem;
    }
    
    /* Galeri sayfası mobil düzenlemeleri */
    .gallery-page {
        padding: 30px 0;
    }
    
    .gallery-page .section-title {
        margin-bottom: 20px;
    }
}

/* Dokunmatik cihazlar için iyileştirmeler */
@media (hover: none) {
    .service-card,
    .project-card,
    .gallery-item,
    .blog-card,
    .testimonial-card,
    .btn {
        -webkit-tap-highlight-color: transparent;
    }
    
    .btn:active {
        transform: translateY(3px);
    }
    
    .service-card:active,
    .project-card:active,
    .gallery-item:active,
    .blog-card:active {
        transform: translateY(-5px);
    }
}

/* Yüksek çözünürlüklü mobil cihazlar için iyileştirmeler */
@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min--moz-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 2/1),
only screen and (min-device-pixel-ratio: 2),
only screen and (min-resolution: 192dpi),
only screen and (min-resolution: 2dppx) {
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Sayılarla Hakkarot mobil düzenlemesi */
@media (max-width: 992px) {
    .counter {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .counter-container .plus-sign {
        font-size: 2.5rem;
        line-height: 1;
        vertical-align: baseline;
    }
}

@media (max-width: 768px) {
    .counter {
        font-size: 2.2rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .counter-container .plus-sign {
        font-size: 2.2rem;
        line-height: 1;
        vertical-align: baseline;
    }
}

@media (max-width: 576px) {
    .counter, .stat-number, .counter-container .plus-sign {
        font-size: 2rem;
    }
}

/* Logo ve slogan ortalama düzenlemesi - Boyut düzeltmesi */
.logo-centered img {
    height: 45px; /* 60px'den 45px'e değiştirildi */
    width: auto;
    margin-bottom: 8px;
}

.logo-centered p {
    font-size: 1rem; /* 1.2rem'den 1rem'e değiştirildi */
    color: #333;
    margin-top: 3px;
}

/* Header düzenlemesi - padding değişikliği */
.header-centered {
    text-align: center;
    padding: 15px 0; /* 20px'den 15px'e değiştirildi */
}

.header-centered .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-centered nav {
    margin-top: 15px; /* 20px'den 15px'e değiştirildi */
}

.header-centered nav ul {
    justify-content: center;
}

/* Mobil düzenleme */
@media (max-width: 768px) {
    .header-centered nav {
        position: fixed;
        top: 120px; /* Logo için daha fazla alan */
    }
}