.service-home {
    background-image: url(../Images/logistics/service\ bg.svg);
    background-position: center;
    background-size: cover;
    display: flex;
    text-align: center;
    align-items: center;
    min-height: 441px;
    overflow: hidden;
    position: relative;
}

.service-home::before {
    position: absolute;
    content: '';
    background-color: rgba(0, 0, 0, 50%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}

.homecontent h1 {
    position: relative;
    font-family: 'LeagueGothic-Regular';
    font-size: 50px;
    line-height: 51px;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.homecontent ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.homecontent a {
    position: relative;
    font-family: 'Lato-Regular';
    font-size: 20px;
    font-weight: bold;
    line-height: 21px;
    color: #ffffff;
    text-decoration: none;
}

.homecontent a:hover {
    color: #6569cd;
}

.homecontent a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #6569cd;
    transition: 0.3s ease;
}

.homecontent a:hover::after {
    width: 100%;
}

.homecontent li {
    position: relative;
    font-family: 'Lato-Regular';
    font-size: 20px;
    line-height: 21px;
    color: #ffffff;
    text-decoration: none;
}


/* service */

.service {
    padding: 60px 0;
    overflow: hidden;
    /* background-color: #292966; */
    width: 100%;
}

.servicetop {
    text-align: center;
}

.servicetop h2 {
    font-family: 'LeagueGothic-Regular';
    font-size: 50px;
    line-height: 40px;
    color: #000000;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.servicetop p {
    max-width: 622px;
    margin: 0 auto;
    font-family: 'Lato-Semibold';
    font-size: 18px;
    line-height: 32px;
    color: #747272;
    margin-bottom: 30px;
}

.servicecard {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    /* column-gap: 30px;
    row-gap: 50px; */
    justify-content: space-between;
}

.card {
    width: calc(33.33% - 30px);
    background-color: white;
    padding: 19px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cardimg img {
    width: 100%;
    height: auto;
    /* object-fit: cover; */
}

.cardinfo h3 {
    font-family: 'Lato-Semibold';
    font-size: 23px;
    color: #000000;
    line-height: 30px;
    margin-top: 20px;
}

.cardinfo p {
    font-family: 'Lato-Semibold';
    font-size: 16px;
    color: #000000;
    line-height: 28px;
    margin-top: 10px;
}

@media only screen and (max-width: 991px) {

    .service {
        padding: 50px 0;
    }

    .card {
        width: calc(50% - 30px);
    }

    .cardinfo h3 {
        font-size: 19px;
        line-height: 28px;
    }
}

@media only screen and (max-width: 767px) {
    .service-home {
        min-height: 350px;
    }

    .homecontent h1 {
        font-size: 40px;
        line-height: 45px;
        margin-bottom: 5px;
    }

    .homecontent a ,
    .homecontent li {
        font-size: 16px;
        line-height: 18px;
    }

    .service {
        padding: 40px 0;
    }

    .servicetop h2 {
        font-size: 40px;
        line-height: 30px;
    }

    .servicetop p {
        font-size: 14px;
        line-height: 28px;
    }

    .card {
        width: 100%;
    }

    .cardinfo h3 {
        font-size: 16px;
        line-height: 26px;
        font-weight: bold;
    }

    .cardinfo p {
        font-size: 14px;
        line-height: 25px;
    }
}