/* Genel Container */
.contact_area .container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Başlık ve Alt Başlık */
.title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #0056b3;
}

.subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 50px;
}

/* Hakkımızda Bölümü */
.about-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.about-text {
    flex: 1 1 500px;
    min-width: 300px;
}

    .about-text h3 {
        color: #007bff;
        margin-bottom: 20px;
        border-bottom: 3px solid #007bff;
        display: inline-block;
        padding-bottom: 5px;
    }

    .about-text p {
        line-height: 1.6;
        font-size: 1rem;
    }

.about-image {
    flex: 1 1 400px;
    min-width: 300px;
}

    .about-image img {
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    }

/* Vizyon ve Misyon Bölümü */
.vision-mission-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
    justify-content: center;
}

.vision-mission-box {
    flex: 1 1 400px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    min-width: 280px;
}

    .vision-mission-box h3 {
        color: #007bff;
        margin-bottom: 15px;
    }

.vision {
    background: #f0f8ff;
    box-shadow: 0 4px 12px rgba(0,123,255,0.15);
}

.mission {
    background: #f9f9f9;
}

.vision-mission-box p {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
}

/* Alt Görsel */
.bottom-image {
    margin-top: 60px;
    text-align: center;
}

    .bottom-image img {
        max-width: 100%;
        border-radius: 15px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

/* Responsive */
@media (max-width: 768px) {
    .about-wrapper,
    .vision-mission-wrapper {
        flex-direction: column;
    }
}

/* Başlangıçta sayfa görünmez */
body {
    opacity: 0;
    transition: opacity 1s ease;
}

    /* Sayfa yüklendiğinde görünür hale gelir */
    body.loaded {
        opacity: 1;
    }

#services-slider {
    justify-content:center!important;
    font-family: Arial, sans-serif;
    background-image: url("/img/hizmetler-ugay-logo.png"), linear-gradient(90deg, rgba(237, 232, 232, 0.79) 47%, rgba(0, 0, 0, 0.50) 100%);
    background-repeat: no-repeat, no-repeat;
    background-size: auto calc(100% - 20px), cover; /* Yükseklik %100'den 20px daha az */
    background-position: center 10px, center center;
    width: 100%;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -49.60vw;
    margin-right: -50vw;
    padding: 40px 0px;
}

.slider-container {
    position: relative;
    padding-bottom: 30px; /* Alt gölge için boşluk */
}

.slider-wrapper {
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

.slider-track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
    /* Sonsuz kaydırma için genişlik otomatik */
}

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    background: !important;
    /*box-shadow: 0 8px 20px rgba(0,0,0,0.15);*/
    border:2px solid #1a88d0;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    user-select: none;
}

    .service-card img {
        width: 120px;
        height: 120px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 15px;
        user-select: none;
    }

    .service-card h3 {
        margin: 10px 0 12px;
        font-size: 1.2rem;
        color: #333;
        user-select: none;
    }

    .service-card p {
        font-size: 0.95rem;
        color: #555;
        line-height: 1.4;
        flex-grow: 1;
        user-select: none;
    }

.more-button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    user-select: none;
}

    .more-button:hover {
        background-color: #0056b3;
    }

/* Mobilde 1 içerik göster */
@media (max-width: 768px) {
    .service-card {
        flex: 0 0 100%;
        margin: 0 5px;
    }
}


#neden-biz {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

    #neden-biz h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 20px;
        font-weight: 700;
    }

    #neden-biz p {
        max-width: 700px;
        margin: 0 auto 50px;
        font-size: 1.1rem;
        line-height: 1.7;
        color: #555;
        text-align: center;
    }

.neden-biz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.neden-biz-item {
    background: #fff;
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center; /* Metinleri ortala */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.neden-biz-logo {
    width: 60px; /* Logo genişliği */
    height: 60px; /* Logo yüksekliği */
    object-fit: contain;
    margin-bottom: 20px;
}

.neden-biz-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #007bff;
}

.neden-biz-item p {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
}

/* Hover efekti */
.neden-biz-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive: Ekran küçüldüğünde tek sütun */
@media (max-width: 768px) {
    .neden-biz-grid {
        grid-template-columns: 1fr;
    }
}

.containerr {
    position: relative;
    margin: 0px auto;
    width: 1250px;
    height: 600px;
    overflow: hidden;
}

.img-kutu {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
    user-select: none;
    pointer-events: none;
    border-radius: 20px;
}

.kutu {
    position: absolute;
    top: 50%;
    left: 400px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 30px 40px;
    max-width: 480px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    color: #222;
    box-sizing: border-box;
    transition: background 0.3s ease;
}

    .kutu:hover {
        background: rgba(255, 255, 255, 0.4);
    }

    .kutu h3 {
        margin: 0 0 20px 0;
        font-weight: 900;
        font-size: 2rem;
        line-height: 1.2;
        color: #f39c12; /* Turuncu ton, dikkat çekici */
        letter-spacing: 1.5px;
        text-transform: uppercase;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    }

    .kutu p {
        margin: 0 0 15px 0;
        font-weight: 600;
        font-size: 1.1rem;
        line-height: 1.6;
        color: #333;
        text-shadow: 0 0 2px rgba(255, 255, 255, 0.7);
    }

    .kutu strong {
        font-weight: 800;
        color: #222;
    }

/* Responsive */
@media (max-width: 768px) {
    .container {
        height: auto;
    }

    .kutu {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        max-width: 100%;
        margin: 20px;
        padding: 25px 30px;
        border-radius: 15px;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.35);
    }

        .kutu h3 {
            font-size: 1.5rem;
        }

        .kutu p {
            font-size: 1rem;
        }
}


.experience-section {
    background-color: #eaeaea;
    position: relative;
    overflow: hidden;
}

    .experience-section .container {
        position: relative;
        z-index: 2;
    }

    .experience-section::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 100px;
        transform: translateY(-50%);
        width: 800px; /* Eski 400px yerine 600px */
        height: 800px;
        background: url('/main/img/noktali-dunya.png') no-repeat center center;
        background-size: contain;
        opacity: 0.15;
        pointer-events: none;
        z-index: 1;
    }

/* Responsive */
@media (max-width: 767.98px) {
    .experience-section::after {
        display: none; /* Mobilde gizle */
    }

    .experience-section .col-md-6.text-start {
        left: 100px;
        text-align: center !important;
    }
}




.custom-section {
    background-color: #e2e2e28c; /* Açık ve hafif grimsi ton */
    padding: 60px 0;
}

.custom-card {
    background: #ffffff; /* Açık gri arka plan */
    border-radius: 12px;
    padding: 20px 20px 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #212529;
}

    .custom-card:hover {
        background: #f8f9fa; /* Arka plan değişmiyor */
        color: #212529; /* Yazı rengi sabit */
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0,123,255,0.6); /* Mavi gölge */
    }

.img-box {
    width: 100%;
    padding-top: 100%; /* Kare oranı için */
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

    .img-box img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }

.custom-card h2 {
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
}
