body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #0a112e;
  background-color: #F4F5F0;
}

.text-decoration-none {
  text-decoration: none;
}


.d-flex {
  display: flex;
}

p {
  color: #666;
  font-size: 16px;
  line-height: 28px;
  margin: 0;
}

.d-none {
  display: none;
}

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

.gap-2 {
  gap: 2px;
}

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

/* header css start */

.header-container {
  padding: 18px 0;
}

.navbar.navbar-expand-lg.custom-nav {
  justify-content: space-between;
  padding: 0;
}

.navbar.navbar-expand-lg.custom-nav .navbar-collapse {
  flex-grow: initial;
}

.nav-link {
  color: #0a112e;
  margin: 0;
  padding: 20px 0;
}

.navbar-nav {
  gap: 40px;
}

.custom-btn {
  border-radius: 100px;
  background: #e8272e;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 24px;
  text-decoration: initial;
  transition: all 0.3s;
}

.custom-btn:hover {
  background: #c71f23;
}

.mobile-btn {
  display: none;
}

/* Mega Menu Base */
.mega-menu {
  background: #f4f5f0;
  border-radius: 3rem;
  border-color: #dadada !important;
  box-shadow: 0px 44px 100px rgba(0, 0, 0, 0.16) !important;
}

.mega-menu h6 {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 1rem;
}

.mega-menu ul li {
  margin-bottom: 8px;
}

.mega-menu ul li a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.mega-menu ul li a:hover {
  text-decoration: underline;
}

.tab-menuArea {
  display: flex;
  gap: 30px;
}

.tab-menuArea .nav-tabs {
  width: 330px;
  min-width: 330px;
  display: flex;
  flex-direction: column;
}

.tab-menuArea .nav-tabs .nav-link {
  width: 100%;
  padding: 18px;
  font-size: 14px;
  border-radius: 100px;
  font-weight: 600;
  box-shadow: none;
  display: flex;
  gap: 6px;
  color: #0a112e;
  border-color: #f4f5f0;
}

.tab-menuArea {
  display: flex;
  gap: 30px;
}

.tab-menuArea .nav-tabs .nav-link {
  width: 100%;
  padding: 16px 18px;
  font-size: 14px;
  border-radius: 100px;
  display: flex;
  color: #0a112e;
  gap: 6px;
  justify-content: space-between;
  border-color: #f4f5f0;
}

.tab-menuArea .nav-tabs .nav-link.active {
  border-color: #E8272E;
  box-shadow: 0px -1px 11px 2px rgb(24 39 45 / 1%), 0px -3px 13px 0px rgba(24, 39, 75, 0.12);
}

.tab-menuArea .nav-tabs .nav-link img {
  transform: rotate(-90deg);
}

.mega-menu .mega-menu-listInner li a {
  width: 100%;
  padding: 16px 18px;
  font-size: 14px;
  border-radius: 100px;
  display: flex;
  color: #0a112e;
  font-weight: 600;
  gap: 6px;
  justify-content: space-between;
  border: 1px solid #dadada;
  transition: all 0.3s;
}

.mega-menu .mega-menu-listInner li a:hover {
  text-decoration: inherit;
  background-color: #fff;
  border-color: #E8272E;
  box-shadow: 0px -1px 11px 2px rgb(24 39 45 / 1%), 0px -3px 13px 0px rgba(24, 39, 75, 0.12);
  padding-left: 28px;
}

.mega-menu .mega-menu-listInner li {
  margin-bottom: 0;
}

.tab-menuArea .tab-content {
  flex-grow: 1;
}

.mega-menu .mega-menu-listInner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.navbar .dropdown-toggle::after {
  display: none;
  content: inherit;
}

/* header css end */

/* hero section css start */
.word-wrapper {
  display: inline-block;
  perspective: 1000px;
  height: 60px;
  overflow: hidden;
  vertical-align: bottom;
  color: #E8272E;
}

.word {
  display: inline-block;
  transform-origin: bottom;
  animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
  0% {
    transform: rotateX(90deg) translateY(100%);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg) translateY(0);
    opacity: 1;
  }
}

.hero-content h1 {
  color: #0a112e;
  font-size: 50px;
  font-weight: 700;
  line-height: 62px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 30px;
}

