@import url('https://fonts.googleapis.com/css2?family=Figtree&display=swap');

html,
body {
    margin: 0;
    font-family: 'Figtree';
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-top: 4%;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0 20px;
}

.navbar .logo-left,
.navbar .logo-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
}

.logo-left {
    left: 20px;
}

.logo-right {
    right: 20px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    position: relative;
    padding: 8px 16px;
    color: #12A44F;
    text-decoration: none;
    font-weight: 300;
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-links a.active {
    background-color: #12A44F;
    color: white;
    border-color: #12A44F;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 50px;
}

.nav-links a:not(.active):hover {
    background-color: #e6f2e9;
    border-radius: 20px;
}

/* Hamburger menu icon */
.menu-icon {
    display: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
}

.menu-icon div {
    width: 100%;
    height: 3px;
    background-color: #12A44F;
    border-radius: 2px;
}

/* ABOUT US / DESCRIPTION PART */
#about_header {
    position: relative;
    height: 100vh;
    width: auto;
    margin-bottom: 10%;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
    z-index: 1;
    flex-wrap: wrap;
    row-gap: 30px;
    column-gap: 10%;
}

.logo-nhfc,
.logo-gtlic {
    height: auto;
    width: 30%;
}

.about_title {
    width: 100%;
    text-align: center;
    color: #12A44F;
    font-size: 4em;
    letter-spacing: 3px;
    order: -1;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: bolder;
}

.about_desc {
    position: relative;
    color: white;
    font-size: 1.6em;
    width: 75%;
    left: 13%;
    top: 7%;
}

.about_desc p {
    text-align: justify;
}

.nhfc,
.gtlic {
    font-weight: 600;
    letter-spacing: 1px;
}

.nhfc {
    color: #095222;
}

.gtlic {
    color: #E42424;
}

.about_bg {
    position: absolute;
    margin: 0;
    z-index: -1;
    width: 110%;
    
    top: 32%;
}

.line-logo {
    position: absolute;
    top: 0;
    left: -20%;
    width: 40%;

}

.line-logo1 {
    position: absolute;
    top: -8%;
    right: -30%;
    width: 40%;
}

/* ACHIEVEMENTS PART */
#achievements {
    position: relative;
    height: 100vh;
    width: auto;
    margin-bottom: 5%;
    padding-top: 2%;
}

.header_ach {
    display: flex;
    flex-wrap: wrap;
}

.ach_title {
    font-size: 4em;
    color: #12A44F;
    margin: auto;
    text-align: center;
}

.line1 {
    position: relative;
    left: 20%;
}

.line2 {
    position: relative;
    right: 20%;
}

.ach_desc {
    text-align: center;
    font-size: 1.5em;
    color: #5a5a5a;
    width: 60%;
    margin: 1% auto;
}

.description-container {
    display: flex;
    justify-content: center;
    gap: 7%;
    flex-wrap: wrap;
    margin: 5%;
    position: relative;
}

.description1,
.description2,
.description3 {
    width: 26%;
    margin: 0;
    text-align: center;
    box-sizing: border-box;
    font-size: 20px;
    color: #053114;
    font-weight: bolder;
}

.description-container img {
    width: 50%;
}

/* CREDO PART */
#credo {
    position: relative;
    height: auto;
    width: 100%;
    margin: auto;
}

.header_credo {
    display: flex;
    flex-wrap: wrap;
}

.credo_title {
    font-size: 4em;
    color: white;
    margin: auto;
    text-align: center;
}

.credo_line1 {
    position: relative;
    left: 28%;
}

.credo_line2 {
    position: relative;
    right: 28%;
}

.credo_bg {
    position: absolute;
    margin: 0;
    width: 100%;
    top: -15%;
    z-index: -1;
}

.credo_container {
    display: grid;
    grid-template-columns: 0.8fr 0.8fr 0.8fr;
    grid-template-rows: 0.8fr 0.8fr 0.8fr 0.8fr 0.8fr;
    gap: 20px 3%;
    grid-auto-flow: row;
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
    grid-template-areas:
        "credo_clients credo_desc1 credo_desc1"
        "credo_desc2 credo_desc2 credo_people"
        "credo_hands credo_desc3 credo_desc3"
        "credo_desc4 credo_desc4 credo_incen"
        "credo_loyal credo_desc5 credo_desc5";
    width: 80%;
    margin: 2% auto;
    font-size: 1.7em;
    color: white;
    letter-spacing: 1px;
    height: 75%;
}

.credo_container img {
    height: auto;
    width: 95%;
}

.main_sentence {
    color: #03200D;
}

.credo_clients {
    grid-area: credo_clients;
}

.credo_desc1 {
    grid-area: credo_desc1;
    text-align: left;
}

.credo_people {
    grid-area: credo_people;
}

.credo_desc2 {
    grid-area: credo_desc2;
    text-align: right;
}

.credo_hands {
    grid-area: credo_hands;
}

.credo_desc3 {
    grid-area: credo_desc3;
    text-align: left;
}

.credo_incen {
    grid-area: credo_incen;
}

.credo_desc4 {
    grid-area: credo_desc4;
    text-align: right;
}

.credo_loyal {
    grid-area: credo_loyal;
}

.credo_desc5 {
    grid-area: credo_desc5;
    text-align: left;
}

/* MISSION PART */

#mission {
    position: relative;
    height: auto;
    width: 100%;
    margin: 15% auto;
}

.mission_title {
    font-size: 4em;
    color: #12A44F;
    margin: auto;
    text-align: center;
}

.header_mission {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 3%;
}

.mission_line1 {
    position: relative;
    left: 28%;
}

.mission_line2 {
    position: relative;
    right: 28%;
}

.mission {
    width: 85%;
    margin: auto;
}

.mission li {
    color: #5a5a5a;
    font-size: 1.7em;
    text-align: justify;
}

.mission_bg {
    position: absolute;
    z-index: -2;
    top: -30%;
    width: 100%;
}

/* TESTIMONIALS PART */
#testimonials {
    position: relative;
    height: 210vh;
    width: 100%;
    margin-bottom: 100px;
}

.tstmnls {
    width: auto;
    height: 100vh;
    z-index: 0;
    top: 0;
}

.tstmnls_bg {
    position: absolute;
    z-index: -1;
    width: 100%;
    top: -5%;
}

.tstmnls_title {
    position: relative;
    width: fit-content;
    font-size: 4em;
    color: #ffffff;
    top: 15vh;
    left: 30vh;
    letter-spacing: 3px;
}

.tstmnls_desc {
    position: relative;
    color: #ffffff;
    width: 30%;
    font-size: 1.4rem;
    top: 15vh;
    left: 40vh;
}

.video_tstmnl {
    position: absolute;
    top: 20vh;
    right: 30vh;
    width: 450px;
    height: 253px;
    border-radius: 20px;
    scale: 1.2;
}

.dotted_white,
.dotted_white1 {
    position: absolute;
}

.dotted_white {
    top: 15vh;
    rotate: 90deg;
}

.dotted_white1 {
    right: 0;
    top: 35vh;
}

.photo_circle {
    position: relative;
    top: 25vh;
    left: 40vh;
    scale: 1.3;
}

.photo_circle2 {
    position: relative;
    top: -5vh;
    scale: 1.3;
    left: 73%;
}

.photo_circle3 {
    position: relative;
    top: -27vh;
    left: 40vh;
    scale: 1.3;
}

