@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  scroll-behavior: smooth;
  /* Fonts */
  --font-secondary: "Montserrat", sans-serif;
  --font-primary: "Inter", sans-serif;
  /*colors */
  --primary-color: #1848B7;
  --black-color: #121212;
  --black-light: #363636;
  --dark-blue: #000080;
  --med-blue:#000080;
  --white-color:#fff;
  /* font sizes */
  --fs-xs: 0.75rem; /* 12px */
  --fs-sm: 0.875rem; /* 14px */
  --fs-md: 1rem; /* 16px */
  --fs-l: 1.125rem; /*18px */
  --fs-lg: 1.25rem; /* 20px */
  --fs-xl: 1.5rem; /* 24px */
  --fs-2xl: 1.75rem; /* 28px */
  --fs-3xl: 2rem; /* 32px */
  --fs-34: 2.125rem; /* 34px */
  --fs-36: 2.25rem; /* 36px */
  --fs-40: 2.5rem; /* 40px */
  /* font weights */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-bolder: 900;
}

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

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: var(--font-primary);
  box-sizing: border-box;
  font-size: var(--fs-md);
  color: #212529;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
}

/** Common Classes Section **/
i[class^=ri-] {
  font-size: 20px;
  vertical-align: middle;
}

span {
  color: var(--primary-color);
}

.red {
  color: red;
}

.section-padding {
  padding: 60px 0px;
}

.common-title,
.banner-title {
  font-size: var(--fs-36);
  font-weight: var(--fw-bold);
  color: var(--black-color);
}
.common-title.bot-grad,
.banner-title.bot-grad {
  position: relative;
}
.common-title.bot-grad::after,
.banner-title.bot-grad::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -20px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #e6d4ff 0%, #7572e3 25%, #f5aa83 72%, #db3227 100%);
}

.main-heading {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--white-color);
  margin-bottom: 28px;
}

.common-title {
  letter-spacing: 2px;
  font-weight: var(--fw-semibold);
  margin-bottom: 28px;
}
.common-title.primary-color {
  color: var(--primary-color);
}
.common-title span {
  color: var(--primary-color);
}
.common-title.white {
  color: #fff;
}

.banner-title {
  color: var(--black-color);
  font-size: var(--fs-40);
  margin-bottom: 0px;
  line-height: 1.5;
  font-family: var(--font-secondary);
}

.common-btn {
  display: inline-block;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  text-decoration: none;
  padding: 8px 20px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  min-width: 130px;
  text-align: center;
  vertical-align: middle;
  transition: scale 0.3s ease-in-out;
}
.common-btn img {
  width: 12px;
  margin-left: 4px;
}
.common-btn:hover {
  scale: 1.05;
  color: #fff;
}
.common-btn.secondary-btn {
  background-color: #fff;
  color: #672f8c;
  border-color: #fff;
}
.common-btn.secondary-btn:hover {
  background-color: #672f8c;
  color: #fff;
  border-color: #672f8c;
}

