* {
    box-sizing:border-box;
    margin:0px;
    padding: 0px;
    text-decoration: none;

}

body {
    font-family: Arial, sans-serif;
    background-color: #e0e7e0;
}

/*.hamburger-menu {*/
/*    background: url('img/banner2.png') no-repeat center center/cover;*/
/*    width: 100%;*/
/*    height: 100vh;*/
/*}*/

nav {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .mainMenu {
    display: flex;
    list-style: none;
}

nav .mainMenu li a {
    display: inline-block;
    padding: 15px;
    text-decoration: none;
    /* text-transform: uppercase; */
    color: rgb(255, 255, 255);
    font-size: 18px;
    transition: 0.2s ease;
}

nav .mainMenu li a:hover {
    background: #45a049;
    border-radius: 5px;
    padding: 5px;
    margin: 15px auto;
}

nav .openMenu {
    font-size: 2rem;
    margin: 20px;
    display: none;
    cursor: pointer;
}

nav .mainMenu .closeMenu,
.icons i {
    font-size: 2rem;
    display: none;
    cursor: pointer;
}

.fa-facebook:hover {
    color: rgb(0, 110, 255);
}

.fa-twitter:hover {
    color: rgb(86, 154, 243);
}

.fa-instagram:hover {
    color: rgb(255, 0, 191);
}

.fa-github:hover {
    color: rgb(255, 123, 0);
}

.logo {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 33%;

}

nav .logo {
    margin: 6px;
    cursor: pointer;
    text-transform: uppercase;
}

#get-quote {

    display: block;
    width: 100%;
    padding: 0.4rem;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
    color: rgb(255, 255, 255);
    font-size: 18px;
    transition: 0.2s ease;
}



.dropdown {
    position: relative;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgb(67, 67, 70);
    padding: 0;
    margin: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 10px;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background-color: #f2f2f2;
}

