/*
Theme Name: Tech Desire Global
Author: Cosmonaut
Description: WordPress theme version of Tech Desire Global site
Version: 1.0
Text Domain: Tech Desire Global
*/


@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-size: 16px;
    color: #959595;
    font-family: 'Montserrat', sans-serif !important;
}
html,body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    color: #3C3C3C;
}

main#main_wrapper {
    flex: 1;
}


:root{
  --color-primary: #0296CB;   /* bright cyan-blue */
  --color-secondary: #1958ac; /* mid navy-blue */
  --color-dark: #211D3A;      /* very dark indigo */
  --color-deep: #263055;      /* deep blue-gray */
  --color-text: #1958ac;
}

/* example usage */
.header { background: var(--color-primary); }
.btn-primary { background: var(--color-secondary); color: var(--text-on-secondary); }





/* Header S */

.header-info {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 50px;
     
}
.header-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
}
.header-item img {
    width: 48px;
    height: 48px;
}
.home .header-item img {
	filter: invert(1) brightness(100);
}
.site-header .header-info .d-block {
    color:  var(--color-text);
}
.home .site-header .header-info .d-block {
    color:  #ffffff;
}
.site-header span.text, .site-header a.text {
    color: var(--color-text);
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
}
.home .site-header span.text, .home .site-header a.text {
    color: #ffffff;
}
.headerMenu_top {
  background: var(--color-secondary);
  border-radius: 40px;
  padding-left: 35px !important;
  padding-right: 20px !important;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 17px;
}

.site-logo .custom-logo-link img{
  width: 226px;
    height: auto;
}

.site-header .main-nav .menu {
  display: flex;
  margin-bottom: 0px;
}

.site-header .main-nav .menu {
  list-style: none;
  padding: 0px;
    gap: 50px;
}

.site-header .main-nav .menu li a {
  color: #fff;
  text-decoration: none;
      font-weight: 500;
      font-size: 18px;
}

.site-header .main-nav .menu li a:hover {
  color: #0296cb;
}

.headerMenu_top  {
  justify-content: space-between;
}

.headerMenu_top a.btn-expert {
    background: #fff;
    border-radius: 40px;
    font-size: 16px;
    padding: 5px 15px;
    text-decoration: none;
        font-weight: 600;
        color: #1958ac;
        margin-top: 0px !important;
}
.headerMenu_top a.btn-expert:hover {
  background: #211D3A;
  color: #fff;
}
.home .site-header .site-logo .custom-logo ,
.site-header.scrolled .site-logo .custom-logo {
    filter: invert(1)brightness(100);
}
.pll-switcher-select {
      padding: 6px;
    border-radius: 40px;
}

.headerMenu_top .social-icons {
  gap: 20px;
}
header.site-header {
    padding-top: 20px;
    padding-bottom: 20px;
    position: fixed;
    width: 100%;
}

.headerMenu_top .social-icons-inner {
  display: flex;
    gap: 12px;
    padding-right: 15px;
    border-right: 1px solid #fff;
} 
.headerMenu_top .social-icons-inner img {
    width: 24px;
}
.headerMenu_top .social-icons-inner a:hover {
  opacity: .5;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 15px 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background: transparent; /* default */
}

.site-header.scrolled {
  background: #0296cb; /* change this color as you like */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.site-header.scrolled span.text, .site-header.scrolled a.text {
    color: #ffffff;
}

header.site-header .site-logo .custom-logo {
      width: 150px;
    height: auto;
}

.site-header.scrolled .header-item .d-block {
  color: #fff;
}

.site-header.scrolled .header-item img {
    filter: brightness(0) invert(1);
}


/*Submenu*/

.menu-item-has-children{
    position:relative;
    cursor:pointer
}
.menu-item-has-children >a:before {
    content: "";
    display: inline-block;
    margin-right: 0;
    vertical-align: middle;
    width: 6px;
    height: 6px;
    right: 0;
    border: solid #fff;
    border-width: 0 1px 1px 0;
    transform: translatey(-50%) rotate(45deg);
    transition: transform 0.3s ease;
    position: absolute;
    right: -17px;
    top: 50%;
}
.menu-item-has-children:hover > a::before {
    transform: rotate(-135deg);
    border-color: #0296cb;
}
.sub-menu{
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    /*min-width: 200px;*/
    min-width:max-content;
    z-index: 1000;
    padding: 0;
}
.site-header .main-nav .sub-menu >.menu-item a{
  color:inherit;
  display:block;
  padding:7px 15px;
  font-size:15px;
  text-transform:capitalize;
}
@media (min-width:1199px){
    .menu-item-has-children .sub-menu {
      display: block;
      opacity: 0;
      transform: translateY(12px) scaleY(0);
      transform-origin: top;
      transition: transform 0.3s ease-out, opacity 0.3s ease-out;
      border-bottom-left-radius: 7px;
      border-bottom-right-radius: 7px;
      box-shadow:0 4px 12px rgba(0,0,0,0.25);
    }
    .menu-item-has-children:hover > .sub-menu {
      scroll-behavior: smooth;
      opacity: 1;
      transform: translateY(12px) scaleY(1);
    }
    .site-header .main-nav .sub-menu >.menu-item{
        list-style:none;
        color: #211d3a !important;
    }
    
}


@media (min-width: 1600px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1560px !important;
    }
}


@media (max-width:1440px){
    .home .site-header span.text, .home .site-header a.text{
        font-size:16px;
    }
}
/* Hide menu content on mobile */
.header-right-wrapper {
    display: flex;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 25px;
    height: 18px;
    justify-content: space-between;
    position: relative;
    z-index: 1001;
}
.mobile-menu-toggle span {
    display: block;
    height: 3px;
    background: #000;
    border-radius: 3px;
}


/* Toggle animation */
.mobile-menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


@media (max-width: 1440px) {
  .site-header .main-nav .menu {
      gap: 30px;
  }
  .site-header .main-nav .menu li a{
    font-size: 16px;
  }
}

/* Mobile Styles */
@media (max-width: 1199.98px) {
    .header-right-wrapper {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #fff;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .header-right-wrapper.active {
        display: flex;
                height: 100vh;
        position: fixed;
        top: 0;
        width: 100%;
        background: #115d8b;
                overflow: scroll;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    .home .mobile-menu-toggle,
    .site-header.scrolled .mobile-menu-toggle{
      filter: invert(1);
    }

    .main-nav .menu {
        flex-direction: column;
        padding: 0;
        margin: 0;
        list-style: none;
                text-align: center;
    }

    .main-nav .menu li {
        margin: 10px 0;
    }

    .social-icons {
        margin-top: 20px;
        flex-direction: column;
    }

    .btn-expert {
        margin-top: 15px;
        text-align: center;
        display: block;
    }

    .site-logo .custom-logo-link img {
        width: 170px;
        height: auto;
    }

    .mobile-menu-toggle {
      position: absolute;
    /*right: 90px;*/
    right: 10%;
    top: 38%;
    }

    .header-info.headerMenu_top.container.d-flex {
      display: block !important;
    }
    .headerMenu_top .social-icons-inner {
        border-right: 1px solid transparent;
                margin-bottom: 15px;
    }

    .site-header .header-info {
      display: none;
    }


}


@media (max-width: 575px) {
  header.site-header {
      padding-top: 10px;
      padding-bottom: 10px;
  }
  .site-logo .custom-logo-link img {
      width: 120px;
      height: auto;
  }
  .mobile-menu-toggle {
      right: 5%;
  }
}

@media (max-width: 1199.98px) {
    .menu-item-has-children >a:before{
        display:none;
    }
    .main-nav .sub-menu {
        display: none;
        position: static;
        background: transparent;
        color: #fff;
        box-shadow: none;
    }
    .main-nav .menu li{
        list-style:none;
    }
    .main-nav .dropdown-arrow {
        position: absolute;
        display: inline-block;
        right: 5%;
        margin-left: auto;
        width: 8px;
        height: 8px;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: rotate(45deg);
        transition: transform 0.3s ease;
    }
    .headerMenu_top{
      background:transparent;
    }

    .main-nav .menu-item-has-children.open > a .dropdown-arrow {
        transform: rotate(-135deg);
    }
    .main-nav .menu-item-has-children > a {
      display:flex;
        align-items: center;
    }
    .site-header .main-nav .menu{
        text-align:left;
    }
    .mobile-menu-toggle.open {
        color: #fff;
        filter: invert(1);
    }
}

/* Footer S */

.footer {
  background: #211D3A;
  color: #fff;
  padding-top: 68px;
  padding-bottom: 0px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  padding: 20px 0px 50px 0px;
  flex-wrap: wrap;
}

/*.footer-col {
  width: 28%;
  min-width: 250px;
}

.footer-col-two {
  width: 36%;
  min-width: 300px;
}
*/
.footer-col-two .map-location {
  display: flex;
    align-items: center;
}

.footer-logo {
  width: 180px;
  filter: invert(1) brightness(100);
  margin-bottom: 20px;
}

.footer-col h3 {
  font-size: 31px;
  margin-bottom: 15px;
      font-weight: 700;
}

.footer-col p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #ddd;
  font-weight: 500;
}

