#service-detail{
    padding: 100px 0 10px;
}
#service-detail,
#service{
    background-color: #141900;
}

#service-detail .title-container,
#service .title-container {
    position: relative;
    text-align: center;
    line-height: 1;
}

#service-detail .outline-text,
#service .outline-text {
    font-size: 10rem; /* Adjust as needed to make the word large */
    color: transparent;
    -webkit-text-stroke: 5px #40634b; /* Dark green-grey color for the outline */
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.5; /* Light opacity for a subtle effect */
    z-index: 1;
    pointer-events: none; /* So it doesn't overlap clickable items */
}

#service-detail .highlight-text,
#service .highlight-text {
    font-size: 4rem; /* Smaller size to fit in front of "ABOUT" */
    color: #b6ff00; /* Bright green color */
    position: relative;
    z-index: 2;
    font-weight: bolder;
    -webkit-text-stroke: 5px #b6ff00;
    letter-spacing: 5px;
}

#service .box-service{
    border-top: 5px solid #96FF00;
    background-color: transparent;
    padding: 30px 0px;
    margin: 0 15px;
    display: flex;
}

#service .number-service{
    font-size: 3em;
    color: #fff;
    font-weight: bolder;
}

#service .title-service{
    font-size: 2em;
    color: #fff;
    font-weight: bolder;
    /* -webkit-text-stroke: 1px #fff; */
}

#service .desc-service{
    font-size: 1em;
    font-weight: 200;
    color: #fff;
    max-width: 85%;
}

#service a.arrow-service {
    transform: translateY(50%);
    background-color: #96FF00;
    padding: 15px;
    border-radius: 12px;
    max-height: fit-content;
    transition: all 0.3s ease; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}

#service a.arrow-service:hover {
    background-color: #82e600;
    transform: translateY(45%) scale(1.05); 
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); 
    cursor: pointer; 
}


#service .btn-service {
    border: 2px solid #96FF00;
    background: transparent;
    color: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    max-width: max-content;
    height: auto;
    background-image: linear-gradient(90deg, #96FF00 0%, #96FF00 100%);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    transition: background-size 0.5s ease;
    font-weight: bolder;    
}

#service .btn-service:hover {
    background-size: 100% 100%;
    color: #000; /* Opsional: Ubah warna teks agar lebih kontras dengan latar belakang */
}


@media only screen and (max-width: 500px){
    #service .box-service{
        flex-direction: column;
    }
    #service a.arrow-service{
        transform: none;
        width: fit-content;
        margin: 0 auto;
    }

    #service .desc-service{
       max-width: 100%;
    }
}

@media only screen and (max-width: 800px){
    #service .row {
        flex-direction: column;
        align-content: center;
        padding: 20px;
    }
    #service .box-service{
        flex-direction: column;
    }
    #service a.arrow-service{
        transform: none;
        width: fit-content;
        margin: 0 auto;
    }

    #service .desc-service{
       max-width: 100%;
    }

}