/* ===== GLOBAL STYLES ===== */
* {
  font-family: "Open Sans", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

/* Whatsapp Floating button */
.whatsapp-float {
  position: fixed;
  bottom: 60px;
  left: 24px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: transform 0.2s ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: #ffffff;
}

/* fade-up-scroll  */
.fade-up {
  opacity: 0;
  transform: translateY(200px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* fade left and right */

.fade-left {
  opacity: 0;
  transform: translateX(-200px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-right {
  opacity: 0;
  transform: translateX(200px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-left.visible,
.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* stagger  */
.stagger-parent .stagger-item {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.stagger-parent.visible .stagger-item {
  opacity: 1;
  transform: translateX(0);
}

/* delay automatically apply hoga */
.stagger-parent.visible .stagger-item:nth-child(1) {
  transition-delay: 0s;
}
.stagger-parent.visible .stagger-item:nth-child(2) {
  transition-delay: 0.2s;
}
.stagger-parent.visible .stagger-item:nth-child(3) {
  transition-delay: 0.4s;
}
.stagger-parent.visible .stagger-item:nth-child(4) {
  transition-delay: 0.6s;
}
.stagger-parent.visible .stagger-item:nth-child(5) {
  transition-delay: 0.8s;
}
.stagger-parent.visible .stagger-item:nth-child(6) {
  transition-delay: 1s;
}

/* hero-section */

/* Background image (zoom in/out) */

.hero-slide {
  position: relative;
  background: url("../images/banner-image.jpeg") center/cover no-repeat;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* BLUR BACKGROUND */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  filter: blur(5px);
  transform: scale(1.1);
  z-index: 0;
  animation: zoomEffect 18s infinite alternate ease-in-out;
}

/* COLOR OVERLAY */
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(3 20 41 / 63%);
  z-index: 1;
}

.hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
  /* width: 50vw;
  max-width: 800px;  */
  transform: translateX(112px);
  z-index: 2;
  overflow: hidden;
}

.hero-content {
  padding-bottom: 28px;
  z-index: 4;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Zoom animation */
@keyframes zoomEffect {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

/* Overlay */

.hero .carousel-indicators {
  display: none;
}

.carousel-control-next,
.carousel-control-prev {
  display: none;
}

.hero-container {
  position: relative;
  min-height: 96vh;
  z-index: 10;
  padding-block: 100px;
  align-content: end;
}

/* Left Content */

.hero-left h1 {
  font-size: 62px;
  margin-bottom: 24px;
  line-height: 62px;
}

.hero-left p {
  font-size: 24px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 10px;
}

/* Wrapper */
.text-wrapper {
  position: relative;
  height: 90px;
  overflow: hidden;
}

/* Both texts */
.text {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  font-size: 40px;
  line-height: 44px;
  font-weight: 700;
  color: #6fabff;
  display: flex;
  justify-content: center;
}

/* Initial states */
.current {
  transform: translateY(0);
  opacity: 1;
}

.next {
  transform: translateY(100%);
  opacity: 0;
}

/* Animations */
.exit-up {
  animation: exitUp 0.7s ease forwards;
}

.enter-up {
  animation: enterUp 0.7s ease forwards;
}

@keyframes exitUp {
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}

@keyframes enterUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Partner logos */
.partner-wrapper {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.partner {
  padding: 10px 20px;
  background-color: #fff;
  border-radius: 12px;
  width: 240px;
  text-align: center;
  overflow: hidden;
}

.partner img {
  width: 80%;
}

/* About-us section */

.about-container {
  padding-block: 128px;
}

.about-us-content {
  text-align: center;
}

.about-us-content p {
  margin-block: 28px;
}

.about-us-content h2 {
  color: #003681;
  font-size: 38px;
  line-height: 44px;
  font-weight: 500;
}

.about-us-content h4 {
  font-size: 24px;
  line-height: 24px;
}

.about-us-content .button {
  display: inline-block;
  text-decoration: none;
  padding: 18px 36px;
  color: #fff;
  background-color: #045dd9a3;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: all 0.5s ease;
  font-weight: 500;
}

.about-us-content .button:hover {
  background-color: #fff;
  border: 1px solid #045dd9a3;
  color: #045dd9a3;
}

/* business-section */
.business-section {
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.7) 20%,
      rgba(255, 255, 255, 0.4) 40%,
      rgba(255, 255, 255, 0) 65%
    ),
    url("../images/best-of-breed.jpeg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: bottom center;
  position: relative;
}

.business-container {
  padding-block: 32px 128px;
}

.business-content {
  text-align: center;
}

.business-content p {
  margin-top: 28px;
  margin-bottom: 0;
}

.business-content h2 {
  color: #003681;
  font-size: 38px;
  line-height: 44px;
  font-weight: 500;
}

.business-content h4 {
  font-size: 24px;
  line-height: 24px;
}

.solution-tag-container {
  list-style-type: none;
  flex-wrap: wrap;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.solution-tag {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 100px;
  color: #000;
}

.tag-pink {
  background-color: #e98d87;
}

.tag-yellow {
  background-color: #eec826;
}

.tag-blue {
  background-color: #6fabff;
}

/* Business-section solutions */

.accordion-collapse {
  transition: height 0.7s ease;
}
.partner-wrapper .accordion {
  margin-top: 64px;
}

.accordion-item {
  border: 0;
  margin-bottom: 5px;
  background-color: transparent;
}

.accordion-button {
  background-color: #003681;
  color: #fff;
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
  padding: 15px 35px;
  border-radius: 15px !important;
  justify-content: space-between;
}

.accordion-button::after {
  display: none;
}

.accordion-button:hover {
  background-color: #6fabff;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: #6fabff;
  color: #fff;
  box-shadow: none;
}

.accordion-icon {
  transition: transform 0.5s ease;
}

/* CLOSED state (default) */
.accordion-button.collapsed .accordion-icon {
  transform: rotate(0deg);
}

/* OPEN state */
.accordion-button:not(.collapsed) .accordion-icon {
  transform: rotate(180deg);
}

.accordion-body {
  margin-top: 5px;
  padding: 35px;
  border-radius: 15px;
  border: 1px solid rgb(213, 216, 220);
  background-color: #fff;
}

.accordion-body p {
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 5px;
}

.accordion-collapse.collapse:not(.show) {
  opacity: 0;
}

.accordion-collapse.collapse.show {
  opacity: 1;
}

.ERP-item-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px;
}

.ERP-item {
  display: flex;
  justify-content: center;
  align-items: center;

  column-gap: 40px;
}

.ERP-item img {
  width: 160px;
  object-fit: contain;
}

.ERP-item a {
  text-decoration: none;
}
.ERP-item svg {
  width: 80px;
}

.ERP-item .button {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 100px;
  color: #000;
  background-color: #fff;
  border: 1px solid #045dd9a3;
  transition: all 0.5s ease;
}

.ERP-item .button:hover {
  background-color: #045dd9a3;
  color: #fff;
  border: 1px solid transparent;
}

.ERP-item-content p {
  font-size: 14px;
}

.ERP-item-divider {
  margin: 30px auto;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}

/* Reasons Why You Should Opt  */

.reasons-section {
  background: #003681;
  overflow: hidden;
}

.strategy-container {
  padding-block: 64px;
}

/* LEFT IMAGE */
.team-image-wrapper {
  position: relative;
  margin-top: 40px;
}

.team-image {
  position: relative;
  z-index: 2;
  max-width: 100%;
}

/* RIGHT CARD */
.info-card {
  background: #fff;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.info-item-wrapper {
  background-color: #003681;
  border-radius: 22px;
}

.info-item-wrapper:hover .info-item {
  transform: translateX(5px);
  background-color: #f0f0ff;
}

.info-item {
  padding: 20px;
  display: flex;
  gap: 40px;
  margin-bottom: 10px;
  background-color: #fff;
  transition: all 0.5s ease;
  border-radius: 20px;
}

.info-item img {
  width: 62px;
  object-fit: contain;
}

.info-item h5 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.info-item p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* ICONS */
.icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon.teal {
  background: #d6f5ef;
  color: #16a085;
}
.icon.blue {
  background: #e6f0ff;
  color: #3b82f6;
}
.icon.yellow {
  background: #fff5cc;
  color: #f4b400;
}
.icon.red {
  background: #ffe6e6;
  color: #ef4444;
}

/* Grow Your Business */

.business-growth-container {
  padding-block: 128px;
  border-bottom: 1px solid #00000089;
}

.growth-subtitle {
  font-size: 18px;
  color: #333;
}

.growth-title {
  font-size: 42px;
  font-weight: 600;
  color: #003681;
  margin-bottom: 48px;
}

/* Card */
.industry-box {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  transition: all 1s ease;
  z-index: 1;
}

.industry-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  backdrop-filter: blur(1px);

  z-index: 2;
}
.industry-box:hover {
  transform: scale(0.95);
}

.industry-box img {
  width: 100%;
  object-fit: cover;
}

/* Text */
.industry-label {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 500;
  color: #222;
}

/* our clients */

.client-container {
  padding-block: 128px;
}

.clients .owl-carousel {
  padding: 0 40px;
  position: relative;
}

.clients .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translate(0%, -70%);
  display: flex;
  justify-content: space-between;
}

.clients .owl-nav button:hover {
  background-color: transparent !important;
}

.clients .owl-nav button span {
  font-size: 20px;
  color: #00aeffd8;
}

.clients .owl-nav button span:hover {
  color: #00aeff;
}

.clients .owl-carousel .item {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.clients .owl-carousel .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clients .owl-dots {
  display: none;
}

/* RESPONSIVE */

@media (min-width: 1600px) {
  .hero-container {
    min-height: 70vh;
  }

  .hero-image {
    transform: translate(0px);
  }
}

@media (min-width: 1199px) and (max-width: 1400px) {
  /* header */

  .header .site-logo {
    font-size: 20px;
  }

  .header .navbar-nav li {
    margin-right: 7px;
  }

  .customer-login {
    margin-left: 0;
  }

  .customer-login .button {
    padding: 10px 18px;
  }
}

@media (max-width: 1199.98px) {
  /* hero-section */

  .hero-container {
    min-height: 45vh;
  }

  .hero-left h1 {
    font-size: 46px;
    margin-bottom: 24px;
    line-height: 46px;
    font-weight: 400;
  }

  .hero-left p {
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
  }

  .text {
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
  }

  .hero-image {
    width: 55vw;
  }

  .partners {
    margin-top: 25px;
  }

  /* about-us */

  .about-us-content p {
    padding: 0;
  }

  /* business-section */

  .business-content p {
    padding: 0;
  }
}

@media (max-width: 991.98px) {
  /* hero-section */

  .hero-container {
    min-height: 50vh;
  }

  .hero-left {
    width: 80%;
  }

  .text-wrapper {
    height: 70px;
  }

  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 998;
  }

  /* about-us-section */

  .about-container {
    padding-block: 96px 0px;
  }

  .about-us-content h2 {
    font-size: 38px;
    line-height: 38px;
  }

  .about-us-content p {
    margin-block: 32px;
  }

  /* business-section */

  .business-container {
    padding-block: 96px;
  }

  .ERP-item {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 10px;
  }

  .business-content h2 {
    font-size: 38px;
    line-height: 38px;
  }

  /* reason why you should opt out */

  .strategy-container {
    padding-block: 96px;
  }

  /* grow your business */

  .business-growth-container {
    padding-block: 96px;
  }

  .growth-title {
    font-size: 30px;
    margin-bottom: 64px;
  }

  /* our-clients */

  .client-container {
    padding-block: 96px;
  }
}

@media (max-width: 767.98px) {
  /* hero */

  .hero-image {
    width: 100%;
    max-width: 400px;
    margin: 30px auto 0;
  }

  .hero-content {
    text-align: center;
  }

  .hero-container {
    margin: 0;
  }

  .hero-left {
    width: 100%;
    padding: 0px;
  }

  .text-wrapper {
    height: 90px;
  }

  .hero-right {
    width: 80%;
  }

  .hero-left h1 {
    font-size: 26px;
    line-height: normal;
    text-align: center;
    margin-bottom: 15px;
  }

  .hero-left p {
    font-size: 16px;
    text-align: center;
  }

  .hero-container .text-wrapper {
    height: 90px;
    text-align: center;
    margin: 15px 0px;
    display: block;
    width: 100%;
  }

  .hero-left .text {
    font-size: 27px;
    white-space: unset;
    right: 0;
  }

  .hero-container .partners {
    gap: 8px;
    justify-content: center;
  }

  .partner {
    padding: 8px 16px;
  }

  .partner img {
    width: 100%;
  }

  /* about-us-section */

  .about-us-content h2 {
    font-size: 30px;
    line-height: 34px;
  }

  .about-us-content p {
    margin-block: 32px;
  }

  /* business-section */

  .solution-tag-container {
    padding: 0;
  }

  .solution-tag {
    font-size: 15px;
  }

  .business-content h2 {
    font-size: 30px;
    line-height: 34px;
  }

  .business-content p {
    margin-top: 32px;
  }

  .ERP-item {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 20px;
  }

  /* reason-why-you-should-opt */

  .info-card {
    padding: 24px;
  }

  .info-item {
    flex-direction: column;
    gap: 20px;
  }

  /* grow your business */

  .growth-title {
    font-size: 30px;
    margin-bottom: 64px;
  }

  /* world class solution and consulting section */

  .stagger-parent {
    overflow: hidden;
  }
}

@media (max-width: 575.98px) {
  /* hero */

  /* .hero-wrapper {
    align-content: start;
  } */
  .hero-container {
    align-content: center;
    min-height: 90vh;
    padding-block: 90px;
  }

  .hero-content {
    padding-bottom: 0px;
    margin-bottom: 90px;
  }

  .hero-image {
    transform: translateX(12px);
  }
}
