/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.navbar {
    background-color: #2c3e50;
    padding: 15px;
    text-align: center;
}

.navbar .nav-links {
    list-style: none;
    display: inline-flex;
    padding: 0;
}

.navbar .nav-links li {
    margin: 0 15px;
}

.navbar .nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

a:hover {
    color: #3498db;
}

/* Hero Section */
.hero {
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 10px;
    color: white;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.cta-btn {
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
}

.cta-btn:hover {
    background-color: #2980b9;
}

/* Services Section */
.services {
    background-color: white;
    padding: 60px 0;
    text-align: center;
}

.services h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #2c3e50;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.service-card img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #2c3e50;
}

.service-card p {
    color: #555;
}

/* Testimonials Section */
.testimonials {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #34495e;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.2em;
}

.testimonial-card h4 {
    margin-top: 10px;
    font-size: 1.1em;
    color: #ecf0f1;
}

/* Call to Action Section */
.cta {
    background-color: #3498db;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.cta h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta .cta-btn {
    background-color: white;
    color: #3498db;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
}

.cta .cta-btn:hover {
    background-color: #ecf0f1;
    color: #2980b9;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.footer p {
    margin: 0;
    font-size: 1em;
}
