/* Theme Color */
:root {
  --clr-accent: #38b6ff;
  --clr-primary: #292929;
  --clr-secondary: #ff914d;
  --clr-white: #ffffff;
  --clr-title-text: #101323;
  --clr-para-text: #667085;
  --ff-body: "Manrope", serif;
  --ff-primary: "Manrope", serif;
  --ff-secondary: "Manrope", serif;
}

/* Browser Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
  font: inherit;
}

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

html:focus-within {
  scroll-behavior: smooth;
}

a:focus,
a:hover {
  outline: none;
  color: inherit;
}

a {
  color: inherit;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

body {
  font-family: var(--ff-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  color: var(--clr-para-text);
}

p {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  color: var(--clr-para-text);
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-primary);
  margin-bottom: 0;
}

img,
picture,
svg {
  max-width: 100%;
  display: block;
}

section {
  position: relative;
  z-index: 1;
}

.swiper-container {
  overflow: hidden;
}

.secondary-color {
  color: var(--clr-secondary) !important;
}

/*  utility */
.overlay::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(27, 27, 27, 0.72);
  z-index: -1;
  top: 0;
  left: 0;
  opacity: 0.72;
}

.top-header h2 {
  font-family: var(--ff-primary);
  text-align: left;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 120%;
  color: var(--clr-title-text);
  margin: 10px 0 23px;
}

.top-header h2 span {
  color: var(--clr-accent);
}