.btn-outline {
  border: 1px solid #000;
  padding: 10px 20px;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-outline:hover {
  background: linear-gradient(180deg, #0056d6 0%, #0039b8 100%);
  color: #fff !important;
  border: 1px solid #0039b7;
}

/** End Common Classes Section **/
/** Header Section **/
main {
  padding-top: 77px;
}

.header {
  width: 100%;
  padding: 15px 0px;
  border-bottom: 1px solid lightgray;
  position: fixed;
  background: #fff;
  z-index: 999;
  top: 0;
  left: 0;
  transition: padding 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.header.header-scrolled {
  padding: 10px 0px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.header.header-scrolled .logo img {
  height: 34px;
}
.header .logo img {
  width: auto;
  height: 40px;
  object-fit: cover;
}
.header .logo img.gray-logo {
  display: none;
}
.header .menu ul {
  padding-left: 0;
  margin-bottom: 0px;
  text-align: right;
}
.header .menu ul li {
  list-style: none;
  display: inline-block;
}
.header .menu ul li:not(:last-child) {
  margin-right: 20px;
}
.header .menu ul li a {
  text-decoration: none;
  color: #fff;
  display: inline-block;
  position: relative;
  color: black;
  padding: 10px 20px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.header .menu ul li a.scroll-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #1769ff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}
.header .menu ul li a.scroll-link:hover, .header .menu ul li a.scroll-link.active {
  color: #1769ff !important;
}
.header .menu ul li a.scroll-link:hover::after, .header .menu ul li a.scroll-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero-btn {
  padding: 4px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 12px;
  font-weight: var(--fw-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.hero-btn img {
  width: 11px;
  height: auto;
}
.hero-btn:hover {
  transform: translateY(-2px);
}
.hero-btn.blue-btn {
  background: linear-gradient(180deg, #0056d6 0%, #0039b8 100%);
  color: #fff !important;
  border: 1px solid #0039b7;
}
.hero-btn.blue-btn:hover {
  background: rgba(255, 255, 255, 0.55);
  color: var(--black-color) !important;
  border: 1px solid rgba(0, 0, 0, 0.25);
}
.hero-btn.light-btn {
  background: rgba(255, 255, 255, 0.55);
  color: var(--black-color);
  border: 1px solid rgba(0, 0, 0, 0.25);
  font-weight: var(--fw-bold);
}
.hero-btn.light-btn:hover {
  background: linear-gradient(180deg, #0056d6 0%, #0039b8 100%);
  color: #fff;
  border: 1px solid #0039b7;
}

.anmination-text {
  position: relative;
}
.anmination-text:before {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 0;
  left: 0;
  height: 3px;
  background: var(--dark-blue);
  transition: all 0.3s ease;
}
.anmination-text:hover:before {
  width: 100%;
}

video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 77px);
}
.hero-section .hero-content {
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  z-index: 2;
  padding: 60px 0 40px 0;
}
.hero-section .hero-content h1 {
  margin: 20px 0px;
  margin-top: 0;
}
.hero-section .hero-content p {
  color: var(--black-color);
  margin-bottom: 0px;
}
.hero-section .hero-content p:first-child {
  font-size: 16px;
}
.hero-section .hero-content p.last-para {
  font-size: 18px;
  line-height: normal;
}
.hero-section .hero-content .cta-btn {
  margin-top: 40px;
  display: none;
}
.hero-section .hero-content .banner-title span {
  color: var(--primary-color);
}
.hero-section .hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 100px;
}
.hero-section .hero-bottom {
  margin-top: 210px;
  align-items: end;
}
.hero-section .hero-bottom .hero-card {
  min-height: 270px;
  padding: 42px 28px 30px;
  border: 1px solid #bdbdff;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}
.hero-section .hero-bottom .hero-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}
.hero-section .hero-bottom .hero-card .card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
}
.hero-section .hero-bottom .hero-card .card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.hero-section .hero-bottom .hero-card p {
  margin: 0 0 22px;
  font-size: var(--fs-lg);
  line-height: 1.6;
  color: #000;
}
.hero-section .hero-bottom .hero-card strong {
  font-size: 16px;
  line-height: 1.5;
  font-weight: var(--fw-medium);
  color: #000;
}
.hero-section .hero-bottom .hero-image img {
  width: 360px;
  margin-top: -52px;
}

.typing-box {
  font-size: 28px;
}

.cursor {
  animation: blink 0.8s infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}
@keyframes moveBackground {
  from {
    background-position: 0 center;
  }
  to {
    background-position: -1000px center;
  }
}
.too-section {
  background: transparent;
}
.too-section .too-card-row {
  align-items: center;
}
.too-section .too-title {
  font-size: 34px;
  font-weight: var(--fw-bold);
  color: var(--black-color);
  margin-bottom: 35px;
}
.too-section .too-card-swap::before {
  left: auto;
  right: 0;
}
.too-section .too-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background: linear-gradient(135deg, var(--dark-blue) 0%, #1680DA 100%);
  border-bottom-left-radius: 90px !important;
  border-radius: 12px;
}
.too-section .too-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 33%;
  height: 69px;
  background: var(--dark-blue);
  z-index: 1;
}
.too-section .too-card.too-card-swap {
  border-top-right-radius: 98px;
  border-bottom-left-radius: 0 !important;
}
.too-section .too-card.too-card-swap::before {
  top: auto;
  left: auto;
  bottom: 0;
  right: 0;
  width: 33%;
  height: 108px;
  background: var(--dark-blue);
}
.too-section .too-image {
  overflow: hidden;
  flex: 0 0 33%;
  width: 33%;
}
.too-section .too-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.too-section .too-image.resilence {
  margin-top: -109px;
}
.too-section .too-content {
  height: 100%;
  padding: 70px 75px 55px 65px;
  color: #fff;
}
.too-section .too-content.resilence-content {
  padding: 85px 75px 60px 80px;
}
.too-section .too-content h3 {
  font-size: var(--fs-l);
  line-height: 1.5;
  margin-bottom: 18px;
  color: #fff;
}
.too-section .too-content p {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 14px;
  color: #fff;
}
.too-section .too-content p:last-child {
  margin-bottom: 0;
}
.too-section .relevance-boxes {
  display: grid;
  grid-template-columns: repeat(2, 145px);
  gap: 20px 84px;
}
.too-section .relevance-box {
  min-height: 110px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
  transition: all 0.3s ease;
  width: 216px;
}
.too-section .relevance-box.second-box {
  border-bottom-left-radius: 30px;
  border-top-left-radius: 30px;
}
.too-section .relevance-box.third-box {
  border-top-right-radius: 50px;
}
.too-section .relevance-box:hover {
  background: #fff;
  border: 1px solid #fff;
  color: var(--primary-color);
}
.too-section.resilence {
  position: relative;
  height: auto !important;
}
.too-section.resilence:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/pattern-image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
}

.consulting-service-section {
  margin-top: 70px;
  position: relative;
  height: auto;
}
.consulting-service-section:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/pattern-image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
}
.consulting-service-section h4 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  line-height: 24px;
  margin: 18px 0;
}
.consulting-service-section .container-box {
  position: relative;
  z-index: 2;
  background: #f4f9ff;
  padding: 10px 20px;
  padding-top: 30px;
  height: 100%;
  transition: all 0.7s ease-in-out;
}
.consulting-service-section .container-box .icon {
  width: 40px;
  height: auto;
}
.consulting-service-section .container-box p {
  position: relative;
  padding-left: 25px;
  transition: all 0.7s ease-in-out;
}
.consulting-service-section .container-box p:before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.7s ease-in-out;
  background-image: url("../images/icons/point-icon-blue.png");
}
.consulting-service-section .container-box .primary {
  display: block;
  transition: all 0.7s ease-in-out;
}
.consulting-service-section .container-box .secondary {
  display: none;
  transition: all 0.7s ease-in-out;
}
.consulting-service-section .container-box:hover {
  background: var(--dark-blue);
}
.consulting-service-section .container-box:hover h4, .consulting-service-section .container-box:hover p {
  color: #fff;
}
.consulting-service-section .container-box:hover .primary {
  display: none;
}
.consulting-service-section .container-box:hover .secondary {
  display: block;
}

