body {
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    font-family: "Afacad", sans-serif;
}

* {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    margin: 0px;
    padding: 0px;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}



.header {
    background: #fff;
    position: relative;
    left: 0px;
    width: 100%;
    z-index: 9999;
height: 54px;
}

.header.is-sticky {
    animation: slideDown 0.35s ease-out;
    position: fixed;
    top: 0;
    left: 0;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}



.header_content {
margin: auto;
backdrop-filter: blur(33.5px);
padding: 0px 35px;
/*position: relative;*/
position:absolute;
background: #ffffff;
width:100%;	
}

.header .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0;
}

.header .navbar .links {
    display: flex;
    gap: 54px;
}

.header .navbar .links li {
    position: relative;
    list-style: none;
    padding: 15px 0px;
}
.logo img {
    width: 210px;
    height: auto;
}
.header .navbar .links li a {
    position: relative;
    color: #212121;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-transform: capitalize;
    transition: 0.5s ease-in-out;
}

.header .navbar .links li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    background-color: #4DBFED;
    bottom: -5px;
    left: 0;
    transition: .3s ease all;
}


.header_btn a {
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #121F74;
    font-family: "Afacad", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: 0.5s ease-in-out;
}

.header_btn a:hover {
   /* background: #121F74;
    color: #FFF;*/
}

