:root {
    --navy: #060649;
    --orange: #ed890e;
    --light-gray: #f8f9fa;
}

.border-orange {
    border-color: var(--orange) !important;
}

.text-orange {
    color: var(--orange) !important;
}

.bg-orange {
    background-color: var(--orange) !important;
}




.tech-card {
    background: #fff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tech-card:hover {
    transform: scale(1.1) rotate(3deg);
    border-color: var(--orange) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

/* React Atom Animasyonu */
.react-animate {
    animation: rotateReact 15s linear infinite;
}

@keyframes rotateReact {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Kartların Hover Etkisi */
.tech-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tech-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange) !important;
    box-shadow: 0 15px 30px rgba(6, 6, 73, 0.1) !important;
    /* Navy rengiyle yumuşak gölge */
}

/* Progress Bar Yumuşaklığı */
.progress {
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    transition: width 1.5s ease-in-out;
}

.tracking-wider {
    letter-spacing: 2px;
}

/* Mevcut stilini koruyarak ekleme yapıyoruz */
.process-icon {
    width: 70px;
    /* Biraz daha belirgin yaptık */
    height: 70px;
    line-height: 62px;
    /* Border payı için ayarlandı */
    background: var(--navy);
    color: #fff;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.8rem;
    border: 4px solid #fff;
    outline: 2px solid var(--orange);
    transition: all 0.3s ease;
}

.process-item {
    background: transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process-item:hover {
    transform: translateY(-15px);
}

.process-item:hover .process-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Değişkenlerin çalışması için senin tanımların */
:root {
    --navy: #060649;
    --orange: #df7d06;
}

.text-navy {
    color: var(--navy);
}

.bg-orange {
    background-color: var(--orange);
}


.service-card {
    transition: all 0.3s ease;
    cursor: default;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .125) !important;
}

.service-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0;
    background-color: #ff9800;
    /* Turuncu rengin */
    transition: width 0.3s ease;
}

.service-card:hover .service-hover-line {
    width: 100%;
}

.service-icon i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1) rotate(5deg);
}



.process-number {
    position: absolute;
    top: -10px;
    right: 20%;
    background-color: #ff9800;
    /* Turuncu rengin */
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    z-index: 2;
    border: 3px solid #fff;
}

.process-icon {
    transition: all 0.3s ease;
}

.process-item:hover .process-icon {
    background-color: #0d1b2a !important;
    /* Navy */
}

.process-item:hover .process-icon i {
    color: #ff9800 !important;
    /* Orange */
    transform: scale(1.1);
}

/* Masaüstünde adımlar arasına ince bir çizgi ekleyelim (Opsiyonel) */
@media (min-width: 768px) {
    .process-icon-wrapper::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 65%;
        width: 70%;
        height: 2px;
        background-image: linear-gradient(to right, #dee2e6 50%, transparent 50%);
        background-size: 10px 1px;
        z-index: 1;
    }

    /* Son adımın çizgisini kaldıralım */
    .col-md-3:last-child .process-icon-wrapper::after {
        display: none;
    }
}

.cta-gradient-card {
    background: linear-gradient(135deg, #0d1b2a 0%, #16213e 100%);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Özel Turuncu Cam Buton */
.btn-orange-glass {
    background: rgba(255, 152, 0, 0.9);
    border: none;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-orange-glass:hover {
    background: rgba(255, 152, 0, 1);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 152, 0, 0.4);
    color: #fff;
}

/* Outline Buton Hover */
.cta-actions .btn-outline-light:hover {
    background: #fff;
    color: #0d1b2a;
    transform: translateY(-5px);
}

/* Yazı vurgusu için ince bir animasyon etkisi */
.cta-gradient-card h2 span {
    position: relative;
    z-index: 1;
}

.cta-gradient-card h2 span::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(255, 152, 0, 0.2);
    z-index: -1;
}