/*
Theme Name: RSS International
Theme URI: https://rssinternational.nl/en/
Author: Your Name
Description: WordPress theme version of RSS International site
Version: 1.0
License: GPL v2 or later
Text Domain: RSS International
*/


@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%;
}

main#main_wrapper {
    flex: 1;
}


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

/* 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: 70px;
     
}
.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: 20px;
    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: #125C8C;
        margin-top: 0px !important;
}
.headerMenu_top a.btn-expert:hover {
  background: #211D3A;
  color: #fff;
}

.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 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);
}


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



/* 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;
  }
}

/* Mobile Styles */
@media (max-width: 1199px) {
    .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;
    }

    .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%;
  }
}



/* 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: 226px;
  margin-bottom: 20px;
}

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

.footer-col p {
  font-size: 20px;
  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;
  color: #0296CB;
}

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

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

.social-links a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #fff;
    transition: 0.3s;
    width: 36px;
    height: 36px;
    background: #0296cb;
    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;
}

.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 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: 1199px) {
  .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: 767px) {
  .footer-col {
      width: 100%;
      min-width: 100%;
  }
  .footer-col-two {
      width: 100%;
      min-width: 100%;
  }
  .map-location img {
      max-width: 100%;
      width: 100%;
  }
  .footer-col.footer-col-two .footer-info {
      justify-content: center;
  }
  .footer-col.social_icon {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .footer-menu li {
        margin: 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: 20px;
        padding-top: 50px;
    /*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: 47%;
}
.hero-image {
    max-width: 53%;
    background: #fff;
        max-height: 946px;
    min-height: 100vh;
    width: 100%;
        position: absolute;
    right: 0;
}
.hero-subtitle {
    font-size: 16px;
    letter-spacing: 1px;
    color: #FFFFFF;
    font-weight: 500;
}
.hero-title {
  font-size: 65px;
  font-weight: 800;
  margin: 10px 0;
}
.hero-desc {
  margin: 20px 0px 30px;
  font-size: 20px;
      width: 80%;
}
.btn-hero {
  display: inline-block;
  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;
}

.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;
}

.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 .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;
}

/* .our-services-section .service-content a {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #115D8B;
    text-decoration: none;
    transition: color 0.3s ease;
    background: #fff;
    width: 100%;
    padding: 8px 10px;
    justify-content: space-between;
} */
.our-services-section .service-content span.read-more{
	display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #115D8B;
    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: #0296CB;
}
/* .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);
}



.logo-slider {
  background: #125C8C; /* Dark blue background */
  padding: 40px 20px 180px;
  text-align: center;
  color: #fff;
}

.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: 89px;
    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 img {
  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: #125C8C;
}

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

.your_trust_right {
    padding:0px 50px;
}
.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;
}


.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: #125C8CCC;
}
.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: #125C8C;
}

.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: 25px;
  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 img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 20px;
}
.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: #125C8CCC;

}

.contact-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 40px 0px;
}
.contact-section .our-services-section .services_title {
  color: #fff;
}
.form-left-colum {
    width: 536px;
    background-color: #E5F8FF;
    border-radius: 8px;
    overflow: hidden;
}

.challenge-bg {
    backdrop-filter: blur(40px);
    background-color: #125C8C99;
    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: flex-end;
    justify-content: space-between;
}



.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 {
    width: 670px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

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

.form-right-colum .formTitle {
    background: #125C8C;
    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: 160px;
            border: 1px solid #0000001A;
}


.form-right-colum input.wpcf7-submit {
  position: relative;
/*   padding-right: 50px;  */
  background: #125C8C; 
  color: #fff;
  border: 1px solid #125C8C;
  cursor: pointer;
  font-size: 16px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.form-right-colum input.wpcf7-submit:hover {
  background: transparent;
  color: #125C8C;
}
.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: 1199px) {
  .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: 50px;
      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: 991px) {
  .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: 0px 0px;
  }
  .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;
  }
  .hero-content {
      max-width: 100%;
  }
  .home-page-main {
      background: #0296CB;
      padding: 120px 0px 40px 0px;
  }
  .your_trust_right {
      margin-top: 30px;
  }
  .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) {
  .logo-slider {
      background: #125C8C;
      padding: 40px 20px 140px;
  }
  .trust_section {
        padding-top: 40px;
        padding-bottom: 30px;
        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: 60px;
  height: 60px;
  z-index: 9999;
  display: none; /* default hidden */
}
#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);
}


.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: 1199px) {
    .contact_banner h1 {
      padding-top: 30px;
  }
}

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



/* 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 */