.header_btn a i {
    /*line-height: 30px;*/
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-toggle svg path {
    stroke: #444645;
}

.dropdown-toggle svg {
    margin-left: 10px;
}

.header .navbar .links li a:hover svg path {
    stroke: #0181B4;
}

.inner-page .header .navbar .links li a::after {
    background: linear-gradient(90deg, rgba(101, 101, 101, 0.00) 0%, #090808 50%, rgba(63, 63, 63, 0.01) 100%);
}

.header .navbar .links li.services_list {
    padding-right: 0;
    display: flex;
    gap: 6px;
    align-items: center;
}

/* megamenu css start */
.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -90px;
    background-color: #fff;
    padding: 20px 30px;
    width: 750px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 5px;
}

.mega-menu-column {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
}

.mega-menu-column a {
    color: #007bff;
    padding: 8px 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mega-menu-column a:hover {
    color: #0056b3;
}

.mega-menu-column a {
    display: flex;
    gap: 10px;
}

.services-dropdown {
    position: relative;
}

.services_mega_menu_main a img {
    margin-left: 10px;
}

.services-dropdown:hover .mega-menu {
    display: flex;
}

.services_mega_menu_main {
    display: flex;
    gap: 20px;
    width: 670px;
    padding: 25px;
}

.services_mega_menu_main a {
    color: #0181B4 !important;
    font-size: 18px !important;
    font-style: normal;
   
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.36px;
    text-transform: capitalize;
    max-width: 330px !important;
    width: fit-content;
}

/* Responsive: Mobile dropdown support */
@media (max-width: 991.98px) {
    .mega-menu {
        position: static;
        width: 100%;
        display: none;
        flex-direction: column;
        box-shadow: none;
        padding: 15px 20px;
    }

    .services-dropdown.show .mega-menu {
        display: flex;
    }
}

.header .navbar .links li a:hover::after {
    width: 100%;
}

.header .navbar .links li a:hover {
    color: #0181B4;
}

/* Desktop: Change "Services" link color on hover */
.services-dropdown:hover>.nav-link {
    color: #0181B4;
}

/* Mobile: When menu is toggled open */
.services-dropdown.show>.nav-link {
    color: #0181B4;
}

.header .navbar .links li .arrow {
    height: 100%;
    width: 20px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease;
}

.header .navbar .links li .sub-menu {
    position: absolute;
    top: 60px;
    left: 0px;
    transform: translate(-50%, 0);
    /* width: 410px; */
    background: #FFF;
    padding: 25px;
    display: none;
    z-index: 99;
    opacity: 0;
    transition: all 0.5s ease;
    border-radius: 8px;
    width: max-content;
}

.header .navbar .links li .sub-menu::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 0px;
    right: 0px;
    width: 10px;
    height: 10px;
    background: #FFF;
    margin: auto;
    transform: rotate(45deg);
}

.header .navbar .links li:last-child .sub-menu {
    left: unset;
    right: 0px;
}

.header .navbar .links li:hover .htmlCss-sub-menu,
.header .navbar .links li:hover .js-sub-menu {
    /* display: block; */
    display: grid;
    grid-template-columns: repeat(2, max-content);
    opacity: 1;
    column-gap: 20px;
}

.navbar .links li .sub-menu li {
    padding: 0px;
    z-index: 1;
}

li.services_list a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sub-menu li a i {
    font-size: 18px;
}

.navbar .links li .sub-menu {
    padding: 25px;
}

.navbar .links li .sub-menu li a {
    padding: 8px 0;
    color: #0181B4 !important;
    font-size: 18px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-transform: capitalize;
    transition: 0.5s ease-in-out;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: start;
    width: fit-content;
}

.bx-menu {
    display: none;
}

.bx-menu span {
    width: 20px;
    height: 2px;
    border-radius: 15px;
    display: block;
    line-height: 0px;
    background: #FEFEFF;
    margin-bottom: 5px;
}

.bx-menu span:nth-child(3) {
    margin-bottom: 0px;
}

.navbar .nav-links.open~.bx-menu span:nth-child(1) {
    width: 20px;
    transform: rotate(-45deg);
    margin-bottom: 7px;
}

.navbar .nav-links.open~.bx-menu span:nth-child(2) {
    width: 20px;
    transform: rotate(45deg);
    margin-top: -9px;
}

.navbar .nav-links.open~.bx-menu span:nth-child(3) {
    display: none !important;
}

li{
	list-style: none;
}
.disclaimer ul{
    display: flex;
    gap: 25px;
}
.disclaimer ul li{
	position: relative;
}
.disclaimer ul li a{
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.disclaimer ul li:after{
		content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 14px;
    width: 2px;
    background-color: #fff;
    left: -13px;
}
.disclaimer ul li:last-child:after{
	display: none;
}





@media (max-width:1200px) {

    .header .navbar .links li {
        white-space: nowrap;
    }
}

@media (max-width:991px) {


    .header .navbar {
        padding: 10px 0px;
        position: unset;
    }

    .header_content {
        padding: 0px 20px 0px 20px;
    }

    .bx-menu {
        display: block;
    }

    .header .navbar .links li {
        white-space: nowrap;
        padding: 0px;
    }

    .header .navbar .nav-links {
        position: absolute;
        top: 60px;
        left: 0%;
        visibility: hidden;
        opacity: 0;
        display: block;
        height: fit-content;
        overflow-y: scroll;
        height: 100vh;
        width: 100%;
        background: #FFF;
        line-height: 40px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.5s ease;
        z-index: 1000;
    }

    .navbar .links li .sub-menu li:first-child a {
        border-radius: 0px;
    }

    .navbar .links li .sub-menu li:last-child a {
        border-radius: 0px;
    }

    .header .navbar .links li a {
        padding: 9px 32px;
        color: #1A1A1A;
        gap: 9px;
        display: inline-flex;
        width: 100%;
        align-items: center;
        width: fit-content;
    }

    .navbar .links li .sub-menu li a {
        padding: 16px 32px;
        color: #5F5F5F;
        text-transform: capitalize;
        width: fit-content;
    }

    .header .navbar .links li a:hover::after {
        display: none;
    }

    .header .navbar .links li .sub-menu::after {
        content: unset;
    }

    .navbar .links li .sub-menu a {
        padding: 14px 0px;
    }

    .header .navbar .nav-links.open {
        left: 0%;
        visibility: visible;
        opacity: 1;
    }

    .navbar .nav-links .sidebar-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .sidebar-logo .logo-name {
        font-size: 25px;
        color: #fff;
    }

    .navbar .bx-menu,
    .navbar .bx-x {
        border-radius: 5.5px;
        background: #121f74;
        width: 41px;
        height: 41px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .inner-page .header .navbar .bx-menu,
    .inner-page .header .navbar .bx-x {
        background: #EEF4FF;
    }

    .inner-page .header .navbar .bx-menu span {
        background: #4984FD;
    }

    .header .navbar .links {
        display: block;
    }

    .header .navbar .links li .arrow {
        color: #808080;
    }

    .header .navbar .links li {
        display: block;
    }

    .header .navbar .links li .sub-menu {
        position: relative;
        top: 0;
        width: 100%;
        box-shadow: none;
        display: none;
        background: transparent;
        padding: 0px;
    }

    .header .navbar .links li:hover .js-sub-menu {
        display: none;
    }

    .header .navbar .links li:hover .htmlcss-arrow,
    .header .navbar .links li:hover .js-arrow {
        transform: rotate(0deg);
    }

    .navbar .nav-links .links .js-sub-menu.sub-menu.open {
        left: 0;
        display: block;
        opacity: 1;
        right: 0;
        right: 23px;
        transform: none;
    }

    .navbar .links li .sub-menu li {
        padding: 0px;
        border-bottom: 0px solid #C5C5C5;
    }
}

@media (max-width: 767px) {
    .header {
        padding: 0px;
    }

    .header_content {
        padding: 0px;
    }
}

@media (max-width:370px) {
    .header .navbar .nav-links {
        max-width: 100%;
    }
}


.mega-menu {
    display: none;
}

.services-dropdown.show .mega-menu {
    display: block;
}


.language-dropdown select {
    width: 120px;
    padding: 8px 20px;
    font-size: 16px;
    color: #333;
    background-color: transparent;
    border-radius: 500px;
    border: 1px solid #212121;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg fill='none' stroke='%23333' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 82px center;
    background-size: 16px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.language-dropdown.open select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg fill='none' stroke='%23333' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 15l7-7 7 7'%3E%3C/path%3E%3C/svg%3E");
}

.language-dropdown select:focus {
    border: 1px solid #212121;
    box-shadow: none;
    outline: none;
}

#page-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #ffffff;
    top: 0;
    left: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top: 4px solid #1697CC;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Banner Start */
.banner_main {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0px 0 0 0;
    height: 570pt;
    direction: ltr;
    z-index: 1;
}

.banner_main::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.54) 31.49%, rgba(255, 255, 255, 0.00) 68.23%);
    width: 100%;
    height: 100%;
    z-index: -1;
}