.hero-imageArea {
  text-align: center;
  position: relative;
}

.hero-imageArea-mobile {
  display: none;
}

.hero-image2 {
  position: absolute;
  top: 50%;
  left: 30px;
}

.hero-image3 {
  position: absolute;
  top: 170px;
  right: 130px;
}

.hero-image4 {
  position: absolute;
  bottom: 100px;
  right: 0;
}

.hero-section {
  padding: 50px 0;
}
/* hero section css end */

/* custom heading css start */
.custom-heading {
  width: 70%;
  margin: 0 auto;
  padding: 50px 0;
}

.custom-heading h2 {
    font-size: 42px;
    font-weight: 700;
}

.custom-heading p {
    width: 80%;
    margin: 20px auto 0;
}

.custom-heading.text-white p {
    color: #fff;
}
/* custom heading css end */

/* business section css start */
.business-area {
  background: #E8272E;
  border-radius: 30px;
  padding: 0 30px 21px 30px;
  position: relative;
  margin-bottom: 0;
}

.business-area .custom-heading {
  padding: 30px 0 20px 0;
}

.business-area::before {
    content: "";
    position: absolute;
    bottom: -80px;
    right: 0;
    width: 252px;
    height: 82px;
    background: url(../images/business-shape.svg);
} 

.business-area::before {
content: initial;
}

.nav-tabs {
    border: none;
}

.business-tab .nav-tabs {
    margin: 0 auto;
    justify-content: center;
    gap: 21px;
}

.nav-tabs .nav-link {
  color: #fff;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid #FFF;
  font-size: 15px;
  gap: 8px;
  display: flex;
}

.nav-tabs .nav-link.active {
    background: #fff;
    color: #E8272E;
}

.business-tab .nav-tabs .nav-link.active img {
  filter: none;
}

.business-tab .nav-tabs .nav-link img {
  filter: brightness(10);
}

.business-card {
    border-radius: 15px;
    background: #FFF;
    box-shadow: 0px 8px 18px -6px rgba(24, 39, 75, 0.12), 0px 12px 42px -4px rgba(24, 39, 75, 0.12);
    padding: 30px;
}

.mySwiper .swiper-slide .business-card {
  height: 360px;
}

.serviceSwiper .swiper-slide .business-card {
  height: 390px;
}

.otherSwiper .swiper-slide .business-card {
  height: 336px;
}

.marketPlaceSwiper .swiper-slide .business-card {
  height: 360px;
}

.business-card-image {
    margin-bottom: 25px;
}

.business-card-image img {
  height: 70px;
}

.business-card-content h3 {
    font-size: 22px;
    font-weight: 700;
}

.business-card-content p {
    font-weight: 400;
    color: #494949;
    margin-bottom: 0;
}

.business-tab .tab-content {
    margin-top: 40px;
}

.swiper-button-next.custom-nav {
    bottom: -7px;
    top: initial;
    right: 18px;
}

.swiper-button-prev.custom-nav {
    bottom: -7px;
    top: initial;
    right: 100px;
    left: initial;
}

.swiper-button-next.custom-nav::after, .swiper-button-prev.custom-nav::after {
    content: initial;
}

.business-tab .tab-content .swiper {
  padding-bottom: 80px;
  margin-bottom: -70px;
} 

.business-partner-image {
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.business-partner {
    width: calc(100% - 250px);
    margin-top: 27px;
}
/* business section css end */

/* growth area start */
.growth-highlightArea {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    justify-content: center;
}

.growth-highlightBox {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    padding-right: 50px;
}

.growth-highlightArea .growth-highlightBox:nth-last-child(1) {
    padding-right: 0;
}

.growth-highlightArea .growth-highlightBox:nth-last-child(1)::after, .growth-highlightArea .growth-highlightBox:nth-last-child(1)::before {
    content: initial;
}

.growth-highlightBox::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 2px;
    background: #DDDDDD;
    right: 0;
    top: 0;
}

.growth-highlightBox::after {
    content: "";
    position: absolute;
    height: 20px;
    width: 2px;
    background: #E8272E;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.growth-point-content h3 {
    font-size: 22px;
    padding-left: 50px;
    margin-bottom: 20px;
}

