/* Start custom CSS for html, class: .elementor-element-6bf2b7a *//* =====================================
   OUR SERVICES SECTION
===================================== */

.services-section {
    position: relative;
    width: 100%;
    padding: 90px 20px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 0% 45%,
            rgba(35, 194, 126, 0.12),
            transparent 20%
        ),
        radial-gradient(
            circle at 100% 60%,
            rgba(35, 194, 126, 0.10),
            transparent 22%
        ),
        #ffffff;
}


/* =====================================
   CONTAINER
===================================== */

.services-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1200px;
    margin: auto;
}


/* =====================================
   HEADING
===================================== */

.services-heading {
    text-align: center;
    margin-bottom: 55px;
}

.services-heading span {
    display: inline-block;

    color: #078c55;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 12px;
}

.services-heading h2 {
    margin: 0 0 15px;

    color: #10151c;

    font-size: clamp(36px, 4vw, 52px);

    font-weight: 800;

    letter-spacing: -1.5px;
}

.services-heading p {
    max-width: 650px;

    margin: auto;

    color: #6b737d;

    font-size: 16px;

    line-height: 1.7;
}


/* =====================================
   SERVICES GRID
===================================== */

.services-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 32px;
}


/* =====================================
   SERVICE CARD
===================================== */

.service-card {
    position: relative;

    min-height: 380px;

    padding: 38px 40px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #ffffff 70%,
            #f5fcf9 100%
        );

    border: 1.5px solid #42c994;

    border-radius: 25px;

    overflow: hidden;

    box-shadow:
        0 12px 35px rgba(22, 170, 108, 0.10);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* Soft Green Circle */

.service-card::after {
    content: "";

    position: absolute;

    width: 90px;
    height: 90px;

    top: 22px;
    right: 22px;

    border-radius: 50%;

    background: rgba(39, 192, 128, 0.07);

    pointer-events: none;
}


/* Hover */

.service-card:hover {
    transform: translateY(-6px);

    border-color: #18ad70;

    box-shadow:
        0 20px 45px rgba(22, 170, 108, 0.16);
}


/* =====================================
   ICON
===================================== */

.service-icon {
    position: relative;

    width: 120px;
    height: 120px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border: 3px solid #148d61;

    border-radius: 50%;

    color: #12895e;

    font-size: 54px;

    background: rgba(255, 255, 255, 0.75);

    z-index: 2;
}


/* =====================================
   SERVICE TITLE
===================================== */

.service-card h3 {
    position: relative;

    margin: 0;

    color: #10151c;

    font-size: 32px;

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -0.8px;

    z-index: 2;
}


/* =====================================
   GREEN UNDERLINE
===================================== */

.green-line {
    width: 47px;
    height: 3px;

    margin: 12px 0 17px;

    background: #19a970;

    border-radius: 5px;
}


/* =====================================
   SERVICE LIST
===================================== */

.service-card ul {
    list-style: none;

    padding: 0;
    margin: 0;

    position: relative;

    z-index: 2;
}

.service-card li {
    position: relative;

    padding-left: 29px;

    margin-bottom: 9px;

    color: #30363d;

    font-size: 15px;

    line-height: 1.45;
}

.service-card li:last-child {
    margin-bottom: 0;
}


/* Green Check */

.service-card li::before {
    content: "\f058";

    position: absolute;

    left: 0;
    top: 1px;

    font-family: "Font Awesome 6 Free";

    font-weight: 900;

    color: #19a970;

    font-size: 17px;
}


/* =====================================
   BACKGROUND DECORATION
===================================== */

.services-section::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    left: -100px;
    top: 280px;

    border-radius: 50%;

    background: rgba(46, 201, 139, 0.12);

    filter: blur(2px);
}

.services-section::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -70px;
    bottom: 180px;

    border-radius: 50%;

    background: rgba(46, 201, 139, 0.10);
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 900px) {

    .services-section {
        padding: 70px 20px;
    }

    .services-grid {
        gap: 22px;
    }

    .service-card {
        padding: 30px;
        min-height: 360px;
    }

    .service-card h3 {
        font-size: 28px;
    }

    .service-icon {
        width: 105px;
        height: 105px;
        font-size: 45px;
    }
}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 650px) {

    .services-section {
        padding: 60px 15px;
    }

    .services-heading {
        margin-bottom: 35px;
    }

    .services-heading h2 {
        font-size: 34px;
    }

    .services-heading p {
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .service-card {
        min-height: auto;

        padding: 28px 25px;

        border-radius: 20px;
    }

    .service-icon {
        width: 90px;
        height: 90px;

        font-size: 40px;

        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 27px;
    }

    .service-card li {
        font-size: 14px;
    }
}


/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 400px) {

    .services-heading h2 {
        font-size: 30px;
    }

    .service-card {
        padding: 25px 22px;
    }

    .service-card h3 {
        font-size: 25px;
    }

    .service-icon {
        width: 82px;
        height: 82px;
        font-size: 35px;
    }
}/* End custom CSS */