@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@font-face {
    font-family: 'Inter';
    src: url('/Inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/Inter/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}
html,
body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: 'Inter';
    font-display: swap;
}

.tothetop {
    width: 100%;
    height: 90px;
}

.allcontainerbox,
.container,
.containertwo {
    max-width: 100%;
    box-sizing: border-box;
}

.navcontainer {
    background: #ffffff;
    padding: 0;
    margin: 0;
    width: 100%;
    position: fixed;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 9999;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
    height: 90px;
}

.navbar-logo {
    height: 100%;
    cursor: pointer;
    padding: 10px 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.navbar-logo img {
    height: 100%;

}

.navbar-menu {
    display: flex;
    align-items: center;
    height: 100%;
}

.langbox img {
    margin: 0 10px;
    width: 24px;
    height: 24px;

}

.navmenubox {
    display: flex;
    align-items: center;
    gap: 18px;
    height: 100%;
}

.navmenuitem {
    text-decoration: none;
    color: #222;
    font-size: 18px;
    padding: 0 8px;
    transition: color 0.2s;
    font-weight: 600;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;

}

.navmenuitem:hover {
    color: #feca0a;
}



.langbox,
.quotebox {
    display: flex;
    align-items: center;
    height: 100%;
}

.quotebox {
    white-space: nowrap;
}

.quotebox a {
    text-decoration: none;
    display: inline-block;
    padding: 8px 18px;
    border-radius: 20px;
    background: #feca0a;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.3s, box-shadow 0.3s, filter 0.3s;
    box-shadow: 0 2px 8px rgba(43, 140, 133, 0.08);
}



.pronavmenuitem-wrapper {
    position: relative;
    display: inline-block;
    height: 100%;
    width: 100%;
}

.pronavmenuitem-wrapper a {
    height: 100%;
}

.prosubmenu {
    display: none;
    position: fixed;
    margin-top: 90px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border: 1px solid #ddd;
    list-style-type: none;
    padding: 0;
    z-index: 9999;
    width: 50%;
}

.prosubmenu.show {
    display: block;
}

.prosubmenu li {
    padding: 10px;
}

.prosubmenubox {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.prosubmenuitem {
    width: calc(33.333% - 14px);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 15px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    background: rgb(240, 240, 240);
    border-radius: 8px;
    border: 1px solid #e9ecef;

}

.prosubmenuitem:nth-child(1),
.prosubmenuitem:nth-child(2) {
    width: calc(50% - 10px);
    aspect-ratio: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.prosubmenuitem:nth-child(3),
.prosubmenuitem:nth-child(4),
.prosubmenuitem:nth-child(5) {
    width: calc(33.333% - 14px);
    justify-content: space-between;
    aspect-ratio: 1;
}

.prosubimgbox {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}


.prosubmenuitem:nth-child(1) .prosubimgbox,
.prosubmenuitem:nth-child(2) .prosubimgbox {
    height: 300px;
    margin-top: 15px;
}
.prosubmenuitem:nth-child(3) .prosubimgbox,
.prosubmenuitem:nth-child(4) .prosubimgbox,
.prosubmenuitem:nth-child(5) .prosubimgbox {
    height: 200px;
}

.prosubimgbox img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.prosubtitlebox {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    order: -1;
}

.prosubtitle {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0;
    margin-bottom: 3px;
    text-align: left;
}

.prosubmore {
    font-size: 14px;
    color: #feca0a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    text-align: left;
}

.prosubmore:hover {
    color: #053B83;
}

.prosubmenu li a {
    color: #333;
    text-decoration: none;
    display: block;
}

.prosubmenuitem:hover {
    transform: translateY(-2px);
}



.navmenuitem-wrapper {
    position: relative;
    display: inline-block;
    height: 100%;
    width: 100%;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    list-style-type: none;
    padding: 0;
    margin: 0;
    min-width: 150px;
    z-index: 1;
}


.submenu li {
    padding: 10px;
}


.submenu li a {
    color: #333;
    text-decoration: none;
    display: block;
}

.navmenuitem-wrapper:hover .submenu {
    display: block;
}


.sm-navmenubox {
    text-align: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    /* border: 2px solid #053b83; */
    display: none;
    border-radius: 5px;
    padding: 7px;
    box-sizing: border-box;
}

.menu-icon {
    width: 32px;
    height: 32px;
    fill: #222;
}

.sm-dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #ddd;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 10000;
    top: 70px;
    right: 0;
    background: #053c83;
    border: 0;
}

/* In mobile dropdown, make submenus flow and show only on click */
.sm-dropdown-menu .submenu {
    display: none;
    position: static;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    min-width: 0;
    z-index: auto;
}

.sm-dropdown-menu .submenu.show {
    display: block;
}

.sm-dropdown-menu .submenu li {
    padding: 0;
}

.sm-dropdown-menu .submenu li a {
    color: #ffffff;
    background: transparent;
    padding: 8px 24px;
}

.sm-dropdown-menu a {
    color: #ffffff;
    padding: 12px 16px;
    text-decoration: none;
    font-weight: 600;
    display: block;
}

.sm-dropdown-menu a:hover {
    background-color: #f1f1f1;
}

.sm-dropdown-menu.show {
    display: block;


}

.smsubmenu {
    padding: 0;
    display: none;
    margin: 0;
}

.smsubmenu li {
    list-style-type: none;
}

.smsubmenu li a {
    padding: 6px 24px;
    font-weight: 400;
}

.smnavmenuitem-wrapper:hover .smsubmenu {
    display: block;
}

.langbox a {
    display: flex;
    text-align: center;
    align-items: center;
}

.lang-toggle {
    position: relative;
    display: inline-block;
}

.lang-dropdown {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 24px;
}

.lang-dropdown li {
    padding: 12px 16px;
}

.lang-dropdown li a {
    text-decoration: none;
    color: #333;
    display: block;
}

.lang-dropdown li a:hover {
    background-color: #f1f1f1;
}

.lang-toggle:hover .lang-dropdown {
    display: block;
}

.submenu li a {
    color: #222;
    background: #fff;
    transition: background 0.2s, color 0.2s;
    display: block;
    padding: 8px 18px;
    text-decoration: none;
    white-space: nowrap;
}



@media (min-width:768px) {
    .submenu li a:hover {
        color: #fff;
        background: #feca0a; 
    }
}

@media (max-width:1730px) {
    .navbar-logo {
        height: 80%;
    }
    .navmenubox {
        gap: 8px;
    }
}

@media (max-width:1560px) {
    .quotebox a {
        padding: 8px 10px;
    }
    .navmenubox {
        gap: 0px;
    }
}

@media (max-width:1450px) {
    .navbar-logo {
        height: 74%
    }
}

@media (max-width:1400px) {
    .navbar {
        width: 85%;
    }

}

@media (max-width:1340px) {
    .navbar {
        width: 85%;
    }

    .englishword {
        display: none;
    }

    .langbox img {
        margin: 0 0 0 10px;
    }

    .lang-dropdown {
        left: -33px;
    }
}

@media (max-width:1250px) {
    .navmenuitem {
        padding: 0 6px;
    }
}

@media (max-width:1200px) {
    .navbar {
        width: 95%;
    }

    .navbar,
    .tothetop {
        height: 72px;
    }

    .navbar-logo {
        height: 90%;
    }

    .navmenubox {
        gap: 4px;
    }

    .prosubmenu {
        margin-top: 72px;
        width: 80%;
    }
    
    .prosubmenubox {
        max-width: 100%;
        padding: 15px;
    }
    
    .prosubmenuitem {
        width: calc(50% - 10px);
    }
    

    .prosubmenuitem:nth-child(1),
    .prosubmenuitem:nth-child(2) {
        width: calc(50% - 10px);
    }
    
    .prosubmenuitem:nth-child(3),
    .prosubmenuitem:nth-child(4),
    .prosubmenuitem:nth-child(5) {
        width: calc(33.333% - 14px);
    }
}

@media (max-width:1100px) {
    .langbox {
        display: none;
    }

    .lang-dropdown {
        left: -59px;
    }

    .navmenubox {
        gap: 0px;
    }
}

@media (max-width:1150px) {
    .quotebox {
        display: none;
    }
}

@media (max-width:1150px) {
    .quotebox {
        display: none;
    }
    .submenu{
        font-size: 14px;
    }

}

@media (max-width:996px) {
    .navbar-menu {
        display: none;
    }

    .sm-navmenubox {
        display: block;
    }

    /* Disable hover/tap animations on small screens */
    .navmenuitem,
    .quotebox a,
    .prosubmore,
    .prosubmenuitem {
        transition: none;
    }

    .prosubmenuitem:hover {
        transform: none;
    }

}
@media(max-width:768px){
    .prosubmenuitem {
        width: 100%;

    }
    .submenu{
        font-size: 12px;
    }
    .submenu li a {
        text-transform: lowercase;
    }
    

    .prosubmenuitem:nth-child(1),
    .prosubmenuitem:nth-child(2),
    .prosubmenuitem:nth-child(3),
    .prosubmenuitem:nth-child(4),
    .prosubmenuitem:nth-child(5) {
        width: 100%;
    }

    .prosubmenuitem:nth-child(1),
    .prosubmenuitem:nth-child(2) {
        aspect-ratio: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .prosubimgbox {
        width: 100%;
        height: 100px;
        margin-top: 8px;
    }


    .prosubmenuitem:nth-child(1) .prosubimgbox,
    .prosubmenuitem:nth-child(2) .prosubimgbox {
        height: 120px;
        margin-top: 12px;
    }
    
    .prosubtitle {
        font-size: 16px;
    }
    
    .prosubmore {
        font-size: 12px;
    }
}

@media(max-width:684px){
    .submenu{
        font-size: 12px;
        word-wrap: break-word;
        word-break: break-all;
        white-space: normal;
        overflow-wrap: break-word;
    }
        .navbar {
        width: 99%;
    }
}
