body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(120deg, #f0f4ff 0%, #ffffff 100%);
    margin: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.top-bar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(to right, #4a4a4a, #707070);
    color: white;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
}

.menu {
    display: flex;
    align-items: center;
}

.menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-list li {
    margin: 0 15px;
}

.menu-list li a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.menu-list li a:hover {
    background-color: #007BFF;
}

.contact-info {
    display: flex;
    gap: 15px;
}

.contact-info div {
    color: white;
    font-size: 14px;
}

.menu-toggle {
    display: none;
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
}

.hero {
    background: linear-gradient(to right, #333, #666);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.hero h2 {
    margin-bottom: 20px;
    font-size: 2.5em;
}

.hero p {
    margin-bottom: 30px;
    font-size: 1.2em;
}

.hero .btn {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    width: 200px;
    background-color: #007BFF;
    color: white;
    font-size: 18px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.hero .btn:hover {
    background-color: #0056b3;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.service-item {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.service-item img {
    width: 100%;
    border-radius: 5px;
    margin-top: 15px;
}

#about {
    padding: 50px 0;
}

#about h2 {
    text-align: center;
    margin-bottom: 20px;
}

#contact {
    text-align: center;
    padding: 50px 0;
}

#contact h2 {
    margin-bottom: 20px;
}

.map iframe {
    width: 100%;
    height: 300px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

form {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0 auto;
    max-width: 600px;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    padding: 10px;
    background-color: #007BFF;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #0056b3;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 10px;
}

footer nav a {
    color: #007BFF;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

footer nav a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .top-bar {
        padding: 15px;
        flex-direction: column;
    }

    .logo img {
        height: 40px; 
        width: 100px;
    }

    .contact-info {
        flex-direction: column; 
        gap: 5px;
        margin-bottom: 10px;
    }

    .menu-list {
        display: none;
        flex-direction: column;
        background-color: #ccc;
        position: absolute;
        top: 60px;
        right: 10px;
        padding: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
    }

    .menu-list.open {
        display: flex; 
    }

    .menu-toggle {
        display: block; 
    }
}
