/* style.css */

/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* Header Section */
.hero {
    background: linear-gradient(to right, #333, gray);
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

nav {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.nav-links li a {
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav-links li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.hero-content h1 {
    font-size: 2.5em;
    margin: 0 0 10px;
}

.hero-content p {
    margin-bottom: 20px;
}

.btn-primary {
    padding: 10px 20px;
    background-color: white;
    color: gray;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: gray;
    color: white;
}

/* Main Content Sections */
main {
    padding: 20px;
    text-align: center;
}

/* About Section */
.about {
    margin: 30px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

/* Services Section */
.services {
    margin: 30px 0;
    padding: 20px;
}

.service-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.card {
    flex: 1;
    padding: 15px;
    background-color: #f4f4f4;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card h3 {
    margin-top: 0;
    color: #333;
}

/* Contact Section */
.contact {
    margin: 30px 0;
    padding: 20px;
    background-color: #333;
    color: white;
    border-radius: 10px;
}

.btn-secondary {
    padding: 10px 20px;
    background-color: white;
    color: #333;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: black;
    color: white;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: white;
}