.photo_circle4 {
    position: relative;
    top: -55vh;
    scale: 1.3;
    left: 73%;
    top: -57vh;
}

.quote {
    position: relative;
    top: 3vh;
    left: 50vh;
    scale: 1.3;
}

.quote2 {
    position: relative;
    scale: 1.3;
    top: -20vh;
    left: 7vh;
}

.quote3 {
    position: relative;
    top: -50vh;
    left: 50vh;
    scale: 1.3;
    /* background-color: white; */
}

.quote4 {
    position: relative;
    scale: 1.3;
    top: -75vh;
    left: 7vh;
}

.quotes {
    position: relative;
    color: white;
    font-family: 'Figtree';
    font-size: 1.4em;
    width: 100vh;
    left: 83vh;
    text-align: justify;
}

.quotes2 {
    position: relative;
    color: white;
    font-family: 'Figtree';
    font-size: 1.4em;
    width: 100vh;
    top: -26vh;
    left: 40vh;
    text-align: justify;
}

.quotes3 {
    position: relative;
    color: white;
    font-family: 'Figtree';
    font-size: 1.4em;
    width: 100vh;
    left: 83vh;
    text-align: justify;
    top: -55vh;
}

.quotes4 {
    position: relative;
    color: white;
    font-family: 'Figtree';
    font-size: 1.4em;
    width: 100vh;
    top: -80vh;
    left: 40vh;
    text-align: justify;
}

.name {
    position: relative;
    color: white;
    font-size: 2.5em;
    left: 80vh;
    letter-spacing: 2px;
}

.name2 {
    position: relative;
    color: white;
    font-size: 2.5em;
    letter-spacing: 2px;
    left: 60vh;
    top: -28vh;
}

.name3 {
    position: relative;
    color: white;
    font-size: 2.5em;
    left: 80vh;
    letter-spacing: 2px;
    top: -55vh;
}

.name4 {
    position: relative;
    color: white;
    font-size: 2.5em;
    letter-spacing: 2px;
    left: 60vh;
    top: -82vh;
}

/* FOOTER */

#footer {
    background-image: url(../home/footer_bg.png);
    color: #ffffff;
    padding-top: 20px;
    padding-bottom: 10px;
    text-align: center;
    letter-spacing: 3px;
}

#footer button {
    font-family: 'Figtree';
    position: relative;
    z-index: 3;
    display: block;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 12px 20px;
    background-color: white;
    color: #12A44F;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.5em;
}

#footer a {
    text-decoration: none;
}

/* Responsive styles */
@media screen and (min-width: 1025px) and (max-width: 1440px) {

    html,
    body {
        overflow-x: hidden;
        margin: 0;
    }

    .logo-left,
    .logo-right {
        width: 12%;
        height: auto;
    }

    #about_header {
        position: relative;
        height: 1000px;
        width: auto;
        margin-bottom: 10px;
    }
    
    .header {
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto;
        width: 100%;
        z-index: 1;
        flex-wrap: wrap;
        row-gap: 30px;
        column-gap: 10%;
    }
    
    .logo-nhfc,
    .logo-gtlic {
        height: auto;
        width: 30%;
    }
    
    .about_title {
        width: 100%;
        text-align: center;
        color: #12A44F;
        font-size: 4em;
        letter-spacing: 3px;
        order: -1;
        margin-top: 0;
        margin-bottom: 0;
        font-weight: bolder;
    }
    
    .about_desc {
        position: relative;
        color: white;
        font-size: 1.6em;
        width: 75%;
        left: 13%;
        top: 30px;
    }
    
    .about_desc p {
        text-align: justify;
    }
    
    .nhfc,
    .gtlic {
        font-weight: 600;
        letter-spacing: 1px;
    }
    
    .nhfc {
        color: #095222;
    }
    
    .gtlic {
        color: #E42424;
    }
    
    .about_bg {
        position: absolute;
        margin: 0;
        z-index: -1;
        height:810px;
        width: auto;
        top: 190px;
    }
    
    .line-logo {
        position: absolute;
        top: 0;
        left: -20%;
        width: 40%;
    
    }
    
    .line-logo1 {
        position: absolute;
        top: -8%;
        right: -30%;
        width: 40%;
    }

    #achievements {
        position: relative;
        height: 850px;
        width: auto;
        margin-bottom: 10px;
        padding-top: 2%;
    }
    
    .header_ach {
        display: flex;
        flex-wrap: wrap;
    }
    
    .ach_title {
        font-size: 4em;
        color: #12A44F;
        margin: auto;
        text-align: center;
    }
    
    .line1 {
        position: relative;
        left: 15%;
    }
    
    .line2 {
        position: relative;
        right: 15%;
    }
    
    .ach_desc {
        text-align: center;
        font-size: 1.5em;
        color: #5a5a5a;
        width: 60%;
        margin: 1% auto;
    }
    
    .description-container {
        display: flex;
        justify-content: center;
        gap: 7%;
        flex-wrap: wrap;
        margin: 5%;
        position: relative;
    }
    
    .description1,
    .description2,
    .description3 {
        width: 26%;
        margin: 0;
        text-align: center;
        box-sizing: border-box;
        font-size: 20px;
        color: #053114;
        font-weight: bolder;
    }

    .description-container img {
        width: 60%;
    }

    #credo {
        position: relative;
        height: 1500px;
        width: 100%;
        margin: auto;
    }

    .header_credo {
        display: flex;
        flex-wrap: wrap;
        margin-bottom:100px;
    }

    .credo_title {
        font-size: 4em;
        color: white;
        margin: auto;
        text-align: center;
    }

    .credo_line1 {
        position: relative;
        left: 15%;
    }

    .credo_line2 {
        position: relative;
        right: 15%;
    }

    .credo_container {
        display: grid;
        grid-template-columns: 0.8fr 0.8fr 0.8fr;
        grid-template-rows: 0.8fr 0.8fr 0.8fr 0.8fr 0.8fr;
        gap: 20px 3%;
        grid-auto-flow: row;
        justify-content: center;
        align-content: center;
        justify-items: center;
        align-items: center;
        grid-template-areas:
            "credo_clients credo_desc1 credo_desc1"
            "credo_desc2 credo_desc2 credo_people"
            "credo_hands credo_desc3 credo_desc3"
            "credo_desc4 credo_desc4 credo_incen"
            "credo_loyal credo_desc5 credo_desc5";
        width: 80%;
        margin: 2% auto;
        font-size: 24px;
        color: white;
        letter-spacing: 1px;
        height: 75%;
    }

    .credo_bg {
        position: absolute;
        margin: 0;
        width: auto;
        height: 1650px;
        top: -160px;
        z-index: -1;
    }

    #mission {
        height: 650px;
        width: 100%;
        margin: auto;
        margin-top:0px;
    }

    .mission_line1 {
        position: relative;
        left: 20%;
    }
    
    .mission_line2 {
        position: relative;
        right: 20%;
    }
    .mission_bg {
        top: -240px;
        width: auto;
        height:1300px;
    }

    #testimonials {
        position: relative;
        height: 1950px;
        width: 100%;
        margin-bottom:10px;
    }
    
    .tstmnls {
        width: auto;
        height: 100%;
        z-index: 0;
        top: 0;
        margin-top: 0px;
    }

    .tstmnls_bg {
        position: absolute;
        width: auto;
        height:1900px;
        top: -80px;
    }
    
    .tstmnls_title {
        position: relative;
        width: fit-content;
        font-size: 4em;
        color: #ffffff;
        top: 15vh;
        left: 15%;
        letter-spacing: 3px;
    }
    
    .tstmnls_desc {
        position: relative;
        color: #ffffff;
        width: 28%;
        font-size: 1.5rem;
        top: 15vh;
        left: 20%;
    }
    
    .video_tstmnl {
        top: 10%;
        margin-right:-7%;
    }
    
    .dotted_white {
        top: 6%;
        rotate: 90deg;
        left: -5%;
    }
    
    .dotted_white1 {
        right: -5%;
        top: 35vh;
    }
    
    .photo_circle {
        position: relative;
        top: 12%;
        left: 10%;
        scale: 1.3;
    }
    
    .photo_circle2 {
        position: relative;
        top: 0;
        scale: 1.3;
        left: 73%;
    }
    
    .photo_circle3 {
        position: relative;
        top: -200px;
        left: 10%;
        scale: 1.3;
    }
    
    .photo_circle4 {
        position: relative;
        scale: 1.3;
        left: 73%;
        top: -400px;
    }
    
    .quote {
        position: relative;
        top: 30px;
        left: 230px;
        scale: 1.3;
    }
    
    .quote2 {
        position: relative;
        scale: 1.3;
        top: -190px;
        left: 60px;
    }
    
    .quote3 {
        position: relative;
        top: -410px;
        left: 230px;
        scale: 1.3;
        /* background-color: white; */
    }
    
    .quote4 {
        position: relative;
        scale: 1.3;
        top: -600px;
        left: 60px;
    }
    
    .quotes {
        position: relative;
        color: white;
        font-family: 'Figtree';
        font-size: 1.4em;
        width: 40%;
        left: 500px;
        text-align: justify;
    }
    
    .quotes2 {
        position: relative;
        color: white;
        font-family: 'Figtree';
        font-size: 1.4em;
        width: 40%;
        top: -230px;
        left: 330px;
        text-align: justify;
    }
    
    .quotes3 {
        position: relative;
        color: white;
        font-family: 'Figtree';
        font-size: 1.4em;
        width: 40%;
        left: 500px;
        text-align: justify;
        top: -450px;
    }
    
    .quotes4 {
        position: relative;
        color: white;
        font-family: 'Figtree';
        font-size: 1.4em;
        width: 40%;
        top: -80vh;
        left: 330px;
        text-align: justify;
    }
    
    .name {
        position: relative;
        color: white;
        font-size: 2.5em;
        left: 40%;
        letter-spacing: 2px;
    }
    
    .name2 {
        position: relative;
        color: white;
        font-size: 2.5em;
        letter-spacing: 2px;
        left: 21%;
        top: -28vh;
    }
    
    .name3 {
        position: relative;
        color: white;
        font-size: 2.5em;
        left: 40%;
        letter-spacing: 2px;
        top: -55vh;
    }
    
    .name4 {
        position: relative;
        color: white;
        font-size: 2.5em;
        letter-spacing: 2px;
        left: 21%;
        top: -82vh;
    }

    #footer {
    background-image: url(../home/footer_bg.png);
    color: #ffffff;
    padding-top: 20px;
    padding-bottom: 10px;
    text-align: center;
    letter-spacing: 3px;
    margin-top:-100px
    }
    
}