.footer-info {
  margin-top: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.footer-info .icon_img a {
	color:#fff; 
	text-decoration:none;
  
}
.footer-info span.text_call {
    opacity: 0.8;
    font-size: 14px;
}

.footer-info i {
  margin-right: 8px;
}

.footer-info .icon {
  width: 48px;
  height: 48px;
  margin-right: 10px;
  font-size: 28px;
}

.map-location img {
  max-width: 100%;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    font-size: 28px;
    color: #fff;
    transition: 0.3s;
    width: 36px;
    height: 36px;
    background: transparent;
    text-align: center;
    align-items: center;
    line-height: 36px;
    border-radius: 50%;
}

.social-links a:hover {
  color: #0296CB;
  opacity: .5;
}

/*.social-links a i {
  color: #262F57;
}*/
.header-item i{font-size: 28px; }
.site-header .header-item i{color:var(--color-text);}
.home .site-header .header-item i,
.site-header.scrolled .header-item i{color:#fff; }
.footer-bottom {
  background: #0296CB;
  padding: 15px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: 18px;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  margin-left: 10px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.footer-menu li {
  margin-left: 40px;
}

.footer-menu a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
}

.footer-menu a:hover {
  text-decoration: none;
}

.d-flex_copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-menu ul {
      list-style: none;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}
.footer .icon-text a {
    color: inherit;
    font-size: inherit;
    text-decoration: none;
}
@media (min-width:992px){
    .footer-col .des{
        max-width:350px;
    }
}

@media (max-width: 991px){
  .icon-text {
    font-size: 14px;
  }
}
@media(max-width:767px){
  .footer-info .icon{
    width: auto;
    height: auto;
  }
  .footer-menu a,
  .footer-bottom p{
    font-size: 14px;
  }
  .role-cta-wrapper .role-cta-call i{
    display: none;
  }
}

@media (max-width: 576px){
    .footer-bottom a{
        margin-left:8px;
    }
}
/* Footer E */
/* Polylang Language Switcher Dropdown */
#lang_choice_1 {
    padding: 6px 18px;
    border-radius: 25px;   /* गोल pill shape */
    border:1px solid #fff;
    background: #115d8b;   /* blue background (आपका theme color) */
    color: #fff;           /* white text */
    font-weight: 600;
    font-size: 14px;
    appearance: none;      /* default arrow हटाएगा */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='12' viewBox='0 0 24 24' width='12' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 25px;
    padding-right: 30px;   /* arrow के लिए space */
        cursor: pointer;
}

/* Dropdown open होने पर options */
#lang_choice_1 option {
    color: #000;
    background: #fff;
}



@media (max-width: 1600px) {
  .footer-menu li {
      margin-left: 30px;
  }
  .footer-col-two .map-location {
    display: block;
  }
}

@media (max-width: 1440px) {
  .d-flex_copy {
      display: block;
      text-align: center;
  }
  .footer-menu {
      display: ruby;
      justify-content: center;
      margin-top: 10px;
  }
  .footer-bottom p {
      padding-bottom: 15px;
  }
}
@media (min-width:1441px) and (max-width: 1600px) {
	.footer-menu li{margin-left:20px;}
	.footer-bottom p{font-size:16px;}
}
@media (max-width:1440px){
    .footer-bottom {
        justify-content:center;
    }
    .footer-menu li{
        margin-left:0;
    }
    .footer-menu li+li{
        margin-left: 30px;
    }
}
@media (max-width: 1199.98px) {
  .footer {
      padding-top: 50px;
  }
  .footer-top {
      padding: 20px 0px 30px 0px;
  }
  .footer-logo {
      width: 200px;
      margin-bottom: 20px;
  }
  .footer-col h3 {
      font-size: 26px;
  }

}
@media (max-width:991px){
	.our-services-section .services_title {
		margin-bottom: 15px;}
}
@media (max-width: 767px) {
  .footer-col {
      width: 100%;
      min-width: 100%;
  }
  .footer-col-two {
      width: 100%;
      min-width: 100%;
  }
  .map-location img {
      max-width: 100%;
      width: 100%;
  }
	
}

@media (max-width: 575px) {
  .footer-menu li+li {
        margin-left: 5px;
    }
    .footer-logo {
        width: 180px;
        margin-bottom: 5px;
    }
    .footer-menu {
        display: ruby;
        justify-content: center;
        margin-top: 10px;
    }
}


.padding_top_100 {
  padding-top: 100px;
}

.padding_bottom_100 {
  padding-bottom: 100px;
}



/* Home Page Start */
.hero-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh; /* पूरे screen की height */
}

.hero-content {
    flex: 1;
    padding-right: 40px;
    padding-top: 60px;
    /*padding: 50px;
    padding-left: 10%;*/
}




.hero-subtitle {
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-subtitle::before {
  content: "";
  flex: 1;
  border-bottom: 1px solid #fff;
  width: 60px;
  max-width: 60px;
  margin-right: 10px;
}

.home-page-main {
  background: #0296CB;
}


.hero-image {
    flex: 1;
    height: 100vh; /* full height */
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* पूरा भरने के लिए */
}

.hero-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0296CB;
  border-radius: 0 0 80px 0;
  color: #fff;
}
.hero-content {
  max-width: 53%;
}
.hero-image {
    max-width: 47%;
    background: #fff;
    max-height: 946px;
    min-height: 100vh;
    width: 100%;
    position: absolute;
    top:0;
    right: 0;
}
.hero-image::before{
    position:absolute;
    content:'';
    top: 0;
    right: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 0 0px 240px 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}
.hero-subtitle {
    font-size: 16px;
    letter-spacing: 1px;
    color: #FFFFFF;
    font-weight: 500;
}
.hero-title {
  font-size: 54px;
  font-weight: 800;
  margin: 10px 0;
}
.hero-desc {
  margin: 20px 0px 30px;
  font-size: 20px;
      width: 80%;
}
.btn-hero {
  display: inline-flex;
  gap: 10px;
  padding: 12px 24px;
  background: #211D3A;
  border: 1px solid #211D3A;;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
}
.hero-image img {
  border-radius: 0 0px 240px 0;
  max-width: 100%;
}
.btn-hero:hover {
  background: transparent;
  color: #211D3A;
  border: 1px solid #211D3A;
}
.btn-hero:hover img {
	filter: brightness(0) saturate(100%) invert(13%) sepia(16%) saturate(1870%) hue-rotate(208deg) brightness(90%) contrast(98%);
}

.home-page-main .container-fluid {
  padding: 0px;
}


.our-services-section .our_serives_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:20px;
}

.our_serives_right {
  max-width: 660px;
}



.our_services_span {
  display: flex;
  align-items: center;
  text-align: center;
  color: #262F57;
      margin-bottom: 18px;
      font-weight: bold;
}

.our_services_span::before {
  content: "";
  flex: 1;
  border-bottom: 2px solid #262F57;
  width: 60px;
  max-width: 60px;
  margin-right: 10px;
}


.our-services-section .services_title {
    font-size: 26px;
    color: #262F57;
    font-weight: 600;
}

.blog-section.home-blog-section .services_title {
        text-align: center;
    text-transform: capitalize;
}
.blog-item .blog-content .blog-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.our_serives_right p {
      color: #3C3C3C;
      margin-bottom: 0px;
}


.our-services-section .services {
  /*display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;*/
  padding-top: 40px;
}
.our-services-section .services-swiper {
  padding-top: 40px;
}
.our-services-section .service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.our-services-section .service-card-link {
  display: block;
	transition: transform 0.3s ease-in;
}
.our-services-section .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.our-services-section .service-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.our-services-section .service-content {
    padding: 16px;
    background: #F0F8FF;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    border-radius: 12px;
}

.our-services-section .service-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #262F57;
    flex: 1;
}

.our-services-section .service-content span.read-more{
	display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #1958ac;
    text-decoration: none;
    transition: color 0.3s ease;
    background: #fff;
    width: 100%;
    padding: 8px 10px;
    justify-content: space-between;
}


.our-services-section .service-content a span {
  margin-left: 8px;
  font-size: 18px;
  transition: transform 0.3s ease-in;
}

.our-services-section a:hover .service-content span.read-more{
  color: #fff;
  background-color: #1958ac;
}
.our-services-section .service-card-link:active .service-content span.read-more{
    color:#fffff;
}
/* .our-services-section .service-content a:hover span.read-more{
  color: #fff;
  background-color: #0296CB;
} */
.our-services-section a:hover .service-content span.read-more {
  transform: translateX(4px);
}

.our-services-section .service-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #3c3c3c;
  margin-top: 6px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.our-services-section .service-content {
  display:flex;
  flex-direction:column;
}

.service-sec-main{
  position: relative;
}

.services-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  /* pointer-events: none; */
  /* transform: translateY(-50%); */
}

.services-prev,
.services-next {
  font-weight: 700;
  pointer-events: auto;
  position: absolute;
  background: #fff;
  color: #000 !important;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.our-services-section .services-prev {left: -50px;}
.our-services-section .services-next {right: -50px;}
.our-services-section {
  position: relative;
}

.our-services-section .swiper-button-prev,
.our-services-section .swiper-button-next {
  position: absolute;
  top: calc( 50% + 40px);
  width: 40px;
  height: 40px;
  font-weight:900;  
  transform: translateY(-50%);
  z-index: 99;
  color: #000 !important;
}
.about-desc ul {
list-style-type: disc;
}
.about-desc ul {
  list-style: none;
  padding-left: 0;
}

.about-desc ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.about-desc ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #252e56;
  font-weight: 700;
}

@media(min-width:992px){
   .single-role .role-section-wrapper .role-section-content{
    width: 50%;
    padding-left: 5%;
}
.single-role .vision-section .role-section-wrapper .role-section-content{
     padding-left:0;
    padding-right:5%
} 
.single-role .role-section-image {
    width:45%;
}
}

