/* ==========================
   MODERN SERVICES SECTION
========================== */

.services-two {
    position: relative;
    display: block;
    padding: 50px 0;
    z-index: 1;
}

.services-two .container {
    position: relative;
    z-index: 2;
}

.services-two__carousel {
    padding-top: 20px !important;
}

.services-two__carousel .owl-stage-outer {
    overflow: hidden !important;
    padding-top: 20px;
}

.services-two__single {
    overflow: hidden !important;
}

.services-two .shape2,
.services-two__single .shape1 {
    display: none !important;
}

/* Kart */

.services-two__single {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    text-align: center;
    min-height: 200px;
    padding: 35px 25px;
    border-radius: 22px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    cursor: pointer;
}
.services-two__single a {
    position: relative;
    z-index: 5;
    pointer-events: auto;
}
/* Hafif iç parlaklık */

.services-two__single::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;

    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0)
    );

    opacity: 0;
    transition: 0.35s;
}

.services-two__single:hover {
    transform: translateY(-6px);

    border-color: rgba(1, 151, 168, 0.25);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.06),
        0 10px 20px rgba(1, 151, 168, 0.05);
}

.services-two__single:hover::before {
    opacity: 1;
}

/* Üst Alan */

.services-two__single-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 18px;
}

/* İkon Alanı */

.services-two__single-top .icon-box {
    width: 120px;
    height: 120px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f6fbfc;

    border: 1px solid rgba(1, 151, 168, 0.12);

    transition: all 0.35s ease;

    margin-bottom: 18px;
}

.services-two__single:hover .icon-box {
    background: #0197a8;
    border-color: #0197a8;

    transform: scale(1.05);
}

/* İkon */

.services-two__single-top .icon-box span:before {
    color: #0197a8;
    font-size: 38px;
    line-height: 38px;

    transition: all 0.35s ease;
}

.services-two__single:hover .icon-box span:before {
    color: #fff;
}

/* Eğer img kullanıyorsan */

.services-two__single-top .icon-box img {
    max-width: 60px;
    transition: all 0.35s ease;
}

.services-two__single:hover .icon-box img {
    transform: scale(1.08);
}

/* Başlık */

.services-two__single-top .title-box h2 {
    margin: 0;

    font-size: 22px;
    line-height: 30px;

    font-weight: 700;
}

.services-two__single-top .title-box h2 a {
    color: #1f1f1f;
    transition: 0.3s;
}

.services-two__single:hover .title-box h2 a {
    color: #0197a8;
}

/* Açıklama */

.services-two__single-bottom p {
    margin: 0;

    font-size: 14px;
    line-height: 25px;

    color: #6d7680;
}

/* Buton */

.services-two__single-bottom .btn-box {
    margin-top: 18px;
}

.services-two__single-bottom .btn-box a {
    color: #0197a8;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s;
}

.services-two__single-bottom .btn-box a:hover {
    letter-spacing: 0.3px;
}

/* Alt çizgi */

.services-two__single-bottom .btn-box a::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: -3px;

    width: 100%;
    height: 2px;

    background: rgba(1, 151, 168, 0.18);

    transition: 0.3s;
}

.services-two__single:hover .btn-box a::before {
    background: #0197a8;
}

@media (max-width: 991px) {
    .services-two__single {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: auto;
    }

    .services-two__single h2 {
        word-break: break-word;
        text-align: center;
        font-size: 16px !important;
        line-height: 1.3;
    }
}
