﻿/* Hero Section Styling */
.hero {
    background-image: url('/lib/images/landscape.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
    color: white;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    padding: 12px 24px;
    margin: 0 10px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn.primary {
    background-color: #ff6b6b;
    color: white;
}

.btn.secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}
/* Intro Section Styling */
.intro-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

    .intro-section h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #333;
    }

.intro-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}
/* Services Section Styling */
.services-section {
    background-color: #fff;
    padding: 80px 20px;
    text-align: center;
}

    .services-section h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
        color: #333;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background-color: #f4f4f4;
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .service-card img {
        width: 60px;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 1.3rem;
        color: #222;
        margin-bottom: 10px;
    }

    .service-card p {
        color: #555;
        font-size: 1rem;
    }
/* CTA Section Styles */
.cta-section {
    background: url('cta-background.jpg') center/cover no-repeat;
    padding: 80px 20px;
    color: white;
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Optional overlay */
    padding: 40px;
    border-radius: 10px;
}

.cta-button {
    display: inline-block;
    background-color: #ff5a5f;
    color: white;
    padding: 15px 30px;
    margin-top: 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

    .cta-button:hover {
        background-color: #e0484f;
    }
/* FAQ Section Styles */
.faq-section {
    padding: 60px 20px;
    background-color: #f7f7f7;
}

.faq-container {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.faq-question {
    background: none;
    border: none;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    text-align: left;
    padding: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .faq-question:hover {
        background-color: #eaeaea;
    }

.faq-answer {
    display: none;
    padding: 0 15px 15px;
    color: #555;
    font-size: 16px;
}

/* Toggle script will handle showing this */
.faq-item.active .faq-answer {
    display: block;
}
/* Contact Section Styles */
.contact-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.contact-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    flex: 1 1 250px;
    background-color: #f1f1f1;
    padding: 25px;
    border-radius: 8px;
}

    .contact-item h4 {
        margin-bottom: 10px;
        color: #333;
    }

    .contact-item a {
        text-decoration: none;
        color: #ff5a5f;
        font-weight: bold;
    }

@media (max-width: 576px) {
    .hero {
        position: relative;
       
        background-size: cover;
        background-position: center;
        height: 250px;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        font-weight: bold;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .hero-buttons .btn {
        padding: 12px 14px;
        margin: 0 10px;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        transition: background 0.3s ease;
    }
}