@media(max-width:1199.98px){
    .service-sec-main {
    max-width: 90%;
    margin: 0 auto;}
}
@media (max-width:991px){
    .our-services-section .services-prev{
        left: -15px;
    }
    .our-services-section .swiper-button-next{
        right: -15px;
    }
}

@media (min-width:1200px){
  .our-services-section .service-content {
    display:flex;
    height:190px;
  }
}


.logo-slider {
  background: #1958ac;
  padding: 55px 20px 180px;
  text-align: center;
  color: #fff;
}
.logo-slider .slider-header {
    margin-bottom: 50px;
}

.swiper.mySwiper {
  width: 75%;
}

.logo-slider .slider-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.logo-slider .slider-header p {
  font-size: 14px;
  margin-bottom: 20px;
}

.logo-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-slider img {
  max-width: 120px;
  max-height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* makes logos white */
  transition: transform 0.3s ease;
}
.swiper-button-next, .swiper-button-prev {
  color: #fff !important;
}

.logo-slider img:hover {
  transform: scale(1.1);
}

.swiper-button-next, .swiper-button-prev {
  color: #fff;
  
}
.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 14px !important;
}


.trust_section {
    padding-top: 153px;
    padding-bottom: 160px;
    background: #F1F1F1;
    margin-top: -100px;
    border-radius: 130px 0px 0px 0px;
}


/*.trust_img_call {
    border-radius: 0px 85px 0px 85px;
    overflow: hidden;
}*/

.trust_img_call .exp-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    bottom: -50px;
    right: -40px;
    width: 215px;
    height: 215px;
    border: 6px solid #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    animation: floatCard 6s ease-in-out infinite;
    background: linear-gradient(135deg, #0b6db7, #0a4f8f);
    color: #fff;
    padding: 28px 15px;
    border-radius: 18px;
    text-align: center;
}



.trust_img_call .exp-card .trust {
    font-size: 1.5rem;
}

.trust_img_call{
    position: relative;
}
.trust_img_call .img-wrap img {
    max-height: 430px;
    width: 100%;
}
.trust_img_call img{
    border-radius: 0px 85px 0px 85px;
    width: 100%;
}

.your_trust_right .year_title {
    font-size: 65px;
    font-weight: 800;
}

.your_trust_right span.year {
    color: #0094CC;
    display: block;
}

.your_trust_right span.trust {
    color: #1958ac;
}
.trust-content {
    font-size: 18px;
    color: #3C3C3C;
}

.your_trust_right {
    padding:0px 50px;
}


.exp-card::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 60%);
}

.exp-card .year-count {
  display: block;
  font-size: 84px;
  font-weight: 800;
  line-height: 57px;
  margin-bottom: 10px;
}

.exp-card .year {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0.9;
  text-transform: uppercase;
}

.exp-card .trust {
  margin-top: 11px;
  font-size: 22px;
  font-weight: 600;
  line-height: 100%;
}

.circle-stats-wrap {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 100px;
}
.circle-stats-wrap .circle-stat{
    flex: 0 0 200px;
    max-width: 200px;
}

.circle-stats-wrap .circle-progress {
  --deg: 0deg;
  width: 170px;
  height: 170px;
  border-radius: 50%;

  background: conic-gradient(
    #64c3e5  0deg,
    #1a73e8 var(--deg),
    #e6e9f2 var(--deg),
    #e6e9f2 360deg
  );

  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-stats-wrap .circle-inner {
  width: 160px;
  height: 160px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.circle-stats-wrap .circle-value {
  font-size: 26px;
  font-weight: 700;
}

.circle-stats-wrap .circle-title {
  font-size: 14px;
  color: #666;
  margin-top: 6px;
}

@media (max-width: 767px) {
  .exp-card {
    width: 100%;
    min-height: auto;
    padding: 24px;
  }
  .trust_img_call .trust_img_call .exp-card{
    bottom: -90px;
  }

  .trust_img_call .exp-card .year-count {
    font-size: 72px;
    line-height:36px;
  }

  .trust_img_call .exp-card .trust {
    font-size: 18px;
  }
}

.talk_button {
  display: flex;
      margin-top: 30px;
}

.talk_button a {
      background: #262F57;
      border: 1px solid #262F57;
    padding: 15px 25px;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}

.talk_button a:hover {
  background-color:transparent ;
  color: #262F57;
}

.trust_section .row {
  align-items: center;
}

/* Home Page End */


.main-nav .menu li.current-menu-item > a,
.main-nav .menu li.current-menu-parent > a,
.main-nav .menu li.current-menu-ancestor > a {
  font-weight: 700;
}




.about-section {
  padding: 60px 0;
  background: #fff;
}

.about-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}

.about-left, .about-right {
  flex: 1;
}

.about-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.about-image-box {
  position: relative;
}

.about-image-box img {
  max-width: 100%;
	max-height:800px;
  border-radius: 10px;
      margin-right: 5px;
}

.insight-box {
    position: absolute;
    bottom: -45px;
    background: #0073b6;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    right: 80px;
}

.about-image-box ul li> img {
    filter: invert(1)brightness(100);
}

.insight-box .title {
      font-size: 17px;
    color: #fff;
    margin-bottom: 15px;
}

.insight-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.insight-box ul li {
  margin-bottom: 10px;
}

.btn-expert {
  display: inline-block;
  background: #001f4d;
  color: #fff;
  padding: 10px 18px;
  border-radius: 35px;
  text-decoration: none;
  margin-top: 10px;
}

.about-desc {
  margin-bottom: 20px;
  color: #333;
}

.expertise-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.expertise-points {
  list-style: none;
  padding: 0;
}

.expertise-points li {
  margin-bottom: 6px;
}

.accordion .accordion-item {
  border-top: 1px solid #ddd;
}

.accordion-title {
  padding: 12px;
  cursor: pointer;
  position: relative;
  font-weight: 300;
    font-size: 25px;
    color: #3C3C3C;
}

.accordion-title::after {
  content: "+";
  position: absolute;
  right: 20px;
}

.accordion-item.active .accordion-title::after {
  content: "-";
}

.accordion-content {
  display: none;
  padding: 10px 15px;
  color: #555;
  transition: max-height 0.5s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  display: block;
  border-top: 1px solid #ddd;
  transition: max-height 0.5s ease, padding 0.3s ease;
}

.img-on-text {
  margin-top: 20px;
}

.accordion-item .accordion-content {
    margin: 10px;
    transition: max-height 0.5s ease, padding 0.3s ease;
}
.expertise-points li img {
  margin-right: 10px;
}

.about-main {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-main .about-images {
  position: relative;
  max-width: 520px;
}

.about-img img {
  aspect-ratio: 4/3;
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.about-img.secondary {
  position: absolute;
  bottom: -50px;
  right: -40px;
  width: 55%;
  border-radius:15px;
  border: 6px solid #fff;
  animation: floatCard 6s ease-in-out infinite;
}


.about-desc {
  margin-bottom: 40px;
}

.about-main .value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.about-main .value-card {
  padding: 22px;
  border-radius: 16px;
  background: #f8faff;
  transition: transform .3s ease, box-shadow .3s ease;
}

.about-main .value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.about-main .value-card img {
  width: 34px;
  margin-bottom: 12px;
}

.about-main .value-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
  color: #0a0f2c;
}

.about-main .value-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-main .about-images {
    order: -1;
    max-width: 100%;
    margin-bottom: 50px;
  }

  .about-img.secondary {
    width: 50%;
    right: -20px;
  }

  .about-main .value-grid {
    grid-template-columns: 1fr;
  }

  .trust_img_call .exp-card{
    width: 180px;
    height: 180px;
  }

  .trust_img_call {
    width: 98%; margin: 0 auto;}
}
@media (max-width: 767px){
    .trust_img_call .exp-card{
        right:0;
      }
}
@media (max-width: 576px) {
  .about-img.secondary {
    right: 0;
  }
  .trust_img_call .exp-card {
    right: 0;
    padding: 15px 20px;
    width: 150px;
    height: 150px;
   }
    .trust_img_call .exp-card .year-count {
        font-size: 48px;
    }
    .trust_img_call img {
        border-radius: 0px 60px 0px 60px;
    }
}


.specialist-section {
  background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%);
}

.specialist-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.specialist-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.section-desc {
  margin: 20px 0 35px;
}