.growth-highlight-content p {
    color: #494949;
    font-size: 16px;
    margin-bottom: 0;
}

.growth-pointArea {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin-top: 70px;
}

.growth-pointBox {
    position: relative;
}

.growth-point-icon {
    background: #E8272E;
    position: absolute;
    left: -6px;
    top: -6px;
    width: 60px;
    height: 60px;
    z-index: 1;
    border-radius: 100%;
    text-align: center;
}

.growth-point-icon img {
    margin-top: 11px;
}

.growth-point-content {
  background: #fff;
  clip-path: path("M0 85Q0 60 19 60Q64 60 60 19Q60 0 85 0H500V500H0Z");
  border-radius: 30px;
  filter: drop-shadow(0px 8px 8px rgba(24, 39, 75, 0.08)) drop-shadow(0px 4px 6px rgba(24, 39, 75, 0.12));
  padding: 30px 30px 30px 30px;
  transition: all 0.3s;
  height: 266px;
}

.growth-pointBox:hover .growth-point-content {
    background: #E8272E;
    transition: all 0.3s;
}

.growth-pointBox:hover .growth-point-content h3, .growth-pointBox:hover .growth-point-content p {
    color: #fff;
}

.growth-section {
  margin: 10px 0 60px 0;
}

.growth-point-content h3 {
    font-size: 22px;
    padding-left: 44px;
}
/* growth area end */


