/* ========================================================= */
/*                   SERVICES INTRO SECTION                  */
/* ========================================================= */

.services-intro {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
}

.services-intro h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.services-intro p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* ========================================================= */
/*                  SERVICES LAYOUT SECTION                  */
/* ========================================================= */

.service-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    background: #f4f4f4;
}

/* Service Box */
.service-box {
    width: 45%;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.service-box:hover {
    transform: scale(1.05);
}

.service-box h2 {
    font-size: 24px;
    color: #0056b3; /* Blue heading */
    margin-bottom: 10px;
}

.service-box p {
    font-size: 16px;
    color: #555;
}

/* ========================================================= */
/*                    CTA SECTION                            */
/* ========================================================= */

.cta-section {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    box-shadow: 0px -4px 6px rgba(0, 0, 0, 0.1);
}

.cta-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: #0056b3; /* Blue button */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.cta-button:hover {
    background: #004080; /* Darker blue on hover */
}

/* ========================================================= */
/*                 RESPONSIVE DESIGN (MOBILE)                */
/* ========================================================= */

@media (max-width: 768px) {
    .service-box {
        width: 100%; /* Full width on mobile */
    }
}