@media screen and (min-width: 915px) and (max-width: 1024px) {

    html,
    body {
        overflow-x: hidden;
        margin: 0;
        height: auto;
        padding-bottom: 0;
    }

    .logo-left,
    .logo-right {
        width: 130px;
        height: auto;
    }
    .nav-links {
        gap: 10px;
    }

    #about_header {
        position: relative;
        height: 770px;
        width: auto;
        margin-bottom: 10px;
    }

    .header {
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto;
        width: 100%;
        z-index: 1;
        flex-wrap: wrap;
        row-gap: 30px;
        column-gap: 10%;
    }

    .logo-nhfc,
    .logo-gtlic {
        height: auto;
        width: 30%;
    }

    .about_title {
        width: 100%;
        text-align: center;
        color: #12A44F;
        font-size: 4em;
        letter-spacing: 3px;
        order: -1;
        margin-top: 0;
        margin-bottom: 0;
        font-weight: bolder;
    }

    .about_desc {
        position: relative;
        color: white;
        font-size: 1.3em;
        width: 85%;
        left: 8%;
        top: 30px;
    }

    .about_desc p {
        text-align: justify;
    }

    .nhfc,
    .gtlic {
        font-weight: 600;
        letter-spacing: 1px;
    }

    .about_bg {
        position: absolute;
        margin: 0;
        z-index: -1;
        height:620px;
        width: auto;
        top: 170px;
        left: -20%;
    }

    .line-logo {
        position: absolute;
        top: 30%;
        left: -20%;
        width: 40%;

    }

    .line-logo1 {
        position: absolute;
        top: 5%;
        right: -30%;
        width: 40%;
    }

    #achievements {
        position: relative;
        height: 600px;
        width: auto;
        margin-bottom: 10px;
    }

    .header_ach {
        display: flex;
        flex-wrap: wrap;
    }

    .ach_title {
        font-size: 4em;
        color: #12A44F;
        margin: auto;
        text-align: center;
    }

    .line1 {
        position: relative;
        left: 5%;
    }

    .line2 {
        position: relative;
        right: 5%;
    }

    .ach_desc {
        text-align: center;
        font-size: 1em;
        color: #5a5a5a;
        width: 60%;
        margin: 1% auto;
    }

    .description-container {
        display: flex;
        justify-content: center;
        gap: 5%;
        flex-wrap: wrap;
        margin: 5%;
        position: relative;
    }

    .description1,
    .description2,
    .description3 {
        width: 26%;
        margin: 0;
        text-align: center;
        box-sizing: border-box;
        font-size: 16px;
        color: #053114;
        font-weight: bolder;
    }

    .description-container img {
        width: 50%;
    }

    /* CREDO PART */
    #credo {
        position: relative;
        height: 1200px;
        width: 100%;
        margin: auto;
    }

    .header_credo {
        display: flex;
        flex-wrap: wrap;
    }

    .credo_title {
        font-size: 4em;
        color: white;
        margin: auto;
        text-align: center;
    }

    .credo_line1 {
        position: relative;
        left: 15%;
    }

    .credo_line2 {
        position: relative;
        right: 15%;
    }

    .credo_bg {
        position: absolute;
        margin: 0;
        width: auto;
        height: 1320px;
        top: -130px;
        z-index: -1;
        left: -5%;
    }

    .credo_container {
        display: grid;
        grid-template-columns: 0.5fr 0.5fr 0.5fr;
        grid-template-rows: 0.1fr 0.1fr 0.1fr 0.1fr 0.1fr;
        grid-auto-flow: row;
        justify-content: center;
        align-content: center;
        justify-items: center;
        align-items: center;
        grid-template-areas:
            "credo_clients credo_desc1 credo_desc1"
            "credo_desc2 credo_desc2 credo_people"
            "credo_hands credo_desc3 credo_desc3"
            "credo_desc4 credo_desc4 credo_incen"
            "credo_loyal credo_desc5 credo_desc5";
        width: 80%;
        margin: 0 auto;
        margin-top: 15%;
        font-size: 1.2em;
        color: white;
        letter-spacing: 1px;
        height: 60%;
    }

    .credo_container img {
        height: auto;
        width: 80%;
    }

    #mission {
        position: relative;
        height: 580px;
        width: 100%;
        margin: auto;
        margin-top:0px;
    }

    .mission_title {
        font-size: 4em;
        color: #12A44F;
        margin: auto;
        text-align: center;
    }

    .header_mission {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 3%;
    }

    .mission_line1 {
        position: relative;
        left: 15%;
    }

    .mission_line2 {
        position: relative;
        right: 15%;
    }

    .mission {
        width: 85%;
        margin: auto;
    }

    .mission li {
        color: #5a5a5a;
        font-size: 1.2em;
        text-align: justify;
    }

    .mission_bg {
        position: absolute;
        z-index: -2;
        top: -240px;
        width: auto;
        height:900px;
    }
    
    #testimonials {
        position: relative;
        height: 1450px;
        width: 100%;
        margin-bottom:10px;
    }
    
    .tstmnls {
        width: auto;
        height: auto;
        z-index: 0;
        top: 0;
        margin-top: 0px;
    }
    
    .tstmnls_bg {
        position: absolute;
        z-index: -1;
        width: auto;
        height:1500px;
        top: -80px;
    }

    .tstmnls_title {
        position: absolute;
        width: fit-content;
        font-size: 4em;
        color: #ffffff;
        top: 0;
        left: 10%;
        letter-spacing: 3px;
    }
    
    .tstmnls_desc {
        position: absolute;
        color: #ffffff;
        width: 40%;
        font-size: 1.4rem;
        top: 10%;
        left: 15%;
    }
    
    .video_tstmnl {
        position: absolute;
        top: 10%;
        right: 8%;
        width: 300px;
        height: 165px;
        border-radius: 20px;
        scale: 1.2;
    }

    .dotted_white,
    .dotted_white1 {
        position: absolute;
    }

    .dotted_white {
        top: 2.5%;
        rotate: 90deg;
        left: -15%;
    }

    .dotted_white1 {
        right: -2%;
        top: 35%;
        scale: 0.9;
    }

    .photo_circle {
        position: absolute;
        top: 25%;
        left: 10%;
        scale: 1.2;
    }

    .photo_circle2 {
        position: absolute;
        top: 42%;
        scale: 1.2;
        left: 70%;
    }

    .photo_circle3 {
        position: absolute;
        top: 61%;
        left: 10%;
        scale: 1.2;
    }

    .photo_circle4 {
        position: absolute;
        scale: 1.2;
        left: 71%;
        top: 77%;
    }

    .quote {
        position: absolute;
        top: 24%;
        left: 35%;
        scale: 1.3;
    }

    .quote2 {
        position: absolute;
        scale: 1.3;
        top: 42%;
        left: 7%;
    }

    .quote3 {
        position: absolute;
        top: 60%;
        left: 33%;
        scale: 1.3;
    }

    .quote4 {
        position: absolute;
        scale: 1.3;
        top: 78%;
        left: 7%;
    }

    .quotes {
        position: absolute;
        color: white;
        font-family: 'Figtree';
        font-size: 1.4em;
        width: 50%;
        left: 40%;
        top: 23%;
        text-align: justify;
    }

    .quotes2 {
        position: absolute;
        color: white;
        font-family: 'Figtree';
        font-size: 1.4em;
        width: 50%;
        top: 41%;
        left: 12%;
        text-align: justify;
    }

    .quotes3 {
        position: absolute;
        color: white;
        font-family: 'Figtree';
        font-size: 1.4em;
        width: 50%;
        left: 38%;
        text-align: justify;
        top: 59%;
    }

    .quotes4 {
        position: absolute;
        color: white;
        font-family: 'Figtree';
        font-size: 1.4em;
        width: 50%;
        top: 77%;
        left: 12%;
        text-align: justify;
    }

    .name {
        position: absolute;
        color: white;
        font-size: 2.2em;
        left: 40%;
        top: 35%;
        letter-spacing: 2px;
    }

    .name2 {
        position: absolute;
        color: white;
        font-size: 2.2em;
        letter-spacing: 2px;
        left: 12%;
        top: 53%;
    }

    .name3 {
        position: absolute;
        color: white;
        font-size: 2.2em;
        left: 38%;
        letter-spacing: 2px;
        top: 71%;
    }

    .name4 {
        position: absolute;
        color: white;
        font-size: 2.2em;
        letter-spacing: 2px;
        left: 12%;
        top: 88%;
    }

}

