@import "https://fonts.cdnfonts.com/css/cabinet-grotesk";



body {
  background: #f5f7fb;
}






.digital_solution_section {
  min-height: 60vh;
  background: #1F1FFF;
  padding: 150px 20px 80px 20px;
  color: #ffffff;
}

.digital_solution_badge {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 10px 18px;
  font-size: 16px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
}

.digital_solution_heading {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.digital_solution_text {
  margin: auto;
  font-size: 24px;
}

.digital_solution_btn {
  background-color: #ffffff;
  color: black;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 600;
  border: 6px solid #3131FF;
  transition: none;
  /* Removed hover animation */
}

.digital_solution_btn:hover {
  background-color: #ffffff !important;
  color: black !important;
  border: 6px solid #3131FF !important;
  transform: none !important;
  box-shadow: none !important;
}





/* =========================
   MAIN SECTION
========================= */
.main_section {
  background: #f7f8fc;
  margin-bottom: -60px;
}

/* =========================
   LEFT SIDEBAR
========================= */
.nav_wrapper {
  position: sticky;
  top: 140px;
}

.quick_nav_box {
  background: #fff;
  padding: 30px 28px;
  border-radius: 20px;
  border: 1px solid #e9e9e9;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.nav_title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

/* NAV ITEMS */
.nav_item {
  display: block;
  padding: 14px 16px;
  margin-bottom: 10px;
  border-radius: 14px;
  cursor: pointer;
  color: #444;
  font-size: 22px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid transparent;
  line-height: 1.4;
}

@media (hover: hover) and (pointer: fine) {
  .nav_item:hover {
    background: #1F1FFF1F;
    border: 1px solid #1F1FFF33;
    color: #1f1fff;
  }
}

.nav_item.active {
  background: #1F1FFF1F;
  border: 1px solid #1F1FFF33;
  color: #1f1fff;
}

/* =========================
   RIGHT CONTENT
========================= */
.content_box {
  background: #fff;
  border-radius: 22px;
  padding: 35px;
  margin-bottom: 28px;
  border: 1px solid #ececec;
  scroll-margin-top: 110px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}

/* HEADINGS */
.content_box h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: black;
}

.content_box h4 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 14px;
  line-height: 1.4;
}

.content_box h5 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 18px;
  margin-bottom: 10px;
  color: black;
}

/* PARAGRAPH */
.content_box p {
  font-size: 15px;
  line-height: 1.9;
  color: black;
  margin-bottom: 18px;
}

/* HR */
.content_box hr {
  margin: 18px 0 25px;
  border: 0;
  border-top: 1px solid #d4d4d4;
  opacity: 1;
}

/* IMAGE */
.content_box img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-top: 24px;
  margin-bottom: 10px;
  display: block;
}

/* LISTS */
.content_box ul {
  padding-left: 20px;
  margin-top: 12px;
  margin-bottom: 25px;
}

.content_box ul li {
  margin-bottom: 10px;
  color: black;
  line-height: 1.7;
  position: relative;
}

/* PROCESS NUMBER STYLE */
.process_step {
  width: 55px;
  height: 55px;
  color: black;
  border-radius: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 15px;
  border: 1px solid #848484;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 991px) {

  .main_section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  /* SIDEBAR SAME AS DESKTOP */
  .quick_nav_box {
    position: relative;
    top: 0;
    padding: 20px;
    margin-bottom: 25px;
  }

  .nav_title {
    display: block;
    font-size: 17px;
    margin-bottom: 18px;
  }

  .nav_item {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    white-space: normal;
  }

  /* CONTENT */
  .content_box {
    padding: 24px;
    border-radius: 18px;
  }

  .content_box h3 {
    font-size: 26px;
  }

  .content_box h4 {
    font-size: 20px;
  }

  .content_box h5 {
    font-size: 17px;
  }

  .content_box p,
  .content_box li {
    font-size: 14px;
  }

  .content_box img {
    width: 60px;
    height: 60px;
  }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 576px) {

  .quick_nav_box {
    padding: 18px;
    border-radius: 16px;
  }

  .nav_item {
    font-size: 14px;
    padding: 12px 14px;
  }

  .content_box {
    padding: 20px;
  }

  .content_box h3 {
    font-size: 22px;
  }

  .content_box h4 {
    font-size: 18px;
  }

  .content_box h5 {
    font-size: 16px;
  }

  .content_box p {
    line-height: 1.8;
  }
}



.digital_solutions_cta_subcontent {
  font-size: 24px;
  color: rgba(255, 255, 255, .85);
  max-width: 650px;
  margin: 0 auto 30px;
}