/* services.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f6f9;
    color: #333;
}

/* Header */
.header {
    background: #0b5ed7;
    color: #fff;
    padding: 25px 10%;
    text-align: center;
}

/* Hero Section */
.services-hero {
    background: #e9f1ff;
    text-align: center;
    padding: 50px 20px;
}

.services-hero h2 {
    color: #0b5ed7;
    margin-bottom: 10px;
}

/* Services Grid */
.services-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* Service Card */
.service-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-card h3 {
    color: #0b5ed7;
    margin-bottom: 10px;
}

.service-card p {
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: #0b5ed7;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

.cta-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 30px;
    background: #fff;
    color: #0b5ed7;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #e2e6ea;
}

/* Footer */
.footer {
    background: #222;
    color: #aaa;
    text-align: center;
    padding: 20px;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .services-hero {
        padding: 30px 15px;
    }
}
