/* Basic resets and styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #111;
    color: #fff;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta, .cta-secondary {
    background-color: #00bcd4;
    color: #111;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    margin: 0.5rem;
    transition: background-color 0.3s ease;
}

.cta:hover {
    background-color: #008c9e;
}

.cta-secondary {
    background-color: #333;
    color: #fff;
}

.cta-secondary:hover {
    background-color: #555;
}

/* Services Section */
.services {
    padding: 4rem;
    text-align: center;
    background-color: #222;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service {
    background-color: #333;
    padding: 2rem;
    border-radius: 10px;
}

.service h3 {
    margin-bottom: 1rem;
}

/* About Us Section */
.about {
    padding: 4rem;
    background-color: #111;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about blockquote {
    margin-top: 2rem;
    font-style: italic;
    color: #00bcd4;
}

/* Testimonials Section */
.testimonials {
    background-color: #222;
    padding: 4rem;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 2rem;
}

.testimonial-slider {
    display: flex;
    justify-content: space-around;
    animation: slide 15s infinite;
}

@keyframes slide {
    0%, 33% { transform: translateX(0); }
    66%, 100% { transform: translateX(-100%); }
}

/* CTA Final Section */
.cta-final {
    background-color: #00bcd4;
    color: #111;
    padding: 4rem;
    text-align: center;
}

.cta-final h2 {
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background-color: #111;
    padding: 2rem;
    text-align: center;
}

.social-icons a {
    margin: 0 0.5rem;
    text-decoration: none;
    color: #00bcd4;
}
