/* Web Development Page Styles */
#inner_pages_block {
    padding: 80px 0;
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

.on_line {
    text-align: center;
    margin-top: 60px;
    background: linear-gradient(135deg, #9f0303, #e70817);
    color:#fff;
}

.on_line h1 {
    font-size: 42px;
    font-weight: 700;
    color: #f8f0f0;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.on_line hr {
    width: 120px;
    height: 4px;
    background: #880808;
    margin: 0 auto;
    border: none;
    opacity: 1;
}

.service-section {
    margin-bottom: 60px;
    padding: 20px 0;
}

.serv_related_pic {
    text-align: center;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 8px;
}

.serv_related_pic img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0);
}

.serv_related_pic img:hover {
    transform: scale(1.02);
}

.service-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.service-section h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #880808;
}

.service-section h4.green {
    color: #a10505;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.5;
}

.service-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.services_listing {
    margin: 25px 0;
}

.services_listing ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 -15px;
}

.services_listing li {
    display: flex;
    align-items: center;
    width: 50%;
    margin-bottom: 12px;
    font-size: 16px;
    color: #555;
    padding: 0 15px;
}

.services_listing li i {
    color: #880808;
    margin-right: 10px;
    font-size: 18px;
}

.service-section hr {
    margin: 50px 0;
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #ddd, transparent);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .service-section {
        margin-bottom: 40px;
    }
    
    .serv_related_pic {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    #inner_pages_block {
        padding: 60px 0;
    }
    
    .on_line h1 {
        font-size: 32px;
    }
    
    .service-section h2 {
        font-size: 28px;
    }
    
    .service-section h4.green {
        font-size: 18px;
    }
    
    .services_listing li {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .on_line h1 {
        font-size: 28px;
    }
    
    .service-section h2 {
        font-size: 24px;
    }
    
    .service-section p {
        font-size: 15px;
    }
    
    .services_listing li {
        font-size: 15px;
    }
}