:root {
    --primary-color: #333;
    --secondary-color: #1e40af;
    --text-color: #eee;
    --light-bg: #dcdcdc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #333;
}

header {
    background-color: #333;
    box-shadow: 0 1px 2px rgba(229, 229, 229, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    color: #eee;


}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #eee;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #eee;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

section {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url("./bg.jpg");
    background-size: cover;
    background-position: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.cta-button,
.submit-button {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: #2121;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover,
.submit-button:hover {
    background-color: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i,
.service-card * {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}


input,
textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

textarea {
    height: 150px;
    resize: vertical;
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: #333;
}

#contact a {
    color: #eee;
}

@media (max-width: 768px) {
    nav ul {
        gap: 1rem;
    }

    h1 {
        font-size: 2rem;
    }
}