@media screen and (min-width: 500px) and (max-width: 915px) {
    html, body {
        overflow-x: hidden;
        padding-top: 50px;
    }

    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: space-between;
        ;
        height: 60px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 0 15px;
    }

    .navbar .logo-left {
        position: static;
        left: auto;
        transform: none;
        height: 40px;
        width: auto;
        order: 1;
        margin-right: 10px;
    }

    .navbar .logo-right {
        position: static;
        right: auto;
        transform: none;
        height: 40px;
        width: auto;
        order: 2;
        margin-right: auto;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        box-shadow: none;
        border-radius: 0;
        gap: 0;
        z-index: 999;
        order: 4;
        box-sizing: border-box;
    }

    .nav-links.show {
        max-height: 400px;
        overflow-y: auto;
        overflow-x: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 12px 12px;
        padding: 20px 0;
    }

    .nav-links a {
        padding: 15px 20px;
        width: calc(100% - 40px);
        max-width: 100%;
        text-align: center;
        border-radius: 0;
        font-weight: 500;
        font-size: 18px;
        color: #12A44F;
        background: none;
        display: block;
        margin: 5px 20px;
        box-sizing: border-box;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-links a.active {
        background-color: #12A44F;
        color: white;
        border-radius: 25px;
        font-weight: 600;
        padding-bottom: 20px;
        
    }

    .nav-links a:not(.active):hover {
        background-color: #e6f2e9;
        border-radius: 25px;
    }

    .menu-icon {
        display: flex;
        position: relative;
        width: 30px;
        height: 24px;
        cursor: pointer;
        flex-shrink: 0;
        order: 3;
        background-color: transparent;
        justify-content: center;
        align-items: center;
        top: 1.5vh;
    }

    .menu-icon span,
    .menu-icon::before,
    .menu-icon::after {
        display: block;
        width: 30px;
        height: 3px;
        background-color: #12A44F;
        border-radius: 1px;
        transition: all 0.3s ease;
        position: absolute;
        left: 0;
    }

    .menu-icon::before,
    .menu-icon::after {
        content: '';
    }

    .menu-icon::before {
        top: 0;
    }

    .menu-icon span {
        top: 50%;
        transform: translateY(-50%);
    }

    .menu-icon::after {
        bottom: 0;
    }

    .menu-icon.active span {
        opacity: 0;
    }

    .menu-icon.active::before {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .menu-icon.active::after {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }

    #about_header {
        position: relative;
        height: 800px;
        width: auto;
        margin-bottom: 10px;
    }
    
    .header {
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto;
        width: 100%;
        z-index: 1;
        flex-wrap: wrap;
        row-gap: 30px;
        column-gap: 10%;
    }
    
    .logo-nhfc,
    .logo-gtlic {
        height: auto;
        width: 30%;
    }
    
    .about_title {
        width: 100%;
        text-align: center;
        color: #12A44F;
        font-size: 4em;
        letter-spacing: 3px;
        order: -1;
        margin-top: 0;
        margin-bottom: 0;
        font-weight: bolder;
    }
    
    .about_desc {
        position: relative;
        color: white;
        font-size: 1.2em;
        width: 80%;
        left: 10%;
        top: 30px;
    }
    
    .about_desc p {
        text-align: justify;
    }
    
    .nhfc,
    .gtlic {
        font-weight: 600;
        letter-spacing: 1px;
    }
    
    .nhfc {
        color: #095222;
    }
    
    .gtlic {
        color: #E42424;
    }
    
    .about_bg {
        position: absolute;
        margin: 0;
        z-index: -1;
        height:670px;
        width: auto;
        top: 150px;
        left: -20%;
    }

    #achievements {
        position: relative;
        height: 550px;
        width: auto;
        margin-bottom: 10px;
    }

    .header_ach {
        display: flex;
        flex-wrap: wrap;
    }

    .ach_title {
        font-size: 2.8em;
        color: #12A44F;
        margin: auto;
        text-align: center;
    }

    .line1 {
        position: relative;
        left: 5%;
        scale: 0.9;
    }

    .line2 {
        position: relative;
        right: 5%;
        scale: 0.9;
    }

    .ach_desc {
        text-align: center;
        font-size: 0.8em;
        color: #5a5a5a;
        width: 60%;
        margin: 1% auto;
    }

    .description-container {
        display: flex;
        justify-content: center;
        gap: 8%;
        flex-wrap: wrap;
        margin: 5%;
        position: relative;
    }

    .description1,
    .description2,
    .description3 {
        width: 25%;
        margin: 0;
        text-align: center;
        box-sizing: border-box;
        font-size: 14px;
        color: #053114;
        font-weight: bolder;
    }
    .description-container img {
        width: 65%;
    }

    #credo {
        position: relative;
        height: 1100px;
        width: 100%;
        margin: auto;
    }

    .header_credo {
        display: flex;
        flex-wrap: wrap;
    }

    .credo_title {
        font-size: 3.5em;
        color: white;
        margin: auto;
        text-align: center;
    }

    .credo_line1 {
        position: relative;
        left: 10%;
        scale: 0.9;
    }

    .credo_line2 {
        position: relative;
        right: 10%;
        scale: 0.9;
    }

    .credo_bg {
        position: absolute;
        margin: 0;
        width: auto;
        height: 1230px;
        top: -130px;
        z-index: -1;
        left: -5%;
    }

    .credo_container {
        display: grid;
        grid-template-columns: 0.5fr 0.5fr 0.5fr;
        grid-template-rows: 0.1fr 0.1fr 0.1fr 0.1fr 0.1fr;
        grid-auto-flow: row;
        justify-content: center;
        align-content: center;
        justify-items: center;
        align-items: center;
        grid-template-areas:
            "credo_clients credo_desc1 credo_desc1"
            "credo_desc2 credo_desc2 credo_people"
            "credo_hands credo_desc3 credo_desc3"
            "credo_desc4 credo_desc4 credo_incen"
            "credo_loyal credo_desc5 credo_desc5";
        width: 90%;
        margin: 0 auto;
        margin-top: 20%;
        font-size: 1.1em;
        color: white;
        letter-spacing: 1px;
        height: 60%;
    }

    .credo_container img {
        height: auto;
        width: 80%;
    }

    #mission {
        position: relative;
        height: 600px;
        width: 100%;
        margin: auto;
        margin-top:0px;
    }

    .mission_title {
        font-size: 3.5em;
        color: #12A44F;
        margin: auto;
        text-align: center;
    }

    .header_mission {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 3%;
    }

    .mission_line1 {
        position: relative;
        left: 8%;
        scale: 0.9;
    }

    .mission_line2 {
        position: relative;
        right: 8%;
        scale: 0.9;
    }

    .mission {
        width: 85%;
        margin: auto;
    }

    .mission li {
        color: #5a5a5a;
        font-size: 1.2em;
        text-align: justify;
    }

    .mission_bg {
        position: absolute;
        z-index: -2;
        top: -110px;
        width: auto;
        height:740px;
    }

    #testimonials {
        position: relative;
        height: 1300px;
        width: 100%;
        margin-bottom:10px;
    }
    
    .tstmnls {
        width: auto;
        height: auto;
        z-index: 0;
        top: 0;
        margin-top: 0px;
    }
    
    .tstmnls_bg {
        position: absolute;
        z-index: -1;
        width: auto;
        height:1330px;
        top: -80px;
    }

    .tstmnls_title {
        position: absolute;
        width: fit-content;
        font-size: 3.5em;
        color: #ffffff;
        top: 0;
        left: 10%;
        letter-spacing: 3px;
    }
    
    .tstmnls_desc {
        position: absolute;
        color: #ffffff;
        width: 35%;
        font-size: 1.2rem;
        top: 8%;
        left: 13%;
    }
    
    .video_tstmnl {
        position: absolute;
        top: 10%;
        right: 11%;
        width: 280px;
        height: 155px;
        border-radius: 20px;
        scale: 1.2;
    }

    .dotted_white,
    .dotted_white1 {
        position: absolute;
    }

    .dotted_white {
        top: 2%;
        rotate: 90deg;
        left: -25%;
    }

    .dotted_white1 {
        right: -4%;
        top: 31%;
        scale: 0.8;
    }

    .photo_circle {
        position: absolute;
        top: 23%;
        left: 7%;
        scale: 1;
    }

    .photo_circle2 {
        position: absolute;
        top: 40%;
        scale: 1;
        left: 65%;
    }

    .photo_circle3 {
        position: absolute;
        top: 59%;
        left: 7%;
        scale: 1;
    }

    .photo_circle4 {
        position: absolute;
        scale: 1;
        left: 66%;
        top: 75%;
    }

    .quote {
        position: absolute;
        top: 23%;
        left: 32%;
        scale: 1.1;
    }

    .quote2 {
        position: absolute;
        scale: 1.1;
        top: 40%;
        left: 5%;
    }

    .quote3 {
        position: absolute;
        top: 59%;
        left: 33%;
        scale: 1.1;
    }

    .quote4 {
        position: absolute;
        scale: 1.1;
        top: 75%;
        left: 5%;
    }

    .quotes {
        position: absolute;
        color: white;
        font-family: 'Figtree';
        font-size: 1.2em;
        width: 50%;
        left: 38%;
        top: 23%;
        text-align: justify;
    }

    .quotes2 {
        position: absolute;
        color: white;
        font-family: 'Figtree';
        font-size: 1.2em;
        width: 50%;
        top: 39%;
        left: 11%;
        text-align: justify;
    }

    .quotes3 {
        position: absolute;
        color: white;
        font-family: 'Figtree';
        font-size: 1.2em;
        width: 50%;
        left: 38%;
        text-align: justify;
        top: 58%;
    }

    .quotes4 {
        position: absolute;
        color: white;
        font-family: 'Figtree';
        font-size: 1.2em;
        width: 50%;
        top: 75%;
        left: 10%;
        text-align: justify;
    }

    .name {
        position: absolute;
        color: white;
        font-size: 2em;
        left: 38%;
        top: 34%;
        letter-spacing: 2px;
    }

    .name2 {
        position: absolute;
        color: white;
        font-size: 1.6em;
        letter-spacing: 2px;
        left: 10%;
        top: 52%;
    }

    .name3 {
        position: absolute;
        color: white;
        font-size: 2em;
        left: 38%;
        letter-spacing: 2px;
        top: 69%;
    }

    .name4 {
        position: absolute;
        color: white;
        font-size: 1.6em;
        letter-spacing: 2px;
        left: 9%;
        top: 87.5%;
    }
}