.custom-btn {
  font-family: var(--ff-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: 1px solid rgba(208, 213, 221, 0.4);
  border-radius: 50px;
  box-shadow: inset 0 1px 40px 0 rgba(227, 222, 255, 0.05),
    inset 0 5px 16.6px 0 rgba(154, 146, 210, 0.12);
  color: #eaecf5;
  font-family: var(--font-secondary);
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  padding: 12px 16px;
  text-decoration: none;
  transition: all 0.3s;
}

.navbar .custom-btn {
  font-family: var(--ff-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: 1px solid rgba(208, 213, 221, 0.4);
  border-radius: 50px;
  box-shadow: inset 0 1px 40px 0 rgba(227, 222, 255, 0.05),
    inset 0 5px 16.6px 0 rgba(154, 146, 210, 0.12);
  color: #eaecf5;
  font-family: var(--font-secondary);
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  padding: 12px 16px;
  text-decoration: none;
  transition: all 0.3s;
  background: var(--clr-white);
  color: var(--clr-title-text);
}

.custom-btn:hover,
.custom-btn:focus {
  color: var(--clr-white);
  background: transparent;
  border: 1px solid var(--clr-white);
}

.custom-btn.btn-2 {
  color: #ffffff;
  padding: 15px 40px;
  margin-top: 40px;
  font-weight: 600;
  border: 2px solid transparent;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.custom-btn.btn-2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(
    90deg,
    rgb(10, 137, 210) 0%,
    var(--clr-accent) 96%
  );
  opacity: 1;
  transition: opacity 0.3s ease;
}

.custom-btn.btn-2:hover {
  color: var(--clr-accent);
  border-color: var(--clr-accent);
}

.custom-btn.btn-2:hover::before {
  opacity: 0;
}
.contact-sec .custom-btn.btn-2 {
  color: #ffffff;
  padding: 15px 40px;
  font-weight: 600;
  margin-top: 40px;
  border: 2px solid transparent;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: var(--clr-accent);
  transition: color 0.5s ease, border-color 0.5s ease;
}

.contact-sec .custom-btn.btn-2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(
    90deg,
    rgb(10, 137, 210) 0%,
    var(--clr-accent) 96%
  ) !important;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.contact-sec .custom-btn.btn-2:hover {
  color: var(--clr-accent);
  border-color: var(--clr-accent);
  background: transparent;
  transition: opacity 0.5s ease-in-out;
}

.contact-sec .custom-btn.btn-2:hover::before {
  opacity: 0;
}

/* ================================
   Styles for sticky-slider-sec
   ================================ */
.sticky-slider-sec .custom-btn.btn-2 {
  color: #ffffff;
  padding: 15px 40px;
  margin-top: 40px;
  font-weight: 600;
  border: 2px solid transparent;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.sticky-slider-sec .custom-btn.btn-2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(
    144deg,
    rgba(255, 157, 95, 1) 20%,
    rgba(246, 111, 27, 1) 90%
  );
  opacity: 1;
  transition: opacity 0.3s ease;
}

.sticky-slider-sec .custom-btn.btn-2:hover {
  color: var(--clr-secondary);
  border-color: var(--clr-secondary);
  background-color: var(--clr-white);
}

.sticky-slider-sec .custom-btn.btn-2:hover::before {
  opacity: 0;
}

/* ================================
   Styles for counter-sec
   ================================ */
.counter-sec .custom-btn.btn-2 {
  color: #ffffff;
  padding: 15px 40px;
  font-weight: 600;
  border: 2px solid transparent;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.counter-sec .custom-btn.btn-2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(
    144deg,
    rgba(255, 157, 95, 1) 20%,
    rgba(246, 111, 27, 1) 90%
  );
  opacity: 1;
  transition: opacity 0.3s ease;
}

.counter-sec .custom-btn.btn-2:hover {
  color: var(--clr-secondary);
  border-color: var(--clr-secondary);
  background-color: var(--clr-white);
}

.counter-sec .custom-btn.btn-2:hover::before {
  opacity: 0;
}

/* .bg-grident {
  background-image: linear-gradient(
    144deg,
    rgba(255, 157, 95, 1) 20%,
    rgba(246, 111, 27, 1) 90%
  ) !important;
} */

.custom-btn.white:hover {
  border: none;
}

.custom-pad {
  padding: 90px 0;
}

.bg-one {
  background: #f2f4f7;
}

.bg-two {
  background: #076297;
}

/* navbar */
.header-sec {
  background: transparent;
  z-index: 5;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  right: 0;
  transition: all 0.5s;
}

/* .header-sec.active {
  animation: up-motion 0.3s ease forwards;
} */

/* @keyframes up-motion {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
} */
.header-sec.nav-up {
  transform: translateY(-200px);
  opacity: 0;
}

.header-sec.nav-down {
  transform: translateY(0);
  opacity: 1;
}
.main-nav-box {
  background: transparent;
  padding: 20px 0;
  gap: 10px;
  justify-content: space-between;
  transition: all 0.3s;
}

.header-logo {
  font-family: var(--ff-primary);
  font-size: 35px;
  font-weight: 700;
  line-height: 40.25px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #000;
  text-transform: uppercase;
}

.header-logo img {
  /* height: 31px; */
  object-fit: contain;
}

.main-nav-box .navbar-nav {
  gap: 20px;
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  padding: 10px 24px;
  border-radius: 50px;
  margin-right: 74px;
  box-shadow: inset 0 1.2px 40px 0 rgba(227, 222, 255, 0.05),
    inset 0 5px 16.6px 0 rgba(154, 146, 210, 0.12);
}
.header-sec.active .main-nav-box .navbar-nav {
  margin-right: 0;
}
.header-sec nav.main-nav-box .navbar-nav .nav-link {
  text-decoration: none;
  background-color: transparent;
  border-radius: 20px;
  color: #eaecf5;
  padding: 6px 12px;
  transition: 0.3s;
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 16px;
  transition: all 0.2s;
}

.header-sec nav.main-nav-box .navbar-nav .nav-link:hover {
  background-color: rgba(180, 195, 210, 0.3);
}

/* .header-sec nav.main-nav-box .navbar-nav .nav-link:hover:after {
  width: 100%;
} */

.header-sec.active .main-nav-box {
  background-color: var(--clr-primary);
  gap: 20px;
  border: 1px solid transparent;
  box-shadow: inset 0 1.2px 40px 0 #e3deff0d, inset 0 5.02px 16.6px 0 #9a92d21f;
  padding: 0px 24px;
  border-radius: 50px;
  margin-top: 30px;
  max-width: 946px;
  margin: 20px auto 0;
}

.header-sec.active .main-nav-box .navbar-nav {
  border: none;
  padding: 0;
  box-shadow: none;
}

.header-sec.active .header-logo img {
  height: 60px;
}

.header-sec.active nav.main-nav-box .navbar-nav .nav-link {
  color: var(--clr-white);
}

.header-sec.active nav.main-nav-box .navbar-nav .nav-link:hover {
  background: rgba(180, 195, 210, 0.3);
}

.header-sec.active .custom-btn {
  border-color: transparent;
  padding: 7px 19px;
  color: var(--clr-white);
  background-image: linear-gradient(
    90deg,
    rgb(10, 137, 210) 0%,
    var(--clr-accent) 96%
  );
}

.header-sec.active .custom-btn:hover {
  background: transparent;
  color: var(--clr-accent);
  border: 1px solid var(--clr-accent);
}

@media screen and (min-width: 991.98px) {
  .header-sec .offcanvas {
    position: inherit;
    background: transparent;
    border: none;
    width: fit-content;
    transform: none;
    visibility: visible;
  }

  .header-sec .modal-backdrop {
    display: none;
  }

  .header-sec .offcanvas-body {
    padding: 0;
    border: none;
    overflow-y: visible;
  }

  .header-sec .main-nav-box {
    position: relative;
  }

  .header-sec .main-nav-box .offcanvas,
  .header-sec .offcanvas-body,
  .main-nav-box .navbar-nav,
  .main-nav-box .navbar-nav .dropdown,
  .main-nav-box .navbar-nav .dropdown-menu {
    position: static;
  }

  /*  */
  .header-sec .navbar-nav .dropdown-menu {
    background-color: rgb(249, 250, 251);
    position: absolute;
    left: 50%;
    top: calc(100% + 20px);
    transform: translateX(-50%);
    width: 834px;
    border: none;
    padding: 32px;
    gap: 35px 10px;
    border-radius: 24px;
    box-shadow: 0 4px 6px -2px rgba(24, 40, 88, 0.03),
      0 12px 16px -4px rgba(24, 40, 88, 0.08);
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
  }

  .menu-content {
    text-align: left;
  }

  .header-sec .navbar-nav .new-dropdown {
    background-color: rgb(249, 250, 251);
    position: absolute;
    left: 50%;
    top: calc(100% + 20px);
    transform: translateX(-50%);
    width: 750px;
    border: none;
    padding: 32px;
    gap: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 4px 6px -2px rgba(24, 40, 88, 0.03),
      0 12px 16px -4px rgba(24, 40, 88, 0.08);
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
    display: block;
    z-index: -1;
  }

  .new-dropdown {
    left: 49% !important;
    width: 250px !important;
    flex-direction: column;
  }

  .header-sec.active .new-dropdown {
    left: 50% !important;
    width: 250px !important;
    flex-direction: column;
  }

  .header-sec .navbar-nav .new-dropdown li {
    margin-bottom: 15px;
  }

  .header-sec .navbar-nav .new-dropdown li:last-child {
    margin-bottom: 0px;
  }

  .header-sec .navbar-nav .dropdown-menu > li {
    flex: 0 0 calc(33.333% - 20px);
    list-style: none;
    text-align: center;
  }

  .header-sec:not(.active) .navbar-nav .dropdown-menu {
    top: calc(100% - 26px);
  }

  .dropdown-menu {
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
    display: block;
  }

  .nav-item.dropdown.show > .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }

  .header-sec .navbar-nav .dropdown-menu > li {
    width: auto;
  }
}

/* ./navbar */
/* banner */
.banner-sec {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 140px 0;
  overflow: hidden;
}

.banner-sec .container-wrapper {
  margin-top: 20px;
}

.banner-sec .banner-right-img-box img {
  min-width: 67vw;
  margin-top: -37px;
}

.banner-sec .ban-bg-box {
  top: -59%;
  height: 127%;
}

.banner-title {
  font-family: var(--ff-primary);
  font-size: 3.125rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--clr-title-text);
  line-height: 120%;
}

