.main {
    width: 100%;
    height: 100%;
}


.navbar {
    background-color: white;
    height: 80px;
}

.navbar-brand {

    margin-left: 50px;
}

.navbar img {
    height: 70px;
    width: 100%;

}

.navbar-nav .nav-link {
    color: #495057;
    padding: 0.5rem 1rem;
    margin-left: 10px;
}

.carousel-item img {
    height: 500px;
    object-fit: cover;
    width: 100%;
}

.about {
    width: 100%;
    height: 450px;

    display: flex;
    margin-top: 30px;
}

.about2 {
    width: 50%;
    height: 100%;

}

.about2 img {
    width: 100%;
    height: 100%;
    padding: 10px;
}

.about2 h1 {
    text-align: center;
    margin-top: 50px;
}

.about2 p {
    margin-top: 60px;
    width: 90%;
    text-align: justify;
    margin-left: 40px;
    font-size: 20px;
}



/* Container Styles */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0px;
}

/* Section Title */
.section-title {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-size: 2em;
    font-weight: bold;
}

/* Services Section */
.services {
    background-color: gray;
    padding: 40px 0;
    border-radius: 8px;
    margin-top: 50px;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service-item {
    flex: 1 1 calc(33% - 20px);
    margin: 10px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;

}

.service-item h3 {
    margin-top: 0;
    color: black;
    font-size: 20px;
    margin-top: 15px;
    text-align: center;
}

.service-item p {
    margin: 10px 0 0;
    color: black;
}

.service-item  img {
    border-radius: 50%;
    width: 120px;
    margin-left: 80px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .service-item {
        flex: 1 1 100%;
    }
}

.contact {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px auto;
    max-width: 1200px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #f9f9f9;
}

.contact2 {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    padding: 10px;
    font-size: 16px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .contact {
        flex-direction: column;
    }

    .contact2 {
        width: 100%;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
    }
}




















@media screen and (min-width: 300px) and (max-width: 600px) {
    .main {
        width: 100%;
        height: 100%;
      
    }



    .navbar {
        background-color: white;
        height: auto;
        margin-top: 10px;
    }

    .navbar-brand {
        margin-left: 0px;
        color: #007bff;
    }

    .navbar img {
        height: 60px;
        width: 250px;
    }

    .navbar-nav .nav-link {
        color: #495057;
        padding: 0.5rem 1rem;
        margin-left: 20px;
    }

    .carousel-item img {
        height: 200px;
        object-fit: cover;
        width: 100%;
    }


    .about {
        width: 100%;
        height: auto;
        flex-direction: column;
        display: flex;
        margin-top: 30px;
    }

    .about2 {
        width: 100%;
        height: 100%;

    }

    .about2 img {
        width: 100%;
        height: 100%;
        padding: 10px;
    }

    .about2 h1 {
        text-align: center;
        margin-top: 20px;
    }

    .about2 p {
        margin-top: 20px;
        width: 90%;
        text-align: justify;
        margin-left: 10px;
        font-size: 20px;
    }








}



@media screen and (min-width: 600px) and (max-width: 1200px) {

    .main {
        width: 1200px;
        height: 100%;
    }


    .navbar {
        background-color: white;
        height: auto;
    }

    .navbar-brand {

        margin-left: 100px;
    }

    .navbar img {
        height: 60px;

    }

    .navbar-nav .nav-link {
        color: #495057;
        padding: 0.5rem 1rem;
        margin-left: 20px;
    }

    .carousel-item img {
        height: 500px;
        object-fit: cover;
        width: 100%;
    }

    .about {
        width: 100%;
        height: 450px;

        display: flex;
        margin-top: 30px;
    }

    .about2 {
        width: 50%;
        height: 100%;

    }

    .about2 img {
        width: 100%;
        height: 100%;
        padding: 10px;
    }

    .about2 h1 {
        text-align: center;
        margin-top: 50px;
    }

    .about2 p {
        margin-top: 60px;
        width: 90%;
        text-align: justify;
        margin-left: 40px;
        font-size: 20px;
    }



    /* Container Styles */
    .container {
        width: 100%;
        margin: 0 auto;
        padding: 0px;
    }

    /* Section Title */
    .section-title {
        text-align: center;
        color: #333;
        margin-bottom: 20px;
        font-size: 2em;
        font-weight: bold;
    }

    /* Services Section */
    .services {
        background-color: gray;
        padding: 40px 0;
        border-radius: 8px;
        margin-top: 50px;
    }

    .service-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .service-item {
        flex: 1 1 calc(33% - 20px);
        margin: 10px;
        padding: 20px;
        background-color: #004658;
        border-radius: 8px;

    }

    .service-item h3 {
        margin-top: 0;
        color: white;
    }

    .service-item p {
        margin: 10px 0 0;
        color: white;
    }
}




.whatsapp-btn {
    position: fixed;
    margin-left: -30px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #20b358;
    cursor: pointer;
}

.whatsapp-btn i {
    line-height: 60px;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-btn i {
        line-height: 50px;
    }
}

@media (max-width: 480px) {
    .whatsapp-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
        bottom: 10px;
        right: 10px;
    }

    .whatsapp-btn i {
        line-height: 40px;
    }
}