@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

.primary-btn {
  color: #fff;
  padding: 16px 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #FFF;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  /* 29px */
  letter-spacing: -0.08px;
  border-radius: 500px;
  background: linear-gradient(270deg, rgba(157, 237, 255, 0) 7.86%, rgba(157, 237, 255, 0.41) 46.46%, rgba(157, 237, 255, 0.5) 69.1%, rgba(157, 237, 255, 0.29) 92.48%, rgba(157, 237, 255, 0) 107.33%), var(--blue-500, #045AD2);
  background-size: 300%;
  border: none;
  background-position: left center;
  transition: background .5s ease;
}

.primary-btn:hover {
  background-size: 320%;
  background-position: right center;
}


.header-btn {
  background-color: #045AD2;
  color: #fff;
  padding: 20px 56px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #FFF;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 145%;
  /* 29px */
  letter-spacing: -0.2px;
}

.secondary-btn {
  display: flex;
  padding: 12px 16px;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px;
  background: var(--blue-400, #1977FB);
  color: #FFFFFF;
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
  font-size: clamp(18px, 4vw, 20px);
  font-style: normal;
  font-weight: var(--font-weight-medium, 500);
  line-height: var(--line-height-Large-Body, 27px);
}

@media (max-width: 767px) {
  .secondary-btn {
    padding: 9px 12px;
  }
}

.transparent-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #EA7933;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  letter-spacing: -0.312px;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent !important;
  transition: background 0.3s ease;
  /* ---- Mobile slide-down menu (below 1050px) ---- */
}

header .container {
  max-width: 100%;
  position: relative;
}

header .container .search-box {
  border-radius: 8px;
  border: 1px solid var(--grey-300, #D1D1D1);
  padding: 8px 16px 8px 12px;
}

header .header-top-actions {
  align-items: center;
  justify-content: flex-end;
}

header .desktop-primary-nav {
  display: flex;
  gap: 1.5rem;
}

header .desktop-primary-nav a:hover {
  color: #045AD2;
}

header .header-contact-btn {
  white-space: nowrap;
}

header .menu-toggle {
  display: none;
}

header .header-bottom {
  transition: none;
}

header .bottom-nav-links {
  position: relative;
}

header .bottom-nav-links:hover a {
  color: #045AD2;
}

header .bottom-nav-links:hover svg path {
  stroke: #045AD2;
}

header .bottom-nav-links.active a {
  color: #045AD2;
}

header .bottom-nav-links.active svg path {
  stroke: #045AD2;
}

header .bottom-nav-links.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #045AD2;
}

header .megamenu-container {
  padding: 32px 40px 48px 40px;
}

header .megamenu-container ul li a {
  color: #045AD2;
  border-bottom: 2px solid transparent;
}

header .megamenu-container ul li a:hover {
  border-bottom: 2px solid #045AD2;
}

header .hamburger-menu-container {
  display: none;
  align-items: center;
  justify-content: flex-end;
}

header .hamburger-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

header .hamburger-menu div {
  width: 20px;
  height: 2px;
  border-radius: 3px;
  background-color: #000;
  position: relative;
  z-index: 1001;
  transition: 0.4s;
}

header #check:checked~.hamburger-menu-container .hamburger-menu div {
  background-color: transparent !important;
}

header .hamburger-menu div:after,
header .hamburger-menu div:before {
  content: "";
  position: absolute;
  width: inherit;
  height: inherit;
  background-color: #000;
  border-radius: 3px;
  transition: 0.4s;
}

header .hamburger-menu div:before {
  transform: translateY(-7px);
}

header .hamburger-menu div:after {
  transform: translateY(7px);
}

header #check {
  position: absolute;
  right: 0;
  z-index: 90000;
  cursor: pointer;
  opacity: 0;
  display: none;
}

header #check,
header .hamburger-menu {
  width: 1.5rem;
  height: 1.5rem;
}

header #check:checked~.hamburger-menu-container .hamburger-menu div:before {
  transform: translateY(0) rotate(-45deg);
}

header #check:checked~.hamburger-menu-container .hamburger-menu div:after {
  transform: translateY(0) rotate(45deg);
}

