/* ===== GLOBAL STYLES ===== */
body {
  font-family: Arial, sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

/* fade-up-scroll  */
.fade-up {
  opacity: 0;
  transform: translateY(100px);
  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(-100px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-right {
  opacity: 0;
  transform: translateX(100px);
  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;
}

/* ===== HEADER ===== */

.header .dropdown:hover .dropdown-menu {
  display: block;
}

.header {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.navbar-collapse {
  flex-grow: 0;
}

.header .site-logo {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.header .navbar-nav {
  display: flex;
  margin-left: auto;
}

.header .nav-link {
  display: flex;
  align-items: center;
  color: #eaf7f4;
  padding: 20px 16px;
  font-weight: 400;
}

.header .nav-link.active {
  color: #6fabff !important;
}

.header .nav-link:hover {
  color: #6fabff;
}

.header .nav-link:hover::after {
  transform: rotate(180deg);
}

.header .navbar-nav li {
  margin-right: 10px;
}

.customer-login .button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 100px;
  color: #ffffff;
  background-color: #6fabff;
  border: 1px solid transparent;
  transition: all 0.5s ease;
  font-weight: 500;
}

.header .customer-login .button:hover {
  background-color: #fff;
  border: 1px solid #6fabff;
  color: #6fabff;
}

.header .dropdown-toggle::after {
  margin-left: 8px;
  font-size: 20px;
}

/* ===== SOLUTIONS(Header) ===== */

/* solution-tabs */

.solution-dropdown-menu {
  width: 100%;
  left: 0;
  right: 0;
  padding: 0;
}

.solution-tabs-wrapper {
  background: #fff;
  padding: 14px 30px;
}

.solution-tabs-wrapper .nav-link {
  color: #000 !important;
  font-weight: 500;
  border: none;
}

.solution-tabs-wrapper .nav-link.active {
  border-bottom: 2px solid #6fabff;
  color: #6fabff !important;
  background: none;
}

.solution-tabs-wrapper .nav-link:hover {
  border-bottom: 2px solid #6fabff;
}

/* solution-tabs-content */

.tab-content {
  padding: 40px;
}

.tab-card-wrapper {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.tab-card {
  width: 20%;
  max-width: 30%;
  flex-grow: 1;
  padding: 25px;
  border: 1px solid transparent;
  border-radius: 25px;
  background-image: linear-gradient(145deg, #fff);
  transition: all 0.5s ease-in;
}

.tab-card:hover {
  background-image: linear-gradient(145deg, #fff 30%, #006aff3e 100%);
  border: 1px solid #045dd9;
  border-radius: 25px;
}

.tab-card img {
  height: 60px;
  object-fit: contain;
}

.tab-card h5 {
  color: #063c34;
  margin-top: 5px;
}

.tab-card p {
  margin-top: 10px;
  font-size: 14px;
  color: #000;
}

/* ===== INDUSTRIES(Header) ===== */

.industry-dropdown-menu {
  width: 100%;
  left: 0;
  right: 0;
  padding: 0;
}

.industry-card-wrapper {
  display: flex;
  gap: 10px;
  padding: 40px;
  background: #fff;
}

.industry-card {
  width: 20%;
  height: 150px;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #045dd9a3;
}

.industry-card h3 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  z-index: 2;
}

/* hero-section */

.hero-wrapper {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Background image (zoom in/out) */

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/banner-image.jpeg");
  background-position: center;
  background-size : cover;
  background-repeat: no-repeat;
  animation: zoomEffect 18s infinite alternate ease-in-out;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Zoom animation */
@keyframes zoomEffect {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

/* Overlay */

.hero .carousel-indicators,
.hero .carousel-control-next,
.hero .carousel-control-prev {
  z-index: 99;
}

.carousel-control-next,
.carousel-control-prev {
  top: 50%;
  bottom: unset;
  transform: translate(0px, -50%);
  width: 10%;
  color: #fff;
}

.custom-indicators button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: #021530a3;
  z-index: 2;
}

/* Layout */
.hero-container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 6%;
  gap: 40px;
}

/* Left Content */
.hero-left {
  /* transform: translate(0%, 28%); */
  z-index: 5;
  width: 60%;
  padding: 0px 24px;
  color: #fff;
}

.hero-left h1 {
  font-size: 48px;
  margin-bottom: 24px;
  line-height: 48px;
}

.hero-left p {
  font-size: 20px;
  margin-bottom: 10px;
}

/* Wrapper */
.text-wrapper {
  position: relative;
  height: 52px;
  overflow: hidden;
}

/* Both texts */
.text {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 42px;
  font-weight: 600;
  color: #6fabff;
  align-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 */
.partners {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.partners img {
  width: 200px;
  background: #fff;
  border-radius: 10px;
}

/* Right Image */

.hero-right {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 50%;
  display: flex;
  justify-content: center;
}

.hero-right img {
  width: 100%;
  object-fit: cover;
}

/* About-us section */

.about-us-section {
  margin-block: 128px 0px;
}

.about-us-content {
  text-align: center;
}

.about-us-content p {
  padding: 0px 15px;
  line-height: 26px;
  margin-block: 28px;
}

.about-us-content h2 {
  color: #045dd9a3;
  font-size: 35px;
  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 {
  margin-block: 128px 0px;
  padding: 60px 0;

  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-content {
  text-align: center;
}

.business-content p {
  padding: 0px 15px;
  line-height: 26px;
  margin-top: 28px;
  margin-bottom: 0;
}

.business-content h2 {
  color: #045dd9a3;
  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: #4a95ed;
}

/* solutions */
.accordion-body {
  margin-top: 0px;
  background-color: white;
  border-radius: 14px;
}

.accordion-item {
  border: none;
  /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); */
  border-radius: 14px;
  margin-bottom: 10px;
  background-color: transparent;
}

.accordion-button {
  background-color: #6fabff;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 14px !important;
  padding: 20px;
}

.accordion-button::after {
  display: none;
}

.accordion-button:focus {
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  background-color: #045dd9a3;
  color: #fff !important;
}

.accordion-icon {
  transition: transform 0.3s ease;
}

.accordion-icon {
  display: inline-block;
  margin-left: auto;
  transition: transform 0.3s ease;
}

/* when accordion is open */
.accordion-button:not(.collapsed) .accordion-icon {
  transform: rotate(180deg);
}

.accordion-collapse {
  margin-top: 10px;
  border-radius: 14px;

  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.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: 20px;
}

.ERP-item img {
  width: 200px;
  object-fit: contain;
}

.ERP-item a {
  text-decoration: none;
}

.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: linear-gradient(135deg, #6fabff, #6fabff);
  padding: 70px 0;
  overflow: hidden;
}

/* 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: #045dd9a3;
  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-section {
  margin: 128px 0px;
}

.growth-subtitle {
  font-size: 18px;
  color: #333;
}

.growth-title {
  font-size: 42px;
  font-weight: 600;
  color: #6fabff;
}

/* Card */
.industry-box {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  transition: all 1s ease;
}

.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;
}

/* client-divider */
.client-divider {
  margin: 30px auto;
  width: 84%;
  height: 1px;
  background-color: #00000089;
}

/* our clients */

.clients {
  margin: 128px 0px;
}

.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;
}

/* footer */

.footer {
  background: radial-gradient(circle at center, #1b1b1b, #000);
  color: #bfbfbf;
}

.footer-logo {
  font-size: 48px;
  font-weight: 600;
  color: #6fabff;
}

.footer-text {
  font-size: 14px;
  line-height: 1.7;
}

.footer-heading {
  letter-spacing: 2px;
  font-size: 14px;
  color: #ffffff;
}

.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
}

.footer-list i {
  color: #6fabff;
  margin-top: 4px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  font-size: 18px;
}

.linkedin {
  background: #0077b5;
}
.facebook {
  background: #1877f2;
}

.partner-box img {
  width: 200px;
}

.partner-box.sage {
  border: 2px solid #00d639;
  color: #00d639;
}

.partner-box.zoho,
.partner-box.microsoft {
  color: #000;
}

/* RESPONSIVE */

/* Header */
@media (max-width: 576px) {
  .custom-icon-toggler {
    border: none;
    background: transparent !important;
  }

  .custom-icon-toggler i {
    font-size: 24px;
    color: #ffffff; /* brand color */
  }

  .header .navbar {
    justify-content: center;
  }

  .header-container {
    padding: 16px;
    margin: 0;
  }

  .header .navbar-toggler {
    background-color: #fff;
    box-shadow: none;
  }

  .header .site-logo {
    font-size: 18px;
  }

  .slide-menu,
  .slide-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transform: translateX(100%);
    background-color: #000;
    transition: transform 0.5s ease-in-out;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    z-index: 20;
    padding: 30px 0px;
    align-items: flex-end;
    padding-right: 25px;
  }

  .slide-menu.show {
    transform: translateX(0%);
  }

  .navbar-nav {
    width: 85%;
  }

  .mobile-divider {
    width: 85%;
    height: 1px;
    background-color: #cccccc6c;
    margin: 15px 0;
  }

  .mobile-site-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 85%;
  }

  .mobile-site-logo a {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    display: inline-block;
  }

  .mobile-site-logo i {
    color: #6fabff;
    font-size: 28px;
  }

  .header .nav-link {
    color: #fff;
    font-size: 18px;
    padding: 10px 0;
  }

  .mobile-partners {
    width: 85%;
    display: flex;
    gap: 4px;
    justify-content: center;
  }

  .mobile-partners img {
    width: 95px;
    height: auto;
    object-fit: contain;
    background-color: #fff;
  }

  .slide-panel {
    /* position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;

    background: #062c2c;
    color: #fff; */
    z-index: 1050;

    /* transform: translateX(100%);
    transition: transform 0.4s ease;
    display: block; */
  }

  /* Bootstrap jab .show lagata hai */
  .slide-panel.show {
    transform: translateX(0);
  }

  .solutionPanel-wrapper,
  .industryPanel-wrapper {
    width: 85%;
  }

  .solutionPanel-title {
    color: #6fabff;
    margin: 20px 0;
  }

  /* header */
  .panel-header {
    padding: 15px;
  }

  .back-btn {
    color: #fff;
    text-decoration: none;
  }

  .panel-body {
    padding: 15px;
  }

  /* accordion */

  .slide-panel .accordion-button::after {
    display: none;
  }

  .slide-panel .accordion-body {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .ESGdata-accordion-body,
  .GenerativeAI-accordion-body,
  .compliance-accordion-body {
    flex-direction: column;
  }

  .ESGdata-content h4,
  .GenerativeAI-content h4,
  .compliance-content h4 {
    color: #6fabff;
    margin: 10px 0px;
  }

  .GenerativeAI-divider,
  .compliance-divider,
  .slide-panel-divider {
    width: 100%;
    height: 1px;
    background-color: #cccccc89;
    margin: 20px 0px;
  }

  .slide-panel .accordion-image-wrapper {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #6fabff;
    width: 100%;
    max-width: 120px;
    height: 60px;
  }

  .slide-panel .accordion-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .slide-panel .mobile-accordion {
    margin-left: auto;
  }

  .slide-panel .accordion-button,
  .slide-panel .accordion-body {
    border-radius: 0px !important;
    border-radius: 0px;
  }

  .slide-panel .accordion-button {
    padding: 10px;
  }

  .slide-panel .accordion-collapse {
    margin-top: 0px;
    border-radius: 0px;
  }

  .slide-panel .accordion-item {
    margin-bottom: 5px;
  }

  /* industry */
  .industry-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .industry-list li {
    text-align: center;
    padding: 18px 15px;
    font-size: 16px;
    color: #fff;
    background-color: #6fabff;
    margin-top: 4px;
  }

  /* hero-section */

  .hero-wrapper {
    height: 90vh;
    max-height: 600px;
  }

  .hero-container {
    align-items: flex-start;
  }

  .carousel-indicators {
    display: none;
  }

  .hero-left {
    width: 100%;
    transform: translate(0%, 0%);
    margin-top: 120px;
    padding: 0px 16px;
  }

  .hero-left h1 {
    font-size: 28px;
    line-height: normal;
    text-align: center;
    margin-bottom: 10px;
  }

  .hero-left p {
    font-size: 16px;
    text-align: center;
    margin-bottom: 10px;
  }

  .hero-container .text-wrapper {
    height: 70px;
    text-align: center;
    margin: 10px 0px;
    display: block;
    width: 100%;
  }

  .hero-left .text {
    font-size: 28px;
    white-space: unset;
    right: 0;
  }

  .hero-container .partners {
    margin-top: 10px;
  }

  .hero-right {
    right: 13%;
    width: 92%;
  }

  /* about-us-section */

  .about-us-section {
    margin-block: 50px 0px;
  }

  .about-us-content h2 {
    font-size: 30px;
  }

  /* business-section */

  .business-section {
    margin-block: 50px 0px;
  }

  .business-content h2 {
    font-size: 30px;
  }

  .solution-tag-container {
    flex-direction: column;
    align-items: center;
  }

  .ERP-item {
    flex-direction: column;
    align-items: flex-start;
  }
  /* reason-why-you-should-opt */

  .info-card {
    padding: 24px;
  }

  .info-item {
    flex-direction: column;
    gap: 20px;
  }

  /* grow your business */

  .growth-title {
    font-size: 30px;
  }

  /* world class solution and consulting section */

  .stagger-parent {
    overflow: hidden;
  }
}
