*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    transition: .5s;
    text-decoration: none;
    font-family: poppins;
}

span{
    color: #65C246;
}

nav{
    width: 100%;
    height: 90px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 100px;
    padding-right: 100px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.first{
    width: 70px;
    height: 70px;
    background-image: url('../images/corporate-logo-removebg-preview.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.last{
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.navlinks{
    color: black;
}

.navlink{
    width: 100px;
    height: 50px;
    background-color: #65C246;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.navlinkk{
    width: 100px;
    height: 50px;
    border-radius: 20px;
    border: 2px solid #65C246;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.what-btn{
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: 70px;
    color: green;
    z-index: 1000;
}

header{
    width: 100%;
    height: 80vh;
    background-image: url('../images/n-head.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.dark{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.548);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-direction: column;
    color: white;
}

.head-head{
    font-size: 50px;
}

.head-text{
    width: 50%;
    font-size: 18px;
    line-height: 24px;
}

.contact{
    width: 20%;
    height: 40px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: #65C246;
}






.contact-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    padding: 0 20px;
}

.contact-info, .contact-form {
    flex: 1;
}

.contact-info h2, .contact-form h2 {
    margin-bottom: 30px;
    color: #333;
}

.info-item {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.submit-btn {
    background-color: #007bff;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.submit-btn:hover {
    background-color: #0056b3;
}

.map-section {
    padding: 60px 0;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-section{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    height: 400px;
}



.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    color: #333;
    margin-bottom: 10px;
}

.social-links {
    margin-top: 30px;
}

.social-icon {
    margin-right: 15px;
    color: #007bff;
    text-decoration: none;
}

.social-icon:hover {
    color: #0056b3;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}






footer{
    width: 100%;
    background-color: black;
    color: white;
    padding: 50px 100px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 10px;
}

.footer-section a {
    color: #808080;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #65C246;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo img {
    width: 150px;
    height: auto;
}

.app-buttons {
    display: flex;
    gap: 10px;
}

.app-btn {
    background-color: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
}

.footer-signup {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.signup-form {
    display: flex;
    gap: 10px;
}

.signup-form input {
    padding: 10px;
    border-radius: 5px;
    border: none;
}

.signup-form button {
    background-color: #65C246;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.certifications {
    display: flex;
    gap: 20px;
    align-items: center;
}

.certifications img {
    height: 60px;
    width: auto;
}

.copyright {
    text-align: center;
    color: #808080;
    padding-top: 20px;
    border-top: 1px solid #333;
}





#icon{
    display: none;
    visibility: hidden;
}

.menu{
    display: none;
    visibility: hidden;
}

.men{
    width: 20%;
    height: 400px;
    position: fixed;
    top: 100px;
    right: 300px;
    background-color: white;
    color: black;
    display: none;
}

.activee{
    display: flex;
    visibility: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
}

.navlins{
    font-size: 20px;
    color: black;
    font-weight: 700;
}






.menn{
    display: none;
    visibility: hidded;
}






@media (max-width: 768px) {


    .menn{
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        right: 0;
        background-color: #65C246;
        color: white;
        z-index: 10000;
        display: none;
    }

    .cancel{
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .activeee{
        display: flex;
        visibility: visible;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 60px;
    }

    .navlinks{
        display: none;
        visibility: hidden;
    }

    .navlinkk{
        display: none;
        visibility: hidden;
    }

    .navlink{
        display: none;
        visibility: hidden;
    }

    nav{
        padding-left: 20px;
        padding-right: 20px;
    }

    #icon{
        display: block;
        visibility: visible;
        font-size: 25px;
    }

    .menu{
        width: 70%;
        height: 100%;
        position: fixed;
        left: 0;
        top: 0;
        background-color: white;
        display: none;
    }

    .navlin{
        color: black;
        font-size: 22px;
    }

    .navli{
        width: 100px;
        height: 50px;
        border-radius: 20px;
        border: 2px solid #65C246;
        color: black;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navl{
        width: 100px;
        height: 50px;
        border-radius: 20px;
        background-color: black;
        color: #65C246;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .active{
        display: flex;
        visibility: visible;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 60px;
    }




    .faq-section{
        display: flex;
        flex-direction: column;
        height: fit-content;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .faq-container{
        width: 90%;
    }





    .head-head{
        font-size: 30px;
        width: 80%;
        text-align: center;
    }

    .head-text{
        width: 80%;
    }

    .contact{
        width: 80%;
    }




    .footer-content{
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .footer-bottom{
        display: flex;
        flex-direction: column;
    }

    footer{
        width: 100%;
        background-color: black;
        color: white;
        padding: 1px 50px 50px;
        padding-top: 100px;
    }
}