.service-hero{
    padding:140px 8%;
    text-align:center;
    background:
    linear-gradient(rgba(12, 67, 88, 0.85),rgba(85, 131, 153, 0.85)),
    url("../assets/servicepage.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    height:auto;
}
.service-hero h2{
    color: linear-gradient(90deg,#212427,#2C343D);
    font-size:48px;
    margin-bottom:20px;
}
.service-list-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.service-list-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}
.service-list-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.service-list-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
    margin-bottom: 20px;
}
.service-list-card h3 {
    font-size: 24px;
    color: #025d86;
    margin-bottom: 15px;
    font-weight: 700;
}
.service-list-card p {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
}
.service-list-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #ff6600;
}
@media (max-width: 992px) {
    .service-list-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .service-list-card {
        padding: 25px;
    }
    .service-list-card h3 {
        font-size: 22px;
    }
}
@media (max-width: 768px) {
    .service-list-section {
        padding: 60px 20px;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .service-list-card {
        padding: 25px 20px;
    }
    .service-list-card img {
        width: 100%;
        height: auto;
    }
    .service-list-card h3 {
        font-size: 20px;
    }
    .service-list-card p {
        font-size: 14px;
        line-height: 1.7;
    }
}
@media (max-width: 480px) {
    .service-list-section {
        padding: 50px 15px;
    }
    .service-list-card {
        padding: 20px 15px;
    }
    .service-list-card h3 {
        font-size: 18px;
    }
    .service-list-card p {
        font-size: 13px;
    }
}