.background {
    background: url(img/banner.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-image {
    flex: 1;
    padding: 0;
    text-align: center;
}

.banner-image img {
    max-width: 100%;
    height: auto;
    background-repeat: no-repeat;
}

.banner-text {
    flex: 1;
    padding: 2rem;
}

.banner-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #f5f5f5;
    border-radius: 10px;
    opacity: .92;
}

.banner-form input[type="text"],
.banner-form input[type="email"],
.banner-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.banner-form select {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
}

.custom-button {
    display: block;
    width: 100%;
    padding: 0.8rem;
    background-image: linear-gradient(to bottom, #66bb6a, #388e3c);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
}

.custom-button:hover {
    background-image: linear-gradient(to bottom, #388e3c, #66bb6a);
}

.headings {
    color: #333;
    font-size: 24px;
    margin: 10px 0;
    text-align: center;
}

.section {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
    /* Add some padding to create space for the shadow */
    border-radius: 10px;
    /* Add rounded corners for a better look */
    background-color: #4CAF50;
    ;
    /* Optional: Set the background color */

    /* Add an attractive box shadow */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* pop up form  */
button {
    display: block;
    margin: 10px auto;
}

/* Styles for the popup form */
.popupForm {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 999;
    max-width: 400px;
    width: 90%;
    display: none;
}

.popupForm h3 {
    margin-top: 0;
}

.popupForm input,
.popupForm select {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.popupForm input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
}

/* Styles for the close button */
.closeFormButton {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}

/* Styles for the backdrop */
.pageBackdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 998;
    display: none;
}

/* end */
.image-block {
    position: relative;
    /* width: calc(33.33% - 1rem); */
    width: 33%;
    height: 300px;
    margin-bottom: .5rem;
    overflow: hidden;
}

.image-block img {
    width: 100%;
    height: 300px;
    transition: transform 0.3s ease;
}

.image-block:hover img {
    transform: scale(1.1);
    filter: brightness(30%);
}

.image-block .image-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-block:hover .image-text {
    opacity: 1;
}

.image-block h1,
.image-block p {
    color: #fff;
    margin: 0;
    padding: 0.5rem;
}

/* Soocial Media Icons */

.social-icons {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.social-icons a {
    margin-bottom: 10px;
    color: #000;
    font-size: 24px;
    text-decoration: none;
}

.social-icons i {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-icons i.fa-facebook-f {
    background-color: #3b5998;
    color: #fff;
}

.social-icons i.fa-twitter {
    background-color: #1da1f2;
    color: #fff;
}

.social-icons i.fa-instagram {
    background-color: #e4405f;
    color: #fff;
}

.social-icons i.fa-whatsapp {
    background-color: #25D366;
    color: #fff;
}

.carousel-inner img {
    max-width: 100%;
    max-height: 400px;
    background-repeat: no-repeat;
}

.about_us {
    max-width: 1275px;
    margin: 0 auto;
    padding: 20px;
    text-align: justify;
}

.about_us h1 {
    color: #333;
    font-size: 24px;
    margin: 10px 0;
    text-align: center;
}

.about_us h2 {
    color: #333;
    font-size: 24px;
    margin: 10px 0;
    text-align: center;
}

.about_us p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.about_us li {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 20px;
}

/* FAQ Toggle*/
.faq_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.faq_container h1 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
}

h1 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;

}

.faq-toggle {
    cursor: pointer;
    margin-bottom: 10px;
    font-weight: bold;
    background-color: #f7f7f7;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    position: relative;
}

.faq-toggle:hover {
    background-color: #eaeaea;
}

.faq-answer {
    display: none;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f7f7f7;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-answer.show {
    display: block;
}

.toggle-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.toggle-button:before,
.toggle-button:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #999;
    transition: all 0.3s ease;
}

.toggle-button:before {
    top: 50%;
    transform: translateY(-50%);
}

.toggle-button:after {
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
}

.faq-toggle.open .toggle-button:after {
    transform: translateY(-50%) rotate(-90deg);
}

/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
}

.footer-top {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
    border-radius: 10px;
}

.footer-column {
    position: relative;
    /* width: calc(33.33% - 1rem); */
    width: 20%;
    height: auto;
    margin-bottom: .5rem;
    overflow: hidden;
}

.footer-column h3 {
    line-height: 1.7;
}

.footer-column p {
    line-height: 1.2;
    letter-spacing: 1.1;
    font-size: 14px;
}

.social-icon img {
    width: 30px;
    height: 30px;
}

.payment-icon {
    width: 40px;
    height: 25px;
}

.footer-bottom {
    padding: 5px;
}

.footer-links {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.scroll-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #000000;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 1000;
}

.scroll-to-top-btn:hover {
    background-color: #3cbd37;
}

/* end */
@media (max-width: 760px) {
    nav .mainMenu {
        height: 100vh;
        position: fixed;
        top: 0px;
        right: 0px;
        left: 0px;
        z-index: 10;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgb(0, 0, 0);
        transition: top 1s ease 0s;
        display: none;
    }

    nav .mainMenu .closeMenu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .logo img {
        width: 100%;

    }

    nav .openMenu {
        display: block;
    }

    nav .mainMenu li a:hover {
        background: none;
        color: rgb(255, 123, 0);
    }
    .image-block .image-text {
        opacity: 1;
   }
   .image-block img {
    transform: scale(1.1);
    filter: brightness(30%);
}

    .icons i {
        display: inline-block;
        padding: 12px;
    }

    .section {
        width: 100%;
        padding: 13px;
    }

    .image-block {
        position: relative;
        width: 100%;
        height: 300px;
        overflow: hidden;
    }

    .image-block img {
        width: 100%;
        height: 300px;
        transition: transform 0.3s ease;
    }

    .footer {
        background-color: #444444;
    }

    .footer-top {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        text-align: center;
        margin-bottom: 20px;
        width: 100%;
    }

    .footer-column h3 {
        margin-bottom: 10px;
    }

    .logo {
        width: 80px;
        margin-bottom: 10px;
    }

    .payment-icon {
        width: 40px;
        margin: 5px;
    }

    .social-icon {
        display: inline-block;
        margin: 5px;
    }

    .footer-bottom div {
        text-align: center;
        padding-top: 10px;
        margin: 15px;
        background-color: #464242;
    }

}