
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.hero-section {
    background: url('images/hero.png') no-repeat center center;
    background-size: cover;
   
}

.services-section .service-item {
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

    .services-section .service-item:hover {
        transform: translateY(-10px);
    }

.about-section img {
    border-radius: 10px;
}

.contact-section .map-container {
    border-radius: 10px;
    overflow: hidden;
}

footer {
    background: #333;
    color: #fff;
}


.header {
    background: url('images/Contact.jpg');
    background-size: cover;
    color: white;
    text-align: center;
    width: 100%;
    height: 60vh;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    justify-content: center;
    align-items: center;
   
}

        .header h1 {
            font-size: 2.5rem;
           
        }

        .header p {
            font-size: 1.1rem;
            margin: 10px 0 20px;
        }

    .btn-contact {
        background-color: #ff6f00;
        color: white;
        border: none;
        padding: 10px 20px;
        font-size: 1rem;
        cursor: pointer;
        text-transform: uppercase;
        border-radius: 5px;
        margin-top:120px;
    }

    .contact-container {
        display: flex;
        justify-content: space-between;
        padding: 40px 20px;
        gap: 20px;
        flex-wrap: wrap;
    }

    .contact-info, .contact-form {
        flex: 1;
        min-width: 300px;
        background: #f9f9f9;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

        .contact-info ul {
            list-style: none;
            padding: 0;
        }

            .contact-info ul li {
                margin-bottom: 20px;
                display: flex;
                align-items: center;
            }

                .contact-info ul li i {
                    font-size: 1.5rem;
                    margin-right: 10px;
                    color: #ff6f00;
                }

                .contact-info ul li span {
                    font-size: 1rem;
                }

        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        .contact-form button {
            background-color: #ff6f00;
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 1rem;
            cursor: pointer;
            text-transform: uppercase;
            border-radius: 5px;
        }

    .map-container {
        padding: 20px;
        text-align: center;
    }

        .map-container h2 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .map-container iframe {
            width: 100%;
            height: 300px;
            border: none;
            border-radius: 8px;
        }


@media (max-width: 768px) {
    .header {
        height: 40vh;
    }
}

.list-group-item {
    font-size: 1rem;
    border: none;
}

    .list-group-item:nth-child(odd) {
        background-color: #f9f9f9;
    }