.banner_main::before {
    content: '';
    width: 100%;
    height: 17vh;
    background: #ffffff;
    position: absolute;
    bottom: 0;
    background: linear-gradient(180deg, rgba(22, 37, 95, 0) 0%, rgba(255, 255, 255, 0.88) 73.93%, #FFF 91.47%);
    z-index: 1;
}
.banner_text {align-content
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 750px;
    margin-left: 0px;
    padding-bottom: 100px;
}

.banner_text h1 {
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: 55px;
    color: #FFF;
    font-family: "Afacad", sans-serif;
    margin-bottom: 15px;
}

.banner_text p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.18px;
    color: #FFF;
    font-family: "Afacad", sans-serif;
	    margin-bottom: 36px;
}



/* footer start */


 footer {
    background: #121F74;
    padding-top: 80px;
}

.nav_link_footer ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
}

.nav_link_footer ul li a {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    transition: .3s ease all;
    position: relative;

}

.nav_link_footer ul li a:hover {
    color: #4DBFED;
}

.nav_link_footer ul li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    background-color: #0181B4;
    bottom: 0px;
    left: 0;
    transition: .3s ease all;
}

.nav_link_footer ul li a:hover::after {
    width: 100%;
}

.nav_link_footer ul li {
    list-style-type: none;
}

.footer_content {
    text-align: center;
}

.nav_link_footer {
    padding: 42px 0;
}

.footer_para p {
    color: #FFF;
    text-align: center;
   
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    max-width: 1157px;
    margin: 0 auto;
}

.contact_details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.contact1 {
    display: flex;
    gap: 10px;
    align-items: center;
}

.contact_img {
    width: 38px;
    height: 38px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact_name a,
p {
    color: #FFF;
   
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    
}

.contact_details {
    padding: 47px 0;
}

.follow_socialmedia h4 {
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.56px;
    text-transform: capitalize;
}

.disclaimer {
    display: flex;
}

.all_rights_para {
    display: flex;
    justify-content: space-between;
    padding: 19px 0;
}

.disclaimer p a {
    color: #FFF;
   
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.36px;
}

.footer_border {
    position: relative;
    padding-top: 50px;

}

.footer_border::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.30);
}

.contact-form {
    margin-left: 12px;
}





@media (max-width: 1550px) {
    .banner_main {
        background-position: -200px 0px;
        background-size: unset;
    }
}




@media (min-width: 1200px) and (max-width:1440px) {
	 .mega-menu {
        left: -169px;
    }

    .header .navbar .links li .sub-menu {
        left: 0px;
    }
}


@media (min-width: 1200px) and (max-width:1600px) {
	
}

@media (max-width: 1400px) {
	
	.header .navbar .links li .sub-menu {
left: 50px;
top: 50px;
}

}


@media (max-width: 1200px) {
	.header_content{
		padding: 0px 15px;
	}
	.langbtnandbtn {
    display: flex;
    gap: 30px;
}
.navbar .links li .sub-menu li a{
	    font-size: 16px !important;
}
.contact_details {
        gap: 27px;
    }

    .contact1 {
        gap: 5px;
    }
	.mega-menu {
        left: -295px;
    }
	.banner_main::after {
        bottom: -302px;
    }

    .banner_btn {
        margin-bottom: 50px;
    }

    .header .navbar .links {
        gap: 18px;
    }

    .header .navbar .links li a {
        font-size: 16px;
    }
	
	.services_mega_menu_main a {
        font-size: 17px !important;
    }

    .services_mega_menu_main a img {
        max-width: 15px;
        margin-left: 0;
    }

    .mega-menu {
        padding: 20px 19px;
    }

    .header .navbar .links li .sub-menu {
        left: 0;
    }

    .services_mega_menu_main {
        display: flex;
        gap: 20px;
        width: 699px;
        padding: 25px;
    }
	.services_mega_menu_main a {
        max-width: 380px !important;
    }

}



