/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
}

/* Hero Section */
.hero {
    background: url('images/hero-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-btn {
    padding: 15px 30px;
    background-color: #00Aaff;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
}

.cta-btn:hover {
    background-color: #0077cc;
}

/* Navigation Bar */
.navbar {
    background-color: #333;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    padding: 15px 0;
}

.navbar ul li {
    margin: 0 20px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

.navbar ul li a:hover {
    text-decoration: underline;
}

/* About Section */
.about {
    background-color: #f4f4f4;
    padding: 60px 0;
    text-align: center;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 60px 0;
    text-align: center;
}

.services .service-cards {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 3rem;
    color: #00Aaff;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    color: #555;
}

/* Testimonials Section */
.testimonials {
    background-color: #f4f4f4;
    padding: 60px 0;
    text-align: center;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.testimonial {
    max-width: 400px;
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
}

.testimonial h4 {
    margin-top: 15px;
    font-weight: bold;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: #00Aaff;
    color: white;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.contact input, .contact textarea {
    padding: 12px;
    margin: 10px 0;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.contact textarea {
    height: 150px;
}

.submit-btn {
    background-color: #333;
    color: white;
    padding: 15px;
    font-size: 1.2rem;
    border-radius: 5px;
    border: none;
}

.submit-btn:hover {
    background-color: #555;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-container {
        flex-direction: column;
    }

    .navbar ul {
        flex-direction: column;
        gap: 10px;
    }
}
