/* Custom Navigation Menu Styles - Converted from Elementor Nav Menu */
/* Based on elementor-pro v3.29.0 */

/* Container Styles */
.menus-wrapper {
    overflow: visible;
}

/* Base Menu Styles */
.site-header .header-wrapper .menus-wrapper .menus{
    gap: 10px !important;
}



.site-header .header-wrapper .menus-wrapper .menus li:last-child{
    left: auto !important;
    top: auto !important;
}

/* Menu Items */
.menus li {
    display: flex;
    position: relative;
    border-width: 0;
    line-height: normal;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menus a {
    position: relative;
    align-items: center;
    display: flex;
    line-height: 20px;
    padding: 13px 20px;
    transition: .4s;
    white-space: nowrap;
    flex-grow: 1;
}

.menus a:focus,
.menus a:hover {
    /* line-height: 20px; */
    /* padding: 13px 20px; */
}

/* Active and Current States */
.menus .nav-link.active > a,
.menus a.current {
    background: #1f2124;
    color: #fff;
}

/* Disabled State */
.menus a.disabled {
    background: #3f444b;
    color: #88909b;
    cursor: not-allowed;
}

/* Button Styles (Contact Us) */
.menus .btn {
    background: #007cba;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.menus .btn:hover {
    background: #005a87;
    transform: translateY(-2px);
}

/* Dropdown/Sub-menu Styles */
.menus .sub-menu {
    display: none;
    position: absolute;
    top: 70%;
    left: 0;
    background-color: #fff;
    border-style: solid;
    border-width: 0;
    padding: 0;
    width: max-content;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menus li:hover > .sub-menu {
    display: block;
}

/* Sub-menu Items */
.menus .sub-menu li {
    display: block;
    width: 100%;
}

.menus .sub-menu a {
    border-left: 8px solid transparent;
    text-shadow: none;
    color: #33373d;
    display: flex;
    padding: 10px 20px;
}

.menus .sub-menu a:hover,
.menus .sub-menu a:focus {
    background-color: #3f444b;
    color: #fff;
}

.menus .sub-menu a.current {
    background: #1f2124;
    color: #fff;
}

.menus .sub-menu a.disabled {
    color: #b3b3b3;
}

/* Hover Effects and Animations */
.menus a:after,
.menus a:before {
    display: block;
    position: absolute;
    transition: .3s;
    transition-timing-function: cubic-bezier(.58, .3, .005, 1);
}

.menus a:not(:hover):not(:focus):not(.active):after,
.menus a:not(:hover):not(:focus):not(.active):before {
    opacity: 0;
}

.menus .active > a:after,
.menus .active > a:before,
.menus a:focus:after,
.menus a:focus:before,
.menus a:hover:after,
.menus a:hover:before {
    transform: scale(1);
}

/* Underline Effect */
.menus-wrapper.underline-effect .menus a:after {
    background-color: #3f444b;
    height: 3px;
    left: 0;
    width: 100%;
    z-index: 2;
    bottom: 0;
    content: "";
}

.menus-wrapper.underline-effect .menus a:not(:hover):not(:focus):not(.active):after {
    height: 0;
    left: 50%;
    width: 0;
}

/* Overline Effect */
.menus-wrapper.overline-effect .menus a:before {
    content: "";
    top: 0;
    background-color: #3f444b;
    height: 3px;
    left: 0;
    width: 100%;
    z-index: 2;
}

.menus-wrapper.overline-effect .menus a:not(:hover):not(:focus):not(.active):before {
    height: 0;
    left: 50%;
    width: 0;
}

/* Background Effect */
.menus-wrapper.background-effect .menus a:after,
.menus-wrapper.background-effect .menus a:before {
    content: "";
    transition: .3s;
}

.menus-wrapper.background-effect .menus a:before {
    background: #3f444b;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
    transform: scale(.5);
}

.menus-wrapper.background-effect .menus .active > a,
.menus-wrapper.background-effect .menus a:focus,
.menus-wrapper.background-effect .menus a:hover {
    color: #fff;
}

.menus-wrapper.background-effect .menus .active > a:before,
.menus-wrapper.background-effect .menus a:focus:before,
.menus-wrapper.background-effect .menus a:hover:before {
    opacity: 1;
    transform: scale(1);
}

/* Text Animation Effects */
.menus-wrapper.text-grow .menus a:focus,
.menus-wrapper.text-grow .menus a:hover {
    transform: scale(1.2);
}

.menus-wrapper.text-float .menus a:focus,
.menus-wrapper.text-float .menus a:hover {
    transform: translateY(-8px);
}

.menus-wrapper.text-rotate .menus a:focus,
.menus-wrapper.text-rotate .menus a:hover {
    transform: rotate(6deg);
}

.menus-wrapper.text-shrink .menus a:focus,
.menus-wrapper.text-shrink .menus a:hover {
    transform: scale(.8);
}

.menus-wrapper.text-sink .menus a:focus,
.menus-wrapper.text-sink .menus a:hover {
    transform: translateY(8px);
}

.menus-wrapper.text-skew .menus a:focus,
.menus-wrapper.text-skew .menus a:hover {
    transform: skew(-8deg);
}

/* Horizontal Menu Item Spacing */
.menus > li:not(:first-child) > a {
    /* margin-left: 15px; */
}

.menus > li:not(:last-child) > a {
    /* margin-right: 15px; */
}

/* Menu Alignment Classes */
.menus-wrapper.align-left .menus {
    justify-content: flex-start;
    margin-right: auto;
}

.menus-wrapper.align-right .menus {
    justify-content: flex-end;
    margin-left: auto;
}

.menus-wrapper.align-center .menus {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.menus-wrapper.align-justify .menus {
    width: 100%;
}

.menus-wrapper.align-justify .menus > li {
    flex-grow: 1;
}

.menus-wrapper.align-justify .menus > li > a {
    justify-content: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menus {
        flex-direction: column;
    }
    
    .menus > li {
        width: 100%;
    }
    
    .menus .sub-menu {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        background: #f8f9fa;
    }
    
    .menus li:hover > .sub-menu {
        display: block;
    }
    
    .menus .sub-menu a {
        padding-left: 40px;
    }
}

/* Animation Keyframes */
@keyframes hide-scroll {
    0%, to {
        overflow: hidden;
    }
}

/* Focus and accessibility */
.menus a:focus {
    outline: 2px solid #005fcc;
    outline-offset: 2px;
}

.menus a:focus:not(:focus-visible) {
    outline: none;
}


/*our-commitment-section*/

.par-div {

position: relative;

}



    .child-a-our-com {

    background: #000000b0;
    

    text-align: center;
    }


    .child-a-our-com {

position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%

    }


.child-a-our-com  {

font-weight: bold;
color: #fff;



}

.child-a-our-com h5 {

    font-size: 50px;
}


.child-a-our-com h5:hover {

    color: #9F1D35;
}

.child-a-our-com:hover {

    color: #9F1D35;
}

.site-footer .footer-wrapper .row .col-right .menu-row .col .widget_nav_menu ul li a{
    /* color: #fff; */
}
.site-footer .footer-wrapper .copyright .widget_text p{
    /* color: #fff; */
}

.site-footer .widget_custom_html p{color: #b5b5b5 !important;font-size: calc(14vw / var(--context));font-family: 'Gotham';}