@media (max-width: 1024px) {
    .detailed_post_feature_img img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        border-radius: 30px;
    }
    .build_smarter_title {
    flex-direction: column;
    gap: 10px;
}
}






@media (max-width: 991px) {

    .nav_link_footer ul {
        gap: 35px;
    }
	
	.header .navbar .links li a{
	    position:unset;
	}
	.header .navbar .links li a::after{
		bottom: 0px;
	}
	.header .navbar .links li a {
        padding: 15px 12px;
	}
    .contact_details {
        gap: 20px;
        flex-wrap: wrap;
        padding: 30px 0;
    }

    .disclaimer {
        padding-bottom: 10px;
    }
    footer {
        padding-top: 60px;
    }

    .disclaimer p a {
        font-size: 17px;
    }

    .contact-form {
        margin-left: 0px;
    }

    .toggle_lang_main {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    li.services_list a {
        padding-right: 10px !important;
    }

    li.services_list svg.js-arrow {
        margin-right: 10px !important;
    }

    .header .navbar .links li.services_list {
        display: block;
        gap: 6px;
        align-items: center;
    }

    .services_mega_menu_main {
        padding-right: 5px;
        padding-top: 8px;
    }

    header .navbar .nav-links {
        top: 60px;
    }
    .footer_border::before {
        width: 90%;
        right: 50px;
    }
    #about_our_client {
        padding: 60px 0;
    }
    .contact_form form.wpcf7-form.init input {
        max-width: unset;
    }
    .post_catagories {
        padding-bottom: 20px;
    }
    .share_social_icons {
        padding-bottom: 30px;
    }

}

@media (max-width: 767px) {
	
	.header_btn {
    display: none;
}
.navbar .bx-menu,
    .navbar .bx-x {
        width: 35px;
        height: 35px;
    }
	.header .navbar .links li a{
	position:unset;
	}
	.header .navbar .links li a::after{
		    bottom: 0px;
	}
	.header .navbar .links li a {
        padding: 15px 12px;
	}
	.footer_content {
    text-align: center;
}
.footer_content p {
    text-align: center !important;
}
.contact1 {
    gap: 7px;
    flex-direction: unset;
    /* margin-bottom: 15px; */
}
.disclaimer {
    display: flex;
    justify-content: center;
}
.right_reserved {
    text-align: center;
}
    .post_catagories {
        padding-bottom: 0px;
    }

}

@media (max-width: 575px) {
   
    .logo img {
        width: 100%;
        max-width: 160px;
    }

    .header .navbar .links li a {
        align-items: center;
    }

    .footer_border::before {
        width: 90%;
        right: 20px;
    }

 
    .contact_details {
        display: block;
        margin: 0 auto;
        justify-content: center;
        width: fit-content;
    }
    .all_rights_para {
        display: block;
    }

    .nav_link_footer ul li a {
        padding-bottom: 10px;
    }

    .nav_link_footer ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 23px;
    }
    .out_sourcing {
        margin: 0px 0px 40px;
    }

}

@media (max-width: 400px) {
	

    .bx-menu span {
        width: 16px;
        height: 2px;
        margin-bottom: 3px;
    }

   
    .header .navbar .links li a.submenu_services {
        padding: 10px;
        font-size: 16px;
        gap: 2px;
    }

    .img-bottom::after {
        display: none;
    }

    .img-box img {
        width: 100%;
    }



    .header .navbar .links li a {
        font-size: 16px;
        line-height: 17px;
    }

    .services_mega_menu_main a {
        font-size: 16px !important;
        max-width: 330px !important;
    }

    .services_mega_menu_main a img {
        margin-left: 0px;
        width: 15px;
    }

    .mega-menu-column a {
        padding: 9px 10px !important;
    }

    .footer_content img {
        max-width: 220px;
    }

 
    .banner_main {
        padding: 25px 0 0 0;
    }

    .header .navbar .nav-links {
        top: 56px;
    }

    .mega-menu {
        padding: 0px 4px 15px 20px;
    }

    .header .navbar .links li a {
        gap: 4px;
    }

    .disclaimer p a {
        font-size: 16px;
    }

    .contact_name a,
    p {
        font-size: 16px;
    }

    .mega-menu-column a {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        display: block;
        padding-right: 10px;
        word-break: break-word;
    }

    .logo a img {
        max-width: 150px;
    }

    .toggle_lang_main {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .nav_link_footer ul li a {
        font-size: 16px;
    }

    .navbar .nav-links .links .js-sub-menu.sub-menu.open {
        right: 0px;
    }
}