﻿
/* Mobile Optimization */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 30px;
        text-align: center;
        min-height: 60vh !important;
    }

    .about-hero-section {
        padding: 60px 30px;
        text-align: center;
        min-height: 30vh !important;
    }

    .about-mission-section {
        padding: 60px 30px;
        text-align: center;
        min-height: 30vh !important;
    }

    .about-journey {
        padding: 60px 30px;
        text-align: center;
        min-height: 30vh !important;
    }

    .process-flow {
        padding: 60px 30px;
        position: relative;
    }
}



.about-hero {
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

    .about-hero .breadcrumb a {
        color: #aaa;
        text-decoration: none;
        font-weight: 500;
    }

    .about-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);
    }
}



.about-hero-section {
    background-color: #0b0b0b;
    position: relative;
    z-index: 1;
}

/* Arka hareketli blob */
.about-abstract-blob {
    background: radial-gradient(circle at 30% 30%, rgba(255, 92, 51, 0.25), transparent 10%), radial-gradient(circle at 70% 70%, rgba(255, 128, 64, 0.2), transparent 60%);
    filter: blur(140px);
    animation: aboutBlobMove 25s infinite alternate ease-in-out;
    z-index: 0;
}

@keyframes aboutBlobMove {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-70px, 50px);
    }

    100% {
        transform: translate(30px, -40px);
    }
}

/* Futuristic img animasyonu */
.about-futuristic-img {
    animation: aboutFuturisticFloat 40s infinite alternate ease-in-out;
}

@keyframes aboutFuturisticFloat {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(15px, -10px);
    }

    100% {
        transform: translate(-10px, 15px);
    }
}

.about-hero-section .btn {
    border: 2px solid #FF5C33;
    background: transparent;
    color: #ffffff;
    transition: all 0.3s ease !important;
}

    .about-hero-section .btn:hover {
        background: linear-gradient(135deg, #FF5C33, #FF8040);
        color: #fff;
        box-shadow: 0 4px 15px rgba(255, 92, 51, 0.4);
    }


.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;
    }

/* 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);
}


.about-mission-section {
    background: #0B0B0B;
    position: relative;
    overflow: hidden;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease-in;
    height: 100%;
    cursor: pointer;
}

    .glass-card:hover {
        border: 1px solid #FF5C33;
    }

    .glass-card p {
        color: #ccc;
    }




.abstract-light-blob {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,92,51,0.35), transparent 60%);
    filter: blur(120px);
    animation: blobFloat 10s infinite ease-in-out alternate;
    z-index: 0;
    pointer-events: none; /* Bu satır en kritik satır */
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}


.highlight-animated {
    display: inline-block;
    position: relative;
    color: #FF5C33;
    animation: slideIn 1s ease-out;
}

@keyframes slideIn {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.underline-animation {
    width: 150px;
    top:0;
    height: 4px;
    background: linear-gradient(90deg, #FF5C33, #FFA726);
    border-radius: 20px;
    animation: underlineGlow 3s infinite alternate;
}

@keyframes underlineGlow {
    0% {
        box-shadow: 0 0 10px #FF5C33;
    }

    100% {
        box-shadow: 0 0 20px #FFA726;
    }
}


p.lead.text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1.15rem;
    line-height: 1.6;
}


.text-accent {
    color: #FF5C33;
}

.digital-service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 15px;
    transition: all 0.4s ease;
    margin-bottom: 20px; /* burada boşluk ekliyoruz */
    color: #bbb;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
    .digital-service-card {
        margin-bottom: 0;
    }
}

    .digital-service-card:hover {
        color: #fff;
        border-color: #FF5C33;
    }

    .digital-service-card i {
        font-size: 32px;
        color: #bbb;
        margin-bottom: 20px;
        transition: color 0.4s ease;
    }

    .digital-service-card:hover i {
        color: #fff;
    }
    .digital-service-card p {
        font-size: 0.9rem;
    }


.text-muted {
    color: #8f8f8f !important;
}




/* Process */

.process-flow {
    padding-left: 40px;
    position: relative;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    transition: all 0.3s ease;
}

    .process-step:hover {
        transform: translateX(10px);
    }

    .process-step .icon {
        flex: 0 0 60px;
        height: 60px;
        border-radius: 50%;
        background: rgba(255, 92, 51, 0.1);
        border: 1px solid rgba(255,255,255,0.1);
        display: flex;
        justify-content: center;
        align-items: center;
        color: #FF5C33;
        font-size: 22px;
        margin-right: 25px;
        transition: all 0.3s ease;
    }

    .process-step:hover .icon {
        background: rgba(255, 92, 51, 0.2);
    }

    .process-step h5 {
        font-weight: 600;
        margin-bottom: 10px;
        color: #fff;
    }

    .process-step p {
        color: #aaa;
        margin: 0;
    }

.process-flow .line {
    position: absolute;
    left: 28px;
    top: 10px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #FF5C33, rgba(255,255,255,0));
}


@media (max-width: 768px) {
    .process-step {
        flex-direction: column;
        align-items: flex-start;
        margin-left:15px;
    }

        .process-step .icon {
            margin-bottom: 15px;
            margin-right: 0;
            width:60px
        }

    .process-flow {
        padding-left: 20px;
    }

        .process-flow .line {
            left: 20px;
        }
}




/* 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: blobMove 22s infinite alternate ease-in-out;
    z-index: 0;
}

@keyframes blobMove {
    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;
    }
}