.work-tabs-section {
  background: #fff;
  padding-bottom: 0;
  margin: 40px 0;
}
.work-tabs-section .work-tabs-wrap {
  position: relative;
  background: var(--dark-blue);
  padding-top: 14px;
  padding-bottom: 10px;
}
.work-tabs-section .work-tabs-wrap::before {
  content: "";
  background: #1298f4;
  height: 46px;
  position: absolute;
  top: 4px;
  width: 100%;
  left: 0;
  transform: skew(10%);
  transform: skew(0deg, 2deg);
  z-index: -2;
}
.work-tabs-section .work-tabs-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  z-index: -1;
  background: var(--dark-blue);
  transform: skew(0deg, -1deg);
}
.work-tabs-section span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  transition: all 0.3s ease;
}
.work-tabs-section span:hover {
  background: rgba(255, 255, 255, 0.12);
}
.work-tabs-section span.active {
  background: #fff;
  color: var(--dark-blue);
  font-weight: 700;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}
.work-tabs-section .work-tabs {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: marquee 25s linear infinite;
}
.work-tabs-section .work-tabs li {
  list-style: none;
  flex-shrink: 0;
}

.tabs-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee {
  width: max-content;
}

.work-tabs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: max-content;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: marquee 25s linear infinite;
}
.work-tabs li {
  flex-shrink: 0;
  list-style: none;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.tabs-wrapper:hover .work-tabs {
  animation-play-state: paused;
}

.features {
  margin-top: 0;
}
.features .card {
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
}

/** End Header Section **/
.form-box {
  position: relative;
}
.form-box h3 {
  font-size: var(--fs-40);
  font-weight: var(--fw-semibold);
}
.form-box .content-box {
  position: relative;
  z-index: 2;
}
.form-box .contact-form {
  background: #f4f9ff;
  padding: 30px 40px;
  border-radius: 12px;
  position: relative;
  z-index: 2;
}
.form-box .contact-form .form-group .input-box {
  position: relative;
}
.form-box .contact-form .form-group .input-box .icon {
  position: absolute;
  width: 44px;
  height: 44px;
  top: 24px;
  left: 0;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form-box .contact-form .form-group .input-box .form-control {
  border-radius: 9px;
  height: 44px;
  padding-left: 45px;
}
.form-box .contact-form .form-group .input-box textarea {
  padding-left: 8px !important;
}
.form-box .submit-btn {
  width: 100%;
  height: 42px;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(180deg, #0056d6 0%, #0039b8 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.form-box .submit-btn:hover {
  background: linear-gradient(180deg, #0039b8 0%, #002a8c 100%);
  transform: translateY(-1px);
}

.terms h3 {
  font-size: 24px;
}
.terms h4 {
  font-size: 20px;
}
.terms p, .terms li {
  font-size: 14px;
}

.site-footer {
  position: relative;
  z-index: 2;
  background: transparent;
  padding: 0;
  font-family: Arial, sans-serif;
}
.site-footer .footer-inner {
  background: transparent;
  max-width: 100%;
  margin: 0 auto;
}
.site-footer .footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 22px;
}
.site-footer .footer-top .footer-logo img {
  height: 40px;
  display: block;
}
.site-footer .footer-top .footer-email {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #111111;
}
.site-footer .footer-top .footer-email .mail-icon {
  color: #003b8f;
  font-size: 13px;
}
.site-footer .footer-top .footer-email a {
  color: #111111;
  text-decoration: none;
}
.site-footer .footer-top .footer-email a:hover {
  color: #071689;
}
.site-footer .hr {
  border-bottom: 1px solid #e6e6e6;
}
.site-footer .mob-copy {
  border-top: 1px solid #e6e6e6;
  font-size: 14px;
  padding-top: 12px;
}
.site-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}
.site-footer .footer-bottom .copyright {
  margin: 0;
  font-size: 11px;
  color: #111111;
}
.site-footer .footer-bottom .footer-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 22px;
  padding: 0;
  margin: 0;
}
.site-footer .footer-bottom .footer-links li {
  position: relative;
}
.site-footer .footer-bottom .footer-links li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: #111111;
}
.site-footer .footer-bottom .footer-links li a {
  font-size: 11px;
  color: #111111;
  text-decoration: none;
}
.site-footer .footer-bottom .footer-links li a:hover {
  color: #071689;
}
.site-footer .footer-bottom .footer-social {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}
.site-footer .footer-bottom .footer-social .social-icon {
  width: 24px;
  height: 24px;
  background: #071689;
  color: #ffffff;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
}
.site-footer .footer-bottom .footer-social .social-icon:hover {
  background: #000b5f;
}

