.hero-section-home {
    padding: 40px 20px;
    margin-top: 80px;
}

.hero-section-home P {
    margin: 0 !important;
}

.hero-text-home {
    text-align: center;
    font-size: 52px;
    margin-bottom: 40px;
}

.hero-text-home .highlight {
    color: #ffc107;
    font-weight: 600;
}

.hero-text-home .wheel-icon {
    width: 140px;
    height: 85px;
    vertical-align: middle;
    margin: 0 6px;
    display: initial;
}

.service-card-home h3 {
    margin: 0;
    font-size: 1.2rem;
}

.service-card-home p {
    font-size: 0.9rem;
}

.service-card-home .media {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    grid-auto-rows: 260px;
    margin: 20px auto;
}

.service-card-home {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    display: block;
    transition: transform .5s ease;
}

.service-card-home .media {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.service-card-home .card-content {
    position: absolute;
    bottom: 10px;
    left: 15px;
    z-index: 1;
    color: #fff;
    padding: 10px 12px;
    border-radius: 8px;
    max-width: 85%;
}

.service-card-home h3 {
    margin: 0;
    font-size: 41.73px;
}

.service-card-home p {
    margin: 4px 0 0;
    font-size: 20.87px;
}

.service-card-home.small {
    grid-row: span 1;
}

.service-card-home.wide {
    grid-column: span 2;
}


.service-card-home:hover {
    transform: scale(1.03);
}

.hover-arrow {
    position: absolute;
    top: 0;
    right: 15px;
    font-size: 50px;
    color: white;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    z-index: 2;
    display: initial;
    width: auto;
    height: auto;
}

.service-card-home:hover .hover-arrow {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 1024px) {
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        grid-auto-rows: 320px;
        margin: 20px auto;
    }

    .service-card-home h3 {
        font-size: 40px;
    }

    .service-card-home p {
        font-size: 20px;
    }

    .full-wide {
        grid-column: 1 / -1 !important;
        grid-row-start: auto;
        grid-row-end: auto;
        height: auto;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

}


@media(max-width:768px) {
    .hero-text-home {
        font-size: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        grid-auto-rows: 280px;
    }
}


@media(max-width:440px) {
    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .service-card-home,
    .service-card-home.respo-three,
    .service-card-home.respo-four,
    .service-card-home.respo-five {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }

    .hero-text-home {
        font-size: 38px;
    }

    .hero-text-home .wheel-icon {
        width: 120px;
        height: 65px;
        vertical-align: middle;
        margin: 0 6px;
        transform: translateY(-2px);
    }
}