@keyframes animation {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1050px) {
  header #check {
    display: block;
  }

  header .desktop-primary-nav {
    display: none !important;
  }

  header .menu-toggle {
    display: block;
  }

  header #mobile-menu:not(.hidden) {
    display: flex !important;
    flex-direction: column;
    min-height: 100vh;
    height: 100%;
  }

  header .header-bottom {
    display: none !important;
  }

  header .hamburger-menu-container {
    display: flex;
  }

  header .hamburger-menu {
    height: auto;
    width: auto;
  }
}

header #mobile-menu {
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}

header #mobile-menu .mobile-link,
header #mobile-menu .mobile-submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
}

header #mobile-menu .mobile-submenu-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

header #mobile-menu .mobile-submenu-arrow path {
  stroke: #3f3f3f;
}

header #mobile-menu .mobile-submenu-arrow.rotate-180 {
  transform: rotate(180deg);
}

header #mobile-menu .mobile-submenu-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 8px 0 12px 12px;
}

header #mobile-menu .mobile-submenu-content.hidden {
  display: none;
}

header #mobile-menu .mobile-submenu-content ul li a {
  color: #045AD2;
}

@media (max-width: 991px) {
  header hr {
    display: none;
  }
}

@media (max-width: 767px) {
  header .header-search {
    max-width: 55%;
    flex: 1;
  }

  header .header-contact-btn {
    display: none !important;
  }
}

/* When scrolled */
header.scrolled {
  background: #fff !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* For all pages except homepage */
body:not(.home) header {
  background: #fff !important;
}

/* Hide divider + bottom border when transparent */
header:not(.scrolled) hr {
  opacity: 0;
  visibility: hidden;
}

header:not(.scrolled) .header-bottom {
  border-bottom: none !important;
}

/* Show when header becomes white */
header.scrolled hr {
  opacity: 1;
  visibility: visible;
}

header.scrolled .header-bottom {
  border-bottom: 1px solid #E5E5E5 !important;
}

/* Logo swap based on header background */
header .logo-container .logo-dark {
  display: none;
}

header:not(.scrolled) .logo-container .logo-white {
  display: block;
}

header.scrolled .logo-container .logo-white {
  display: none;
}

header.scrolled .logo-container .logo-dark {
  display: block;
}

header:not(.scrolled) a {
  color: #fff;
}


/* Search input color follows header background */
header:not(.scrolled) .header-search input {
  color: #fff;
}

header:not(.scrolled) .header-search input::placeholder {
  color: #fff;
}

header.scrolled .header-search input {
  color: #000;
}

header.scrolled .header-search input::placeholder {
  color: #000;
}

header:not(.scrolled) .bottom-nav-links svg path {
  stroke: #ffffff;
}

header:not(.scrolled) .bottom-nav-links:hover svg path,
header:not(.scrolled) .bottom-nav-links.active svg path {
  stroke: #045AD2;
}

/* Hamburger color follows header background: white when transparent, black when white */
header:not(.scrolled) .hamburger-menu div,
header:not(.scrolled) .hamburger-menu div:before,
header:not(.scrolled) .hamburger-menu div:after {
  background-color: #fff;
}

header.scrolled .hamburger-menu div,
header.scrolled .hamburger-menu div:before,
header.scrolled .hamburger-menu div:after {
  background-color: #000;
}

.footer .container {
  max-width: 1000px;
}

.footer .container .row {
  --bs-gutter-x: 60px;
}

.footer .container .footer-nav-links {
  color: rgba(255, 255, 255, 0.6);
  line-height: normal;
}

.footer .container .social-div {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  max-width: fit-content;
}

.footer .container .quicklinks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer .container .footer-bottom {
  border-color: rgba(255, 255, 255, 0.12);
}

.read-more-btn {
  position: relative;
  display: flex;
  padding: 16px 16px 16px 0;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: black;
  background: none;
  width: 100%;
  border-bottom: 1px solid var(--grey-300, #d1d1d1);
}

.read-more-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1px;
  background-color: var(--blue-400, #1977fb);
  width: 0%;
  transition: width 200ms ease;
}

.read-more-btn .icon {
  background: #000000;
}

.clients-success-section .container .row,
.welcome-consultants-section .container .row {
  --bs-gutter-x: 48px;
}

@media (max-width: 991px) {

  .clients-success-section .container .row,
  .welcome-consultants-section .container .row {
    --bs-gutter-x: 0;
  }
}

.hero-swiper-section {
  position: relative;
  overflow: hidden;
}

.hero-swiper-section .hero-slide {
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0;
  height: auto;
  min-height: 100vh;
}

.hero-swiper-section .hero-slide .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 25, 45, 0.52);
  z-index: 1;
}