.specialist-content .stats-wrap {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.specialist-content .stat-item {
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.specialist-content .stat-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #1e1e1e;
}

.specialist-content .progress-bar {
  height: 6px;
  background: #e6e9f5;
  border-radius: 50px;
  overflow: hidden;
}

.specialist-content .progress-bar .progress-fill {
  display: block;
  height: 100%;
  width: 0; 
  background: linear-gradient(90deg, #1958ac, #64c3e5);
  border-radius: 50px;
  transition: width 0.9s ease;
}
.specialist-media.two-image-layout {
  position: relative;
  max-width: 520px;
}

.specialist-media .media-primary img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.specialist-media .media-secondary {
  position: absolute;
  bottom: -50px;
  right: -40px;
  width: 55%;
  animation: floatCard 6s ease-in-out infinite;
}

.specialist-media .media-secondary img {
  width: 100%;
  border-radius: 15px;
  border: 6px solid #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

@media (max-width: 991px) {
  .specialist-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }  
    
  .specialist-media .media-secondary{
     right: -20px;   
  }  

  .specialist-media.two-image-layout {
    max-width: 98%;
    margin: 0 auto;
  }

  .specialist-content{
    margin-top:50px;
  }
}
@media (max-width: 767px){
    .specialist-media .media-secondary{
        right:0;
    }
    .testimonial-section .testimonial-box {
        width:90%;
        margin:0 auto;
    }
}
@media (max-width: 576px) {
  .media-secondary {
    width: 50%;
  }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}



.video-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  color: #fff;
  text-align: center;
  margin-top: 50px;
}
.video-section .overlay {
  position: absolute;
  inset: 0;
  background: #1958acCC;
}
.video-section .video-content {
  position: relative;
  z-index: 2;
  max-width: 1056px;
  margin: 0 auto;
}
.video-play-btn {
  display: inline-block;
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 50%;
  font-size: 38px;
  line-height: 84px;
  color: #000;
  margin-bottom: 20px;
  transition: 0.3s;
}
.video-play-btn:hover {
  background: #c3c3c3;
  color: #fff;
}
.btn-expert {
  background: #0a1a2f;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  display: inline-block;
  margin-top: 20px;
  transition: 0.3s;
      font-weight: 600;
}
.btn-expert:hover {
	background: #fff;
	color: #1958ac;
}

.play-icon img {
      padding: 26px 30px;
}
.video-section .video-content .title_size {
  font-size: 26px;
  font-weight: 600;
}
.video-section .video-content p {
  font-size: 22px;
}


.financial-section {
  padding-top: 60px;
}
.financial-section .service-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: left;
  transition: all 0.3s ease-in-out;
}
.financial-section .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.financial-section .service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content:center;
  align-items: center;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 999px;
}
.financial-section .service-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1E1E1E;
}
.financial-section .financial-content {
  font-size: 18px;
  color: #3C3C3C;
  line-height: 1.6;
}


.testimonial-section {
  background: rgba(0, 71, 151, 0.75) no-repeat center/cover;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
}
.testimonial-heading {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}
.testimonial-content {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 20px;
}
.testimonial-author {
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.author-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}
.author-name {
  font-weight: bold;
}
.swiper-pagination-bullet {
  background: #fff !important;
}

.testimonial-content img.one {
  float: left;
}

.testimonial-content img.two {
      float: inline-end;
}


.testimonial-section .swiper {
    padding-bottom: 50px;
}

.testimonial-section .overlay {
  position: absolute;
    inset: 0;
    background: #1958acCC;

}

.pro-cta-section {
  padding: 40px;
  background: linear-gradient(135deg, #0296CB, #211D3A);
  position: relative;
  overflow: hidden;
}

.pro-cta-section .pro-cta-inner {
  max-width: 1200px;
  margin: auto;
  padding: 50px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  backdrop-filter: blur(12px);
  border-radius: 20px;
}

.pro-cta-section .cta-content {
  max-width: 700px;
}

.pro-cta-section .cta-accent {
  display: inline-block;
  width: 60px;
  height: 4px;
  background: #211D3A;
  margin-bottom: 18px;
  border-radius: 4px;
}

.pro-cta-section .pro-cta-inner h2 {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.pro-cta-section .pro-cta-inner p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  color: rgba(255,255,255,0.85);
}

.pro-cta-section .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  background: #ffffff;
  color: #211D3A;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.pro-cta-section .cta-btn span {
  transition: transform 0.3s ease;
}

.pro-cta-section .cta-btn:hover {
  background: #ffffff;
  color: #000;
}

.pro-cta-section .cta-btn:hover span {
  transform: translateX(6px);
}
.faq-section {
  background: #f1f1f1;
}

.faq-section .faq-container {
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.faq-section .faq-left img {
  max-height: 460px;
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  border-radius: 16px;
  margin-bottom: 25px;
}


.faq-section .faq-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-section .faq-question {
  width: 100%;
  padding: 22px 26px;
  font-size: 17px;
  font-weight: 600;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  gap:15px;
  align-items: center;
  cursor: pointer;
  text-align: left;
  color: #111827;
}

.faq-section .faq-question .faq-icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-section .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 26px;
}

.faq-section .faq-answer p {
  padding-bottom: 20px;
  font-size: 16px;
  color: #3c3c3c;
  line-height: 1.6;
}

.faq-section .faq-item.active .faq-answer {
  max-height: max-content;
  padding-bottom: 26px;
}

.faq-section .faq-item.active .icon {
  transform: rotate(45deg);
}

@media (max-width: 991.98px) {
  .pro-cta-section .pro-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 15px 25px;
    gap:15px;
  }
  .pro-cta-section .cta-btn {
    margin-top: 20px;
  }
  .pro-cta-section .pro-cta-inner h2 {
    font-size: 30px;
  }
  .faq-section .faq-container {
    display: block;
  }
  .faq-section .faq-question{
    font-size: 16px;
  }
  .faq-section .faq-left img{
    max-height:350px;
    aspect-ratio: 4 / 3;
  }
}

@media(max-width:576px){
    .pro-cta-section{
        padding: 30px;
    }
    .pro-cta-section .pro-cta-inner{
        padding: 15px 5px;
    }
    .pro-cta-section .pro-cta-inner h2{
        font-size:26px;
    }
}
.contact-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 40px 0px;
}
.contact-section .our-services-section .services_title, 
.contact-section .form-main-flex .form-left-colum h4{
  color: #ffffff !important ;
}
.form-left-colum {
    width: 536px;
    background-color: #E5F8FF;
    border-radius: 8px;
    overflow: hidden;
    margin-top:40px;
}

.challenge-bg {
    backdrop-filter: blur(40px);
    background-color: #1958ac99;
    color: #fff;
    padding: 20px;
}


.form-left-colum .contact_details {
    padding: 0px 30px;
}

.contact_details .contact-col, .contact_details .iconContent {
      display: flex;
    justify-content: space-between;
    align-items: center;
}
.form-left-colum .contact_details .contact-content {
  margin-left: 20px;
  color: #000000;
}
.form-left-colum .contact_details .contact_data a {
  color: #000;
  text-decoration: none;
}
.form-left-colum .contact_details .contact-row {
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    padding-top: 20px;
}
.form-left-colum .contact_details .contact-row a {
  text-decoration: none;
}

.contact-section .form-main-flex{
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap:30px;
}
.contact-section .form-right-colum .shereIcon img {
    filter: invert(0)brightness(100);
}

.contact-section .form-row {
  display: flex;
  gap: 20px; /* space between inputs */
}

.contact-section .form-row label {
  flex: 1;   /* make both fields equal width */
}