.banner-title span {
  color: var(--clr-secondary);
}

.top-title {
  font-family: var(--ff-primary);
  text-underline-position: from-font;
  color: var(--clr-title-text);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.banner-sec .content-box {
  max-width: 62%;
}

.banner-sec .banner-title {
  padding: 13px 0 32px;
}

.ban-bg-box {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: -2;
}

.ban-bg-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-sec.overlay::before {
  opacity: 0.6;
}

/* ./ banner */
/* about sec */
.slider-sec .about-right-img-box {
  position: sticky;
  top: 0;
  display: flex;
  width: 100%;
  padding: 60px;
}

.slider-sec .about-right-img-box img {
  width: 100%;
  object-fit: cover;
}

/* ./about sec */
section.about-sec.globally-aligned .counter-card-box {
  max-width: 699px;
}

.counter-card {
  background: #1d2939;
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.counter-card .icon-box img {
  height: 40px;
  object-fit: contain;
}

.counter-card .content-box h3 {
  color: var(--clr-white);
  font-size: 25px;
  line-height: 120%;
}

.counter-card .content-box p {
  color: var(--clr-accent);
  font-size: 79%;
}

.globally-aligned a.custom-btn.btn-2 {
  margin: 40px 0;
}

.globally-aligned .top-header {
  max-width: 280px;
}

.globally-aligned .common-para {
  max-width: 436px;
}

.globally-aligned .ban-bg-box img {
  max-width: 73%;
  object-fit: contain;
  object-position: right;
  margin: 0 5% 0 auto;
}

/* ./globally-aligned */
.center-aligned .content-box {
  max-width: 670px;
  margin: 0 auto;
  text-align: center;
}

.center-aligned .content-box .top-header h2,
.center-aligned .content-box p {
  text-align: center;
}

.top-header h3 {
  font-size: 30px;
  color: var(--clr-white);
  margin: 0 0 17px;
  line-height: 120%;
}

.quote-box p {
  color: var(--clr-white);
}

.quote-box h3 {
  color: var(--clr-white);
  font-size: 20px;
  line-height: 120%;
  margin: 15px 0 0;
}

.clr-white-text .content-box p,
.clr-white-text .top-header h3,
.clr-white-text .top-header h2 {
  color: var(--clr-white);
}

.chartered-bank .about-right-img-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.chartered-bank .about-right-img-box img {
  max-width: 245px;
  object-fit: contain;
}

/* slider sec */
.leader-slider-thumbnail .thumb-img {
  display: inline-flex;
  height: 102px;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-top: 4px solid transparent;
  padding: 20px 30px;
  cursor: pointer;
  text-align: center;
}

.leader-slider-thumbnail .thumb-img img {
  object-fit: contain;
  width: 160px;
}

.leader-slider-thumbnail .swiper-slide-thumb-active .thumb-img {
  border-top: 4px solid var(--clr-accent);
}

.leader-slider-thumbnail {
  margin-top: 32px;
  position: relative;
}

.leader-slider-thumbnail::before {
  content: "";
  width: 100%;
  border-top: 1px dashed #d0d5dd;
  position: absolute;
}

.slider-sec {
  overflow: hidden;
}

.clr-white-text .top-title {
  color: var(--clr-white);
}

/* ./slider sec */
.experience-left-part {
  background-image: linear-gradient(90deg, #0277bb 53.7%, var(--clr-secondary));
  padding: 80px 15% 80px 16%;
}

.experience-right-part {
  position: relative;
}

.experience-right-part .play-icon {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

/* ./experience */
.faq-mail {
  color: #0073e6;
  padding: 5px 0;
}

.faq-box .accordion-button::after,
.accordion-button:not(.collapsed)::after {
  background: none;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\2b";
}

.faq-box .accordion-button:not(.collapsed)::after {
  content: "\f068";
  transform: none;
}

.faq-box .accordion-item button.accordion-button {
  color: var(--clr-primary);
  cursor: pointer;
  font-weight: 500;
  line-height: 27px;
  padding: 20px 0;
  font-size: 18px;
  border: none;
  box-shadow: none;
}

.faq-box .accordion-item .accordion-button:not(.collapsed) {
  background-color: var(--clr-bg-one);
}

.faq-box .accordion > .accordion-item {
  overflow: hidden;
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}

.faq-box .accordion > .accordion-item:not(:last-child) {
  border-bottom: 1px solid #eaecf0;
}

.faq-box .accordion-item .accordion-body {
  padding: 0;
  margin-top: 0;
  padding-bottom: 20px;
}

.faq-sec .faq-box {
  /* max-width: 820px; */
  margin: 35px auto 0;
}

/* ./faq-sec */
.media-box .icon {
  background: var(--clr-title-text);
  padding: 8px;
  color: var(--clr-white);
  border-radius: 8px;
  width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.media-box .icon:hover {
  background: transparent;
  color: var(--clr-title-text);
  border-color: var(--clr-title-text);
}

.media-box {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 11px;
}

.footer-content-wrapper:has(.media-box) {
  text-align: center;
}
.footer-sec .footer-logo-box {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.footer-content-wrapper:has(.right-align) {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: end;
  flex-direction: column;
}

.footer-links-box h4 {
  font-size: 24px;
  line-height: 26px;
  color: rgba(133, 151, 155, 1);
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-links-box ul li {
  margin-bottom: 10px;
  font-size: 18px;
  color: var(--clr-primary);
  display: flex;
  align-items: start;
}

.footer-links-box ul li a {
  font-size: 16px;
  color: var(--clr-primary);
  display: flex;
  align-items: start;
  gap: 10px;
  font-weight: 500;
}
.footer-content-wrapper.footer-right-box {
  display: flex;
  justify-content: end;
}
.copy-right-box p {
  text-align: center;
}
/* ./footer */
.client-smooth-slider {
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* animation: marquee 15.5s linear infinite both; */
  position: relative;
  overflow: hidden;
}

@keyframes marquee {
  0% {
    left: 0%;
  }

  100% {
    left: -50%;
  }
}

.client-smooth-slider .swiper-wrapper {
  transition-timing-function: linear;
  /* Ensures consistent, smooth sliding */
}

.client-smooth-slider .swiper-slide {
  flex-shrink: 0;
  width: auto;
  /* Ensures slides adjust naturally */
}

.client-smooth-slider .client-card {
  width: calc(100% / 4);
  min-width: 275px;
  border-right: 1px solid #dfdfe2c0;
}

.client-smooth-slider .client-card .img-box img {
  height: 72px;
  object-fit: contain;
}

.client-smooth-slider .client-card .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-smooth-slider .client-card:not(:last-child) {
  border-right: 1px solid #dfdfe2;
}

/* ./client slider */

.sticky-img-wrapper .slider-item {
  /* border: 2px solid red; */
  position: -webkit-sticky !important;
  position: sticky !important;
  width: 100%;
  margin: 0;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s;
  overflow-x: hidden;
}

.sticky-slider-sec .slider-item {
  min-height: 620px;
}

.slider-item.is-active {
  opacity: 1;
  z-index: 1;
  transition: all 0.4s;
  top: 20px;
}

/* sticky-slider  */
.contact-form .form-control {
  padding: 12px 14px;
  font-family: var(--ff-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  color: #000;
  margin-bottom: 0;
  border-radius: 6px;
  background: #f2f4f7;
  /* box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); */
  border: 1px solid #e3e3e3;
}

.contact-form .form-control::placeholder {
  color: var(--clr-para-text);
}

.form-group.checkbox {
  display: flex;
  align-items: baseline;
  gap: 15px;
}

.form-group.checkbox label {
  font-family: var(--ff-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
  color: var(--clr-para-text);
  margin-bottom: 0;
}

.form-group.form-button .custom-btn.btn-2 {
  width: 100%;
  margin-top: 43px;
}

.contact-sec .counter-card-box {
  margin-top: 40px;
}

.contact-sec .content-box,
.custom-modal-one .content-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 80%;
}

.form-group.checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-right: 7px;
}

.custom-modal-one .form-control {
  display: block;
  width: 100%;
  padding: 15px 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.custom-modal-one .custom-btn.btn-2 {
  color: var(--clr-title-text);
  padding: 15px 40px;
  margin-top: 40px;
  font-weight: 600;
  border: 2px solid transparent;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.custom-modal-one .custom-btn.btn-2:hover {
  color: var(--clr-white);
  background-color: var(--clr-accent);
}

.form-group.checkbox a {
  color: var(--clr-accent);
  font-weight: 500;
}

.custom-modal-one .form-group.checkbox label {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
  color: var(--clr-para-text);
  margin-bottom: 0;
}

.custom-modal-one .top-header h2 {
  font-family: var(--ff-primary);
  text-align: left;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 120%;
  color: var(--clr-title-text);
  margin: 15px 0;
}

.custom-modal-one .common-para p {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  color: var(--clr-para-text);
  margin-bottom: 15px;
}

.counter-card-one h3 {
  color: var(--clr-primary);
}

.counter-card-one p {
  font-size: 80%;
  font-weight: 500;
}

.counter-card-box .counter-left h3 {
  color: var(--clr-primary);
}

.contact-sec .counter-card-box {
  margin-top: 40px;
  padding: 25px;
  border-radius: 25px;
}

/* ./contact sec */

.mcs_Choose-wrap {
  position: relative;
  width: 100%;
}

.mcs_Choose-box {
  position: relative;
  width: 100%;
  padding: 30px;
  text-align: center;
  height: 100%;
}

.mcs_Choose-box h6 {
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
  color: var(--clr-title-text);
}

.mcs_Choose-box p {
  font-weight: 500;
  text-align: center;
}

.mcs_Choose-box span {
  margin: 0 auto 20px;
  display: block;
}

.mcs_Choose-box span img {
  height: 50px;
  margin: 0 auto;
}

.mcs_Choose-box::before {
  position: absolute;
  left: -10px;
  top: 0;
  width: 1px;
  height: 100%;
  content: "";
  background: var(--clr-white);
}

.mcs_Choose-wrap .col-md-4:first-child .mcs_Choose-box::before,
.mcs_Choose-wrap .col-md-4:nth-child(4) .mcs_Choose-box::before,
.mcs_Choose-wrap .col-md-4:nth-child(7) .mcs_Choose-box::before {
  display: none;
}

.mcs_Choose-wrap::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--clr-white);
}

.why-choose-sec .top-header h2,
.blog-sec .top-header h2 {
  margin-bottom: 40px;
}

/* ./why choose  */
.mcs_news-box {
  position: relative;
  width: 100%;
  border-radius: 10px;
  background: #f2f4f7;
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-content: center;
}

.mcs_news-img {
  position: relative;
  width: 50%;
  overflow: hidden;
}

.mcs_news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}

.mcs_news-img:hover img {
  transform: scale(1.1);
  transition: all 0.5s ease-in-out;
}

.mcs_news-cont {
  padding: 15px 25px;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: self-start;
  height: 100%;
}

.mcs_news-cont span {
  width: 60px !important;
  border-radius: 5px;
  padding: 7px;
  font-size: 20px;
  color: var(--clr-white);
  background: var(--clr-accent);
  position: absolute;
  text-align: center;
  left: 10px;
  top: 10px;
}

.mcs_news-cont h6 {
  color: var(--clr-secondary);
  font-weight: 500;
  font-size: 14px;
  padding: 5px 0;
  border-radius: 5px;
  width: fit-content;
  margin-bottom: 10px;
}

.mcs_news-cont h4 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
  color: var(--clr-white);
  line-height: 30px;
}

.mcs_news-box .custom-btn {
  margin-top: 0;
}

.mcs_news-cont h4 a {
  color: var(--clr-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.mcs_news-cont h4 a:hover {
  color: var(--clr-accent);
}

.mcs_news-cont p {
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

/* ./blog sec */
.footer-logo-box img {
  height: 114px;
}

.menu-card {
  display: flex;
  align-items: center;
  gap: 4px;
}

.menu-card .menu-icon img {
  min-width: 56px;
  object-fit: contain;
}

.menu-card .menu-content h6 {
  font-size: 16px;
  line-height: 20px;
}

.menu-card .menu-content p {
  font-size: 14px;
  line-height: 22px;
  padding-top: 3px;
}

/* menu */
.sticky-slider-sec a.custom-btn.btn-2 {
  margin: 3px 0 22px;
}

/* Basic structure and styling for the timeline */
.timeline {
  position: relative;
  padding-left: 20px;
  margin-top: 30px;
}

.timeline-card {
  display: flex;
  align-items: flex-start;
  gap: 49px;
  justify-content: space-between;
  /* border: 1px solid; */
  height: 100%;
  position: relative;
}

.timeline li {
  position: relative;
  list-style: none;
  padding-left: 20px;
  margin-bottom: 30px;
  /* opacity: 0; */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Default line that acts as the base timeline */
.default-line,
.draw-line {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  height: 100%;
  width: 2px;
  border-left: 5px dashed #ffffffaf;
  max-height: calc(100% - 155px);
}

.draw-line {
  border-left: 5px solid var(--clr-white);
  height: 10%;
}

.timeline li.in-view {
  opacity: 1;
  transform: translateX(0);
}

.timeline-box {
  margin-top: 40px;
  position: relative;
}

.timeline-card .count-num {
  width: 52px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 600;
  color: var(--clr-white);
  transition: all 0.3s;
  position: absolute;
  left: 50%;
  top: 0;
  background-color: #076297;
  transform: translate(-50%, 0);
}

.timeline-box ul li.in-view .timeline-card .count-num,
.timeline-box ul li.current-active .timeline-card .count-num {
  background-color: var(--clr-white);
  color: #076297;
}

.timeline-card .timeline-content {
  padding: 25px 35px;
  border: 1px solid transparent;
  border-radius: 20px;
  flex: 1;
  background: #ffffff47;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  max-width: calc(50% - 49px);
  opacity: 0;
  transition: all 0.3s;
}

.timeline-box ul li.current-active .timeline-card .timeline-content {
  opacity: 1;
}

.timeline-card .timeline-content p {
  color: var(--clr-white);
}

.timeline-box ul li {
  height: 180px;
}

.timeline-card .hiring-title h3 {
  text-align: right;
  color: #ffffff8c;
  font-size: 22px;
  font-weight: 700;
}

.timeline-box ul li.in-view .timeline-card .hiring-title h3 {
  color: var(--clr-white);
}

.timeline-card .hiring-title {
  flex: 1;
  max-width: calc(50% - 49px);
}

.leader-slider .swiper-slide {
  height: auto;
}

.leader-slider .swiper-slide .leader-single {
  height: 100%;
  display: flex;
}

/* modal */
@media (min-width: 576px) {
  .custom-modal-one .modal-dialog {
    max-width: 1140px;
    width: 100%;
    margin: 30px auto;
  }
}
.custom-modal-one .modal-header {
  border: none;
}

.custom-modal-one .modal-content {
  border-radius: 36px;
  padding: 60px;
}
.custom-modal-one .content-box {
  width: 100%;
  margin: 0 45px 0 0;
  max-width: 85%;
}
.custom-modal-one .modal-header .btn-close {
  position: absolute;
  right: 31px;
  top: 31px;
  z-index: 1;
}
/*  */
textarea.form-control {
  resize: none;
}
.blog-listing-sec .mcs_news-img img {
  height: 316px;
}
.blog-details-sec {
  margin-top: 70px;
}

/* 19-06-2025 */
/* counter-sec starts */

.counter-sec {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.counter-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.counter-title h2 {
  color: var(--clr-white);
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  padding: 0px 200px;
}

.counter-title p {
  color: var(--clr-white);
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  padding-top: 10px;
  padding: 0px 132px;
}

.counter-title .btn-2 {
  margin-top: 0px;
}

.counter-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* counter-sec ends */

/* added service logo */
.service-logo {
  width: 150px;
  height: 100%;
}

/* added logo effect */

.img-box img {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.img-box:hover img {
  filter: grayscale(0%);
}

/* new testimonial starts */
.new-testimonial-sec {
  background-position: center;
  background-repeat: no-repeat;
}

.new-testimonial-sec .top-header h2 {
  color: var(--clr-white) !important;
  margin-bottom: 10px;
}

.new-testimonial-sec .common-para p {
  color: var(--clr-white) !important;
  margin-bottom: 10px;
}

.new-testimonial-sec .test-writer p {
  color: var(--clr-white) !important;
}

.new-testimonial-sec .test-writer span {
  margin-right: 5px;
}

.new-testimonial-sec .test-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200px;
}

.test-logo img {
  cursor: pointer;
  width: 245px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.test-logo:hover img {
  filter: none;
}

.swiper-pagination [data-aos] {
  pointer-events: none;
  animation: none !important;
  transition: none !important;
}

.new-testimonial-sec .swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--clr-white);
  position: relative;
}

.new-testimonial-sec .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border: 1px solid var(--clr-white);
  border-radius: 50%;
  box-sizing: border-box;
}

.new-testimonial-sec .swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 50px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* new testimonial ends */

/* contact-sec starts */

.contact-sec .top-header h2 {
  font-size: 26px;
}

.contact-sec .common-para p {
  font-size: 16px;
  line-height: 23px;
}

.contact-image-box {
  width: 280px;
}

.contact-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* contact-sec ends */

/* why-choose-sec starts */

.border-remove::before {
  display: none;
}

.mcs_Choose-wrap::before {
  position: absolute;
  left: 0;
  top: 30%;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--clr-white);
}

.mcs_Choose-wrap::after {
  position: absolute;
  left: 0;
  top: 68%;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--clr-white);
}

/* why-choose-sec ends */

.mcs-off-logo {
  display: flex;
  justify-content: center;
}
.mcs-off-button {
  display: flex;
  justify-content: center;
}

.mcs-off-button .custom-btn {
  border-color: transparent;
  color: var(--clr-white);
  background-image: linear-gradient(
    90deg,
    rgb(10, 137, 210) 0%,
    var(--clr-accent) 96%
  );
  margin-right: 0px !important;
  padding: 10px 50px !important;
}

.mcs-off-social .ceo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 29px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mcs-off-social .ceo-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f0f0f0;
  color: #000;
  font-size: 18px;
  transition: all 0.3s ease;
}

.off-section {
  margin-top: 40px;
}

.blog-listing-sec .ban-bg-box{
  display: none;
}

section.banner-sec {
    padding-bottom: 70px !important;
}

section.sticky-slider-sec {
    padding-bottom: 0px;
}

.custom-modal-one .custom-btn.btn-2 {
	color: #ffffff;
  background-color: var(--clr-accent);
	padding: 15px 40px;
	margin-top: 40px;
	font-weight: 600;
	border: 2px solid transparent;
	position: relative;
	z-index: 1;
	overflow: hidden;
	transition: color 0.3s ease, border-color 0.3s ease;
}

.custom-modal-one .custom-btn.btn-2:hover {
color: var(--clr-accent);
border-color: var(--clr-accent);
background: transparent !important;
}