@media screen and (min-width: 376px) and (max-width: 500px) {
    html, body {
        overflow-x: hidden;
        padding-top: 50px;
    }

    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 60px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 0 15px;
    }

    .navbar .logo-left {
        position: static;
        left: auto;
        transform: none;
        height: 30px;
        width: auto;
        order: 1;
        margin-right: 10px;
    }

    .navbar .logo-right {
        position: static;
        right: auto;
        transform: none;
        height: 30px;
        width: auto;
        order: 2;
        margin-right: auto;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        box-shadow: none;
        border-radius: 0;
        gap: 0;
        z-index: 999;
        order: 4;
        box-sizing: border-box;
    }

    .nav-links.show {
        max-height: 400px;
        overflow-y: auto;
        overflow-x: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 12px 12px;
        padding: 20px 0;
    }

    .nav-links a {
        padding: 15px 20px;
        width: calc(100% - 40px);
        max-width: 100%;
        text-align: center;
        border-radius: 0;
        font-weight: 500;
        font-size: 18px;
        color: #12A44F;
        background: none;
        display: block;
        margin: 5px 20px;
        box-sizing: border-box;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-links a.active {
        background-color: #12A44F;
        color: white;
        border-radius: 25px;
        font-weight: 600;
        padding-bottom: 20px;
        
    }

    .nav-links a:not(.active):hover {
        background-color: #e6f2e9;
        border-radius: 25px;
    }

    .menu-icon {
        display: flex;
        position: relative;
        width: 30px;
        height: 24px;
        cursor: pointer;
        flex-shrink: 0;
        order: 3;
        background-color: transparent;
        justify-content: center;
        align-items: center;
        top: 1.5vh;
    }

    .menu-icon span,
    .menu-icon::before,
    .menu-icon::after {
        display: block;
        width: 30px;
        height: 3px;
        background-color: #12A44F;
        border-radius: 1px;
        transition: all 0.3s ease;
        position: absolute;
        left: 0;
    }

    .menu-icon::before,
    .menu-icon::after {
        content: '';
    }

    .menu-icon::before {
        top: 0;
    }

    .menu-icon span {
        top: 50%;
        transform: translateY(-50%);
    }

    .menu-icon::after {
        bottom: 0;
    }

    .menu-icon.active span {
        opacity: 0;
    }

    .menu-icon.active::before {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .menu-icon.active::after {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }

    #about_header {
        position: relative;
        height: 600px;
        width: auto;
        margin-bottom: 10px;
    }
    
    .header {
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto;
        width: 100%;
        z-index: 1;
        flex-wrap: wrap;
        row-gap: 30px;
        column-gap: 10%;
    }
    
    .logo-nhfc,
    .logo-gtlic {
        height: auto;
        width: 40%;
    }
    
    .about_title {
        width: 100%;
        text-align: center;
        color: #12A44F;
        font-size: 3em;
        letter-spacing: 3px;
        order: -1;
        margin-top: 0;
        margin-bottom: 0;
        font-weight: bolder;
    }
    
    .about_desc {
        position: relative;
        color: white;
        font-size: 0.8em;
        width: 80%;
        left: 10%;
        top: 30px;
    }
    
    .about_desc p {
        text-align: justify;
    }
    
    .nhfc,
    .gtlic {
        font-weight: 600;
        letter-spacing: 1px;
    }
    
    .nhfc {
        color: #095222;
    }
    
    .gtlic {
        color: #E42424;
    }
    
    .about_bg {
        position: absolute;
        margin: 0;
        z-index: -1;
        height:490px;
        width: auto;
        top: 130px;
        left: -20%;
    }

    #achievements {
        position: relative;
        height: 500px;
        width: auto;
    }

    .header_ach {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 8%;
    }

    .ach_title {
        font-size: 1.8em;
        color: #12A44F;
        margin: auto;
        text-align: center;
    }

    .line1 {
        position: relative;
        left: 5%;
        width: 50px;
    }

    .line2 {
        position: relative;
        right: 5%;
        width: 50px;
    }

    .ach_desc {
        text-align: center;
        font-size: 0.6em;
        color: #5a5a5a;
        width: 60%;
        margin: 1% auto;
    }

    .description-container {
        display: flex;
        justify-content: center;
        gap: 8%;
        flex-wrap: wrap;
        margin: 1%;
        position: relative;
    }

    .description1,
    .description2,
    .description3 {
        width: 25%;
        margin: 0;
        text-align: center;
        box-sizing: border-box;
        font-size: 10px;
        color: #053114;
        font-weight: bolder;
    }
    .description-container img {
        width: 65%;
    }

    #credo {
        position: relative;
        height: 1000px;
        width: 100%;
        margin: auto;
    }

    .header_credo {
        display: flex;
        flex-wrap: wrap;
        position: relative;
        top: -3%;
    }

    .credo_title {
        font-size: 1.8em;
        color: white;
        margin: auto;
        margin-top:-10%;
        text-align: center;
    }

    .credo_line1 {
        position: relative;
        left: 10%;
        width: 55px;
    }

    .credo_line2 {
        position: relative;
        right: 10%;
        width: 55px;
    }

    .credo_bg {
        position: absolute;
        margin: 0;
        width: auto;
        height:1120px;
        top: -20%;
        z-index: -1;
        left: -30%;
    }

    .credo_container {
        display: grid;
        grid-template-columns: 0.5fr 0.5fr 0.5fr;
        grid-template-rows: 0.1fr 0.1fr 0.1fr 0.1fr 0.1fr;
        grid-auto-flow: row;
        justify-content: center;
        align-content: center;
        justify-items: center;
        align-items: center;
        grid-template-areas:
            "credo_clients credo_desc1 credo_desc1"
            "credo_desc2 credo_desc2 credo_people"
            "credo_hands credo_desc3 credo_desc3"
            "credo_desc4 credo_desc4 credo_incen"
            "credo_loyal credo_desc5 credo_desc5";
        width: 90%;
        margin: 0 auto;
        margin-top: 30%;
        font-size: 0.8em;
        color: white;
        letter-spacing: 1px;
        height: 60%;
    }

    .credo_container img {
        height: auto;
        width: 80%;
    }

    #mission {
        position: relative;
        height: 500px;
        width: 100%;
        margin: auto;
        margin-top:0px;
    }

    .mission_title {
        font-size: 1.8em;
        color: #12A44F;
        margin: auto;
        text-align: center;
    }

    .header_mission {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        top: -7%;
    }

    .mission_line1 {
        position: relative;
        left: 8%;
        width: 55px;
    }

    .mission_line2 {
        position: relative;
        right: 8%;
        width: 55px;
    }

    .mission {
        width: 90%;
        margin: 0 auto;
        margin-bottom: 5%;
        position: absolute;
        top: 0;
        left: 3%;
    }

    .mission li {
        color: #5a5a5a;
        font-size: 0.8em;
        text-align: justify;
        
    }

    .mission_bg {
        position: absolute;
        z-index: -2;
        top: -130px;
        width: auto;
        height:650px;
        left: -50%;
    }

    #testimonials {
        position: relative;
        height: 1000px;
        width: 100%;
        margin-bottom:10px;
    }
    
    .tstmnls {
        width: auto;
        height: auto;
        z-index: 0;
        top: 0;
        margin-top: 0px;
    }
    
    .tstmnls_bg {
        position: absolute;
        z-index: -1;
        width: auto;
        height:1080px;
        top: -7%;
    }

    .tstmnls_title {
        position: absolute;
        width: fit-content;
        font-size: 1.8em;
        color: #ffffff;
        top: 1%;
        left: 10%;
        letter-spacing: 3px;
    }
    
    .tstmnls_desc {
        position: absolute;
        color: #ffffff;
        width: 80%;
        font-size: 0.8em;
        top: 6%;
        left: 11%;
        text-align: justify;
    }
    
    .video_tstmnl {
        position: absolute;
        top: 150px;
        right: 15%;
        width: 200px;
        height: 110px;
        border-radius: 20px;
        scale: 1.2;
    }

    .dotted_white,
    .dotted_white1 {
        position: absolute;
    }

    .dotted_white {
        width: 100px;
        position: absolute;
        top: 8.5%;
    }

    .dotted_white1 {
        visibility: hidden;
    }

    .photo_circle {
        position: absolute;
        top: 26%;
        left: -20px;
        scale: 0.7;
    }

    .photo_circle2 {
        position: absolute;
        top: 43%;
        scale: 0.7;
        left: 55%;
    }

    .photo_circle3 {
        position: absolute;
        top: 61%;
        left: -20px;
        scale: 0.7;
    }

    .photo_circle4 {
        position: absolute;
        scale: 0.7;
        left: 55%;
        top: 77%;
    }

    .quote {
        position: absolute;
        top: 280px;
        left: 35%;
        scale: 0.8;
    }

    .quote2 {
        position: absolute;
        scale: 0.8;
        top: 440px;
        left: 3%;
    }

    .quote3 {
        position: absolute;
        top: 635px;
        left: 35%;
        scale: 0.8;
    }

    .quote4 {
        position: absolute;
        scale: 0.8;
        top: 800px;
        left: 3%;
    }

    .quotes {
        position: absolute;
        color: white;
        font-family: 'Figtree';
        font-size: 0.8em;
        width: 45%;
        left: 44%;
        top: 280px;
        text-align: justify;
    }

    .quotes2 {
        position: absolute;
        color: white;
        font-family: 'Figtree';
        font-size: 0.8em;
        width: 45%;
        top: 460px;
        left: 11%;
        text-align: justify;
    }

    .quotes3 {
        position: absolute;
        color: white;
        font-family: 'Figtree';
        font-size: 0.8em;
        width: 45%;
        left: 44%;
        text-align: justify;
        top: 620px;
    }

    .quotes4 {
        position: absolute;
        color: white;
        font-family: 'Figtree';
        font-size: 0.8em;
        width: 45%;
        top: 790px;
        left: 13%;
        text-align: justify;
    }

    .name {
        position: absolute;
        color: white;
        font-size: 1em;
        left: 44%;
        top: 420px;
        letter-spacing: 2px;
    }

    .name2 {
        position: absolute;
        color: white;
        font-size: 1em;
        letter-spacing: 2px;
        left: 10%;
        top: 590px;
    }

    .name3 {
        position: absolute;
        color: white;
        font-size: 1em;
        left: 44%;
        letter-spacing: 2px;
        top: 760px;
    }

    .name4 {
        position: absolute;
        color: white;
        font-size: 1em;
        letter-spacing: 2px;
        left: 9%;
        top: 945px;
    }
    #footer {
        font-size: 0.7em;
        letter-spacing: 0.5px;
    }
    #footer button {
        margin-top: 8px;
        margin-bottom: 8px;
    }
}

