/* repair-services.css */

/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: #333;
}

/* Navigation styles */
header {
    background-color: #343a40;
    padding: 1.5em 0;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5em;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5em 1em;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #007bff;
    border-radius: 5px;
}

/* Repair Services Section */
#repair-services {
    background-color: #fff;
    padding: 3em 2em;
    background: linear-gradient(to bottom right, #f0f4f8, #e9ecef);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 2em auto;
    max-width: 800px;
}

#repair-services h2 {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 1em;
    text-align: center;
}

#repair-services h3 {
    font-size: 2em;
    color: #343a40;
    margin-top: 2em;
    margin-bottom: 0.5em;
    border-bottom: 2px solid #007bff;
    padding-bottom: 0.5em;
}

#repair-services ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2em;
}

#repair-services ul li {
    font-size: 1.2em;
    color: #444;
    margin-bottom: 0.5em;
    padding-left: 1em;
    position: relative;
}

#repair-services ul li:before {
    content: "•";
    color: #007bff;
    position: absolute;
    left: 0;
    font-size: 1.5em;
    top: -2px;
}

#repair-services ul li:last-child {
    margin-bottom: 0;
}

/* Footer Styles */
footer {
    background-color: #343a40;
    color: #fff;
    text-align: center;
    padding: 1.5em 0;
}

footer p {
    font-size: 1em;
}

/* Add a fade-in animation to the services section */
#repair-services {
    animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}