.our-work {
  position: relative;
  height: auto;
}
.our-work:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/pattern-image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
}
.our-work .image-box {
  width: 100%;
  height: 100%;
}
.our-work .image-box img {
  aspect-ratio: 5/4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

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

.scaler-card {
  width: 100%;
  background: #f1f7ff;
  border-radius: 8px;
  padding: 0 16px 24px;
  margin: 52px auto 0;
  position: relative;
  overflow: visible;
}
.scaler-card .scaler-image {
  position: relative;
  top: -52px;
  margin-bottom: -30px;
  width: 100%;
  aspect-ratio: 9/7;
  border-radius: 8px;
  overflow: hidden;
}
.scaler-card .scaler-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  transform: none;
  transition: all 0.7s ease;
}
.scaler-card .scaler-image img.pri {
  opacity: 1;
  z-index: 2;
}
.scaler-card .scaler-image img.sec {
  opacity: 0;
  z-index: 1;
  transform: translateX(50px);
}
.scaler-card .scaler-image .report-icon {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.85);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}
.scaler-card .scaler-image .report-icon img {
  position: static;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transform: none;
}
.scaler-card .scaler-content {
  position: relative;
  height: 100px;
  text-align: center;
  overflow: hidden;
}
.scaler-card .scaler-content h3 {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  margin: 0;
  font-size: var(--fs-lg);
  line-height: 1.2;
  font-weight: var(--fw-medium);
  color: #000;
  text-decoration: none;
  transform: translateY(-50%);
  transition: top 0.45s ease, transform 0.45s ease;
}
.scaler-card .scaler-content p {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0 5px;
  font-size: 13px;
  line-height: 1.35;
  color: #222;
  text-align: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.45s ease, visibility 0.45s ease, transform 0.45s ease;
}
.scaler-card:hover .scaler-image img.pri {
  opacity: 0;
  transform: scale(1.05);
}
.scaler-card:hover .scaler-image img.sec {
  opacity: 1;
  transform: translateX(0);
}
.scaler-card:hover .scaler-image .report-icon {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.scaler-card:hover .scaler-content h3 {
  top: 0;
  transform: translateY(0);
}
.scaler-card:hover .scaler-content p {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.relevance-section {
  padding: 60px 0;
  background: #fff;
}
.relevance-section .relevance-card {
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, #07008c 0%, #0058cc 100%);
}
.relevance-section .relevance-card .row {
  min-height: 380px;
}
.relevance-section .relevance-left {
  height: 100%;
  padding: 60px 55px;
  color: #fff;
}
.relevance-section .relevance-left h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
}
.relevance-section .relevance-left p {
  max-width: 560px;
  font-size: 12px;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 35px;
}
.relevance-section .relevance-boxes {
  display: grid;
  grid-template-columns: repeat(2, 145px);
  gap: 16px;
}
.relevance-section .relevance-box {
  min-height: 80px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 13px;
  line-height: 1.35;
}
.relevance-section .right-dark-box {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 78%;
  height: 130px;
  background: #07008c;
  z-index: 1;
}
.relevance-section body.stage-logo, .relevance-section body.stage-video {
  overflow: hidden;
}
.relevance-section {
  /*
  |--------------------------------------------------------------------------
  | Part 1: Logo
  |--------------------------------------------------------------------------
  */
}
.relevance-section .logo-intro {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.relevance-section .logo-intro .intro-logo {
  width: 350px;
  max-width: 80%;
  height: auto;
}
.relevance-section .logo-intro.hide-intro {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.relevance-section .homepage-content {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.relevance-section .homepage-content.show-content {
  opacity: 1;
  visibility: visible;
}
.relevance-section body.intro-active {
  overflow: hidden;
}
.relevance-section {
  /*
  |--------------------------------------------------------------------------
  | Part 2: Full-screen video
  |--------------------------------------------------------------------------
  */
}
.relevance-section .video-intro {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: #000;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.relevance-section .video-intro video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.relevance-section {
  /*
  |--------------------------------------------------------------------------
  | Part 3: Homepage
  |--------------------------------------------------------------------------
  */
}
.relevance-section .homepage-content {
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.relevance-section {
  /*
  |--------------------------------------------------------------------------
  | Three page states
  |--------------------------------------------------------------------------
  */
}
.relevance-section body.stage-logo .logo-intro {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.relevance-section body.stage-logo .video-intro,
.relevance-section body.stage-logo .homepage-content {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.relevance-section body.stage-video .logo-intro,
.relevance-section body.stage-video .homepage-content {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.relevance-section body.stage-video .video-intro {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.relevance-section body.stage-home .logo-intro,
.relevance-section body.stage-home .video-intro {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.relevance-section body.stage-home .homepage-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (max-width: 767px) {
  .relevance-section .logo-intro .intro-logo {
    width: 230px;
  }
}
@media (max-width: 991px) {
  .relevance-section .too-section .too-image.resilence {
    margin-top: 0px !important;
  }
  .relevance-section .too-section .too-image.tarq {
    margin-top: 30px !important;
  }
  .relevance-section .too-card::before {
    width: 42%;
  }
  .relevance-section .too-content {
    padding: 55px 40px 45px;
  }
}

@media (max-width: 767px) {
  .common-title {
    font-size: 28px;
  }
  .relevance-card .row {
    min-height: auto;
  }
  .hero-btn.blue-btn {
    padding: 8px 16px !important;
  }
  .relevance-left {
    padding: 35px 25px;
  }
  .relevance-left h3 {
    font-size: 20px;
  }
  .relevance-left p {
    font-size: 12px;
    margin-bottom: 25px;
  }
  .consulting-service-section .container-box p {
    font-size: 16px;
  }
  .relevance-boxes .relevance-box.second-box {
    background: #fff;
    color: var(--primary-color);
    font-weight: var(--fw-medium);
  }
  .relevance-boxes .relevance-box.third-box {
    background: #fff;
    color: var(--primary-color);
    font-weight: var(--fw-medium);
  }
  .scaler-card {
    padding: 0 16px 20px;
    margin-top: 52px;
  }
  .scaler-card .scaler-image {
    top: -52px;
    margin-bottom: -30px;
  }
  .scaler-card .scaler-image img.pri {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
  .scaler-card .scaler-image img.sec {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: none !important;
  }
  .scaler-card .scaler-content {
    height: auto;
    min-height: 0;
    overflow: visible;
  }
  .scaler-card .scaler-content h3,
  .scaler-card .scaler-content p {
    position: static;
    inset: auto;
    width: 100%;
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .scaler-card .scaler-content h3 {
    margin: 0 0 12px;
  }
  .scaler-card .scaler-content p {
    margin: 0;
    padding: 0;
    font-size: var(--fs-sm);
    line-height: 1.5;
    font-size: var(--fs-md);
  }
  .dots-slider .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }
  .dots-slider .owl-dot {
    margin: 0;
    padding: 0 !important;
    outline: none;
  }
  .dots-slider .owl-dot span {
    display: block;
    width: 8px;
    height: 8px;
    margin: 0;
    border-radius: 50px;
    background: #d7e6f8;
    transition: all 0.3s ease;
  }
  .dots-slider .owl-dot.active span, .dots-slider .owl-dot:hover span {
    width: 26px;
    height: 8px;
    border-radius: 50px;
    background: #a9c9f1;
  }
}
.work-slider .item a {
  display: block;
  text-decoration: none;
  color: #000;
}

.mobile-header {
  display: flex;
  justify-content: space-around;
}

@media only screen and (max-width: 768px) {
  .mob-mb-10 {
    margin-bottom: 10px !important;
  }
  .main-heading {
    font-size: var(--fs-lg);
  }
  .hero-section {
    min-height: auto;
    background-size: 300%;
    background-position-x: -400px;
  }
  .hero-section .hero-buttons {
    margin-top: 32px;
    flex-direction: column;
    justify-content: flex-start;
  }
  .hero-section .hero-buttons .hero-btn {
    margin-right: auto;
    min-width: 200px;
  }
  .hero-section .hero-content {
    min-height: auto;
  }
  .hero-section .hero-content h1 {
    margin: 0 0 20px 0;
  }
  .hero-section .hero-content p.last-para {
    font-size: 15px;
  }
  .hero-section .hero-bottom .hero-card {
    min-height: auto;
    padding: 16px 20px;
    margin-bottom: 20px;
  }
  .hero-section .hero-bottom .hero-card .card-icon {
    margin-bottom: 16px;
  }
  .too-section {
    margin-top: 0;
    padding-top: 0;
  }
  .too-section .too-card-row {
    flex-direction: column-reverse;
  }
  .too-section.resilence h2 {
    font-size: 20px;
    text-align: center;
  }
  .too-section.resilence .too-content {
    padding: 35px 25px 40px !important;
  }
  .too-section.tarq {
    margin-top: 30px !important;
  }
  .too-section .too-card {
    min-height: auto;
  }
  .too-section .too-card::before {
    display: none;
  }
  .too-section .too-image {
    flex: 0 0 100%;
    width: 100%;
    overflow: visible;
    position: relative;
  }
  .too-section .too-image:before {
    content: "";
    position: absolute;
    width: 80%;
    height: 120%;
    top: -30px;
    right: 0;
    background: var(--dark-blue);
  }
  .too-section .too-image img {
    position: relative;
    z-index: 1;
    display: block;
    width: 95%;
    height: auto;
  }
  .too-section .too-image.resilence {
    margin-top: 0px !important;
  }
  .too-section .too-image.resilence:before {
    height: 118%;
  }
  .too-section .too-content {
    padding: 24px;
    padding-bottom: 48px;
  }
  .too-section .too-content h3 {
    font-size: 16px;
  }
  .too-section .too-content p {
    font-size: 16px;
  }
  .too-section .too-content.resilence-content {
    padding-top: 60px !important;
  }
  .too-section .too-content.resilence-content p {
    padding: 20px 50px;
    text-align: justify;
  }
  .too-section .relevance-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0;
    row-gap: 16px;
  }
  .banner-title {
    font-size: var(--fs-3xl);
  }
  .banner-title span {
    display: block;
  }
  .banner-title br {
    display: none;
  }
  .form-box h3 {
    font-size: var(--fs-3xl);
  }
  .form-box h3 .d-nt {
    display: none;
  }
  .form-box .contact-form {
    margin-top: 32px;
    padding: 30px 25px;
  }
  .consulting-service-section h4 br {
    display: none;
  }
  .site-footer .footer-bottom {
    padding: 16px 0;
  }
  .site-footer .footer-top {
    padding-bottom: 0;
  }
  .relevance-boxes .relevance-box:nth-child(odd) {
    margin-right: 16px;
  }
  .relevance-boxes .relevance-box:nth-child(even) {
    margin-right: 0;
  }
  .mob-consulting {
    text-align: center;
    margin: 10px 0 10px 0;
  }
  .consulting-service-section {
    padding-bottom: 40px;
  }
  .consulting-service-section .work-tabs-section .work-tabs-wrap {
    padding-top: 14px;
    padding-bottom: 10px;
  }
  .consulting-service-section .work-tabs-section .work-tabs-wrap::before {
    height: 100px;
    transform: skew(0deg, 6deg);
  }
  .consulting-service-section .work-tabs-section .work-tabs-wrap::after {
    display: none;
  }
  .terms h3 {
    font-size: 20px;
  }
  .terms h4 {
    font-size: 18px;
  }
  .terms p, .terms li {
    font-size: 14px;
  }
  .logo-intro .intro-logo {
    width: 230px;
  }
}
#canvas {
  height: 100lvh;
  opacity: 0.0001;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 100vw;
  will-change: opacity;
}

@media (max-width: 995px) and (min-width: 768px) {
  .main-heading {
    font-size: var(--fs-sm);
  }
}
@media (max-width: 1380px) and (min-width: 768px) {
  .main-heading {
    font-size: var(--fs-sm);
  }
  .too-section .too-image.resilence {
    margin-top: -170px !important;
  }
  .too-section .too-card.too-card-swap:before {
    height: 170px !important;
  }
  .too-section.resilence .too-content h2 {
    font-size: 20px;
  }
  .too-section.resilence .too-content .relevance-box {
    min-height: 81px !important;
    width: 205px !important;
  }
}

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