.form-right-colum {
    flex:100%;
    width: 670px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.form-right-colum input {
  width: 100%;
  height: 46px;
  border-radius:5px;
  padding: 5px;
  outline-color: #262F57;
  border: 1px solid #0000001A;
}
.form-right-colum label {
    width: 100%;
    font-size: 15px;
    color: #000000BF;
}

.form-right-colum .formTitle {
    background: #1958ac;
    padding: 33px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.form-right-colum .formTitle .title {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
}

.form-right-colum .wpcf7-form {
  padding: 25px;
}
.form-right-colum textarea {
    resize: inherit;
    width: 100%;
    height: 110px;
    border: 1px solid #0000001A;
    border-radius:5px;
    padding: 5px;
    outline-color: #262F57
}

@media (min-width:1440px){
   .contact-section .form-col {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
  } 
}
@media (max-width:1439.98px){
    .contact-section .form-main-flex .form-col {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}
.form-right-colum input.wpcf7-submit {
  position: relative;
/*   padding-right: 50px;  */
  background: #1958ac; 
  color: #fff;
  border: 1px solid #1958ac;
  cursor: pointer;
  font-size: 16px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.form-right-colum input.wpcf7-submit:hover {
  background: transparent;
  color: #1958ac;
}
.contact-section span.m {
    color:#dc3232;
}
.form-right-colum input.wpcf7-submit::after {
	display:none;
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;  /* arrow image size */
  height: 20px;
  background: url("http://65.0.104.25/wp-content/uploads/2025/09/arrow-long.svg") no-repeat center;
  background-size: contain;
  transition: transform 0.3s ease;
}

.form-right-colum input.wpcf7-submit:hover::after {
  transform: translate(5px, -50%); /* hover effect */
}


.contact-section .our_services_span{color: #fff;}
.contact-section .our_services_span::before{border-color:#fff;}


.home-blog-section {
  padding-top: 70px;
  padding-bottom: 50px;
  background-color: #F1F1F1;
}
.home-blog-section .our_serives_top {
      justify-content: center;
          margin-bottom: 20px;
}

.home-blog-section .our_services_span {
      justify-content: center;
}

.home-blog-section .blog-item .blog-content {
    background: #fff;
}


.team-title.services_title {
    font-size: 26px;
    color: #262F57;
    font-weight: 600;
}

.meet-team-section.blog-section.home-blog-section {background:#ffffff;}
.meet-team-section .team-image{height:350px !important;}
.meet-team-section .team-image img{width:100%; height:100%; aspect-ratio:4/3;  object-position:top center;}
.meet-team-section .team-content {padding:15px; text-align:center; }
.team-content h3{font-size:20px; font-weight:600; color:#262F57; text-transform:capitalize;}
.team-content >p {color:#1E1E1E; font-size:16px; margin-bottom:0;}
.team-card .blog-item {  border-radius:12px;   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important; background: #F0F8FF; transition: all 0.3s ease-in-out;}
.team-card .blog-item:hover {   transform: translateY(-5px);}
.page-template-archive .banner-section, .category .banner-section, .search .banner-section {height:350px; background-size: cover; background-position: top; background-repeat: no-repeat;display:flex; justify-content:center; align-items:center; position:relative; }
section.banner-section.inner-banner::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    /*opacity:0.77;*/
    opacity:1;
    z-index: 0;
    background-color: #dddddd;
}
.page-template-archive .banner-section h1, .category .banner-section h1, .search .banner-section h1{padding-top:150px; color:#262F57;position: relative;}
.blog-item {border-radius:10px; box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.06); height:100%;}
.blog-img {  height: 200px;}
.blog-img img { height:100%; object-fit:cover;}
.blog-item .blog-content {display:flex; flex-flow:column nowrap; padding:20px; height:calc(100% - 200px)}
.blog-item .blog-tags {margin-bottom:10px;}
.blog-item .blog-content .read-more {margin-top:auto;text-decoration: none;  display: flex
;  gap: 28px; font-size: 20px;
  align-items:center;  color: #0094CC;}
.blog-item .cat-tag {background-color:#E9EDFF;color:#262F57; font-weight:500;font-size:12px; border-radius:4px; padding:8px 10px; min-width:66px; text-align:center; line-height:1; }
.blog-item .cat-tag>a{text-decoration:none; color:inherit; font-family: "DM Sans", sans-serif;}
.blog-item .date-text {font-size:12px;font-weight:500;color: #000000cf; font-family: "DM Sans", sans-serif;}
.blog-title , .blog-title>a{
    font-size:20px;
    line-height:140%;
    font-weight:600;
    color:#262F57;
    text-decoration:none;
    text-transform:capitalize;
  transition:all 0.3s ease;
  display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blog-title>a:hover{
  color:var(--color-secondary);
}
.blog-text {  color:#262F57; font-size:1rem; margin-bottom:30px;}
.blog-item .blog-content .read-more span{transition: transform 0.3s 
ease;}
.blog-item .blog-content .read-more:hover span {transform: translateX(4px);}
.blog-section .sidebar { background-color: #ffffff; padding: 2rem; border: 1px solid #e9ecef; border-radius: 8px; }
.blog-section .sidebar h5 { font-weight: 700; color: #262F57; text-transform: uppercase; border-bottom: 3px solid #262F57; padding-bottom: 0.5rem; display: inline-block; }
.blog-section .sidebar .search-form { display: flex; }
.blog-section .sidebar .search-form> label{display:block; width:100%;}
.blog-section .sidebar .search-field { outline: none; border: 1px solid #262F57; border-top-left-radius: 5px;border-bottom-left-radius:5px; padding: 0.6rem; width: 100%; }
.blog-section .sidebar .search-submit { background-color: #262F57; color: white; border: none; border-top-right-radius: 5px; border-bottom-right-radius:5px; padding: 0.6rem 1.2rem; cursor: pointer; transition: background-color 0.3s ease; }
.blog-section .sidebar .search-submit:hover { background-color: var(--color-secondary); }
.blog-section .sidebar .list-unstyled a { color: #262F57; text-decoration: none; font-weight: 500; display: block; padding: 0.5rem 0; transition: color 0.3s ease; }
.blog-section .sidebar .list-unstyled a:hover { color: var(--color-secondary); }
.blog-section .sidebar .list-unstyled li { display: flex; align-items: center; gap: 5px; border-bottom: 1px dashed #e9ecef; margin-bottom: 0; color: #262F57; }
.blog-section .sidebar .list-unstyled li:last-child { border-bottom: none; }
.pagination span, .pagination >a {display:inline-block; padding:5px; border:1px solid var(--color-secondary); padding:10px 20px; text-decoration:none; color: var(--color-secondary); transition: all 0.3s ease;}
.pagination span.current, .pagination >a:hover {background-color:var(--color-secondary); color: #ffffff;}
.recent-posts .item {
    display: flex;
    margin-bottom: 1.25rem;
}

.recent-posts .thumb {
    height: 80px;
    overflow: hidden;
    position: relative;
    min-width: 80px;
    margin-right: 15px;
    border-radius: 5px;
}
.recent-posts img{
    width:100%;
    object-fit:cover;
    height:100%;
}

.recent-posts .info {margin-top:5px;}
.recent-posts .info .title,.recent-posts .info .title >a{color: #262F57;font-size:15px;font-weight:600; text-decoration:none;line-height: 1.25rem;}
.recent-posts .info time{display: block;  color: #262F57;
    text-transform: capitalize;
    margin-top: 5px;
    font-size: 14px;}
.no-result{ font-size:20px; color:#262F57; font-weight:500;}
@media (max-width:767px){
  .page-template-archive .banner-section{height:250px;}
  .page-template-archive .banner-section h1{padding-top:50px;}
}

@media (max-width: 1440px) {
  .padding_bottom_100 {
        padding-bottom: 70px;
    }
    .padding_top_100 {
      padding-top: 70px;
  }
  .hero-title {
      font-size: 50px;
      font-weight: 800;
      margin: 10px 0;
  }
  .hero-desc {
      font-size: 18px;
  }
  .our-services-section .services_title {
      font-size: 22px;
  }
  .our-services-section .service-card img {
      height: 350px !important;
  }
  .your_trust_right .year_title {
      font-size: 50px;
  }
  .accordion-title {
      font-size: 22px;
  }

  .insight-box {
      right: 30px;
  }
  .video-section {
        padding: 80px 0;
    }

.video-play-btn {
    width: 70px;
    height: 70px;
    font-size: 24px;
    line-height: 54px;
}
.play-icon img {
    padding: 23px 20px;
    width: 64px;
}

.video-section .video-content .title_size {
    font-size: 24px;
}
.video-section .video-content p {
    font-size: 20px;
}
.form-right-colum {
    width: 570px;
}
.form-left-colum {
    width: 430px;
}
	.team-title.services_title{font-size:22px;}
}

@media (max-width: 1199.98px) {
  .hero-title {
      font-size: 40px;
  }
  .btn-hero {
      font-size: 14px;
  }
  /*.our-services-section .services {
      grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  }*/
  .our-services-section .service-card img {
      height: 300px !important;
  }
  .our-services-section .service-content h3 {
      font-size: 16px;
  }
  .trust_section {
      padding-top: 70px;
      padding-bottom: 70px;
      background: #F1F1F1;
      margin-top: -100px;
      border-radius: 130px 0px 0px 0px;
  }
  .your_trust_right .year_title {
      font-size: 40px;
  }
  .talk_button a {
      padding: 12px 25px;
      font-size: 14px;
  }
  .accordion-title {
      font-size: 20px;
  }
  .accordion-item.active .accordion-content {
      font-size: 14px;
  }
  .expertise-points li img {
      margin-right: 10px;
      width: 15px;
  }
  .insight-box {
      right: 10px;
      bottom: -85px;
  }
  .financial-section .service-title {
      font-size: 20px;
  }
  .financial-section .financial-content {
      font-size: 16px;
  }
  .home-blog-section {
      padding-top: 50px;
      padding-bottom: 10px;
      background-color: #F1F1F1;
  }
  .form-right-colum {
      width: 500px;
  }
  .blog-section.home-blog-section .col-md-3 {
      flex: 0 0 auto;
      width: 50%;
  }

  .page-template-archive .banner-section h1, .category .banner-section h1, .search .banner-section h1 {
      padding-top: 10px;
  }

}


@media (max-width: 991.98px) {
  .hero-title {
      font-size: 36px;
  }
  .our-services-section .our_serives_top {
      display: block;
  }
  /*.our-services-section .services {
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }*/
  .your_trust_right {
      padding: 0;
      margin-top:90px;
  }
  .your_trust_right .year_title {
      font-size: 32px;
  }
  .accordion-title {
      font-size: 18px;
      margin-bottom: 0;
  }
 .blog-section.home-blog-section .col-md-3 {
      flex: 0 0 auto;
      width: 50%;
  }
  .contact-section .form-main-flex {
      display: block;
  }
  .contact-section {
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      padding: 40px 0px;
  }
  .form-left-colum {
      width: 100%;
      margin-bottom: 20px;
  }
  .form-right-colum {
        width: 100%;
    }
    .financial-section .financial-section .col-md-4 {
        flex: 0 0 auto;
        width: 50%;
        margin-bottom: 20px;
    }
}


@media (max-width: 767px) {
  .hero-banner {
      display: block;
  }
  .hero-image {
      max-width: 100%;
      background: transparent;
      max-height: max-content;
      min-height: 100%;
      width: 100%;
      position: relative;
      right: 0;
      width: 100%;
      margin-top: 20px;
      overflow: hidden;
      border-radius: 10px;
  }
  .hero-image::before{
    border-radius: 0;
    }
    
  .hero-content {
      max-width: 100%;
      padding-top: 0;
      padding-right:0;
  }
  .home-page-main {
      background: #0296CB;
      padding: 120px 0px 40px 0px;
  }
  .about-wrapper {
      display: block;
      gap: 10px;
  }
  .insight-box {
      right: 10px;
      bottom: 0;
  }
  .about-right {
    flex: 1;
    margin-top: 20px;
}
	.blog-section.home-blog-section .col-md-3{
        width: 100%;
	}
}

@media (max-width: 575px) {
    .hero-subtitle{
        font-size:14px;
    }
    .hero-title{
        font-size:28px;
    }
    .hero-desc{
        font-size: 16px;
    }
  .logo-slider {
      background: #1958ac;
      padding: 40px 20px 60px;
  }
  .trust_section {
        padding-top: 40px;
        padding-bottom: 50px;
        background: #F1F1F1;
        margin-top: 0;
        border-radius: 50px 0px 0px 0px;
    }

    .insight-box {
		z-index: 2;
        position: relative;
        margin: -50% auto 0;
        display: block;
        left: 0;
        right: 0;
        top: 0;
        width: 95%;
/*         background: #0073b6a3; */
    }
    .financial-section .financial-section .col-md-4 {
        flex: 0 0 auto;
        width: 100%;
    }
    .hero-image img {
        border-radius: 0 0px 0px 0;
    }
}


#whatsappBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  z-index: 9999;
  display: none; 
}
#whatsappBtn img {
  width: 100%;
  height: auto;
 /* border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);*/
  transition: transform 0.3s ease;
}
#whatsappBtn img:hover {
  transform: scale(1.1);
}
#everifyBtn {
    display: none;
}
.everify-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}

.everify-float .everify-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.everify-float .everify-inner:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.everify-float .everify-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #1958ac, #0296cb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.everify-float .everify-icon svg {
  width: 20px;
  height: 20px;
}

.everify-float .everify-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.everify-float .everify-text strong {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
}

.everify-float .everify-text small {
  font-size: 12px;
  margin-top: 5px;
  color: #000000;
}

.contact_banner {
    height: 350px;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

.contact_banner h1{
      padding-top: 160px;
    color: #262F57;
    position: relative;
    font-weight: 600;

}  

@media (max-width: 1199.98px) {
    .contact_banner h1 {
      padding-top: 30px;
  }
}

.acf-google-map iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

.counter-section .stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    position: relative;
    justify-content: center;
    gap: 20px;
}

@media (max-width:991.98px){
    .counter-section .stats{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width:480px){
    .counter-section .stats{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

/* Worldwide S */
.home .worldwide-box .locations {
  margin-bottom:0;
}

.worldwide-box .global-presence {
  padding: 30px 0px;
  margin: 0 auto;
}

.Worldwide_location_main .worldwide-box .locations {
      grid-template-columns: repeat(3, minmax(0, 1fr));
}

.worldwide-box .locations {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    display: grid;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.worldwide-box .location-card {
  background: #fff;
  border: 1px solid #e3e8ee;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.worldwide-box .location-card:hover {
    transform: translateY(-8px);
    box-shadow: rgba(33, 41, 60, 0.15) 0px 20px 40px;
    transition: all .3s cubic-bezier(.4,0,.2,1);
        border: 1px solid #00336680;
}


.worldwide-box .icon span {
      font-size: 24px;
    display: inline-block;
    background: #eaf1f8;
    color: var(--primary-color);
    border-radius: 50%;
    margin-bottom: 15px;
    width: 48px;
    height: 48px;
    line-height: 44px;

}

.worldwide-box .location-card h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 5px;
}

.worldwide-box .location-card .country {
  color: #666;
  font-size: 14px;
  margin-bottom: 8px;
}

.worldwide-box .location-card .tag {
  background: #f1f5f9;
  color: #212529;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 500;
}

.worldwide-box .location-card:nth-child(2) .tag {
      background: #002b5c;
    color: white;
}

.worldwide-box .location-card .info {
  font-size: 12px;
  color: #555;
}

.worldwide-box .stats {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    display: grid;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.worldwide-box .stat-box {
  text-align: center;
      display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

.worldwide-box .stat-icon {
  background: #e3ecf6;
  border-radius: 50%;
  color: #003e7f;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  width: 64px;
  height: 64px;
  line-height: 64px;
}

.worldwide-box .stat-box h4 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.worldwide-box .stat-box .inlineRow {
    display: flex;
    justify-content: center;
    align-items: center;
   flex: 1;
       margin: 10px 0px;
}

.worldwide-box .stat-box .inlineRow strong {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-top: -5px;
    margin-left: 3px;
}

.worldwide-box .stat-box p {
  font-size: 16px;
  color: #fff;
  margin: 0;
}
.worldwide-box .icon span img{
  max-width:35px;
}
.worldwide-box .icon span svg {
  color: var(--primary-color);
}

.bridging-technology .section-description {
    color: #6c757d;
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 20px;
}

.bridging-technology .icon-trans {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
}
.bridging-technology .icon-trans img {
  width: 100%;
  height: 100%;
}
.mission-control-flex {
    display: flex;
    flex-flow: column nowrap;
    gap: 5px;
    margin-top: 5px;
}
.worldwide-box .stat-box:nth-child(1) .icon-trans {
    animation: floatone 2.5s ease-in-out infinite;
}
@keyframes floatone {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.worldwide-box .stat-box:nth-child(2) .icon-trans {
    animation: floattwo 2s ease-in-out infinite;
}
@keyframes floattwo {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.worldwide-box .stat-box:nth-child(3) .icon-trans {
    animation: floatthree 1.5s ease-in-out infinite;
}
@keyframes floatthree {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}


.bridging-technology .icon-trans.two svg {
    color: #0066cc;
}

.bridging-technology .icon-trans svg{
    width: 100%;
    height: 100%;
}

.bridging-technology .stat-box h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.countet_about .worldwide-box {
  position: relative;
}


@media (max-width: 480px) {

  .worldwide-box .stats {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .worldwide-box .stat-box {
      margin-bottom: 25px;
  }
  .worldwide-box .global-presence {
      padding: 0px 0px;
  }
}

.privacy-policy-inner .innerpolicyBox {
  color: #000;
}

.privacy-policy-inner .innerpolicyBox .h1, 
.privacy-policy-inner .innerpolicyBox .h2, 
.privacy-policy-inner .innerpolicyBox .h3, 
.privacy-policy-inner .innerpolicyBox .h4, 
.privacy-policy-inner .innerpolicyBox .h5, 
.privacy-policy-inner .innerpolicyBox .h6, 
.privacy-policy-inner .innerpolicyBox h1, 
.privacy-policy-inner .innerpolicyBox h2, 
.privacy-policy-inner .innerpolicyBox h3, 
.privacy-policy-inner .innerpolicyBox h4, 
.privacy-policy-inner .innerpolicyBox h5, 
.privacy-policy-inner .innerpolicyBox h6{
          font-size: 24px;
}
/* Worldwide E */

/*Single Role*/
.single-role .our-services-section {
  padding: 70px 0;
  position: relative;
}

@media (max-width: 991.98px) {
  .single-role .our-services-section {
    padding: 60px 0;
  }
}

.single-role .services_title {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 22px;
}

@media (max-width: 991.98px) {
  .single-role .services_title {
    font-size: 28px;
  }
}

.single-role .about-desc,
.single-role .role-section-text {
  font-size: 17px;
  line-height: 1.85;
  color: #334155;
  margin-bottom:0;
}

.single-role .about-desc p,
.single-role .role-section-text p {
  margin-bottom: 16px;
}

.single-role .role-intro-section {
  background: #f8fafc;
  text-align: center;
}

.single-role .role-intro-section .container {
  max-width: 950px;
}
.role-banner{
    text-transform: capitalize;
}
.single-role .role-section-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 25px 45px rgba(15, 23, 42, 0.08);
  transition: transform 0.4s ease;
}

.single-role .role-section-image img:hover {
  transform: translateY(-6px);
}

.single-role .role-section-content {
  padding-left: 30px;
}


.single-role .single-role .vision-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.role-pagination{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
  padding: 50px 0;
  border-top: 1px solid #eaeaea;
}

.role-pagination a {
  text-decoration: none;
  color: #111;
}

.role-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}

.role-nav-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.role-pagination-prev {
  justify-self: start;
}

.role-pagination-next {
  justify-self: end;
}

.role-pagination-prev .role-nav-link:hover i {
  transform: translateX(-4px);
}

.role-pagination-next .role-nav-link:hover i {
  transform: translateX(4px);
}

/*.role-pagination-center {
  justify-self: center;
}*/

.role-grid-link {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #111;
  transition: all 0.3s ease;
}

.role-grid-link:hover {
  transform: scale(1.05);
}

.role-cta-wrapper {
  background: #1958ac;
  border-radius: 40px;
  margin: 50px 0 100px;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 60px;
  color: #fff;
}

.role-cta-wrapper::before {
  content: "";
  position: absolute;
  left: -60px;
  bottom: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.08);
  border-radius: 40px;
  transform: rotate(45deg);
}


.role-cta-wrapper .role-cta-content h2 {
  font-size: 36px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.role-cta-wrapper .role-cta-content p {
  font-size: 16px;
  opacity: 0.9;
}

.role-cta-wrapper .role-cta-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: flex-end;
}

.role-cta-wrapper .role-cta-call {
  display: flex;
  align-items: center;
  gap: 14px;
}

.role-cta-wrapper .role-cta-call i {
  font-size: 22px;
}

.role-cta-wrapper .role-cta-call span {
  font-size: 13px;
  opacity: 0.85;
  display: block;
}

.role-cta-wrapper .role-cta-call a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.role-cta-wrapper .role-cta-call a:hover{
    opacity: 0.8;
    color: #fff;
}
.role-cta-wrapper .role-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.6);
  color: #1958ac;
  text-transform: capitalize;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.role-cta-wrapper .role-cta-btn:hover {
  background: #fff;
  color: #111;
}

.role-cta-wrapper .role-cta-btn i {
  font-size: 14px;
}

@media(max-width: 1400px){
    .role-cta-wrapper {
        gap: 27px;
        padding: 40px 60px;
    }
    .role-cta-wrapper .role-cta-content h2{
        font-size:28px;
    }
    .role-cta-wrapper .role-cta-call a{
        font-size:16px;
    }
}

@media (max-width: 991.98px) {
  .single-role .role-section-content {
    padding-left: 15px;
    margin-top: 30px;
  }
  .single-role .role-section-image {
    order: -1;
    margin-bottom: 25px;
   }
   .role-cta-wrapper {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    text-align: center;
  }
  .role-cta-wrapper .role-cta-actions{
    justify-content: center;
  }
  .role-cta-wrapper .role-cta-content h2 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  /*.role-pagination {
    grid-template-columns: 1fr 1fr;
    row-gap: 24px;
  }

  .role-pagination-center {
    grid-column: 1 / -1;
    order: -1;
  }*/
  .role-pagination-next a , 
  .role-pagination-prev a{
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

  .role-nav-link span {
    display: none;
  }

  .role-nav-link i {
    font-size: 16px;
  }
  

  .role-cta-wrapper .role-cta-actions {
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .single-role .services_title {
    font-size: 24px;
  }

  .about-desc,
  .role-section-text {
    font-size: 16px;
  }
}

/*E-verify Page*/
/*.e-verify-badge>a{  text-decoration: none;}
.e-verify-badge {
  position: fixed;
  left: 20px;         
  bottom: 20px;       
  text-align: center;
  z-index: 9999;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
  padding: 10px;
  width: 100px;   
}

.e-verify-badge img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.e-verify-badge p {
  text-decoration: none;
  font-size: 12px;
  color: #3c3c3c;
  margin-top: 5px;
  line-height: 1.3;
  margin-bottom: 0;
}

.compliance-page .compliance-left,
.compliance-page .compliance-sidebar {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(2, 26, 39, 0.08);
}

.compliance-page .highlight-box {
  background: #eefbff;
  padding: 16px;
  border-left: 4px solid #0296cb;
  margin: 20px 0;
}

.compliance-page .commitment-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}

.compliance-page .stats li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
}

.compliance-page .btn-primary {
  background: #1958ac;
  color: #fff;
}

.compliance-page .btn-outline {
  margin-bottom: 10px;
  display: block;
  border: 1px solid #1958ac;
  color: #1958ac;
}
.compliance-page .sidebar-note {
    margin-top: 30px;
}
.compliance-page .compliance-sidebar .stats {
  padding-left:0;
}

.compliance-page .btn-outline.inline-block {
  margin-bottom: 0;
  display:inline-block;
}

@media (min-width:1199px){
  .compliance-page .compliance-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
  }
}

@media (max-width: 768px) {
  .e-verify-badge {
    width: 80px;
    padding: 6px;
    bottom: 15px;
    left: 10px;
  }
  .e-verify-badge p {
    font-size: 10px;
  }
}
*/

.compliance-page {
  background: #f7f9fc;
}
.compliance-card .title-sec {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.compliance-card .icon-wrapper.title-sec h4{
    margin-bottom:0;
}
.compliance-page .main-hero {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #1958ac, #0296cb);
  color: #fff;
  padding: 25px;
  border-radius: 12px;
}
.compliance-page .main-hero svg {
    width:30px;
    height:30px;
}
.compliance-page .icon-wrap {
  width: 48px;
  height: 48px;
  background: #eaf0f6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compliance-page .icon-wrap img,
.compliance-page .icon-wrap svg {
  width: 24px;
}

.compliance-page .compliance-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}

.compliance-page .compliance-card{
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  border: 1px solid #e5e9f0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  margin-bottom: 24px;
}
.compliance-page .compliance-sidebar .sidebar-card {
    background: #fff;
    border-radius: 16px;
    padding: 15px;
    border: 1px solid #e5e9f0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
}
.compliance-page .highlight-box {
  background: #eefbff;
  padding: 16px;
  border-left: 4px solid #0296cb;
  margin: 20px 0;
  border-radius: 0 16px 16px 0;
}
.compliance-page .process-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f8fafc;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
}
.compliance-page .sidebar-buttons .btn-primary {
  background: linear-gradient(135deg, #1958ac, #0296cb);
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.compliance-page .sidebar-buttons .btn:hover {
    background: linear-gradient(135deg, #1958ac, #0296cb);
    color:#fff;
}
.compliance-page .sidebar-buttons .btn-primary:hover{
    background:#fff;
    color:#1958ac;
}
.compliance-page .sidebar-buttons .btn-outline {
  margin-bottom: 10px;
  display: block;
  border: 1px solid #1958ac;
  color: #1958ac;
  transition: all 0.3s ease-in-out;
}
.compliance-page .step-number {
  width: 32px;
  min-width:32px;
  height: 32px;
  background: linear-gradient(135deg, #1958ac, #0296cb);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.compliance-page .stats li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #edf0f5;
}
.compliance-page .compliance-card h4{
    margin-bottom:25px;
}
.compliance-page .compliance-card .process-list {
    padding-left:0
}
.compliance-page .process-list li p{
    margin-bottom:0;
}
.compliance-page .sidebar-buttons .btn {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 10px;
}

.compliance-page .compliance-sidebar {
  position: relative;
}
.compliance-page .compliance-card .commitments {
  padding: 0;
  overflow: hidden;
}

.compliance-page .compliance-card .commitment-row {
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid #eef1f4;
}
.compliance-page .compliance-card .commitment-text{
  display: flex;
  align-items: center;
  gap:10px;
  justify-content:space-between;
}
.compliance-page .compliance-card .commitment-row:last-child {
  border-bottom: none;
}

.compliance-page .compliance-card .commitment-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e6f4f1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.compliance-page .compliance-card .commitment-icon img {
  width: 20px;
  height: 20px;
}

.compliance-page .compliance-card .commitment-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
}

.compliance-page .compliance-card .commitment-text span {
  font-size: 14px;
  color: #333;
}


@media (min-width: 992px) {
  .compliance-page .compliance-sidebar .sidebar-card {
    position: sticky;
    top: 120px; 
  }
}
@media (min-width:1199px){
    .compliance-page .compliance-sidebar .sidebar-card {
        top:200px;
    }
}
.compliance-page .stats {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.compliance-page .stats li {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 5px;
  border-bottom: 1px solid #edf1f6;
}

.compliance-page .stats li:last-child {
  border-bottom: none;
}

.compliance-page .stat-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #1958ac, #0296cb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compliance-page .stat-icon img {
  width: 16px;
  filter: invert(1) brightness(100);
}

.compliance-page .stat-label {
  font-size: 14px;
  color: #6b7280;
}

.compliance-page .stat-value {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.compliance-page .sidebar-buttons {
  margin-top: 16px;
}

.compliance-page .sidebar-buttons .btn {
  width: 100%;
  margin-bottom: 10px;
  padding: 12px;
  border-radius: 12px;
  font-weight: 500;
}

.compliance-page .sidebar-info {
  margin-top: 16px;
  padding: 16px;
  background: #f6f9fc;
  border-radius: 12px;
  font-size: 13px;
  color: #333333;
  line-height: 1.5;
}
.compliance-page .main-hero h2{
    margin: 5px 0 0;
}
@media(max-width: 991.98px) {
  .compliance-page .compliance-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:768px){
    .compliance-page .compliance-card{
        padding: 17px;
    }
    .compliance-page .main-hero h2{
        font-size:24px;
    }
}

/*Single Services*/
.single-services .service-detail {
  padding: 80px 0;
}

.single-services .service-detail .service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 60px;
  align-items: start;
}

.single-services .service-detail .service-sidebar {
  position: sticky;
  top: 200px; 
  background: #f1f1f1;
  border: 1px solid #dddddd;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.single-services .service-detail .service-main section:not(:last-child) {
  margin-bottom: 50px;
}

.single-services .service-detail .service-intro h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin: 24px 0 16px;
}

.single-services .service-detail .intro-content,
.single-services .service-detail .more-content,
.single-services .service-detail .why-text {
  font-size: 16px;
  line-height: 1.5;
}


.single-services .service-detail .intro-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.single-services .service-detail .intro-images img,
.single-services .service-detail .more-image img,
.single-services .service-detail .why-image img {
  width: 100%;
  border-radius: 16px;
  height: 100%;
  object-fit: cover;
}
.single-services .service-detail .service-sidebar input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}
.single-services .service-detail .service-sidebar .search-wrapper {
  position: relative;
  margin-bottom: 20px
}

.single-services .service-detail .service-sidebar .search-wrapper::after {
  content: "\f002";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #827590;
  font-size: 14px;
}

.single-services .service-detail #serviceList {
  list-style: none;
  padding: 0;
  margin: 0;
}

.single-services .service-detail #serviceList li {
  border-bottom: 1px solid #eee;
}

.single-services .service-detail #serviceList li:last-child {
  border-bottom: none;
}

.single-services .service-detail #serviceList a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 15px;
  color: #000000;
  font-weight:500;
  text-decoration: none;
  transition: 0.3s;
}

.single-services .service-detail #serviceList a:hover {
  color: #000;
  transform: translateX(4px);
}
.single-services .service-detail .why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}
.single-services .service-detail .more-image,
.single-services .service-detail .service-featured {
    margin-bottom: 30px;
    max-width: 100%;
    max-height: 400px;
    height: 400px;
    overflow: hidden;
}
.single-services .service-detail .more-image img,
.single-services .service-detail .service-featured img{
  aspect-ratio:16/9;
  height: 100%;
  width: 100%;
  /*object-position: top;*/
  object-fit:cover;
}
.single-services .service-detail .service-sidebar input:focus-visible{
    outline-color: #1958ac;
}
.single-services .service-detail .more-image{
    margin-top:30px;
}
@media (max-width: 1200px) {
  .single-services .service-detail .service-layout {
    grid-template-columns: 1fr 280px;
    gap: 40px;
  }
  .single-services .service-detail .service-sidebar {
    top:120px;
  }
}

@media (max-width: 991.98px) {
  .single-services .service-detail .service-layout {
    grid-template-columns: 1fr;
  }

  .single-services .service-detail .service-sidebar {
    position: static;
    margin-top: 25px;
  }
  .single-services .service-detail .service-main section:not(:last-child){
    margin-bottom: 30px ;
  }
}

@media (max-width: 768px) {
  .single-services .service-detail {
    padding: 60px 0;
  }

  .single-services .service-detail .intro-images {
    grid-template-columns: 1fr;
  }

  .single-services .service-detail .why-grid {
    grid-template-columns: 1fr;
  }

  .single-services .service-detail .service-sidebar {
    padding: 20px;
  }
}

/*New About page*/

.team-section {
  padding: 90px 0;
  background:#F1F1F1;
}

.team-header {
  margin-bottom: 60px;
}

.team-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #1e6bff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.team-section .team-title {
  font-size: 32px;
}

.team-section .team-member {
  margin-bottom: 30px;
}

.team-section .member-image {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border:1px solid #CFD5ED;
}

.team-section .member-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top;
  border-radius: 18px;
  transition: transform 0.5s ease;
}

.team-section .team-member:hover img {
  transform: scale(1.05);
}

.team-section .member-overlay {
  position: absolute;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%) translateY(30px);
  width: calc(100% - 40px);
  background: #ffffff;
  border-radius: 14px;
  padding: 20px 15px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  opacity: 0;
  transition: all 0.4s ease;
}

.team-section .team-member:hover .member-overlay {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.team-section .member-name {
  font-size: 18px;
  font-weight: 700;
  color: #262f57;
  margin-bottom: 4px;
}

.member-designation {
  font-size: 14px;
  color: #3c3c3c;
  margin-bottom: 14px;
}

.team-section .member-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-section .member-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f2f4f7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 14px;
  transition: all 0.3s ease;
}

.team-section .member-social a:hover {
  background: #1958ac;
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .team-section .member-image img {
    height: 320px;
    object-position: top;
  }

  .team-section .team-title {
    font-size: 32px;
  }
}
.welcome-section {
    background-image: url(assets/images/shape-2.webp);
    background-position: top right;
    display: block;
    background-size:450px;
    animation-name: unset;
    -webkit-animation-name: unset;
    background-repeat: no-repeat;
}
.welcome-section .welcome-images {
    display: flex;
    gap: 30px;
}

.welcome-section .welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.welcome-section .small-images .img-small.img-top {
    margin-bottom: 30px;
}
.welcome-section .welcome-images img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.welcome-section .small-images .img-small{
    max-width:100%;
    object-fit: cover;
    height: 240px;
    border-radius:15px;
    overflow:hidden
}

.welcome-section .welcome-images .img-large {
    max-width:100%;
    width: 100%;
    height: 510px;
    border-radius:15px;
    overflow: hidden;
}

.welcome-section .small-images {
    min-width: 250px;
    width: 250px;
    overflow: hidden;
}
.welcome-section .year-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 215px;
    height: 215px;
    max-width:100%;
    border: 6px solid #0296cb;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    animation: floatCard 6s ease-in-out infinite;
    background: linear-gradient(135deg, #0b6db7, #0a4f8f);
    color: #fff;
    padding: 28px 15px;
    border-radius: 18px;
    text-align: center;
}
@media (max-width: 1400px){
    .welcome-section .small-images {
        min-width: 230px;
        width: 230px;
   }
}
@media (max-width: 1200px){
    .welcome-section .year-box{
        height: 180px;
    }
    .welcome-section .year-count {
        font-size: 72px;
        line-height: 36px;
    }
    .welcome-section .exp-card .trust{
        font-size:18px;
    }
    .welcome-section{
        background: none;
    }
}
@media (max-width:1199.98px){
    .welcome-section .welcome-grid{
        grid-template-columns: 1fr;
    }
    .welcome-section .small-images{
        width: 50%;
    }
}
@media (max-width:767.98px){
    .welcome-section .welcome-images{
        display: block;
    }
    .welcome-section .small-images {
        display: flex;
        gap: 20px;
        width: 100%;
    }

    .welcome-section .small-images .img-small {
        max-width: 100%;
        width: 100%;
        height: 210px;
    }

    .welcome-section .welcome-images .img-large{
        height: 230px;
    }
}

.values-section {
  background: radial-gradient(circle at top, #f3f7ff 0%, #ffffff 60%);
}

.values-section .values-header {
  max-width: 850px;
  margin: 0 auto 70px;
}


.values-desc {
  font-size: 18px;
  line-height: 1.7;
}

.values-grid {
  margin-top: 40px;
}

.value-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 30px;
  height: 100%;
  border: 1px solid #CFD5ED;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
}

.values-section .value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(2,150,203,0.18);
}

.values-section .value-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #1958ac, #0296cb);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease-in-out;
}

.values-section .value-card:hover .value-icon {
    transform: scale(1.1);
}

.values-section .value-icon img {
  width: 28px;
  filter: brightness(0) invert(1);
}

.values-section .value-card h4 {
  font-size: 22px;
  font-weight: 600;
  color: #262F57;
  margin-bottom: 12px;
}

.values-section .value-text {
  font-size: 16px;
  line-height: 1.7;
}

.financial-section.about-fina .service-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.financial-section.about-fina .row .col-6:nth-child(1) .service-icon,
.financial-section.about-fina .row .col-6:nth-child(12) .service-icon{
    background:#ffe7d6;
}
.financial-section.about-fina .row .col-6:nth-child(1) .service-icon img,
.financial-section.about-fina .row .col-6:nth-child(12) .service-icon img{
    filter: brightness(0) saturate(100%) invert(69%) sepia(64%) saturate(4890%) hue-rotate(347deg) brightness(102%) contrast(91%);
}

.financial-section.about-fina .row .col-6:nth-child(2) .service-icon,
.financial-section.about-fina .row .col-6:nth-child(11) .service-icon {
    background: #fcd9d9;
}
.financial-section.about-fina .row .col-6:nth-child(2) .service-icon img,
.financial-section.about-fina .row .col-6:nth-child(11) .service-icon img{
    filter: brightness(0) saturate(100%) invert(28%) sepia(49%) saturate(3161%) hue-rotate(345deg) brightness(103%) contrast(75%);
}
.financial-section.about-fina .row .col-6:nth-child(3) .service-icon,
.financial-section.about-fina .row .col-6:nth-child(10) .service-icon {
    background: #f9dcf9;
}
.financial-section.about-fina .row .col-6:nth-child(3) .service-icon img,
.financial-section.about-fina .row .col-6:nth-child(10) .service-icon img{
    filter: brightness(0) saturate(100%) invert(60%) sepia(33%) saturate(3184%) hue-rotate(263deg) brightness(87%) contrast(92%);
}
.financial-section.about-fina .row .col-6:nth-child(4) .service-icon,
.financial-section.about-fina .row .col-6:nth-child(9) .service-icon {
    background: #daebfb;
}
.financial-section.about-fina .row .col-6:nth-child(4) .service-icon img,
.financial-section.about-fina .row .col-6:nth-child(9) .service-icon img{
    filter: brightness(0) saturate(100%) invert(64%) sepia(64%) saturate(6105%) hue-rotate(191deg) brightness(89%) contrast(90%);
}

.financial-section.about-fina .row .col-6:nth-child(5) .service-icon ,
.financial-section.about-fina .row .col-6:nth-child(8) .service-icon {
    background: #ebdcf9;
}
.financial-section.about-fina .row .col-6:nth-child(5) .service-icon img,
.financial-section.about-fina .row .col-6:nth-child(8) .service-icon img{
    filter: brightness(0) saturate(100%) invert(38%) sepia(70%) saturate(4339%) hue-rotate(252deg) brightness(86%) contrast(88%);
}
.financial-section.about-fina .row .col-6:nth-child(6) .service-icon,
.financial-section.about-fina .row .col-6:nth-child(7) .service-icon {
    background: #d6f5eb;
}
.financial-section.about-fina .row .col-6:nth-child(6) .service-icon img,
.financial-section.about-fina .row .col-6:nth-child(7) .service-icon img{
    filter: brightness(0) saturate(100%) invert(56%) sepia(20%) saturate(1828%) hue-rotate(110deg) brightness(95%) contrast(76%);
}
@media (min-width:992px){
    .our-services-section .our_serives_top .our_serives_left{
        flex: 0 0 50%;
        max-width: 50%; 
    }
    .contact-section .our-services-section .our_serives_top .our_serives_left{
        max-width: unset;
        flex: unset;
    }
}
@media (max-width: 768px) {
  .values-section .values-title {
    font-size: 34px;
  }
}