/* app section start */
.app-area {
    position: sticky;
    top: -1px;
    left: 0;
    height: 90vh;
    padding: 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.app-contentArea {
    display: flex;
    width: 1100px;
    align-items: center;
    margin: 0 auto;
    gap: 60px;
    height: 100%;
}

.app-content-top {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.app-content-top h2 {
  font-weight: 700;
  color: #FFF;
  font-size: 38px;
  line-height: 50px;
  margin-bottom: 0;
}

.app-content-top p {
    color: #fff;
}

.custom-btn.white-btn {
    background: #fff;
    color: #e8272e;
}

.app-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 60%;
}

.app-content-bottom p {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.app-content-bottom ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

.app-content-bottom ul li {
    background: #FFF;
    border-radius: 100px;
    text-transform: uppercase;
    padding: 6px 17px;
    font-weight: 600;
    margin-top: 6px;
    font-size: 12px;
}

.app-area.app-area-2 .custom-btn {
  color: #1F1E1D;
}

.app-area.app-area-3 .custom-btn {
  color: #33894F;
}

.app-area.app-area-4 .custom-btn {
  color: #2B5263;
}
/* app section end */

/* testimonial section start */
.testimonial-box {
  background: #fff;
  border: 1px solid #DEE5ED;
  border-radius: 20px;
  padding: 20px;
}

.testimonial-box-top {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #DEE5ED;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}

.quote-icon {
  position: absolute;
  right: 0;
  top: -2px;
}

.testimonial-box-top-left img {
  width: 50px;
  height: 50px;
  border-radius: 100px;
}

.testimonial-box-top-right h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}

.testimonial-box-top-right ul {
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.testimonial-box-top {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #DEE5ED;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.testimonial-box-bottom p {
  margin-bottom: 0;
}

.swiper-buttonBox {
  display: inline-block;
  width: 100%;
  margin: 40px 0 0px 0;
}

.swiper-buttonBox .swiper-pagination-bullet-active {
  background: #E8272E;
}
/* testimonial section end */

/* kickstart section start */
.kickstart-area {
  background: #E8272E;
  border-radius: 40px;
  padding: 60px;
  position: relative;
}

.kickstart-content h2 {
  font-size: 36px;
  color: #fff;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 0;
}

.kickstart-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.kickstart-content p {
  color: #fff;
  margin-bottom: 0;
}

.kickstart-image {
  text-align: center;
}

.kickstart-image img {
  height: 280px;
}

.kickstart-area::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  background-image: url("../images/kickstart-shape.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}

.kickstart-section {
  margin: 30px 0 60px 0;
}
/* kickstart section end */

/* footer section start */
.footer-section {
  background: #12141D;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  padding: 80px 0 50px 0;
  border-bottom: 1px solid #292B33;
}

.footer-top-left {
  width: 60%;
}

.footer-top-left h3 {
  font-size: 42px;
  color: #fff;
  line-height: 60px;
  font-weight: 800;
}

.footer-info {
  display: flex;
  gap: 20px;
  align-items: baseline;
}

.footer-info-content p {
  font-size: 18px;
  color: #fff;
  line-height: 34px;
  margin-bottom: 0;
}

.footer-info-content p a {
  color: #fff;
  text-decoration: none;
}

.footer-top-right {
  width: 32%;
}

.footer-top-right ul {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-bottom {
  padding: 30px 0;
}

.footer-bottom-left ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s;
  position: relative;
}

.footer-bottom-right p {
  color: #fff;
  font-size: 16px;
}

.footer-bottom-left ul li a:hover::before {
  width: 100%;
  transition: all 0.3s;
}

.footer-bottom-left ul li a::before {
  position: absolute;
  content: "";
  background: red;
  height: 1px;
  width: 0;
  bottom: -4px;
  transition: all 0.3s;
}
/* footer section end */


/* usp section start */
.usp-section {
  margin: 60px 0 0 0;
}

.usp-logo-center {
  margin: 0 auto;
  display: flex;
  background: #fff;
  filter: drop-shadow(0px 12px 42px rgba(24, 39, 75, 0.12)) drop-shadow(0px 8px 18px rgba(24, 39, 75, 0.12));
  width: 340px;
  height: 340px;
  line-height: 340px;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
}

.usp-logo-center img {
  height: 88px;
}

.usp-contentIocn-list {
  position: relative;
  height: 357px;
}

.usp-contentIocn-list ul li:nth-child(1) {
  position: absolute;
  left: 0;
  top: 0;
}

.usp-contentIocn-list ul li:nth-child(2) {
  position: absolute;
  left: 90px;
  top: 135px;
}

.usp-contentIocn-list ul li:nth-child(3) {
  position: absolute;
  left: 276px;
  top: 207px;
}

.usp-contentIocn-list ul li:nth-child(4) {
  position: absolute;
  left: 460px;
  top: 142px;
}

.usp-contentIocn-list ul li:nth-child(5) {
  position: absolute;
  left: 575px;
  top: 11px;
}

.usp-contentIocn-list ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.usp-contentIocn-list {
  position: relative;
  height: 357px;
  margin: -170px auto 0;
  display: table;
  width: 753px;
}

.usp-content-list {
  position: relative;
  margin-top: -340px;
  height: 640px;
}

.usp-content-list ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.usp-content-list li:nth-child(1) {
  position: absolute;
  width: 240px;
  left: 0;
  top: 0;
}

.usp-content-list li:nth-child(2) {
  position: absolute;
  width: 258px;
  left: 150px;
  top: 350px;
}

.usp-content-list li:nth-child(3) {
  position: absolute;
  width: 274px;
  left: 580px;
  top: 465px;
}

.usp-content-list li:nth-child(4) {
  position: absolute;
  width: 220px;
  right: 100px;
  top: 440px;
}

.usp-content-list li:nth-child(5) {
  position: absolute;
  width: 230px;
  right: 0px;
  top: 160px;
}

.usp-content-item-icon {
  position: absolute;
}

.usp-content-list-item h3 {
  font-size: 22px;
}

.usp-content-list-item p {
  margin-bottom: 0;
}

.usp-content-list li:nth-child(1) .usp-content-item-icon {
  bottom: -70px;
  right: -50px;
}

.usp-content-list li:nth-child(2) .usp-content-item-icon {
  top: -100px;
  right: 20px;
}

.usp-content-list li:nth-child(3) .usp-content-item-icon {
  top: -110px;
  left: 0;
}

.usp-content-list li:nth-child(4) .usp-content-item-icon {
  top: -133px;
  left: -141px;
}

.usp-content-list li:nth-child(5) .usp-content-item-icon {
  top: -60px;
  left: -70px;
}
/* usp section end */


.wa-chat-box-brand {
  background-color: #fff;
}
.wa-chat-box-poweredby{display: none;}
body #wa-widget-send-button {
  padding: 0 !important;
  right: 60px !important;
}
#wa-widget-send-button div{display: none;}
.wa-chat-box-content-send-btn:hover{text-decoration: none;}




