
.custom-swiper {
    width: 100%;
    height: 100%;
}

.custom-slide {
    height: 100vh;
    width: 100%;
    /*{#background: #385286;#}*/
    background: linear-gradient(135deg, #1e1e1e, #2e2e2e);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
}

.slide-video {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
}

.pricing__card-image img {
    transition: transform 0.3s ease;
}

.pricing__card-image img:hover {
    transform: scale(1.1);
}


.custom-slide-wrapper {
    display: flex;
    gap: 40px;
    max-width: 100%;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.slide-text-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 30px;
    width: 600px;
    max-width: 100%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.slide-image-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 1rem;
    width: 850px;
    height: 700px;
    max-width: 100%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 120px;
}

.slide-text-box:hover,
.slide-image-box:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 40px rgba(0, 0, 0, 0.4);
}

.slide-text-box h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
}

.slide-text-box p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 1.5rem;
    text-align: center;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 12px;
}


.custom-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    color: white;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.custom-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    z-index: 0;
}

.custom-btn:hover::before {
    left: 0;
}

.custom-btn:hover {
    background: #3C66FA;
    color: white;
    transform: scale(1.03);
}


.tick-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    padding: 0;
    margin: 0;
}

.custom-li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Arial, sans-serif;
}

.tick-circle {
    width: 30px;
    height: 30px;
    border: 2px solid #0a58ca;
    border-radius: 50%;
    color: #0a58ca;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
}

a:hover {
    color: #1e45b6 !important;
}

span:hover {
    color: #1e45b6 !important;
}

.request-a-quote__left-bg {
    opacity: 0.1; /* Arka plan resmi çok silik olur, mavi arka plan görünür */
}


.request-a-quote__left_custom {
    background: linear-gradient(#38c4f4, #38c4f4, #38c4f4); /* Gradyan mavi geçiş */
    color: #fff;
    padding: 60px 40px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 90%;
    height: auto;
    min-height: 530px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); /* Hafif gölge */
    transition: all 0.3s ease-in-out;
}

.request-a-quote__left_custom:hover {
    transform: translateY(-5px); /* Hover'da hafif yükselme */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.request-a-quote__left_custom h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.request-a-quote__left_custom p {
    font-size: 1.5rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: black;

}

.request-a-quote__left_custom .section__subtitle {
    display: inline-block;
    background-color: #1e45b6;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 16px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
}


@media (min-width: 1200px) {
    .request-a-quote__left_custom .section__title-wrapper {
        text-align: left;
        margin-left: 0;
    }
}


@media (max-width: 568px) {
    .custom-slide {
        padding: 20px;
    }

    .custom-slide-wrapper {
        flex-direction: column;
        gap: 20px;
        height: auto;

    }

    .slide-text-box {
        margin-top: 160px;
    }

    .slide-text-box,
    .slide-image-box {
        width: 100%;
        max-width: 100%;
    }

    .slide-image-box {
        margin-top: 0;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .slide-text-box h1 {
        font-size: 2rem;
    }

    .slide-text-box p {
        font-size: 1rem;
    }

    .slide-image {
        height: 300px;
        width: 100%;
        object-fit: contain;
    }


    #project_image {
        width: 100% !important;
        height: 430px !important;

    }

    #image_image {
        width: 100% !important;
        height: 430px !important;

    }

    #video_image {
        width: 100% !important;
        height: 430px !important;

    }

    #about {
        width: 100% !important;
        height: 430px !important;

    }


}


/* Fade + slide animasyonu */
@keyframes slideFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Arka plan renk geçişi */
@keyframes gradientMove {
    0% {
        background: linear-gradient(135deg, #1e1e1e, #2e2e2e);
    }
    100% {
        background: linear-gradient(135deg, #3e3e3e, #1e1e1e);
    }
}

/* Metin kutusu animasyonu */
.slide-text-box {
    animation: fadeInLeft 1s ease-in-out 0.5s forwards;
    opacity: 0;
    transform: translateX(-30px);
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Görsel kutusu animasyonu */
.slide-image-box {
    animation: fadeInRight 1s ease-in-out 0.5s forwards;
    opacity: 0;
    transform: translateX(30px);
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Görsel efekti */
.slide-image {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease;
}

.slide-image:hover {
    transform: scale(1.05);
}

/* Butonlara hover efekti */
.custom-btn {
    background-color: #1e45b6;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.custom-btn:hover {
    background-color: #1e45b6;
    transform: scale(1.05);
}


#slide-text-box {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: fadeInUpZoom 1s ease-out 0.5s forwards;
}

/* Başlıklar için özel animasyon */
#slide-text-box h1,
#slide-text-box p,
#slide-text-box a {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInStagger 0.6s ease-out forwards;
}

/* Başlık sıralı animasyon için gecikmeler */
#slide-text-box h1 {
    animation-delay: 0.7s;
}

#slide-text-box p {
    animation-delay: 0.9s;
}

#slide-text-box a:first-of-type {
    animation-delay: 1.1s;
}

#slide-text-box a:last-of-type {
    animation-delay: 1.3s;
}

/* Animasyon tanımları */
@keyframes fadeInUpZoom {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInStagger {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