@media screen and (max-width: 376px) {
    html, body {
        overflow-x: hidden;
        padding-top: 50px;
    }

    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: space-between;
        ;
        height: 60px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 0 15px;
    }

    .navbar .logo-left {
        position: static;
        left: auto;
        transform: none;
        height: 25px;
        width: auto;
        order: 1;
        margin-right: 10px;
    }

    .navbar .logo-right {
        position: static;
        right: auto;
        transform: none;
        height: 25px;
        width: auto;
        order: 2;
        margin-right: auto;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        box-shadow: none;
        border-radius: 0;
        gap: 0;
        z-index: 999;
        order: 4;
        box-sizing: border-box;
    }

    .nav-links.show {
        max-height: 400px;
        overflow-y: auto;
        overflow-x: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 12px 12px;
        padding: 20px 0;
    }

    .nav-links a {
        padding: 15px 20px;
        width: calc(100% - 40px);
        max-width: 100%;
        text-align: center;
        border-radius: 0;
        font-weight: 500;
        font-size: 18px;
        color: #12A44F;
        background: none;
        display: block;
        margin: 5px 20px;
        box-sizing: border-box;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-links a.active {
        background-color: #12A44F;
        color: white;
        border-radius: 25px;
        font-weight: 600;
        padding-bottom: 20px;
        
    }

    .nav-links a:not(.active):hover {
        background-color: #e6f2e9;
        border-radius: 25px;
    }

    .menu-icon {
        display: flex;
        position: relative;
        width: 30px;
        height: 24px;
        cursor: pointer;
        flex-shrink: 0;
        order: 3;
        background-color: transparent;
        justify-content: center;
        align-items: center;
        top: 1.5vh;
    }

    .menu-icon span,
    .menu-icon::before,
    .menu-icon::after {
        display: block;
        width: 30px;
        height: 3px;
        background-color: #12A44F;
        border-radius: 1px;
        transition: all 0.3s ease;
        position: absolute;
        left: 0;
    }

    .menu-icon::before,
    .menu-icon::after {
        content: '';
    }

    .menu-icon::before {
        top: 0;
    }

    .menu-icon span {
        top: 50%;
        transform: translateY(-50%);
    }

    .menu-icon::after {
        bottom: 0;
    }

    .menu-icon.active span {
        opacity: 0;
    }

    .menu-icon.active::before {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .menu-icon.active::after {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }

    #about_header {
        position: relative;
        height: 500px;
        width: auto;
        margin-bottom:10px;
    }
    
    .header {
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto;
        width: 100%;
        z-index: 1;
        flex-wrap: wrap;
        row-gap: 30px;
        column-gap: 10%;
    }
    
    .logo-nhfc,
    .logo-gtlic {
        height: auto;
        width: 40%;
    }
    
    .about_title {
        width: 100%;
        text-align: center;
        color: #12A44F;
        font-size: 2em;
        letter-spacing: 3px;
        order: -1;
        margin-top: 0;
        margin-bottom: 0;
        font-weight: bolder;
    }
    
    .about_desc {
        position: relative;
        color: white;
        font-size: 0.65em;
        width: 80%;
        left: 10%;
        top: 20px;
    }
    
    .about_desc p {
        text-align: justify;
    }
    
    .nhfc,
    .gtlic {
        font-weight: 600;
        letter-spacing: 1px;
    }
    
    .nhfc {
        color: #095222;
    }
    
    .gtlic {
        color: #E42424;
    }
    
    .about_bg {
        position: absolute;
        margin: 0;
        z-index: -1;
        height:420px;
        width: auto;
        top: 100px;
        left: -20%;
    }

    #achievements {
        position: relative;
        height: 400px;
        width: auto;
    }

    .header_ach {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 8%;
    }

    .ach_title {
        font-size: 1.5em;
        color: #12A44F;
        margin: auto;
        text-align: center;
    }

    .line1 {
        position: relative;
        left: 5%;
        width: 13%;
    }

    .line2 {
        position: relative;
        right: 5%;
        width: 13%;
    }

    .ach_desc {
        text-align: center;
        font-size: 0.6em;
        color: #5a5a5a;
        width: 60%;
        margin: 1% auto;
    }

    .description-container {
        display: flex;
        justify-content: center;
        gap: 8%;
        flex-wrap: wrap;
        margin: 1%;
        position: relative;
    }

    .description1,
    .description2,
    .description3 {
        width: 25%;
        margin: 0;
        text-align: center;
        box-sizing: border-box;
        font-size: 8px;
        color: #053114;
        font-weight: bolder;
    }
    .description-container img {
        width: 60%;
    }

    #credo {
        position: relative;
        height: 1000px;
        width: 100%;
        margin: auto;
    }

    .header_credo {
        display: flex;
        flex-wrap: wrap;
        position: relative;
        top: -3%;
    }

    .credo_title {
        font-size: 1.5em;
        color: white;
        margin: auto;
        text-align: center;
    }

    .credo_line1 {
        position: relative;
        left: 10%;
        width: 55px;
    }

    .credo_line2 {
        position: relative;
        right: 10%;
        width: 55px;
    }

    .credo_bg {
        position: absolute;
        margin: 0;
        width: auto;
        height:1100px;
        top: -15%;
        z-index: -1;
        left: -30%;
    }

    .credo_container {
        display: grid;
        grid-template-columns: 0.5fr 0.5fr 0.5fr;
        grid-template-rows: 0.1fr 0.1fr 0.1fr 0.1fr 0.1fr;
        grid-auto-flow: row;
        justify-content: center;
        align-content: center;
        justify-items: center;
        align-items: center;
        grid-template-areas:
            "credo_clients credo_desc1 credo_desc1"
            "credo_desc2 credo_desc2 credo_people"
            "credo_hands credo_desc3 credo_desc3"
            "credo_desc4 credo_desc4 credo_incen"
            "credo_loyal credo_desc5 credo_desc5";
        width: 90%;
        margin: 0 auto;
        margin-top: 120px;
        font-size: 0.7em;
        color: white;
        letter-spacing: 1px;
        height: 600px;
    }

    .credo_container img {
        height: auto;
        width: 80%;
    }

    #mission {
        position: relative;
        height: 550px;
        width: 100%;
        margin: auto;
        margin-top:0px;
    }

    .mission_title {
        font-size: 1.8em;
        color: #12A44F;
        margin: auto;
        text-align: center;
    }

    .header_mission {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        top: -7%;
    }

    .mission_line1 {
        position: relative;
        left: 8%;
        width: 55px;
    }

    .mission_line2 {
        position: relative;
        right: 8%;
        width: 55px;
    }

    .mission {
        width: 90%;
        margin: 0 auto;
        margin-bottom: 5%;
        position: absolute;
        top: 0;
        left: 3%;
    }

    .mission li {
        color: #5a5a5a;
        font-size: 0.8em;
        text-align: justify;
        
    }

    .mission_bg {
        position: absolute;
        z-index: -2;
        top: -90px;
        width: auto;
        height:700px;
        left: -50%;
    }

    #testimonials {
        position: relative;
        height: 1000px;
        width: 100%;
        margin-bottom:10px;
    }
    
    .tstmnls {
        width: auto;
        height: auto;
        z-index: 0;
        top: 0;
        margin-top: 0px;
    }
    
    .tstmnls_bg {
        position: absolute;
        z-index: -1;
        width: auto;
        height:1050px;
        top: -7%;
    }

    .tstmnls_title {
        position: absolute;
        width: fit-content;
        font-size: 1.8em;
        color: #ffffff;
        top: 1%;
        left: 10%;
        letter-spacing: 2px;
    }
    
    .tstmnls_desc {
        position: absolute;
        color: #ffffff;
        width: 80%;
        font-size: 0.8em;
        top: 6%;
        left: 11%;
        text-align: justify;
    }
    
    .video_tstmnl {
        position: absolute;
        top: 160px;
        right: 15%;
        width: 200px;
        height: 110px;
        border-radius: 20px;
        scale: 1.2;
    }

    .dotted_white,
    .dotted_white1 {
        position: absolute;
    }

    .dotted_white {
        width: 100px;
        position: absolute;
        top: 8.5%;
    }

    .dotted_white1 {
        visibility: hidden;
    }

    .photo_circle {
        position: absolute;
        top: 26%;
        left: -30px;
        scale: 0.6;
    }

    .photo_circle2 {
        position: absolute;
        top: 42%;
        scale: 0.6;
        left: 50%;
    }

    .photo_circle3 {
        position: absolute;
        top: 61%;
        left: -30px;
        scale: 0.6;
    }

    .photo_circle4 {
        position: absolute;
        scale: 0.6;
        left: 50%;
        top: 77%;
    }

    .quote {
        position: absolute;
        top: 28%;
        left: 35%;
        scale: 0.6;
    }

    .quote2 {
        position: absolute;
        scale: 0.6;
        top: 44%;
        left: 5%;
    }

    .quote3 {
        position: absolute;
        top: 62%;
        left: 35%;
        scale: 0.6;
    }

    .quote4 {
        position: absolute;
        scale: 0.6;
        top: 80%;
        left: 5%;
    }

    .quotes {
        position: absolute;
        color: white;
        font-family: 'Figtree';
        font-size: 0.7em;
        width: 45%;
        left: 44%;
        top: 28%;
        text-align: justify;
    }

    .quotes2 {
        position: absolute;
        color: white;
        font-family: 'Figtree';
        font-size: 0.7em;
        width: 45%;
        top: 45%;
        left: 11%;
        text-align: justify;
    }

    .quotes3 {
        position: absolute;
        color: white;
        font-family: 'Figtree';
        font-size: 0.7em;
        width: 45%;
        left: 44%;
        text-align: justify;
        top: 62%;
    }

    .quotes4 {
        position: absolute;
        color: white;
        font-family: 'Figtree';
        font-size: 0.7em;
        width: 45%;
        top: 79%;
        left: 13%;
        text-align: justify;
    }

    .name {
        position: absolute;
        color: white;
        font-size: 0.9em;
        left: 44%;
        top: 415px;
        letter-spacing: 2px;
    }

    .name2 {
        position: absolute;
        color: white;
        font-size: 0.9em;
        letter-spacing: 2px;
        left: 10%;
        top: 585px;
    }

    .name3 {
        position: absolute;
        color: white;
        font-size: 0.9em;
        left: 44%;
        letter-spacing: 2px;
        top: 755px;
    }

    .name4 {
        position: absolute;
        color: white;
        font-size: 0.9em;
        letter-spacing: 2px;
        left: 9%;
        top: 925px;
    }
    #footer {
        font-size: 0.7em;
        letter-spacing: 0.5px;
    }
    #footer button {
        margin-top: 8px;
        margin-bottom: 8px;
    }
}