﻿
/* Mobile Optimization */
@media (max-width: 768px) {
    .services-hero {
        padding: 60px 30px;
        text-align: center;
        min-height: 60vh !important;
    }

    .services-section{
        padding: 60px 30px;
        text-align: center;
        min-height: 30vh !important;
    }


}





.services-hero {
    min-height: 90vh;
    position: relative;
    overflow: hidden;
}


.services-hero .breadcrumb a {
    color: #aaa;
    text-decoration: none;
    font-weight: 500;
}

    .services-hero .glow-text {
        color: #FF5C33;
        position: relative;
    }



.hero-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle at center, rgba(255,92,51,0.4), transparent 70%);
    filter: blur(120px);
    animation: blobMove 8s infinite alternate ease-in-out;
}


@keyframes blobMove {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-45%, -55%) scale(1.1);
    }
}



/* Mouse icon */
.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 4px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelMove 1.5s infinite;
}

@keyframes wheelMove {
    0% {
        top: 10px;
        opacity: 1;
    }

    50% {
        top: 20px;
        opacity: 0.5;
    }

    100% {
        top: 10px;
        opacity: 1;
    }
}

/* Arrow */
.arrow {
    margin-top: 10px;
    width: 16px;
    height: 16px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}


/* scroll-down */

.scroll-down {
    position: absolute;
    bottom: 30px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

    .scroll-down:hover {
        opacity: 1;
    }


/* Services section */

.services-section {
    background: #111;
    color: #ccc;
}

.section-title .highlight {
    color: #FF5C33;
}

.service-card-link {
    text-decoration: none;
    display: block;
    transition: transform 0.4s ease;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    height: 100%;
    transition: all 0.4s ease;
    color: #ccc;
}

    .service-card:hover {
        transform: translateY(-12px);
        border-color: #FF5C33;
        box-shadow: 0 0 30px rgba(255, 92, 51, 0.2);
    }

    .service-card .read-more {
        margin-top: 15px;
        font-weight: 500;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .service-card:hover .read-more {
        opacity: 1;
    }

    .service-card .read-more a {
        color: #FF5C33;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .service-card .read-more a:hover {
            color: #fff;
        }


.icon-wrapper {
    font-size: 3.2rem;
    color: #FF5C33;
    transition: all 0.4s ease;
}

.service-card:hover .icon-wrapper {
    color: #fff;
}

.service-card h5 {
    color: #fff;
}

.service-card p {
    color: #aaa;
}

.service-card .read-more {
    margin-top: 15px;
    color: #FF5C33;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .read-more {
    opacity: 1;
}











/* cta alanı */

.cta-final-section {
    background-color: #0b0b0b;
    position: relative;
    z-index: 1;
}

/* Arka hareketli blob */
.abstract-blob {
    background: radial-gradient(circle at 30% 30%, rgba(255, 92, 51, 0.3), transparent 60%), radial-gradient(circle at 70% 70%, rgba(255, 128, 64, 0.2), transparent 60%);
    filter: blur(120px);
    animation: blobMove2 22s infinite alternate ease-in-out;
    z-index: 0;
}

@keyframes blobMove2 {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-80px, 60px);
    }

    100% {
        transform: translate(40px, -50px);
    }
}

/* Futuristic görsel hareketi */
.abstract-futuristic {
    animation: futuristicMove 30s infinite alternate ease-in-out;
    position: absolute;
    left: 50px; /* zaten solda tutuyorduk */
    top: -100px; /* burada oynarsın */
    width: 500px;
}

@keyframes futuristicMove {
    0% {
        transform: translate(0px, 0px);
    }

    50% {
        transform: translate(20px, -15px);
    }

    100% {
        transform: translate(-15px, 10px);
    }
}

.futuristic-img {
    max-width: 400px;
    filter: drop-shadow(0 0 80px rgba(255, 92, 51, 0.5));
}

.cta-final-link h2 {
    color: white;
    transition: transform 0.3s ease, color 0.3s ease;
}

.cta-final-link:hover h2 {
    transform: scale(1.07);
    color: #FF5C33;
}


@media (max-width: 768px) {

    .cta-final-section {
        min-height: 20vh !important;
    }

    .abstract-futuristic {
        top: -10px; /* burada oynarsın */
        z-index: -1;
    }
}




/* service - detail */


.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #bbb;
    transition: all 0.3s ease;
}

    .benefit-card:hover {
        transform: translateY(-10px);
        border-color: #FF5C33;
        color: #fff;
    }
