*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'poppins';
}
:root{
    --main-colour:#13C213;
    --sub-colour: #018036;
    --black-colour:#171717;
    --grey-colour: #6A6A6A;
    --white-colour:#FFFFFF;
}
body{
    overflow: auto;
}
.header-non h1{
    color: var(--white-colour);
    padding-top: 50px;
}
.header-non{
    background: url('../assets/up-head.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.contact-sect{
    display: flex;
    padding: 130px 100px;
    flex-direction: column;
}
.contact-bottom{
    display: flex;
    padding-top: 50px;
    gap: 50px;
}
.contact-bottom p{
    color: #909090;
    padding-top: 8px;
}
.contact-bottom-left{
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: space-between;
    flex: 1;
}
.contact-bottom-right{
    display: flex;
    flex: 1;
}

.contact-form{
    display: flex;
    width: 100%;
    height: 100%;
}
form{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
input{
    height: 48px;
    border: none;
    border-bottom: 1px solid var(--main-colour);
    font-size: 16px;
    padding: 20px;
    outline: none;
    margin-bottom: 16px;
    background-color: hwb(120 7% 24% / 0.064);
}
textarea{
    border: none;
    border-bottom: 1px solid var(--main-colour);
    font-size: 16px;
    padding: 20px;
    outline: none;
    margin-bottom: 16px;
    font-style: "poppins";
    background-color: hwb(120 7% 24% / 0.064);
}
textarea::placeholder {
    font-family: "poppins", sans-serif;
    font-size: 16px;                            
}
::placeholder{
    color: #909090;
}

.sub-btn{
    padding: 20px;
    background-color: var(--main-colour);
    color: var(--white-colour);
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

.contact-bottom-left h4::after{
    display: none;
    margin-left: 0;
}
.contact-bottom-left h4{
    padding-left: 0;
}
.ft-spec{
    justify-content: unset;
    padding-top: 16px;
    gap: 100px;
}
.mapper{
    width: 100%;
    display: flex;
    padding-top: 100px;
}
iframe{
    width: 100%;
    display: flex;
}
.contact-sect{
    overflow: hidden;
}


/* Responsive Codes */

/* Mobile styles (up to 480px) */
@media (max-width: 480px) {
    h1{
        font-size: 32px;
    }
    .cta-p{
        font-size: 30px;
        text-align: center;
    }
    h2{
        font-size: 20px;
        text-align: center;
    }
    .header-text{
        width: 100%;
    }
    .faq-top{
        padding-bottom: 20px;
    }
    .about-us{
        flex-direction: column-reverse;
        padding: 120px 20px;
        gap: 30px;
    }
    .about-us h2{
        text-align: left;
    }
    .about-body{
        font-size: 16px;
    }
    .about-us , .trusted , .services{
        padding: 30px 20px;
    }
    .call-to-action{
        padding: 50px 20px;
    }
    #faq{
        padding: 60px 20px;
    }
    .content{
        padding: 150px 20px 100px 20px;
    }
    .p-qst{
        font-size: 14px;
    }
    .services-last{
        padding-top: 20px;
    }
    .main-button, .sub-button{
        padding: 14px;
    }
    .about-us img{
        width: 100%;
    }
    .accordion-header{
        gap: 10px;
    }
    .accordion-content p{
        font-size: 14px;
    }
    .trusted-bottom img{
        width: 18%;
    }
    .evidence-box{
        display: flex;
        gap: 40px;
        padding: 18px 20px;
    }
    .evidence-box p{
        font-size: 20px;
    }
    .evidence-box .line{
        display: none;
    }
    footer{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 30px 20px;
        padding-bottom: 20px;
    }
    .footer-img{
        padding: 0px;
    }
    .footer-top{
        flex-direction: column;
    }
    .cta-p{
        line-height: 1;
        padding-top: 10px;
    }
    .ft-locate{
        width: 100%;
        padding-right: 0px;
    }
    .small{
        padding-top: 20px;
    }
    .header-text{
        height: 300px;
        padding-bottom: 90px;
    }
    .header-button-holder{
        padding-top: 20px;
    }
    .header-text{
        padding-bottom: 20px;
    }
    .footer-img img{
        width: 20%;
    }
    .services-top-right{
        display: none;
    }
    .small{
        font-size: 16px;
    }
    .header h1{
        text-align: center;
    }

    /* Menu Nav */
    .nav-button{
        display: none;
    }
    .nav-dis{
        display: none;
    }
    .menu-icon{
        display: flex;
    }
    .nav-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 50px;
        left: 0;
        background-color: #000000;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    }
    .nav-links a:hover {
        background-color: #101010;
    }
    .nav-links li {
        text-align: center;
        /* margin: 10px 0; */
    }
    
    .nav-links a {
        color: #fff;
        padding: 10px;
        text-decoration: none;
        display: block;
    }
    .show-nav {
        max-height: 800px;
        padding: 10px 0;
        transition: max-height 0.4s ease-in, padding 0.4s ease-in;
    }
    .contact-bottom{
        flex-direction: column-reverse;
    }
    .contact-sect h2{
        text-align: left;
    }
    .ft-spec{
        justify-content: space-between;

    }
    .contact-sect{
        padding:30px 20px;
    }
    .mapper{
        padding-top: 30px;
    }
    .ft-spec{
        gap: 50px;
    }

}

/* Tablet styles (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .nav-logo{
        width: 20%;
    }
    h1{
        font-size: 50px;
    }
    h2{
        text-align: center;
        font-size: 30px;
        padding-top: 10px;
    }
    .header-text{
        width: 85%;
    }
    .about-us{
        flex-direction: column-reverse;
        align-items: center;
        padding: 150px;
        padding-bottom: 0px;
    }
    .about-us h2{
        text-align: left;
    }
    .evidence-box{
        gap: 40px;
    }
    #faq{
        padding: 130px 100px;
    }
    .trusted-bottom img{
        width: 15%;
    }
    .footer-img{
        padding-right: 50px;
    }
    .content{
        padding-left: 50px;
        padding-bottom: 60px;
    }
    .header-text{
        height: 300px;
        padding-bottom: 90px;
    }
    .header-button-holder{
        padding-top: 20px;
    }

    .contact-bottom{
        flex-direction: column-reverse;
    }
    .contact-sect h2{
        text-align: left;
    }
    .ft-spec{
        justify-content: space-between;

    }

    /* Menu Nav */
    .nav-button{
        display: none;
    }
    .nav-dis{
        display: none;
    }
    .menu-icon{
        display: flex;
    }
    .nav-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 50px;
        left: 0;
        background-color: #000000;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    }
    .nav-links a:hover {
        background-color: #101010;
    }
    .nav-links li {
        text-align: center;
        /* margin: 10px 0; */
    }
    
    .nav-links a {
        color: #fff;
        padding: 10px;
        text-decoration: none;
        display: block;
    }
    .show-nav {
        max-height: 800px;
        padding: 10px 0;
        transition: max-height 0.4s ease-in, padding 0.4s ease-in;
    }
    
}

/* Desktop styles (769px to 1200px) */

@media (min-width: 769px) and (max-width: 1200px) {
    .nav-logo{
        width: 20%;
    }
    nav img{
        width: 100%;
    }
    h2{
        text-align: center;
    }
    .about-us h2{
        text-align: left;
    }
    .header-text{
        width: 90%;
    }
    .about-us{
        flex-direction: column-reverse;
        align-items: center;
        padding: 150px;
        padding-bottom: 0px;
    }
    #faq{
        padding: 130px 100px;
    }

}

/* Large Desktop styles (1201px and above) */
@media (min-width: 1201px) {


}
