﻿/* ==========================================================
   SERVICES
   BÖLÜM 1
========================================================== */

.services-section {
    position: relative;
    padding: 30px 0 80px;
    background: #060B18;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

    .section-title span {
        display: inline-block;
        color: #2EE6D6;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .section-title h2 {
        color: #fff;
        font-size: 42px;
        font-weight: 800;
        margin: 0;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 22px;
}

.service-card {
    position: relative;
    min-height: 250px;
    padding: 30px 24px;
    border-radius: 22px;
    background: linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    overflow: hidden;
    transition: .35s;
}

    .service-card:hover {
        transform: translateY(-8px);
        border-color: rgba(46,230,214,.35);
        box-shadow: 0 20px 45px rgba(0,0,0,.35);
    }
/* ===============================
        ICON
================================ */

.service-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 28px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
}


    .service-icon i {
        color: #2EE6D6;
        font-size: 26px;
    }



/* ===============================
        TITLE
================================ */

.service-card h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 700;
}



/* ===============================
        TEXT
================================ */

.service-card p {
    color: #AEB9CB;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
}
/* ==========================================================
   SERVICES
   BÖLÜM 2
========================================================== */


/* ===============================
        DETAIL LINK
================================ */

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #2EE6D6;
    font-size: 15px;
    font-weight: 700;
    transition: .35s ease;
}


    .service-card a i {
        transition: .35s ease;
    }


.service-card:hover a {
    color: #ffffff;
}


    .service-card:hover a i {
        transform: translateX(6px);
    }



/* ===============================
        TOP RIGHT ARROW
================================ */

.service-card::before {
    content: "↗";
    position: absolute;
    top: 22px;
    right: 22px;
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    color: #2EE6D6;
    font-size: 16px;
    transition: .35s ease;
}


.service-card:hover::before {
    transform: rotate(45deg);
    background: #2EE6D6;
    color: #04131D;
}



/* ===============================
        GLOW
================================ */

.service-card::after {
    content: "";
    position: absolute;
    left: -120px;
    top: -120px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46,230,214,.16), transparent 70%);
    opacity: 0;
    transition: .4s ease;
}


.service-card:hover::after {
    opacity: 1;
}
/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:1400px) {

    .services-grid {
        grid-template-columns: repeat(3,1fr);
    }
}



@media(max-width:992px) {

    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }
}



@media(max-width:768px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .service-card {
        min-height: auto;
    }
}