.hero-swiper-section .hero-slide .hero-slide-inner {
  position: relative;
  z-index: 2;
}

.hero-swiper-section .hero-slide .hero-slide-inner .hero-title {
  position: relative;
  z-index: 5;
}

.hero-swiper-section .hero-swiper-nav {
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 3;
}

.hero-swiper-section .hero-swiper-prev,
.hero-swiper-section .hero-swiper-next {
  padding: 13px 12px 12px 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 500px;
  background: rgba(255, 255, 255, 0.16);
  border: none;
  cursor: pointer;
  transition: all 03s background;
}

.hero-swiper-section .hero-swiper-prev:hover,
.hero-swiper-section .hero-swiper-next:hover {
  background: #000;
}

.sticky-social-tabs {
  position: fixed;
  top: 40%;
  right: 24px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1100;
}

@media (max-width: 1024px) {
  .sticky-social-tabs {
    display: none;
  }
}

.connect-us .container .contact-div {
  border-radius: 8px;
  border: 3px solid #fff;
  background: var(--blue-50, #edf1f7);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.connect-us .container .contact-div a {
  color: var(--primary-color, #045ad2);
  font-size: clamp(18px, 4vw, 20px);
}

.testimonial-section .custom-swiper-outer {
  max-width: 100%;
  position: relative;
}

.testimonial-section .custom-swiper-outer::after {
  content: "";
  position: absolute;
  top: 0;
  right: -2px;
  width: 100px;
  height: 100%;
  background: linear-gradient(270deg, #FFF 0%, rgba(250, 250, 250, 0) 100%);
  pointer-events: none;
  z-index: 2;
}

.testimonial-section .custom-swiper-outer .testimonialSwiper .testimonial-card,
.testimonial-section .custom-swiper-outer .reviewSwiper .testimonial-card {
  border-radius: 24px;
  background: var(--white, #fff);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.18);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  min-height: 564px;
}

.testimonial-section .swiper-wrapper {
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
}

.testimonial-section .swiper-nav-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}

.testimonial-section .swiper-nav-buttons .swiper-button-prev-ne,
.testimonial-section .swiper-nav-buttons .swiper-button-next-ne,
.testimonial-section .swiper-nav-buttons .swiper-button-prev-be,
.testimonial-section .swiper-nav-buttons .swiper-button-next-be {
  padding: 13px 12px 12px 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 500px;
  background: var(--white, #fff);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.18);
  border: none;
  cursor: pointer;
}

@media not all and (min-width: 1050px) {

  .testimonial-section .custom-swiper-outer .testimonialSwiper .testimonial-card,
  .testimonial-section .custom-swiper-outer .reviewSwiper .testimonial-card {
    height: 100%;
    min-height: 599px;
  }
}

@media not all and (min-width: 767px) {
  .testimonial-section .custom-swiper-outer::after {
    display: none;
  }

  .testimonial-section .custom-swiper-outer .testimonialSwiper .testimonial-card,
  .testimonial-section .custom-swiper-outer .reviewSwiper .testimonial-card {
    height: 100%;
    min-height: 549px;
  }
}

.swiper {
  overflow: hidden;
}

.logoSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.logoSwiper .swiper-slide {
  width: auto !important;
  /* important for continuous flow */
}

/* Reserve space for the logos so slide widths are correct even before the
   images have finished downloading. Without this, Swiper measures 0-width
   slides on a cold load and the marquee never starts. */
.logoSwiper .swiper-slide img {
  width: auto;
  max-width: none;
  min-width: 120px;
}

@media (max-width: 767px) {
  .logoSwiper .swiper-slide img {
    min-width: 90px;
  }
}

.expert-section {
  background: linear-gradient(0deg, var(--blue-50, #EDF1F7) 0%, var(--blue-50, #EDF1F7) 100%), var(--blue-50, #EDF1F7);
}

.consultants-box {
  padding: 4px;
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  background: var(--white, #fff);
  box-shadow: 0 1px 1.8px 0 rgba(17, 17, 26, 0.1);
}

.consultants-box .bg-overlay {
  background: rgba(0, 0, 0, 0.32);
  border-radius: 12px 12px 0 0;
  opacity: 0;
  transition: opacity 400ms ease;
}

.consultants-box .img-col img {
  border-radius: 12px 12px 0 0;
}

.consultants-box:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.consultants-box:hover .bg-overlay {
  opacity: 1;
}

.bt-box {
  padding: 28px;
  border-radius: 0 0 16px 16px;
  border-top: 2.5px solid var(--blue-400, #1977FB);
  background: var(--white, #FFF);
  box-shadow: 0 1px 1.8px 0 rgba(17, 17, 26, 0.1);
}

.mission-vision-box {
  padding: 32px;
  border-radius: 16px;
  background: var(--white, #FFF);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.18);
}

.why-choose-box {
  padding: 24px;
  border-radius: 16px;
  border: 1.5px solid var(--grey-100, #F2F2F2);
  background: var(--white, #FFF);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.18);
}

.annual-reports {
  background: linear-gradient(180deg, #fff 24.33%, rgba(255, 255, 255, 0) 100%), var(--blue-50, #edf1f7);
}

.annual-reports .row {
  --bs-gutter-x: 48px;
}

.explore-section .card,
.about-us-content .card {
  padding: 4px;
  border-radius: 16px;
  border: 1px solid var(--grey-200, #e5e5e5);
  background: var(--white, #fff);
  box-shadow: 0 1px 1.8px 0 rgba(17, 17, 26, 0.1);
}

.explore-section .card:hover,
.about-us-content .card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.faq-section .accordion-item {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.faq-section .accordion-item .accordion-toggle {
  position: relative;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 0 45px;
  text-align: left;
}

.faq-section .accordion-item .accordion-toggle::before,
.faq-section .accordion-item .accordion-toggle::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-section .accordion-item .accordion-toggle::before {
  background: #fff;
}

.faq-section .accordion-item .accordion-toggle::after {
  background: linear-gradient(#1273eb, #1273eb) center/14px 2px no-repeat, linear-gradient(#1273eb, #1273eb) center/2px 14px no-repeat;
}

.faq-section .accordion-item .accordion-content {
  padding-left: 45px;
}

.faq-section .accordion-item.is-open .accordion-toggle::after {
  background: linear-gradient(#1273eb, #1273eb) center/14px 2px no-repeat;
}

.faq-section .accordion-item .accordion-content p {
  opacity: 0.8;
  color: #fff;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
  z-index: 9999;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  border-radius: 16px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  scrollbar-width: none;
  position: relative;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.25);
  animation: slideUp 300ms ease;
}

@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-height: 90vh;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 8px;
  transition: background 200ms ease;
  color: #3f3f3f;
  z-index: 10;
}

.modal-close:hover {
  background: #f5f5f5;
}

.modal-close svg {
  width: 24px;
  height: 24px;
}

.modal-body {
  padding: 40px;
}

@media (max-width: 768px) {
  .modal-body {
    padding: 24px;
  }
}

.modal-body h2 {
  font-size: 28px;
  font-weight: 600;
  color: #045ad2;
  margin-bottom: 24px;
}

.modal-body .modal-gallery {
  margin-bottom: 32px;
  border-radius: 12px;
  overflow: hidden;
}

.modal-body .gallery-main {
  position: relative;
  width: 100%;
  background: #f5f5f5;
  border-radius: 12px;
  overflow: hidden;
}

.modal-body .gallery-main img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 250px;
}

.modal-body .gallery-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  pointer-events: none;
}

.modal-body .gallery-prev,
.modal-body .gallery-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease;
  pointer-events: auto;
}

.modal-body .gallery-prev:hover,
.modal-body .gallery-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.modal-body .gallery-prev svg,
.modal-body .gallery-next svg {
  width: 24px;
  height: 24px;
}

.modal-body .gallery-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  overflow-x: auto;
  padding: 8px 0;
}

.modal-body .gallery-thumbnails::-webkit-scrollbar {
  height: 6px;
}

.modal-body .gallery-thumbnails::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

.modal-body .gallery-thumbnails::-webkit-scrollbar-thumb {
  background: #d0d0d0;
  border-radius: 10px;
}

.modal-body .gallery-thumbnails::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

.modal-body .gallery-thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 200ms ease;
  flex-shrink: 0;
}

.modal-body .gallery-thumbnail:hover {
  border-color: #045ad2;
  transform: scale(1.05);
}

.modal-body .gallery-thumbnail.active {
  border-color: #045ad2;
  box-shadow: 0 0 0 1px #045ad2;
}

.modal-body .modal-client-quote {
  font-size: 16px;
  line-height: 1.6;
  color: #5a5a5a;
  font-style: italic;
  margin-bottom: 24px;
  border-left: 4px solid #045ad2;
  padding-left: 16px;
}

.modal-body .modal-client-info {
  margin-bottom: 24px;
}

.modal-body .modal-client-info .modal-company {
  font-size: 14px;
  color: #045ad2;
  font-weight: 500;
  margin-bottom: 8px;
}

.modal-body .modal-client-info .modal-ceo {
  font-size: 13px;
  color: #8f8f8f;
}

.modal-body .modal-description {
  font-size: 15px;
  line-height: 1.7;
  color: #3f3f3f;
}

.contact-banner {
  padding-top: 24px !important;
}

.about-banner {
  background-color: #023378;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-banner .bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(11, 25, 45, 0.8) 21.15%, rgba(14, 32, 58, 0.7) 38.87%, rgba(36, 82, 147, 0) 75.96%);
  z-index: 1;
}

@media (max-width: 1025px) {
  .about-banner {
    margin-top: 66px;
  }
}

@media (max-width: 767px) {
  .about-banner {
    margin-top: 61px;
  }
}

.why-salahkaar-visits {
  background: linear-gradient(0deg, var(--blue-50, #edf1f7) 0%, var(--blue-50, #edf1f7) 100%), var(--grey-100, #f2f2f2);
}

.why-salahkaar-visits .container .swiper-nav-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}

.why-salahkaar-visits .container .swiper-nav-buttons .swiper-button-prev-se,
.why-salahkaar-visits .container .swiper-nav-buttons .swiper-button-next-se {
  padding: 13px 12px 12px 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 500px;
  background: rgba(2, 51, 120, 0.08);
  border: none;
  cursor: pointer;
}

@media (max-width: 767px) {
  .why-salahkaar-visits .container .swiper-nav-buttons {
    display: none;
  }
}

.why-salahkaar-visits .custom-swiper-outer {
  max-width: 100%;
}

.why-salahkaar-visits .custom-swiper-outer .aboutSwiper {
  margin-left: calc(50vw - 504px);
  overflow: hidden;
}

.why-salahkaar-visits .custom-swiper-outer .aboutSwiper .swiper-slide {
  max-width: 300px;
}

.why-salahkaar-visits .custom-swiper-outer .aboutSwiper .swiper-slide:last-child {
  margin-inline-end: calc(var(--spacing) * 20);
}

.why-salahkaar-visits .custom-swiper-outer .aboutSwiper .visit-card {
  border-radius: 12px;
  background: var(--white, #fff);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.18);
  padding: 32px;
}

.why-salahkaar-visits .custom-swiper-outer .aboutSwiper .swiper-wrapper {
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
}

@media not all and (min-width: 1050px) {
  .why-salahkaar-visits .custom-swiper-outer .aboutSwiper {
    margin-left: calc(52vw - 504px);
  }
}

@media not all and (min-width: 991px) {
  .why-salahkaar-visits .custom-swiper-outer .aboutSwiper {
    margin-left: calc(70vw - 504px);
  }

  .why-salahkaar-visits .custom-swiper-outer .aboutSwiper .swiper-slide:last-child {
    margin-inline-end: calc(var(--spacing) * 10);
  }
}

@media not all and (min-width: 767px) {
  .why-salahkaar-visits .custom-swiper-outer .aboutSwiper {
    margin-left: 0;
    margin-right: 0;
  }

  .why-salahkaar-visits .custom-swiper-outer .aboutSwiper .swiper-slide {
    max-width: 275px;
  }

  .why-salahkaar-visits .custom-swiper-outer .aboutSwiper .swiper-slide:last-child {
    margin-inline-end: 0 !important;
  }

  .why-salahkaar-visits .custom-swiper-outer .aboutSwiper .swiper-slide-active {
    margin-left: 20px;
  }

  .why-salahkaar-visits .custom-swiper-outer .aboutSwiper .swiper-slide-active:last-child {
    margin-left: 0;
  }
}

.about-us-content .container .related-box .read-more-btn .icon {
  height: 49px;
  width: 49px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-us-content .container .related-box .read-more-btn:hover::after {
  width: 100%;
}

.about-us-content .container .related-box .read-more-btn:hover .icon {
  background: #1977FB;
}

.about-us-content .container .related-box .read-more-btn:hover svg.arrow path {
  stroke: #1977FB;
}

.blog-banner {
  background: url("../img/blog-banner.png") no-repeat center center;
  background-size: cover;
  min-height: 378px;
  padding-top: 24px !important;
}

@media (max-width: 1025px) {
  .blog-banner {
    margin-top: 66px;
  }
}

@media (max-width: 767px) {
  .blog-banner {
    margin-top: 61px;
  }
}

.blog-card {
  padding: 4px;
  border-radius: 16px;
  border: 1px solid var(--grey-200, #E5E5E5);
  background: var(--white, #FFF);
  box-shadow: 0 1px 1.8px 0 rgba(17, 17, 26, 0.1);
  transition: 0.3s all;
}

.blog-card .card-img img {
  border-radius: 12px 12px 0 0;
}

.blog-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.content-section .container .toc-link {
  color: #000;
  font-size: 14px !important;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: all 0.3s ease;
}

/* Hover */
.content-section .container .toc-link:hover {
  color: #8F8F8F;
}


/* Active (selected section) */
.content-section .container .toc-link.active {
  color: #5144E0;
  font-weight: 600;
}

/* 🔥 Prevent hover overriding active */
.content-section .container .toc-link.active:hover {
  color: #5144E0;
}

.content-section .container .reading-card {
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
}

.content-section .container .reading-card h1:first-child,
.content-section .container .reading-card h2:first-child,
.content-section .container .reading-card h3:first-child,
.content-section .container .reading-card h4:first-child,
.content-section .container .reading-card h5:first-child,
.content-section .container .reading-card h6:first-child,
.content-section .container .reading-card p:first-child,
.content-section .container .reading-card img:first-child {
  margin-top: 0 !important;
}

.content-section .container .reading-card a {
  color: #2b59ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.content-section .container .reading-card a:hover {
  text-decoration-thickness: 2px;
}

.content-section .container .reading-card strong,
.content-section .container .reading-card b {
  font-weight: 600;
}

.content-section .container .reading-card em,
.content-section .container .reading-card i {
  font-style: italic;
}

.content-section .container .reading-card h1,
.content-section .container .reading-card h2,
.content-section .container .reading-card h3,
.content-section .container .reading-card h4,
.content-section .container .reading-card h5,
.content-section .container .reading-card img {
  margin-top: 64px !important;
  text-align: left !important;
}

.content-section .container .reading-card h6 {
  margin-top: 24px !important;
  text-align: left !important;
}

.content-section .container .reading-card h4 {
  font-size: clamp(22px, 4vw, 24px);
  font-weight: 600;
}

.content-section .container .reading-card h6 {
  color: #272727;
  font-size: clamp(18px, 4vw, 20px);
  font-weight: 500;
}

.content-section .container .reading-card p {
  color: #3F3F3F;
}

.content-section .container .reading-card p,
.content-section .container .reading-card ul,
.content-section .container .reading-card ol,
.content-section .container .reading-card blockquote,
.content-section .container .reading-card pre,
.content-section .container .reading-card figure,
.content-section .container .reading-card table,
.content-section .container .reading-card hr,
.content-section .container .reading-card .wp-block-heading {
  margin-top: 16px !important;
  text-align: left !important;
}

.content-section .container .reading-card img {
  border-radius: 16px;
}

.content-section .container .reading-card ul {
  list-style: disc;
}

.content-section .container .reading-card ol {
  list-style: decimal;
}

.content-section .container .reading-card ul,
.content-section .container .reading-card ol {
  padding-left: 1.5rem !important;
}

.content-section .container .reading-card ul li,
.content-section .container .reading-card ol li {
  padding-bottom: 8px;
  color: #3F3F3F;
  font-size: clamp(14px, 4vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

.content-section .container .reading-card ul li:last-child,
.content-section .container .reading-card ol li:last-child {
  padding-bottom: 0;
}

.toc-link.active {
  color: #5144E0;
  font-weight: 600;
}

.service-banner {
  background: url("../img/service-banner.png") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-banner .row {
  --bs-gutter-x: 64px;
}

.what-is-hr-outsourcing-section .container .content-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.what-is-hr-outsourcing-section .container .content-section .content-div {
  --bs-gutter-x: 48px;
  display: flex;
  flex-direction: row;
}

.what-is-hr-outsourcing-section .container .content-section .content-div:nth-child(even) {
  flex-direction: row-reverse;
}

.service-industry {
  background: linear-gradient(0deg, var(--grey-50, #FAFAFA) 0%, var(--grey-50, #FAFAFA) 100%), var(--blue-50, #EDF1F7);
}

.who-use-virtual-service .container .row {
  --bs-gutter-x: 48px;
}

.how-engagement-works .accordion-container .accordion-item {
  padding: 24px;
  border: 1px solid #E5E5E5;
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  background: #fff;
  transition: background 0.3s ease;
}

.how-engagement-works .accordion-container .accordion-item:last-child {
  margin-bottom: 0;
}

.how-engagement-works .accordion-container .accordion-item.is-open {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 24.33%, rgba(255, 255, 255, 0) 100%), var(--blue-50, #EDF1F7);
}

.how-engagement-works .accordion-container .accordion-item .accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.how-engagement-works .accordion-container .accordion-item .accordion-toggle .accordion-icon {
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}

.how-engagement-works .accordion-container .accordion-item .accordion-toggle[aria-expanded=true] .accordion-icon {
  transform: rotate(180deg);
}

.how-engagement-works .accordion-container .accordion-item .accordion-toggle .accordion-step {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--grey-200, #E5E5E5);
  font-weight: 600;
  color: var(--blue-600, #0346A4);
}

.how-engagement-works .accordion-container .accordion-item .accordion-toggle .accordion-question {
  color: #3f3f3f;
  font-weight: 600;
}

.how-engagement-works .accordion-container .accordion-item .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.how-engagement-works .accordion-container .accordion-item .accordion-content .accordion-answer {
  color: #3f3f3f;
}

.why-indian-businesses-work-section .container .impact-div {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.choose-card {
  padding: 24px;
  border-radius: 16px;
  border: 1.5px solid var(--grey-100, #F2F2F2);
  background: var(--white, #FFF);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.18);
}

.step {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--grey-200, #E5E5E5);
  font-weight: 600;
  color: var(--blue-600, #0346A4);
}

a {
  text-decoration: none;
  color: #3F3F3F;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--line-height-footnote, 18px);
}

a.white {
  color: #fff;
}

a.black {
  color: #000;
}

a.bold {
  font-weight: 500;
}

a.small {
  font-size: 14px;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}

ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

html {
  scroll-behavior: smooth;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

h1 {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(42px, 4vw, 52px);
  color: #FFF;
  font-style: normal;
  font-weight: 700;
  line-height: var(--line-height-H1, 64px);
  /* 123.077% */
  letter-spacing: -1.04px;
  margin: 0;
}

h1.black {
  color: #000;
}

.banner-title {
  font-size: clamp(46px, 5vw, 64px);
}

h3 {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(28px, 4vw, 32px);
  color: #121212;
  font-style: normal;
  font-weight: 600;
  line-height: var(--line-height-H2, 44px);
  /* 137.5% */
  letter-spacing: -0.32px;
  margin: 0;
}

h3.white {
  color: #fff !important;
}

h3.bold {
  font-weight: 700;
}

h3.blue {
  color: #0346A4;
}

h4 {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(22px, 4vw, 24px);
  color: #121212;
  font-style: normal;
  font-weight: 400;
  line-height: var(--line-height-H3, 40px);
  /* 166.667% */
  letter-spacing: -0.24px;
  margin: 0;
}

h4.bold {
  font-weight: 600;
}

h4.white {
  color: #fff;
}

h6 {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(18px, 4vw, 20px);
  color: #3F3F3F;
  font-weight: 500;
  line-height: var(--line-height-Large-Body, 27px);
  margin: 0;
}

h6.white {
  color: #fff;
}

h6.bold {
  font-weight: 600;
}

h6.darkblack {
  color: #272727;
}

p {
  color: #000;
  font-family: "Open Sans", sans-serif;
  font-size: clamp(14px, 4vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--line-height-Regular-Body, 25px);
  margin: 0;
}

p.small {
  font-size: clamp(12px, 4vw, 14px);
}

p.darkblack {
  color: #121212;
}

p.darkgrey {
  color: #7A7A7A;
}

p.darkblue {
  color: #112745;
}

p.semibold {
  font-weight: 500;
}

p.bold {
  font-weight: 600;
}

p.extrabold {
  font-weight: 700;
}

p.grey {
  color: #3F3F3F;
}

p.white {
  color: #fff !important;
}

p.blue {
  color: #0346A4;
}

.color-blue {
  color: #045AD2;
}

.color-lightblue {
  color: #023378;
}

.color-darkblue {
  color: #112745;
}

.mt-60 {
  margin-top: 60px;
}

.mt-110 {
  margin-top: 110px;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row>* {
  flex-shrink: 0;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}

.padding-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.padding-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.padding-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.rgb-color {
  background: linear-gradient(180deg, #35ABFF 23.08%, #718ED5 69.71%, #FF466E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.color-gradient {
  background: linear-gradient(180deg, #35ABFF 0%, #718ED5 29.33%, #FF466E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container {
  --bs-gutter-x: 5rem;
  --bs-gutter-y: 0;
  width: 100%;
  max-width: 1080px;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-left: auto;
  margin-right: auto;
}

.footer-gradient {
  background: var(--Gradient-2, linear-gradient(180deg, #35ABFF 0%, #718ED5 29.33%, #FF466E 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-submit {
  background-color: transparent;
  color: #fff;
  border: none;
  padding: 0;
  position: relative;
  z-index: 10;
}

label {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: clamp(14px, 4vw, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 152%;
  /* 24.32px */
}

input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: clamp(13px, 4vw, 15px);
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 15px */
  letter-spacing: -0.15px;
}

input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
textarea::placeholder,
select::placeholder {
  font-family: "Poppins", sans-serif;
  color: #333;
  font-size: clamp(13px, 4vw, 15px);
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 15px */
  letter-spacing: -0.15px;
}

@media (width < 1050px) {
  .mt-110 {
    margin-top: 59px;
  }
}

@media (width < 991px) {
  .container {
    --bs-gutter-x: 3.75rem;
  }

  .padding-80 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .padding-120 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .mt-75 {
    margin-top: 70px;
  }

  .mt-110 {
    margin-top: 58px;
  }
}

@media (width < 767px) {
  .container {
    --bs-gutter-x: 2.5rem;
  }

  .mt-110 {
    margin-top: 56px;
  }
}

.color-gradient {
  background: linear-gradient(180deg, #35ABFF 0%, #718ED5 30.77%, #FF466E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*# sourceMappingURL=condensed.css.map */