/* Client Section Styling */
.client-section {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #001f3f;
}

.client-container {
    max-width: 900px;
    margin: 0 auto;
}

.client-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #001f3f;
    position: relative;
}

.client-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #555;
}

.client-section p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.client-section .subtext {
    font-style: italic;
    color: #777;
}

.city-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.city-buttons .btn {
    background-color: #001f3f;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.city-buttons .btn:hover {
    background-color: #FFA500;
    color: #001f3f;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 600px) {
    .client-section h2 {
        font-size: 2rem;
    }

    .client-section h4,
    .client-section p {
        font-size: 0.95rem;
    }

    .city-buttons .btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}