/* styles.css */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial, sans-serif';
    color: #333;
}

header {
    position: fixed;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px;
}

.hero-section {
    height: 100vh;
    background: url('Images/picture1.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: black;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 0.75rem 1.5rem;
    background: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.cta-button:hover {
    background: #0056b3;
}

.services-section, .about-section, .contact-section {
    padding: 4rem 2rem;
    text-align: center;
}

.services-section h2, .about-section h2, .contact-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.service {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service p {
    font-size: 1rem;
    color: #666;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
}

.contact-section form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-section input, .contact-section textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-section button {
    padding: 0.75rem 1.5rem;
    background: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-section button:hover {
    background: #0056b3;
}

footer {
    padding: 1rem 2rem;
    background: #333;
    color: #fff;
    text-align: center;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .burger {
        display: block;
    }

    .services-container {
        flex-direction: column;
        gap: 1rem;
    }
}

.styled-list {
    list-style: none;
    padding: 0;
    max-width: 400px;
    margin: 1rem auto;
    text-align: center;
}

.styled-list li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.styled-list li::before {
    content: none; /* Remove the custom bullet point */
}

.toplogo img {
    height : 20%;
    width : 20%;
}
