body {
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.main-wrapper {
    /**/
}

.nav-main {
    display: flex;
    justify-content: center;
    position: absolute;
    align-items: center;
    left: 0;
    top: 0;
    width: 100%;
}

.nav-bar {
    width: 91.5vw;
    display: flex;
    justify-content: space-between;
    z-index: 100;
}

.nav-logo {
    padding: 29px 65px;
}
.nav-logo img {
    width: 317px;
}

.nav-menus {
    margin-top: 29px;
    padding: 27px;
    display: flex;
    align-items: center;
    list-style: none;
}

.nav-menus li {
    position: relative;
}

.nav-menus li .active {
    color: #dfc58c; /* A brighter hover color, like the teal in the image */
}

.nav-a {
    margin: 0px 2vw;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    padding-bottom: 4px;    
    display: inline-block;
    position: relative;
}

.main-container {
    /* display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute; */
}

.nav-a:hover {
    color: #dfc58c; /* A brighter hover color, like the teal in the image */
}

/* Underline effect */
.nav-a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px; /* Thinner underline */
    background-color: #dfc58c; /* Teal underline color */
    transition: width 0.3s ease; /* Smooth width transition */
}

.nav-a:hover::after {
    width: 100%; /* Underline extends to full width on hover */
}

/* Hamburger button styles */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}
.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 2px 0;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

.footer { background-color: #112250;}
.l8-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 50px 1vw;
    color: white;
    padding-bottom: 0;
}
.l8-img{
    margin: 9px;
}
.l8-l1-img {
    position: absolute;
    right: 9vw;
}
.l8-l2 {
    width: 73vw;
    background: #646E8A;
    padding: 84px 100px;
    margin-top: 30px;
}
.pl8-1 {
    font-size: 14px;
    font-weight: bold;
}
.pl8-2 {
    max-width: 300px;
    font-size: 14px;
    margin-top: 34px;
}
.contact-section {
    display: flex;
    align-items: center; /* or center for centered text */
    margin-bottom: 18px;
}

.contact-section img {
    margin-right: 12px;
}

.contact-section .pl8-2 {
    margin: 0;
    font-size: 14px;
    color: #fff; /* or your preferred color */
}
.l8-l3 {
        display: flex;
    justify-content: space-between;
    width: 73vw;
    color: white;
    margin-top: 24px;
    margin-bottom: 10px;
    font-size: 12px;
}
.l8-c1 {
    margin-top: 0;
}
.footer-a {
    all: unset;
    color: #fff;
    cursor: pointer;
    margin-right: 9px;
}

.whsapp-a {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 999;
}
.whtsapp-svg {
    fill: white !important;
    width: 35px;
    margin-top: 7px;
}

/* MOBILE NAVIGATION & WRAPPER */
@media (max-width: 1080px) {
    .nav-main {
        position: static;
        width: 100vw;
        min-width: 0;
        padding: 0;
        /* background: #112250; */
        z-index: 1000;
    }
    .nav-bar {
        flex-direction: column;
        width: 100vw;
        padding: 0;
        align-items: flex-start;
    }
    .nav-logo {
        padding: 16px 20px;
        box-sizing: border-box;
        text-align: left;
        display: flex;
        justify-content: flex-start;
        margin-left: 45px;
    }
    .nav-logo img {
        width: 183px;
        height: auto;
    }
    .nav-menus {
        flex-direction: column;
        align-items: flex-start;
        margin: 0;
        padding: 0 0 12px 20px;
        width: 92vw;
        background: #112250;
    }
    .nav-menus li {
        margin: 0 0 10px 0;
    }
    .nav-a {
        font-size: 16px;
        margin: 0;
        padding: 8px 0;
        box-sizing: border-box;
        display: block;
    }
    .nav-a::after {
        left: 0;
        right: 0;
        margin: auto;
        bottom: 0;
    }
    .main-wrapper {
        padding-top: 0;
    }
    html, body, *, *::before, *::after {
        box-sizing: border-box;
    }
    .nav-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 14px;
    }
    .nav-menus {
        display: none;
        margin-left: 20px;
        transition: max-height 0.3s;
    }
    .nav-menus.open {
        display: flex;
    }
    /* .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1100;
        position: relative;
    } */
    .nav-toggle span {
        display: block;
        width: 28px;
        height: 3px;
        margin: 4px 0;
        background: #fff;
        border-radius: 2px;
        transition: 0.3s;
    }
    .nav-toggle span:last-child {
        align-self: flex-end;
        width: 20px;
    }

    /* Hamburger to X animation */
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
        width: 28px;
        align-self: flex-start;
    }
    .footer {
        padding: 0 2vw;
    }
    .l8-content {
        padding: 30px 2vw 0 2vw;
    }
    .l8-l1-img {
        position: absolute;
        width: 144%;
        margin-bottom: 10px;
        left: 0;
    }
    .l8-l2 {
        width: 94vw;
        padding: 30px 10px;
        margin-top: 0px;
    }
    .pl8-1 {
        font-size: 14px;
    }
    .pl8-2 {
        font-size: 12px;
        max-width: 90vw;
        margin-top: 28px;
        letter-spacing: 1px;
        margin-bottom: 50px;
    }
    .contact-section {
        align-items: flex-start;
        margin-bottom: 20px;
    }
    .contact-section img {
        margin-right: 16px;
        margin-bottom: 4px;
        width: 16px;
    }
    .l8-l3 {
        flex-direction: column;
        width: 98vw;
        font-size: 10px;
        align-items: center;
        margin-top: 14px;
    }
    .l8-l2 {
    background: none;
    }
    .l8-l3-1 {
        display: none;
    }
    .l8-l1 {
        width: 100%;
        height: 45vh;
        overflow: hidden;
        position: relative;
    }
    .footer-a {
        margin-right: 6px;
        font-size: 12px;
    }
    .whsapp-a {
        width: 48px;
        height: 48px;
    }
    .whtsapp-svg {
        width: 26px;
    }
}