﻿/* ===== Services Intro Section ===== */
.services-intro-section {
    background: linear-gradient(to right, #ffffff, #f1f6f9);
    padding: 4rem 1rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.intro-container {
    max-width: 800px;
    margin: auto;
}

    .intro-container h1 {
        font-size: 2.8rem;
        color: #003b5c;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .intro-container p {
        font-size: 1.15rem;
        color: #555;
        line-height: 1.8;
        max-width: 700px;
        margin: auto;
    }

/* ===== Services Details Section ===== */
.services-details-section {
    padding: 4rem 1rem 5rem;
    background-color: #f8f9fa;
}

.details-container {
    max-width: 1000px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-block {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: linear-gradient(135deg, #ffffff, #fdfdfd);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    border-left: 6px solid #e65c0d;
    position: relative;
    z-index: 1;
}

    .service-block:hover {
        transform: scale(1.02);
        box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    }

.icon-container {
    font-size: 2.5rem;
    color: #e65c0d;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.service-block:hover .icon-container {
    transform: rotate(6deg) scale(1.1);
}

.service-block h2 {
    color: #003b5c;
    margin-bottom: 0.6rem;
    font-size: 1.4rem;
}

.service-block p {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .service-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .icon-container {
        margin-bottom: 1rem;
    }
}
