/***
=============================================
Skill One
=============================================
***/
.skill-one {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    padding: 120px 0px 120px;
    z-index: 1;
}

.skill-one__img {
    position: relative;
    display: block;
    z-index: 1;
    /* Responsive düzen için sağ boşluk ekleyebiliriz */
    margin-right: 20px;
}

    .skill-one__img .shape1 {
        position: absolute;
        top: 30px;
        right: -35px;
        z-index: -1;
    }

    .skill-one__img .shape2 {
        position: absolute;
        left: 135px;
        bottom: -100px;
        z-index: -1;
    }

.skill-one__img1 {
    position: relative;
    display: block;
    overflow: hidden;
    max-width: 450px;
    width: 100%;
    z-index: 1;
}

    .skill-one__img1::before {
        background: rgba(255, 255, 255, 0.3);
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 0;
        opacity: 1;
        z-index: 9;
        pointer-events: none;
    }

    .skill-one__img1:hover::before {
        height: 100%;
        opacity: 0;
        -webkit-transition: all 400ms linear;
        transition: all 400ms linear;
    }

    .skill-one__img1 img {
        width: 100%;
        transition: .5s ease;
        transform: scale(1.05);
    }

    .skill-one__img1:hover img {
        transform: scale(1);
    }

.skill-one__img2 {
    position: absolute;
    bottom: -115px;
    right: 0;
    z-index: 1;
}

    .skill-one__img2::before {
        position: absolute;
        top: -10px;
        left: -10px;
        bottom: 0px;
        right: 0px;
        background: var(--logistiq-base);
        content: "";
        z-index: -1;
    }

    .skill-one__img2 .inner {
        position: relative;
        display: block;
        overflow: hidden;
    }

        .skill-one__img2 .inner::before {
            background: rgba(255, 255, 255, 0.3);
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 0;
            opacity: 1;
            z-index: 9;
            pointer-events: none;
        }

    .skill-one__img2:hover .inner::before {
        height: 100%;
        opacity: 0;
        -webkit-transition: all 400ms linear;
        transition: all 400ms linear;
    }

    .skill-one__img2 .inner img {
        width: 100%;
        transition: .5s ease;
        transform: scale(1.05);
    }

    .skill-one__img2:hover .inner img {
        transform: scale(1);
    }

.skill-one__content {
    position: relative;
    display: block;
    margin-left: 100px;
}

    .skill-one__content .sec-title {
        padding-bottom: 31px;
    }

.skill-one__content-text {
    position: relative;
    display: block;
}

    .skill-one__content-text p {
        margin: 0;
    }

.skill-one__progress {
    position: relative;
    display: block;
    margin-top: 35px;
}

    .skill-one__progress li {
        position: relative;
        display: block;
    }

        .skill-one__progress li + li {
            margin-top: 38px;
        }

.skill-one__progress-single {
    position: relative;
    display: block;
}

    .skill-one__progress-single .title-box {
        position: relative;
        display: block;
        margin-bottom: 17px;
    }

        .skill-one__progress-single .title-box p {
            color: var(--logistiq-black);
            font-size: 16px;
            line-height: 26px;
            font-weight: 700;
            text-transform: capitalize;
        }

    .skill-one__progress-single .bar {
        position: relative;
        width: 100%;
        height: 3px;
        background-color: #E4E4E4;
    }

    .skill-one__progress-single .bar-inner {
        position: relative;
        display: block;
        width: 0px;
        height: 3px;
        border-radius: 0px;
        background-color: var(--logistiq-base);
        -webkit-transition: all 1500ms ease;
        -ms-transition: all 1500ms ease;
        -o-transition: all 1500ms ease;
        -moz-transition: all 1500ms ease;
        transition: all 1500ms ease;
    }

    .skill-one__progress-single .count-text {
        position: absolute;
        right: 0px;
        bottom: -13px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--logistiq-white);
        font-size: 16px;
        line-height: 26px;
        font-weight: 700;
        text-align: center;
        width: 60px;
        height: 30px;
        background: var(--logistiq-base);
        opacity: 0;
        -webkit-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        transition: all 500ms ease;
    }

    .skill-one__progress-single .bar-inner.counted .count-text {
        opacity: 1;
    }

        .skill-one__progress-single .bar-inner.counted .count-text::before {
            position: absolute;
            top: 1px;
            right: -40px;
            color: var(--logistiq-base);
            font-size: 30px;
            content: "\e908";
            font-family: 'icomoon' !important;
            /*transform: rotate(70deg);*/
        }

.skill-one__content-btn {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 55px;
}

/***
=============================================
Responsive CSS
=============================================
***/

/* Tablet ve Küçük Masaüstü Cihazlar */
@media (max-width: 991px) {
    .skill-one {
        padding: 80px 0px 80px;
    }

    .skill-one__content {
        margin-left: 30px; /* İçerik ve resim arasındaki boşluk azaltıldı */
    }

    .skill-one__img {
        margin-right: 0;
    }

    .skill-one__img1 {
        max-width: 100%; /* Resmin kapsayıcısına tam sığması sağlandı */
    }

    .skill-one__img2 {
        bottom: -80px; /* İkinci resmin konumu ayarlandı */
    }

    .skill-one__img .shape2 {
        left: 20px;
        bottom: -60px;
    }
}


/* Mobil Cihazlar */
@media (max-width: 767px) {
    .skill-one {
        padding: 70px 0px 70px;
    }

    /* Mobil cihazlarda genellikle iki sütunlu yapı tek sütuna çevrilir.
       Bunu yapmak için HTML'de .skill-one__img ve .skill-one__content'i 
       saran bir flex container (örn: display: flex) olmalı ve
       bu media query içinde flex-direction: column; olarak ayarlanmalıdır.
       Burada sadece bu elemanların stillerini sıfırlıyoruz.
    */

    .skill-one__img {
        margin-bottom: 50px; /* Resim bloğunun altına boşluk eklendi */
    }

    .skill-one__content {
        margin-left: 0; /* Sol boşluk sıfırlandı, elemanlar artık alt alta */
    }

    /* Dekoratif ve düzeni bozan elemanlar gizlendi */
    .skill-one__img .shape1,
    .skill-one__img .shape2,
    .skill-one__img2 {
        display: none;
    }

    .skill-one__img1 {
        max-width: 90%; /* Resmin genişliği ayarlandı */
        margin: 0 auto; /* Resmi ortalamak için */
    }

    .skill-one__progress li + li {
        margin-top: 30px; /* Yetenek barları arası boşluk azaltıldı */
    }

    .skill-one__content-btn {
        margin-top: 40px;
    }
}
