/* ======================================================
   SERVICES SECTION
====================================================== */

.services-section {

    position: relative;

    padding: 100px 0;

    background: #f7f9fc;

    overflow: hidden;
}

/* ======================================================
   SECTION TITLE
====================================================== */

.section-title {

    text-align: center !important;

    max-width: 750px;

    margin: 0 auto 70px;
}

.section-subtitle {

    display: inline-block;

    padding: 10px 18px;

    border-radius: 30px;

    background: rgba(17,216,156,0.10);

    color: #11D89C;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 20px;
}

.section-title h2 {

    font-size: 48px;

    line-height: 1.2;

    color: #002E5B;

    margin-bottom: 20px;

    font-weight: 800;
}

.section-title p {

    color: #666;

    font-size: 17px;

    line-height: 1.8;
}

/* ======================================================
   SERVICES GRID
====================================================== */

.services-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 35px;
}

/* ======================================================
   SERVICE CARD
====================================================== */

.service-card {

    position: relative;

    background: #ffffff;

    padding: 45px 35px;

    border-radius: 24px;

    transition: 0.4s ease;

    overflow: hidden;

    box-shadow: 0 12px 35px rgba(0,0,0,0.05);

    border: 1px solid rgba(0,0,0,0.04);
}

/* Hover Top Border */

.service-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: #11D89C;

    transform: scaleX(0);

    transition: 0.4s ease;

    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Card Hover */

.service-card:hover {

    transform: translateY(-12px);

    box-shadow: 0 18px 45px rgba(0,0,0,0.10);
}

/* ======================================================
   SERVICE ICON
====================================================== */

.service-icon {

    width: 75px;
    height: 75px;

    border-radius: 18px;

    background: rgba(17,216,156,0.10);

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    transition: 0.4s ease;
}

.service-icon i {

    font-size: 32px;

    color: #11D89C;
}

.service-card:hover .service-icon {

    background: #11D89C;
}

.service-card:hover .service-icon i {

    color: #002E5B;
}

/* ======================================================
   CARD CONTENT
====================================================== */

.service-card h3 {

    font-size: 24px;

    color: #002E5B;

    margin-bottom: 18px;

    font-weight: 700;
}

.service-card p {

    color: #666;

    line-height: 1.8;

    margin-bottom: 28px;

    font-size: 15px;
}

/* ======================================================
   SERVICE LINK
====================================================== */

.service-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #11D89C;

    text-decoration: none;

    font-weight: 700;

    transition: 0.3s ease;
}

.service-link:hover {

    gap: 16px;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 1100px) {

    .services-grid {

        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {

    .services-section {

        padding: 80px 0;
    }

    .section-title {

        margin-bottom: 50px;
    }

    .section-title h2 {

        font-size: 38px;
    }

    .services-grid {

        grid-template-columns: 1fr;
    }

}

@media (max-width: 480px) {

    .service-card {

        padding: 35px 28px;
    }

    .section-title h2 {

        font-size: 32px;
    }

}