@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", serif;
}

body,
html {
  width: 100%;
  height: 100%;
  font-family: "Inter", serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== Desktop Header ===== */
.header-legal-container {
  background-color: #fff;
  width: 100%;
  height: 75px;
  position: fixed;
  z-index: 1000;
  top: 0;
}

.header-legal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
}

.header-legal-logo {
  height: 55px;
}

.header-legal-search-auth {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
}

.header-legal-search {
  padding: 7px 10px 7px 45px;
  border: 1.5px solid rgba(51, 141, 251, 0.4);
  border-radius: 25px;
  width: 330px;
  outline: none;
  color: rgba(0, 0, 0, 0.5);
  font-size: 18px;
  font-weight: 500;
  background-color: #eff6ff;
}

.header-legal-search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
  padding-left: 5px;
}

.header-legal-login {
  background-color: #1877f2;
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.header-legal-signup {
  color: #1877f2;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
}

.header-legal-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

.header-legal-nav {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  background-color: #f5f9ff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.09);
  position: fixed;
  top: 75px;
  z-index: 1000;
  width: 100%;
}

.header-legal-nav ul {
  list-style: none;
  display: flex;
  gap: 50px;
  margin-bottom: 0;
  padding-left: 0;
}

.header-legal-nav ul li a {
  font-size: 16px !important;
  font-weight: 700 !important;
  text-transform: capitalize;
  text-decoration: none !important;
}

.header-legal-nav ul li a:hover {
  color: #1877f2;
}

.header-legal-nav .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-legal-nav .menu>li {
  position: relative;
  display: inline-block;
}

.dropdown-container {
  display: none;
  max-width: 1170px;
  border: 1px solid #ddd;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: fixed;
  top: 145px;
  left: 4%;
  z-index: 5000;
}

.dropdown-container#ipr-dropdown {
  left: 28%;
}

.dropdown-container#taxation-dropdown {
  left: 36%;
}

.dropdown-container#dispute-dropdown {
  left: 38%;
}

.dropdown-container#cyber-dropdown {
  left: 70%;
  right: 0;
}

.dropdown-container.show {
  display: block;
}

.dropdown-content {
  display: flex;
  padding: 12px 0;
}

.dropdown-section {
  flex: 1;
  padding: 0 20px;
  border-right: 1px solid #eee;
}

.dropdown-section:last-child {
  border-right: none;
}

.dropdown-headings {
  color: #2196F3;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 5px;
}

.dropdown-headings a {
  color: #2196F3;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}

.dropdown-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-items li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

.dropdown-items li:hover {
  color: #2196F3;
  cursor: pointer;
}

.dropdown-items li a {
  font-size: 14px;
  color: #555;
  font-weight: 500;
  text-decoration: none;
}

.dropdown-items li a:hover {
  color: #2196F3;
  cursor: pointer;
}

@media (min-width: 1420px) and (max-width: 1440px) {
  .header-legal-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
    margin-bottom: 0;
    padding-left: 0;
  }

  .header-legal-nav ul li a {
    font-size: 18px !important;
  }
}

@media (min-width:1068px) and (max-width:1300px) {
  .header-legal-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-bottom: 0;
    padding-left: 0;
  }

  .left-section p {
    font-size: 13px;
  }

}

@media (max-width: 1068px) {
  .header-legal-nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-legal-nav ul li a {
    font-size: 17px !important;
  }
}

/* Mobile Header */
.mobile-header {
  display: none;
  background-color: white;
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

.top-row,
.bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-logo img {
  height: 40px;
}

.profile-wrapper {
  position: relative;
}

.profile-icon {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
}

.login-signup {
  display: none;
  position: absolute;
  top: 45px;
  right: 0;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.login-signup button,
.login-signup a {
  display: block;
  margin: 6px 0;
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  font-size: 14px;
  cursor: pointer;
  color: #1877f2;
  font-weight: 600;
  text-decoration: none;
}

.mobile-search {
  flex: 1;
  margin-right: 10px;
}

.mobile-search input {
  width: 100%;
  padding: 8px 12px 8px 35px;
  border: 2px solid #dce7f6;
  border-radius: 18px;
  font-size: 16px;
  background-color: #f1f6ff;
  background-image: url('https://img.icons8.com/ios-glyphs/30/search--v1.webp');
  background-position: 10px center;
  background-repeat: no-repeat;
  background-size: 18px;
}

.hamburger-menu {
  font-size: 28px;
  cursor: pointer;
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: relative;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  z-index: 999;
}

.dropdown-menu li {
  display: block;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none;
  padding: 10px;
  border-top: 1px solid #ccc;
}

.mobile-nav {
  list-style: none;
  padding: 0px;
  margin: 0;
}

.mobile-nav li {
  padding: 10px;
  border-bottom: 1px solid #ccc;
  position: relative;
  margin-bottom: 10px;
}

.mobile-nav li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  display: block;
}

.has-submenu>a::after {
  content: '\f107';
  float: right;
  font-size: 12px;
  font-weight: 900;
  font-family: 'Font Awesome 5 Free';
  font-size: 18px;
  color: #333;
  transition: transform 0.3s ease;
  color: #fff;
}

.mobile-nav li.active>a::after {
  content: '\f106';
}

.submenu {
  display: none;
  padding-left: 0px;
  background-color: #f5f9ff;
  color: #000;
  list-style-type: none
}

.mobile-nav li.active>.submenu {
  display: block;
  margin-top: 27px;
}

.submenu-heading {
  font-weight: bold;
  padding: 8px 0 4px;
  display: block;
  background-color: #f5f9ff;
  margin-bottom: 10px;
}

.sub-submenu {
  padding-left: 0px;
  background-color: #f5f9ff;
  color: #000;
}

.sub-submenu li {
  padding: 5px 0;
  list-style-type: none
}

.sub-submenu li a {
  font-size: 14px;
  font-weight: 400;
  color: #1877f2;
  text-decoration: none;
  list-style-type: none
}

.sub-submenu li a:hover {
  text-decoration: underline;
}

.submenu-heading1 {
  background-color: #f5f9ff;
  color: black;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 5px;
  margin: 5px 0;
  display: block;
}

.submenu-heading1 .heading-sub {
  color: black;
  text-decoration: none;
}

.submenu-heading1 .heading-sub:hover {
  color: #1877f2;
  text-decoration: underline;
}

.mobile-main-nav {
  background-color: #1877f2;
}


@media (max-width: 1028px) {
  .dropdown-container {
    top: 145px;
    left: 0%;
    margin: 10px;
    margin-top: 0px;
  }

  .dropdown-container#dispute-dropdown {
    left: 15%;
    top: 17%;
  }

  .dropdown-container#cyber-dropdown {
    left: 52%;
    right: 0;
    top: 17%;
  }
}

@media (max-width: 768px) {

  .header-legal-container,
  .header-legal-nav {
    display: none;
  }

  .mobile-header {
    display: block;
  }

  .dropdown-container {
    display: none;
  }
}

/* first section of business restructuring  */
.business-section {
  background-image: url('../img/business-restructuring-banner.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding: 60px 0;
  margin-top: 100px;
}

.business-section h1 {
  font-size: 40px;
  margin-top: 20px;
}

.business-section p {
  width: 75%;
  margin-top: 20px;
  font-size: 18px;
  text-align: justify;
}

.business-section .compliance-form {
  margin-right: 0px !important;
  margin-left: 35px;
}

.business-section .col-md-3 {
  width: 22%;
  padding-right: 0;
}

.business-section .blue-shadow-box-1 {
  position: absolute;
  top: -15px;
  left: -2px;
  width: 100%;
  height: 100%;
  background-color: #338DFB;
  border-radius: 12px;
  z-index: 0;
}

.blue-shadow-box-4 {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 100%;
  height: 100%;
  background-color: #338DFB;
  border-radius: 12px;
  z-index: 0;
}

.business-section .blue-shadow-box-1:hover,
.blue-shadow-box-4:hover {
  background-color: #fff;
}

.business-section .feature-boxss {
  position: relative;
  z-index: 1;
  background-color: #fff;
  color: #000;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.business-section .feature-boxss:hover {
  background-color: #338DFB;
  color: #fff;
}

.business-section .feature-boxss:hover img {
  filter: brightness(0) invert(1);
}

@media (min-width: 1750px) and (max-width:2500px) {
  .business-section {
    background-size: cover;
    margin-top: 140px;
  }

  .business-section .container {
    max-width: 1685px;
  }
}

@media (max-width: 1068px) {
  .business-section h1 {
    width: 482px;
    margin-top: 40px;
  }

  .business-section {
    padding: 5px 0;
    margin-top: 200px;
  }
}

@media (max-width: 991.98px) {
  .business-left-column .row {
    margin-left: 0;
    margin-right: 0;
  }

  .business-section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 10px 0;
  }

  .business-section .compliance-form {
    margin-left: 20px;
    margin-top: 30px;
  }

  .business-section h1 {
    font-size: 34px;
    width: 100%;
    margin-top: 0px;
  }

  .business-section p {
    font-size: 16px;
    width: 100%;
  }

  .business-section .feature-boxss {
    margin: 0 auto;
    height: 150px;
  }

  .business-section .row.g-4>div {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 5px;
  }

  .business-section .blue-shadow-box-1,
  .blue-shadow-box-4 {
    display: none;
  }

  .business-section .compliance-form .input-group {
    flex-wrap: nowrap;
    align-items: center;
  }

  .business-section .compliance-form input {
    width: 100%;
  }
}

@media (max-width: 800px) {
  .business-section {
    margin-top: 0px;
  }
}

/* Second section of business restructuring  */
.chooseus-section {
  margin-top: 60px;
  margin-bottom: 60px;
}

.chooseus-title h5 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
}

.chooseus-title p {
  font-size: 18px;
  color: #444;
  margin-bottom: 32px;
  font-weight: 400;
  text-align: justify;
}

.chooseus-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
  text-align: justify;
}

.chooseus-info-item:last-child {
  margin-bottom: 0;
}

.chooseus-info-item h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.chooseus-info-item p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #5f5f5f;
  margin: 0;
}

.chooseus-icon-box {
  background-color: #90caff;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}

.chooseus-icon-box i {
  color: white;
  font-size: 35px;
}

.chooseus-img-wrapper {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  max-width: 488px;
  height: auto;
  aspect-ratio: 6 / 7;
}

.chooseus-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.chooseus-bg-box {
  position: absolute;
  top: -40px;
  right: -20px;
  width: 100%;
  max-width: 488px;
  height: 650px;
  background-color: #90caff;
  border-radius: 12px;
  z-index: 0;
}

@media (min-width: 1750px) and (max-width:2500px) {
  .chooseus-section.container {
    margin-top: 60px;
    margin-bottom: 60px;
    max-width: 1670px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 991.98px) {
  .chooseus-img-wrapper {
    margin-top: 0px;
    aspect-ratio: 3 / 2;
    margin-right: 12%;
  }

  .chooseus-bg-box {
    top: -20px;
    right: 0;
    height: 100%;
    max-height: 500px;
  }
}

@media (max-width: 767.98px) {
  .chooseus-section .row {
    margin-left: 0;
    margin-right: 0;
  }

  .chooseus-title h5 {
    font-size: 34px;
  }

  .chooseus-title p {
    font-size: 18px;
  }

  .chooseus-info-item h6 {
    font-size: 18px;
  }

  .chooseus-info-item p {
    font-size: 16px;
  }

  .chooseus-icon-box {
    width: 60px;
    height: 60px;
  }

  .chooseus-icon-box i {
    font-size: 28px;
  }

  .chooseus-bg-box {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .chooseus-info-item {
    align-items: flex-start;
    margin-right: 0 !important;
  }

  .chooseus-icon-box {
    margin-bottom: 10px;
  }

  .chooseus-img-wrapper img {
    height: auto !important;
  }
}

/* third section with side bar  */
.mna-sidebar-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.mna-sidebar {
  background-color: #E8EFFF;
  border-radius: 10px;
  min-height: 100%;
  box-shadow: 2px 3px 4px 0 rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.mna-sidebar.fixed {
  position: fixed;
  top: 145px;
  width: 18.2%;
}

.mna-sidebar.unfixed {
  position: absolute;
  bottom: 0px;
  width: 231px;
  background-color: #E8EFFF !important;
}

.mna-section-wrapper .row {
  margin-right: 0;
}

.mna-sidebar h5 {
  font-size: 18px;
  font-weight: 700;
  color: #267cff;
  margin-bottom: 20px;
  padding-top: 30px;
  padding-left: 15px;
}

.mna-sidebar a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: 500;
}

.mna-sidebar a.active {
  background-color: #267cff;
  color: #fff;
  position: relative;
  box-shadow: 2px 3px 4px 0 rgba(0, 0, 0, 0.25);
}

.mna-sidebar a.active::after {
  content: '';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 15px solid #267cff;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
}

.mna-content-box {
  background-color: #E8EFFF;
  border-radius: 12px;
  box-shadow: 0 4px 4px 0 #00000040;
}

.mna-section-title {
  font-size: 24px;
  font-weight: 600;
  background-color: rgba(51, 141, 251, 0.21);
  height: 80px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.mna-title-text {
  display: inline-block;
  border-bottom: 5px solid #338DFB;
  padding-bottom: 5px;
  color: #000;
  border-radius: 5px;
}

.mna-section-title span {
  color: #000;
  margin-left: 3px;
}

.mna-section-after-title {
  padding: 40px;
  padding-bottom: 80px;
}

.mna-description {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
  width: 50%;
  text-align: justify;
  color: rgba(0, 0, 0, 0.7);
}

.mna-section-wrapper .col-lg-3 {
  flex: 0 0 auto;
  width: 20%;
  max-width: 20%;
}

.mna-section-wrapper .mna-content-column {
  flex: 0 0 auto;
  width: 78%;
  max-width: 78%;
  padding-right: 0 !important;
  margin-left: auto;
}

.mna-offset-top {
  margin-top: -5% !important;
}

.mna-feature-grid {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 85px;
  border-radius: 20px;
  z-index: 1;
}

.mna-feature-grid::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 45px;
  right: 45px;
  bottom: 0px;
  border: 5px solid #338DFB;
  border-radius: 20px;
  transform: rotate(45deg);
  z-index: -1;
}

.mna-diamond {
  width: 140px;
  height: 140px;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  border-radius: 15px;
  padding: 10px;
}

.mna-feature-grid .mna-diamond:nth-child(1) {
  text-decoration: underline;
  font-weight: 600;
  position: absolute;
  top: 30%;
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.25);
}

.mna-feature-grid .mna-diamond:nth-child(2),
.mna-feature-grid .mna-diamond:nth-child(5) {
  background-color: #99C6FD;
  color: #000;
}

.mna-feature-grid .mna-diamond:nth-child(3),
.mna-feature-grid .mna-diamond:nth-child(4) {
  background-color: #267cff;
  color: #fff;
}

.mna-diamond-inner {
  transform: rotate(-45deg);
  width: 100%;
}

.mna-diamond-inner p {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 5px;
}

.mna-diamond-inner small {
  font-size: 10px;
  font-weight: 400;
}

.mna-image {
  width: 373px;
  max-width: 100%;
  height: 295px;
}

@media (min-width: 1800px) and (max-width:2500px) {
  .mna-sidebar.unfixed {
    position: absolute;
    bottom: -157px;
    width: 350px;
  }

  .mna-feature-grid::before {
    transform: rotate(0deg);
  }

  .mna-feature-grid .mna-diamond:nth-child(1) {
    top: 38%;
  }

  .mna-feature-grid .mna-diamond:nth-child(2),
  .mna-feature-grid .mna-diamond:nth-child(4) {
    margin-top: 185px;
  }
}

@media (max-width:1068px) {
  .mna-sidebar-wrapper {
    position: relative;
    width: 176px;
    height: 100%;
  }

  .mna-sidebar {
    background-color: #E8EFFF;
    border-radius: 10px;
    min-height: max-content;
  }

  .mna-sidebar.fixed {
    position: fixed;
    top: 215px;
    /* width: 20.8%; */
  }

  .mna-sidebar.unfixed {
    width: 166px;
    top: 0%;
  }

  .mna-feature-grid::before {
    transform: rotate(0deg);
  }
}

@media (min-width:768px) and (max-width: 800px) {

  .mna-section-wrapper .row {
    justify-content: center;
    align-items: center;
  }

  .mna-section-wrapper .col-lg-3,
  .mna-section-wrapper .mna-content-column {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 0 !important;
  }

  .mna-sidebar-wrapper {
    display: none;
  }
}

@media (max-width: 767px) {
  .mna-section-wrapper .row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .mna-section-wrapper .col-lg-3,
  .mna-section-wrapper .mna-content-column {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 0 !important;
  }

  .mna-sidebar-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: none;
  }

  .mna-section-title {
    font-size: 20px;
    height: auto;
    padding: 20px 10px;
  }

  .mna-description {
    width: 100%;
    font-size: 15px;
  }

  .mna-section-after-title {
    padding: 20px;
  }

  .mna-offset-top {
    margin-top: 0 !important;
  }
}

@media (max-width: 768px) {
  .mna-feature-grid {
    gap: 60px;
    border: none;
  }

  .mna-feature-grid::before {
    display: none;
  }

  .mna-feature-grid .mna-diamond {
    width: 130px;
    height: 130px;
    transform: rotate(45deg);
  }

  .mna-diamond-inner {
    font-size: 11px;
  }

  .mna-diamond-inner p {
    font-size: 11px;
  }

  .mna-diamond-inner small {
    font-size: 9px;
  }

  .mna-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
}

/* 4th section  */
.restructuring-section {
  position: relative;
  z-index: 1;
  background-color: #BFDFF9;
  border-radius: 10px;
  margin-left: 22%;
}

.restructuring-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  background-color: rgba(51, 141, 251, 0.21);
  padding: 10px 0px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 20px;
}

.restructuring-title span {
  color: #338dfb;
}

.restructuring-title::after {
  content: "";
  display: block;
  width: 270px;
  height: 5px;
  background-color: #338dfb;
  margin: 5px auto 10px auto;
  border-radius: 2px;
}

.restructuring-subtitle {
  text-align: center;
  font-size: 18px;
  margin-bottom: 50px;
}

.restructuring-cards {
  width: 980px;
  padding-bottom: 80px;
  margin: auto;
}

.restructuring-cards .col-lg-2 {
  width: 21%;
}

.res-card {
  position: relative;
  background-color: #fff;
  border-radius: 15px;
  padding: 20px 10px 40px;
  text-align: center;
  max-height: 190px;
  max-width: 190px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  z-index: 2;
}

.res-card .icon-circle {
  width: 66px;
  height: 66px;
  border: 6px solid #a3d0ff;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.res-card.icon-bottom .icon-circle {
  top: unset;
  bottom: 0;
  transform: translate(-50%, 50%);
  border: 6px solid rgba(51, 141, 251, 1);
}

.res-card h5 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
  line-height: 1.4;
}

.res-card p {
  font-size: 15px;
  font-weight: 300;
  margin-top: 8px;
  color: #000;
  line-height: 1.5;
}

@media (max-width: 1200px) {
  .restructuring-section {
    width: 78%;
    margin-left: auto;
  }

  .restructuring-cards {
    width: 100%;
    margin-left: 0;
    padding: 0 20px;
  }

  .restructuring-cards .col-lg-2 {
    width: 25%;
  }
}

@media (max-width: 992px) {
  .restructuring-cards .col-lg-2 {
    width: 45%;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .restructuring-section {
    width: 100%;
  }

  .restructuring-cards .col-lg-2 {
    width: 100%;
  }

  .res-card {
    max-width: 100%;
    margin: 0 auto;
  }

  .restructuring-subtitle {
    padding: 0 15px;
  }
}

@media (max-width: 576px) {
  .restructuring-title {
    font-size: 20px;
  }

  .restructuring-subtitle {
    font-size: 16px;
  }

  .res-card h5 {
    font-size: 15px;
  }

  .res-card p {
    font-size: 13px;
  }
}

/* 5th section  */
.insolvency-section {
  border-radius: 10px;
  margin-left: 22%;
  background-image: url(../img/bankruptcy-banner.webp);
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  background-color: rgba(51, 141, 251, 0.21);
  padding: 10px 0px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 20px;
}

.section-title span {
  color: #338dfb;
}

.section-title::after {
  content: "";
  display: block;
  width: 410px;
  height: 5px;
  background-color: #338dfb;
  margin: 5px auto 10px auto;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 18px;
  color: #333;
  margin-bottom: 40px;
  text-align: center;
}

.circular-wrapper {
  position: relative;
  width: 288px;
  height: 288px;
  margin: 100px auto 100px;
  border-radius: 50%;
  border: 50px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-label {
  width: 80px;
  height: 75px;
}

.info-icon {
  position: absolute;
  border-radius: 50%;
  width: 105px;
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background-position: center;
  background-size: contain;
}

.info-icon img {
  width: 50px;
}

.icon-cirp {
  top: -135px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../img/bg-icon-1.webp);
}

.icon-liquidation {
  bottom: -135px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../img/bg-icon-3.webp);
}

.icon-nclt {
  left: -135px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/bg-icon-4.webp);
}

.icon-bankruptcy {
  right: -135px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/bg-icon-2.webp);
}

.info-content {
  display: flex;
  margin-top: 40px;
  width: 980px;
}

.info-box {
  position: absolute;
  width: 280px !important;
  margin-bottom: 30px;
}

.info-box h6 {
  font-size: 20px;
  font-weight: 500;
}

.info-box:nth-child(1) h6,
.info-box:nth-child(3) h6 {
  color: #338dfb;
}

.info-box:nth-child(2) h6,
.info-box:nth-child(4) h6 {
  color: #90CAF9;
}

.info-box p {
  font-size: 14px;
  margin-top: 5px;
  color: #333;
}

.text-cirp {
  top: 155px;
  left: 22%;
  transform: translateX(-50%);
  text-align: end;
}

.text-liquidation {
  bottom: 1%;
  left: 78%;
  transform: translateX(-50%);
}

.text-nclt {
  left: 8%;
  top: 86%;
  transform: translateY(-50%);
  text-align: end;
}

.text-bankruptcy {
  right: 8%;
  top: 35%;
  transform: translateY(-50%);
  text-align: start;
}

.cube {
  position: relative;
  width: 71px;
  transform-style: preserve-3d;
  transform: rotateX(-25deg) rotateY(45deg);
  margin: auto;
}

.cube .face {
  position: absolute;
  width: 80px;
  height: 80px;
  background: #8ecdfc;
  color: #000;
  font-size: 2em;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #fff;
}

.cube .top {
  transform: rotateX(90deg) translateZ(40px);
  border-radius: 5px;
}

.cube .left {
  transform: rotateY(-90deg) translateZ(38px);
  border-radius: 5px;
}

.cube .right {
  transform: rotateY(0deg) translateZ(38px);
  border-radius: 5px;
}

@media (min-width:1800px) and (max-width: 2500px) {
  .text-cirp {
    left: 23%;
  }

  .text-bankruptcy {
    right: 14%;
  }

  .text-liquidation {
    left: 77%;
  }

  .text-nclt {
    left: 13%;
  }
}


@media (max-width: 1024px) {
  .circular-wrapper {
    width: 200px;
    height: 200px;
    margin: 100px auto 100px;
    border: 40px solid #ccc;
  }
}

@media (max-width: 768px) {
  .insolvency-section {
    width: 100%;
    margin-left: 0%;
  }

  .section-title::after {
    content: "";
    display: block;
    width: 280px;
  }

  .info-content {
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: static;
    margin-top: 20px;
  }

  .insolvency-position .row {
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    gap: 40px;
  }

  .info-box {
    position: static;
    width: 90% !important;
    margin-bottom: 0px;
  }

  .text-cirp {
    transform: translate(0, 0);
  }

  .text-liquidation {
    transform: translate(0, 0);
  }

  .circular-wrapper {
    width: 180px;
    height: 180px;
  }
}

/* 6th section  */
.structure-conversion {
  position: relative;
  z-index: 1;
  background-color: #E8EFFF;
  border-radius: 10px;
  margin-left: 22%;
}

.structure-conversion h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  background-color: rgba(51, 141, 251, 0.21);
  padding: 10px 0px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 20px;
}

.restructuring-title span {
  color: #338dfb;
}

.structure-conversion h2::after {
  content: "";
  display: block;
  width: 270px;
  height: 5px;
  background-color: #338dfb;
  margin: 5px auto 10px auto;
  border-radius: 2px;
}

.structure-conversion .row {
  margin-right: 0;
}

.hexagon-group {
  position: relative;
  height: 415px;
  margin-left: -20px;
}

.hex {
  width: 205px;
  height: 175px;
  background: #ccc;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  position: absolute;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.hex::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background-color: inherit;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  z-index: -1;
  box-shadow: inset 0 6px 75px 3px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.hex:hover {
  transform: scale(1.05);
}

.hex-green {
  background-color: #41A233;
  top: 98px;
  left: -30px;
}

.hex-blue {
  background-color: #3F9FDC;
  top: -75px;
  left: 290px;
}

.hex-orange {
  background-color: #EE9500;
  top: -83%;
  left: 131px;
}

.hex-red {
  background-color: #EC5700;
  top: -336px;
  left: 130px;
}


@media (max-width:1068px) {
  .structure-conversion .row {
    justify-content: center;
  }

  .hexagon-group {
    width: 500px;
    height: 415px;
  }

  .chooseus-bg-box {
    position: absolute;
    top: -40px;
    right: -10px;
  }

}

@media (max-width: 768px) {
  .structure-conversion {
    width: 100%;
    margin-left: 0%;
  }

  .structure-conversion .text-muted {
    margin: 0 30px;
  }

  .hexagon-group {
    height: auto;
    margin-left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    position: static;
    margin-bottom: 30px;
  }

  .hex {
    width: 140px;
    height: 120px;
    font-size: 12px;
    padding: 10px;
    position: static;
  }

  .hex::before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
  }

  .hex-green,
  .hex-blue,
  .hex-orange,
  .hex-red {
    top: auto;
    left: auto;
  }

  .structure-conversion .row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }


}

/* 7th section  */
.asset-restructuring-section {
  border-radius: 10px;
  margin-left: 22%;
  background-image: url(../img/assest-restructuring.webp);
  position: relative;
}

.asset-restructuring-section .row {
  margin-right: 0;
}

.asset-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  background-color: rgba(51, 141, 251, 0.21);
  padding: 10px 0px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 20px;
}

.asset-title::after {
  content: "";
  display: block;
  width: 220px;
  height: 5px;
  background-color: #338dfb;
  margin: 5px auto 10px auto;
  border-radius: 2px;
}

.asset-highlight {
  color: #3b91ff;
}

.asset-circle {
  width: 298px;
  height: 298px;
  border: 10px solid #3b91ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background: white;
}

.asset-info-box {
  border-radius: 100px;
  padding: 20px 25px;
  margin-bottom: 45px;
  background: white;
  height: 105px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.06);
}

.asset-circle img {
  margin-bottom: 10px;
  margin-left: 34%;
}

.asset-info-box img {
  margin-right: 20px;
  position: absolute;
}

.sale-icon {
  width: 150px;
  height: 140px;
  top: 12%;
  left: 40%;
}

.debt-icon {
  width: 160px;
  top: 44%;
  left: 40%;
}

.npa-icon {
  top: 64%;
  left: 40%;
  width: 150px;
}

.debt-capital {
  margin-left: 34%;
}

.asset-info-title {
  font-weight: 500;
  color: #3b91ff;
  font-size: 16px;
}

.asset-info-description {
  font-size: 15px;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .asset-circle {
    width: 220px;
    height: 220px;
    padding: 15px;
  }

  .assest-restructuring-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .asset-circle img {
    width: 50px;
    margin-left: 0%;
  }

  .asset-info-box {
    flex-direction: column;
    align-items: flex-start !important;
    text-align: center;
    padding: 10px;
    height: auto;
    gap: 0px;
    border-radius: 30px;
  }

  .asset-info-box img {
    position: static;
    margin: 0 auto 10px;
    display: block;
  }

  .debt-capital {
    margin-left: 0;
    text-align: center;
    width: 100%;
  }

  .sale-icon,
  .debt-icon,
  .npa-icon {
    width: 80px;
    height: auto;
  }

  .asset-info-title {
    font-size: 15px;
  }

  .asset-info-description {
    font-size: 14px;
  }

  /* .row.align-items-center {
    flex-direction: column;
  } */

  .col-md-7 {
    margin-top: 20px;
  }

  .asset-restructuring-section .row {
    margin-right: 0;
    margin: 0 20px;
  }
}

@media (max-width:800px) {
  .asset-restructuring-section {
    width: 100%;
    margin-left: 0;
    background-size: cover;
  }
}

/* 8th section */
.case-container {
  position: relative;
  height: 469px;
  margin-left: 22%;
}

.case-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 8px;
}

.case-gray-strip {
  position: absolute;
  top: 127px;
  width: 100%;
  height: 221px;
  background: #f2f2f2;
}

.case-card {
  position: absolute;
  width: 580px;
  border-radius: 15px;
}

.case-challenge-card {
  top: 41px;
  left: 400px;
  height: 101px;
  background: #067181;
}

.case-solution-card {
  top: 171px;
  left: 400px;
  height: 137px;
  background: #0dadc5;
}

.case-outcome-card {
  top: 323px;
  left: 400px;
  height: 112px;
  background: #058da1;
}

.case-icon {
  position: absolute;
  width: 63px;
  height: 63px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.case-icon-challenge {
  top: 60.5px;
  left: 370px;
}

.case-icon-challenge,
.case-icon-solution,
.case-icon-outcome {
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-icon-challenge img,
.case-icon-solution img,
.case-icon-outcome img {
  width: 35px;
}

.case-icon-solution {
  top: 208.5px;
  left: 370px;
}

.case-icon-outcome {
  top: 347.5px;
  left: 370px;
}

.case-title {
  position: absolute;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 22px;
  color: white;
}

.case-title-challenge {
  top: 56px;
  left: 450px;
}

.case-title-solution {
  top: 186px;
  left: 450px;
}

.case-title-outcome {
  top: 338px;
  left: 450px;
}

.case-text {
  position: absolute;
  font-size: 16px;
  font-weight: 300;
  line-height: 25px;
  color: white;
  text-align: justify;
}

.case-text-challenge {
  top: 83px;
  left: 450px;
  line-height: 22px;
  text-align: justify;
  padding-right: 20px;
}

.case-text-solution {
  top: 218px;
  left: 450px;
  text-align: justify;
  padding-right: 20px;
}

.case-text-outcome {
  top: 370px;
  left: 450px;
  text-align: justify;
  padding-right: 20px;
}

.case-left-box {
  position: absolute;
  top: 279px;
  left: 15px;
  width: 330px;
  height: 156px;
  background: #e7f4ff;
  border-radius: 15px;
}

.case-left-badge {
  position: absolute;
  top: 237px;
  left: 35px;
  width: 285px;
  height: 77px;
  background: #90caf9;
  border-radius: 15px;
}

.case-left-title {
  position: absolute;
  top: 339px;
  left: 65px;
  width: 248px;
  font-size: 20px;
  font-weight: 600;
  color: black;
  line-height: 27px;
}

.case-left-subtitle {
  position: absolute;
  top: 265px;
  left: 80px;
  font-size: 20px;
  font-weight: 500;
  color: black;
  text-align: center;
  line-height: 22px;
}

.case-shape {
  position: absolute;
  background: #058da1;
}

.shape-1 {
  top: 364.87px;
  left: 512.49px;
  width: 25.51px;
  height: 19.3px;
}

.shape-2 {
  top: 367.88px;
  left: 503px;
  width: 32.72px;
  height: 27.84px;
}

.shape-3 {
  top: 363px;
  left: 510.4px;
  width: 20.95px;
  height: 6.05px;
}

.shape-4 {
  top: 367.86px;
  left: 507.87px;
  width: 20.42px;
  height: 17.23px;
}

.shape-5 {
  top: 375.88px;
  left: 511.22px;
  width: 19.64px;
  height: 15.4px;
}

.slide-indicators-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
}

.slide-indicators {
  display: flex;
  gap: 10px;
  margin-left: 250px;
}

.indicator {
  cursor: pointer;
  font-size: 52px;
  line-height: 0px;
  user-select: none;
  transition: color 0.3s;
}

@media (max-width: 992px) {
  .case-left-title {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
  }

  .case-left-subtitle {
    position: absolute;
    top: 210px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
  }
}

@media (max-width: 1068px) {
  .case-card {
    position: absolute;
    width: 385px;
    border-radius: 15px;
  }
}

/* Responsive styles for the eighth section */
@media (max-width: 1024px) {
  .case-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 20px;
    position: relative;
  }

  .case-background,
  .case-gray-strip {
    position: static;
    height: auto;
    border-radius: 0;
    width: 100%;
  }

  .case-left-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .case-left-box,
  .case-left-badge {
    position: static;
    width: 90%;
    max-width: 330px;
    padding: 20px;
    margin-bottom: 10px;
  }

  .case-card {
    position: static;
    width: 90%;
    max-width: 580px;
    border-radius: 15px;
    margin-bottom: 15px;
    padding: 20px;
  }

  .case-title,
  .case-text {
    text-align: center;
    padding: 10px 0;
  }

  .case-title-challenge {
    top: 275px;
    left: 308px;
  }

  .case-text-challenge {
    top: 305px;
    width: auto;
    left: 98px;
  }

  .case-title-solution {
    top: 390px;
    left: 345px;
  }

  .case-title-outcome {
    top: 540px;
    left: 345px;
  }

  .case-text-solution {
    top: 415px;
    left: 90px;
  }

  .case-text-outcome {
    top: 590px;
    left: 110px;
  }

  .case-icon {
    position: static;
    width: 63px;
    height: 63px;
    margin: 10px auto;
    display: none;
  }

  .case-icon img {
    width: 30px;
  }

  .shape-1,
  .shape-2,
  .shape-3,
  .shape-4,
  .shape-5 {
    display: none;
  }

  .slide-indicators {
    margin-left: 0;
    justify-content: center;
  }
}

@media (max-width: 800px) {
  .case-container {
    height: auto;
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .case-text {
    font-size: 14px;
    line-height: 22px;
  }

  .case-left-title,
  .case-left-subtitle {
    font-size: 16px;
  }

  .case-card {
    padding: 15px;
  }

  .indicator {
    font-size: 36px;
  }

  .case-container {
    padding: 20px 10px;
    height: auto;
    overflow: hidden;
  }

  .case-background,
  .case-gray-strip {
    height: auto;
  }

  .case-card {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
  }

  .case-title,
  .case-text {
    text-align: left;
    padding: 0 10px;
    font-size: 14px;
    line-height: 20px;
  }

  .case-title {
    font-weight: 600;
  }

  .case-left-subtitle {
    left: 195px;
    top: 30%;
    font-size: 16px;
    line-height: 20px;
  }

  .case-left-title {
    left: 220px;
    top: 75px;
    font-size: 16px;
  }

  .case-icon {
    width: 50px;
    height: 50px;
    margin-left: 10px;
  }

  .case-title-challenge {
    left: 14px;
    top: 40%;
  }

  .case-title-solution {
    top: 58%;
    left: 14px;
  }

  .case-title-outcome {
    left: 14px;
    top: 82%;
  }

  .case-text-challenge {
    left: 14px;
    top: 43%;
  }

  .case-text-outcome {
    top: 85%;
    left: 14px;
    width: 320px;
  }

  .case-text-solution {
    left: 14px;
    top: 62%;
  }
}

/* Contract Drafting Page CSS  */
/* first section Contact Drafting page */
.cd-section {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(51, 141, 251, 0.78)),
    url('../img/contract-drafting-banner.webp') no-repeat center center;
  background-size: cover;
  width: 100%;
  padding: 20px 40px;
  margin-top: 140px;
  background-position: center 136px;
}

.cd-section h1 {
  color: #fff;
  font-size: 40px;
  width: 510px;
  margin-top: -50px;
}

.cd-section p {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin: 20px 0;
  width: 650px;
  text-align: justify;
}

.cd-section p::after {
  content: "";
  display: block;
  width: 230px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0 10px 0;
  border-radius: 6px;
}

.cd-section h5 {
  font-size: 1rem;
  color: #fff;
}

.cd-btn {
  background-color: #ffffff;
  color: #407BFF;
  border-radius: 12px;
  padding: 10px 30px;
  font-weight: 600;
  border: none;
}

.cd-info-box {
  background-color: #fff;
  border-radius: 16px;
  color: #000;
  padding: 5px 25px 15px 25px;
}

.cd-info-box span {
  margin-top: 25px;
}

.cd-icon {
  width: 105px;
  height: auto;
}

.cd-form-wrapper {
  background: #fff;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.cd-form-header {
  background: #007bff;
  padding: 20px;
  text-align: center;
  color: #fff;
  font-weight: 600;
}

.cd-form-body {
  padding: 20px;
}

.cd-form-control {
  border-radius: 5px;
  margin-bottom: 15px;
}

.form-control {
  border: 1px solid #D9D9D9;
  padding: 10px;
  border-radius: 6px;
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  color: #A19E9E;
}

.cd-submit-btn {
  background: #007bff;
  color: white;
  padding: 10px;
  width: 100%;
  border-radius: 10px;
  border: none;
}

@media (max-width: 1024px) {
  .cd-section {
    margin-top: 200px;
    height: 67vh;
    padding: 20px 20px;
    background-position: center 0px;
  }

  .cd-section h1 {
    margin-top: 0;
  }

  .cd-section p {
    width: 400px;
  }

  .cd-form-wrapper {
    margin-left: 0px;
  }
}

@media (max-width: 800px) {
  .cd-section {
    margin-top: 0px;
    height: 80vh;
  }

  .cd-form-wrapper {
    margin-left: -14px;
  }
}

@media (max-width: 767px) {
  .cd-section {
    background-position: center 0px;
    margin-top: 0;
  }

  .cd-character-img {
    display: none;
  }

  .cd-section h1 {
    font-size: 1.75rem;
    width: 340px;
    margin-top: 0;
  }

  .cd-section p {
    font-size: 0.95rem;
    width: 340px;
  }

  .cd-info-box {
    padding: 15px;
  }

  .cd-info-box .d-flex {
    gap: 10px !important;
  }

  .cd-icon {
    width: 100px;
  }

  .cd-info-box span {
    margin-top: 0px;
    font-size: 13px;
  }

  .cd-form-wrapper {
    margin-top: 20px;
    margin-left: 10px;
  }
}

/* Second section Contact Drafting page  */
.contract-services-section {
  background: #fff;
}

.contract-services-section h2 {
  font-weight: 700;
  font-size: 24px;
  position: relative;
  text-align: center;
}

.contract-services-section h2::after {
  content: "";
  display: block;
  width: 260px;
  height: 5px;
  background: #338DFB;
  margin: 8px auto 0;
  border-radius: 4px;
}

.contract-services-description {
  color: #111;
  font-size: 20px;
  font-weight: 500;
}

.contract-service-item .service-heading {
  position: relative;
}

.heading-text {
  background: #338DFB;
  color: #fff;
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 2px;
  font-size: 20px;
  position: relative;
  z-index: 2;
  width: 950px;
  clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0% 100%);
}

.heading-arrows {
  display: flex;
  margin-left: -10px;
}

.service-features {
  max-width: 945px;
  margin-left: 10%;
}

.service-features li {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .contract-services-section {
    background: #fff;
    margin-top: 10px;
  }

  .heading-text {
    width: 350px;
  }

  .service-features {
    margin-left: 3%;
  }
}

/* thired section of contract drafting page */
.contracts-section {
  position: relative;
}

.contracts-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.highlight-bar {
  display: block;
  width: 335px;
  height: 6px;
  background-color: #4285f4;
  margin: 8px auto 0;
  border-radius: 4px;
}

.contract-card.left {
  background-image: url('../img/left-massage-shape.webp');
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  padding: 15px;
  border-radius: 20px;
  position: relative;
  width: 320px;
  height: 140px;
}

.contract-card.right {
  background-image: url('../img/right-massage-shape.webp');
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  padding: 15px;
  border-radius: 20px;
  position: relative;
  width: 320px;
  height: 140px;
}

.contract-card h3 {
  font-size: 18px;
  font-weight: 600;
  width: 210px;
}

.contract-card p {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 0;
  width: 210px;
}

.contract-card.right h3 {
  margin-left: 90px;
}

.contract-card.right p {
  margin-left: 90px;
}

.business-man-mna {
  height: 450px;
}

@media (max-width:768px) {
  .business-man-mna {
    height: 250px;
  }

  .contract-card.left {
    margin-right: 20px;
  }
}

/* Fourth section of contract drafting page */
.cdp-process-section {
  padding: 40px 0;
  text-align: center;
}

.cdp-highlight-bar {
  display: block;
  width: 130px;
  height: 6px;
  background-color: #4285f4;
  margin: 0 auto 20px;
  border-radius: 3px;
}

.cdp-process-section .cpd-para {
  font-size: 20px;
  font-weight: 500;
}

.cdp-step-box {
  padding: 40px 50px;
  border-radius: 20px;
  position: relative;
  transition: transform 0.3s ease;
  width: 315px;
  height: 266px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.row>div:nth-child(1) .cdp-step-box {
  background-image: url('../img/our-process-div-contract-1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.row>div:nth-child(2) .cdp-step-box {
  background-image: url('../img/our-process-div-contract-2.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.row>div:nth-child(3) .cdp-step-box {
  background-image: url('../img/our-process-div-contract-3.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.row>div:nth-child(4) .cdp-step-box {
  background-image: url('../img/our-process-div-contract-4.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cdp-step-box:hover {
  transform: translateY(-10px);
}

.cdp-step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -50px auto 15px;
  position: relative;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cdp-step-title {
  font-weight: 600;
  font-size: 18px;
  margin-top: 10px;
}

.cdp-step-desc {
  color: #6b7280;
  font-size: 16px;
  margin-top: 6px;
}

@media (max-width:1068px) {
  .cdp-step-box {
    padding: 40px 40px;
    width: 230px;
  }
}

@media (max-width: 768px) {
  .cdp-step-box {
    margin: auto;
  }

  .cdp-process-section .row {
    margin-right: 0 !important;
  }
}

/* 5th section */
.shareholder-section-after-title {
  padding: 20px 0 20px 20px;
}

.shareholders-head {
  font-size: 22px;
  font-weight: 600;
}

.shareholders-para {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: justify;
  color: rgba(0, 0, 0, 0.7);
}

.important-clauses {
  font-size: 20px;
  font-weight: 600;
}

.clauses-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.clauses-bg {
  width: 760px;
  height: auto;
  display: block;
}

.clauses-bg-phone {
  display: none;
}

.clause-text {
  position: absolute;
  color: #000;
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 500;
  width: 18%;
}

.clause-1 {
  top: 4%;
  left: 20%;
}

.clause-2 {
  top: 4%;
  left: 40%;
}

.clause-3 {
  top: 4%;
  left: 59%;
}

.clause-4 {
  top: 4%;
  right: 4%;
}

.clause-5 {
  bottom: 8%;
  left: 29%;
}

.clause-6 {
  bottom: 12%;
  left: 49%;
}

.clause-7 {
  bottom: 12%;
  right: 14%;
}

@media (max-width: 991px) {
  .clause-text {
    width: 22%;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .clauses-wrapper {
    padding: 10px 20px;
    align-items: stretch;
    max-width: 450px;
    height: 1010px;
  }

  .clauses-bg {
    display: none;
  }

  .clauses-bg-phone {
    display: block;
    margin-bottom: 20px;
    width: 330px;
    position: absolute;
  }

  .clause-text {
    display: block;
    width: 30%;
    font-size: 14px;
    text-align: left;
    margin-bottom: 15px;
  }

  .clause-1 {
    top: 1%;
    left: 27%;
  }

  .clause-2 {
    top: 1%;
    left: 65%;
  }

  .clause-3 {
    top: 27%;
    left: 28%;
  }

  .clause-4 {
    top: 24%;
    right: 4%;
  }

  .clause-5 {
    bottom: 39%;
    left: 28%;
  }

  .clause-6 {
    bottom: 41%;
    left: 66%;
  }

  .clause-7 {
    bottom: 14%;
    right: 41%;
  }
}

/* 6th section */
.founder-agreement-section {
  position: relative;
  z-index: 1;
  background-color: #E8EFFF;
  border-radius: 10px;
  margin-left: 22%;
  box-shadow: 0 4px 4px 0 #00000040;
}

.founder-agreement-section h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  background-color: rgba(51, 141, 251, 0.21);
  padding: 10px 0px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 20px;
}

.founder-agreement-section h2::after {
  content: "";
  display: block;
  width: 245px;
  height: 5px;
  background-color: #338dfb;
  margin: 5px auto 10px auto;
  border-radius: 2px;
}

.founder-agreement-section .d-flex.justify-content-around.align-items-center {
  margin-bottom: 30px;
}

.founder-agreement-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 20px;
}

.founder-agreement-row .item:nth-child(5) {
  grid-column: 2 / span 1;
  margin-left: -110px;
}

.founder-agreement-row .item:nth-child(6) {
  grid-column: 3 / span 1;
  margin-left: -105px;
}

.founder-agreement-row .item:nth-child(7) {
  grid-column: 4 / span 1;
  margin-left: -105px;
}

.clauses-shapes.col-md-6 {
  width: 46%;
}

.custom-box {
  border-radius: 10px;
  border-width: 2px !important;
  position: relative;
  border: 2px solid #338dfb;
  text-align: justify;
}

.shadow-under {
  width: 295px;
  height: 15px;
  background: radial-gradient(rgba(0, 0, 0, 0.3), transparent 80%);
  margin: -10px auto 0;
  border-radius: 50%;
  filter: blur(1px);
  z-index: 0;
  margin-top: 30px;
}

.clause-box {
  border-radius: 12px;
  font-weight: 500;
  text-align: center;
  position: relative;
  z-index: 1;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gradient-blue {
  background-image: url('../img/clauses-structure-shape-2.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 20px;
}

.gradient-purple {
  background-image: url('../img/clauses-structure-shape-1.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 20px;
}

@media (max-width: 1199px) {

  .founder-agreement-row .item:nth-child(5),
  .founder-agreement-row .item:nth-child(6),
  .founder-agreement-row .item:nth-child(7) {
    grid-column: auto;
    margin-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 800px) {
  .founder-agreement-section {
    width: 100%;
    margin-left: 0;
  }

  .founder-agreement-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .founder-agreement-section {
    width: 100%;
    margin-left: 0;
  }

  .founder-agreement-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .founder-agreement-row {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .clause-box {
    width: 100%;
    max-width: 300px;
    height: auto;
    padding: 20px;
  }

  .founder-agreement-section h2 {
    font-size: 20px;
  }

  .founder-agreement-section h5 {
    font-size: 18px;
    text-align: center;
  }

  .founder-agreement-section .d-flex.justify-content-around.align-items-center {
    flex-direction: column;
    padding: 20px;
    margin-bottom: 0px;
  }

  .clauses-shapes.col-md-6 {
    width: 100%;
    margin-bottom: 30px;
  }

  .shadow-under {
    display: none;
  }
}

/* 7th Section: Employment Contracts */
.employment-contract-section {
  position: relative;
  z-index: 1;
  background-color: #E8EFFF;
  border-radius: 10px;
  margin-left: 22%;
  box-shadow: 0 4px 4px 0 #00000040;
  margin-bottom: 30px;
}

.employment-contract-section h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  background-color: rgba(51, 141, 251, 0.21);
  padding: 10px 0px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 20px;
}

.employment-contract-section h2::after {
  content: "";
  display: block;
  width: 245px;
  height: 5px;
  background-color: #338dfb;
  margin: 5px auto 10px auto;
  border-radius: 2px;
}

.employment-contract-cards {
  position: relative;
  width: 200px;
  height: 200px;
}

.employment-contract-cards .outer-border-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  border: 1px solid #22aadd;
  border-bottom: none;
  box-sizing: border-box;
}

.employment-contract-cards .outer-border-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  border: 7px solid #22aadd;
  border-top: none;
  box-sizing: border-box;
}

.employment-contract-cards .inner-top {
  position: absolute;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(50% - 20px);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border: 7px solid #22aadd;
  border-bottom: none;
  background-color: white;
  box-sizing: border-box;
}

.employment-contract-cards .inner-bottom {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(50% - 20px);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  border: 7px solid #22aadd;
  border-top: none;
  background-color: white;
  box-sizing: border-box;
}

.employment-contract-cards .text-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.employment-contract-cards:hover .outer-border-bottom {
  border: 1px solid #22aadd;
  border-top: none;
}

.employment-contract-cards:hover .outer-border-top {
  border: 7px solid #22aadd;
  border-bottom: none;
}

.employment-contract-cards:hover .inner-top,
.employment-contract-cards:hover .inner-bottom {
  border: none;
  box-shadow: 0px 3px 4px 0 rgba(0, 0, 0, 0.25);
}

.employment-overview-wrap {
  margin-bottom: 30px;
}

.employment-shapes.col-md-6 {
  width: 46%;
  background-color: #338dfb;
  border-radius: 10px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.employment-shapes img {
  width: 160px;
  height: 160px;
  padding-right: 10px;
}

.employment-shapes p {
  font-size: 14px;
}

.employment-contract-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 20px;
}

.employment-contract-row .item:nth-child(5) {
  grid-column: 2 / span 1;
  margin-left: -105px;
}

.employment-contract-row .item:nth-child(6) {
  grid-column: 3 / span 1;
  margin-left: -105px;
}

.employment-contract-row .item:nth-child(7) {
  grid-column: 4 / span 1;
  margin-left: -105px;
}

.clause-box-7 {
  border-radius: 15px;
  font-weight: 500;
  text-align: center;
  position: relative;
  z-index: 1;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 4px solid #02B1F7;
  padding: 20px;
}

@media (max-width: 1199px) {
  .employment-shapes.col-md-6 {
    flex-direction: column;
  }

  .employment-contract-row .item:nth-child(5),
  .employment-contract-row .item:nth-child(6),
  .employment-contract-row .item:nth-child(7) {
    grid-column: auto;
    margin-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 800px) {
  .employment-contract-section {
    margin-left: 0%;
  }
}

@media (max-width: 767px) {
  .employment-contract-section {
    width: 100%;
    margin-left: 0;
  }

  .employment-contract-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
    padding: 20px;
  }

  .employment-contract-cards {
    position: relative;
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 576px) {
  .employment-contract-row {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .clause-box-7 {
    width: 100%;
    max-width: 300px;
    height: auto;
    padding: 20px;
  }

  .employment-contract-section h2 {
    font-size: 20px;
  }

  .employment-contract-section h5 {
    font-size: 18px;
    text-align: center;
  }

  .employment-overview-wrap {
    flex-direction: column;
    padding: 20px;
    margin-bottom: 0px;
  }

  .employment-shapes.col-md-6 {
    width: 100%;
    margin-bottom: 30px;
  }

  .shadow-under {
    display: none;
  }
}

/* 8th section  */
.vendor-agreement-section {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  margin-left: 22%;
  box-shadow: 0 4px 4px 0 #00000040;
  background-color: #E8EFFF;
  margin-bottom: 30px;
}

.vendor-agreement-section h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  background-color: rgba(51, 141, 251, 0.21);
  padding: 10px 0px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 20px;
}

.vendor-agreement-section h2::after {
  content: "";
  display: block;
  width: 350px;
  height: 5px;
  background-color: #338dfb;
  margin: 5px auto 10px auto;
  border-radius: 2px;
}

.vendor-overview-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  padding: 20px;
}

.vendor-box {
  background: linear-gradient(#407BFF, #A2CCFF);
  border-radius: 10px;
  flex: 1;
  padding: 15px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}

.vendor-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
  object-fit: cover;
  height: 120px;
}

.vendor-box h6 {
  font-weight: bold;
  margin-bottom: 8px;
}

.vendor-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  text-align: justify;
}

.vendor-clause-heading {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  margin-left: 20px;
}

.vendor-clauses-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  padding-top: 0;
}

.vendor-clauses-img img {
  width: 400px;
  height: 370px;
  border-radius: 10px;
}

.custom-marker-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  display: grid;
  gap: 10px;
}

.custom-marker-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  padding-bottom: 10px;
}

.custom-marker-list .marker {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  background-color: #111;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .vendor-overview-row {
    flex-direction: column;
    gap: 20px;
  }

  .vendor-clauses-row {
    align-items: flex-start;
    padding: 20px;
  }

  .vendor-clauses-img {
    width: 350px;
    height: auto;
  }

  .vendor-clauses-img img {
    width: 100%;
    height: auto;
  }

  .custom-marker-list {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .vendor-agreement-section {
    width: 100%;
    margin-left: 0;
  }

  .vendor-agreement-section h2 {
    font-size: 20px;
    padding: 8px 0;
  }

  .vendor-box p {
    font-size: 13px;
  }

  .custom-marker-list li {
    font-size: 16px;
  }

  .custom-marker-list .marker {
    width: 24px;
    height: 24px;
    font-size: 16px;
  }

  .vendor-clause-heading {
    font-size: 16px;
    margin-left: 10px;
  }

  .vendor-clauses-row {
    align-items: flex-start;
    padding: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .vendor-clauses-row {
    padding: 15px;
  }

  .custom-marker-list {
    gap: 8px;
  }

  .vendor-clause-heading {
    margin-left: 0;
    text-align: center;
  }
}

/* 9th section  */
.nda-container {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  margin-left: 22%;
  box-shadow: 0 4px 4px 0 #00000040;
  background-color: #E8EFFF;
  margin-bottom: 30px;
}

.nda-container h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  background-color: rgba(51, 141, 251, 0.21);
  padding: 10px 0px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 20px;
}

.nda-container h2::after {
  content: "";
  display: block;
  width: 380px;
  height: 5px;
  background-color: #338dfb;
  margin: 5px auto 10px auto;
  border-radius: 2px;
}

.nda-top,
.nda-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  max-width: 800px;
  margin: auto;
}

.nda-top img,
.nda-section img {
  max-width: 210px;
}

.nda-section-content {
  max-width: 60%;
}

.nda-section-content h5 {
  font-size: 20px;
  font-weight: 600;
}

.nda-section-content p {
  font-size: 16px;
  font-weight: 500;
  text-align: justify;
}

.important-clauses {
  margin-left: 90px;
  font-weight: bold;
}

.nda-clauses {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 30px;
  padding-top: 0px;
}

.nda-illustration img {
  width: 400px;
  height: 370px;
}

.nda-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nda-list li {
  border: 1.5px solid #338DFB;
  border-radius: 10px;
  padding: 7px 15px;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
}

.clause-num {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid #338DFB;
  background-color: #E8EFFF;
  font-size: 13px;
  font-weight: bold;
  margin-right: 12px;
  margin-left: -30px;
}

@media (min-width: 1750px) and (max-width: 2500px) {
  .important-clauses {
    margin-left: 24%;
    font-weight: bold;
  }
}

@media (max-width: 1024px) {
  .nda-container h2::after {
    width: auto;
  }

  .nda-section {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    text-align: center;
  }

  .founder-agreement-row {
    gap: 10px;
  }

  .employment-contract-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
  }

  .nda-top {
    flex-direction: column-reverse;
    align-items: center;
    max-width: 100%;
    text-align: center;
  }

  .nda-section-content {
    max-width: 90%;
  }

  .important-clauses {
    margin-left: 30px;
  }

  .nda-clauses {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .nda-illustration {
    width: 350px;
  }

  .nda-illustration img {
    width: 100%;
    height: auto;
  }

  .nda-list {
    width: 100%;
    padding: 0 20px;
  }

  .nda-list li {
    font-size: 16px;
    padding: 10px 15px;
  }

  .clause-num {
    width: 30px;
    height: 30px;
    font-size: 12px;
    margin-left: 0;
  }
}

@media (min-width:768px) and (max-width: 800px) {
  .nda-container {
    width: 94%;
    margin-left: 3%;
  }
}

@media (max-width: 767px) {
  .nda-container {
    width: 100%;
    margin-left: 0;
  }

  .nda-container h2 {
    font-size: 20px;
  }

  .nda-section-content h5 {
    font-size: 18px;
  }

  .nda-section-content p {
    font-size: 14px;
  }

  .important-clauses {
    font-size: 16px;
    margin-left: 20px;
  }

  .clause-num {
    margin-right: 10px;
  }
}

/* 10th section  */
.contract-section {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  margin-left: 22%;
  box-shadow: 0 4px 4px 0 #00000040;
  background-color: #E8EFFF;
  margin-bottom: 30px;
}

.contract-heading {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  background-color: rgba(51, 141, 251, 0.21);
  padding: 10px 0px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 20px;
}

.contract-heading::after {
  content: "";
  display: block;
  width: 380px;
  height: 5px;
  background-color: #338dfb;
  margin: 5px auto 10px auto;
  border-radius: 2px;
}

.contract-overview {
  padding: 0 40px;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.image-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  width: 300px;
  height: 175px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 100px;
}

.overlay-text {
  background-color: #338dfb;
  color: white;
  padding: 15px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  font-size: 14px;
  width: 88%;
  position: absolute;
  top: 70%;
  left: 6%;
  text-align: justify;
}

.contract-box {
  flex: 1;
  min-width: 300px;
}

.box-inner {
  padding: 20px;
}

.contract-clause-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px 40px;
}

.clause-card {
  border: 2px solid #338DFB;
  border-radius: 15px;
  width: 210px;
  height: 160px;
  position: relative;
}

.clause-card p {
  width: 190px;
  height: 140px;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  margin: auto;
  margin-top: 8px;
  border-radius: 15px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.clause-card p:hover {
  margin: 0;
  font-size: 18px;
  width: 206px;
  height: 155px;
  padding: 10px;
}

.badge-num {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #338DFB;
  color: #fff;
  width: 110px;
  height: 45px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
}

@media (max-width: 1024px) {
  .contract-overview {
    padding: 0 20px;
    gap: 20px;
  }

  .contract-clause-grid {
    gap: 15px;
    padding: 20px;
  }

  .clause-card {
    width: 45%;
  }

  .clause-card p {
    width: 100%;
    height: 130px;
  }

  .clause-card p:hover {
    width: 100%;
    height: 145px;
  }
}

@media (max-width: 768px) {
  .contract-section {
    width: 94%;
    margin-left: 3%;
  }

  .contract-heading {
    font-size: 20px;
    padding: 8px 0;
  }

  .contract-heading::after {
    width: 200px;
  }

  .contract-overview {
    padding: 0 15px;
    height: 480px;
  }

  .clause-card {
    width: 100%;
    height: auto;
  }

  .clause-card p {
    width: 100%;
    height: auto;
    font-size: 15px;
    padding: 15px;
  }

  .clause-card p:hover {
    font-size: 16px;
    padding: 20px;
  }

  .badge-num {
    width: 90px;
    height: 40px;
    font-size: 15px;
  }

  .overlay-text {
    font-size: 13px;
    width: 90%;
    left: 5%;
    padding: 10px;
  }

  .image-card {
    width: 100%;
    height: 150px;
  }
}

/* IPR - Patent Services css  */
.hero-section {
  background: url('/img/petent-services-banner.webp') no-repeat center right;
  background-size: cover;
  max-height: 80vh;
  padding: 10px 0;
  position: relative;
  margin-top: 140px;
}

.hero-section-patent {
  max-width: 1200px;
  margin: auto;
}

.hero-section-patent .text-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero-section-patent .text-content .highlighted {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: #3f7eff;
  text-decoration-thickness: 5px;
  display: inline-block;
  margin-top: 2px;
}

.hero-section-patent .text-content p {
  font-size: 18px;
  margin-top: 20px;
  line-height: 1.6;
  max-width: 90%;
}

.form-container.form-box-patent {
  max-width: 300px;
}

.marquee-container.patent-marquee span {
  padding: 0 30px;
}

@media (min-width: 1800px) and (max-width:2500px) {
  .hero-section {
    background: url('/img/petent-services-banner-large.webp') no-repeat center right;
    background-size: cover;
  }

  .hero-section-patent {
    max-width: 1500px;
    margin: auto;
  }
}

@media (max-width:1024px) {
  .hero-section {
    margin-top: 200px;
    background: url('/img/petent-services-banner-large.webp') no-repeat center right;
  }

  .hero-section-patent {
    max-width: 400px;
    margin: 0;
    padding: 0;
    padding-left: 20px;
  }

  .form-container.form-box-patent {
    max-width: 325px;
  }
}

@media (min-width: 768px) and (max-width: 800px) {
  .hero-section {
    margin-top: 0px;
  }

  .patent-form-tablet {
    max-width: 368px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    min-height: 105vh;
    padding: 10px 15px;
    margin-top: 0px;
    width: 100%;
    flex-direction: column;
  }

  .hero-section-patent {
    padding: 0;
  }

  .hero-section-patent .text-content h1 {
    font-size: 2.2rem;
  }

  .hero-section-patent .text-content p {
    font-size: 16px;
    max-width: 100%;
  }

  .form-container.form-box-patent {
    max-width: 100%;
  }

  .hero-section-patent .text-content {
    padding: 0;
  }
}

/* second section of patent services  */
.patent-image {
  width: auto;
  max-width: 100%;
  height: 250px;
}

.patent-services-second-content {
  background: linear-gradient(to right, rgba(64, 123, 255, 0), rgba(64, 123, 255, 0.50));
  padding: 20px 40px 0px 20px;
}

@media (max-width: 1024px) {
  .patent-services-second-content {
    padding: 20px 20px 0px 20px;
  }

  .shareholder-section-after-title .col-md-4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: auto;
  }

  .patent-image {
    width: 180px;
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .shareholder-section-after-title .col-md-4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: auto;
  }

  .patent-image {
    width: 300px;
    max-width: 100%;
    height: auto;
  }
}

/* thired section of patent services  */
.restructuring-sections {
  position: relative;
  z-index: 1;
  background-color: #E8EFFF;
  /* width: 986px; */
  border-radius: 10px;
  margin-left: 22%;
}

.restructuring-titles {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  background-color: rgba(51, 141, 251, 0.21);
  padding: 10px 0px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 20px;
}

.restructuring-titles::after {
  content: "";
  display: block;
  width: 270px;
  height: 5px;
  background-color: #338dfb;
  margin: 5px auto 10px auto;
  border-radius: 2px;
}

.step-by-step-process {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 30px;
}

.step-by-step-process img {
  width: 550px;
}

@media (max-width: 768px) {

  .restructuring-sections {
    width: 100%;
    margin-left: 0%;
  }

  .step-by-step-process img {
    width: 100%;
    height: auto;
  }

  .step-by-step-process {
    flex-direction: column;
    align-items: center;
  }
}

/* 4th section of patent services  */
.patent-section {
  position: relative;
  z-index: 1;
  background-color: #E8EFFF;
  /* width: 986px; */
  border-radius: 10px;
  margin-left: 22%;
  box-shadow: 0 4px 4px 0 #00000040;
}

.patent-section h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  background-color: rgba(51, 141, 251, 0.21);
  padding: 10px 0px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 20px;
}

.patent-section h2::after {
  content: "";
  display: block;
  width: 270px;
  height: 5px;
  background-color: #338dfb;
  margin: 5px auto 10px auto;
  border-radius: 2px;
}

.patent-feature-box {
  background: #ADD2FF;
  padding: 10px;
  border-radius: 50px;
  text-align: center;
  max-width: 330px;
  margin: 10px auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  position: relative;
  border-width: 2px 2px 0 0;
  border-style: solid;
}

.patent-feature-box strong {
  font-size: 16px;
  color: #000;
  display: block;
  margin-bottom: 0px;
}

.patent-feature-box span {
  font-size: 14px;
  color: #455A64;
}

.patent-feature-top {
  margin-bottom: 110px;
  margin-top: 50px;
}

.patent-highlight-cta {
  background-color: #407BFF;
  color: white;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  display: inline-block;
  margin-top: 60px;
}

.patent-character {
  max-width: 600px;
  position: absolute;
  top: 17%;
  z-index: -1;
  left: 20%;
}

.patent-feature-wrapper {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: 0 20px;
  margin-top: 30px;
}

.patent-illustration img {
  max-width: 280px;
}

.patent-dotted-line {
  border-left: 2px dashed #3a77f3;
  height: 40px;
  margin: auto;
}

.patent-section-title {
  font-weight: 600;
  color: #1d3b8b;
}

@media (max-width: 768px) {
  .patent-section {
    width: 100%;
    margin-left: 0;
  }

  .patent-feature-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .patent-character {
    max-width: 300px;
    top: 10%;
    left: 10%;
  }

  .patent-highlight-cta {
    margin-top: 0px;
    margin-bottom: 10px;
  }
}

/* 5th section  */
.patent-fifth-section {
  background-color: #E8EFFF;
  /* width: 986px; */
  border-radius: 10px;
  margin-left: 22%;
  box-shadow: 0 4px 4px 0 #00000040;
}

@media (max-width: 768px) {
  .patent-fifth-section {
    width: 100%;
    margin-left: 0;
  }
}

/* 6th section  */
.steps-container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 40px;
}

.patent-prosecution {
  margin-top: 8%;
}

.step-item-process {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  min-height: 160px;
  padding: 15px;
  height: 200px;
  position: relative;
  width: 650px;
  margin-top: -14%;
}

.step-item-process.step-draft {
  background-image: url('../img/patent_layer_1.webp');
}

.step-item-process.step-draft {
  background-image: url('../img/patent_layer_1.webp');
}

.step-item-process.step-filing {
  background-image: url('../img/patent_layer_2.webp');
}

.step-item-process.step-exam {
  background-image: url('../img/patent_layer_3.webp');
}

.step-item-process.step-response {
  background-image: url('../img/patent_layer_4.webp');
}

.step-item-process.step-grant {
  background-image: url('../img/patent_layer_5.webp');
}

.step-draft-content {
  position: absolute;
  top: 48%;
  left: 20%;
  max-width: 60%;
}

.steps-container h3 {
  font-size: 17px;
  font-weight: 500;
  color: white;
}

.steps-container p {
  font-weight: 500;
  color: white;
  font-size: 15px;
}

.lawyer-img {
  max-width: 250px;
}

@media (max-width: 1199px) {
  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .lawyer-img {
    max-width: 100px;
  }

  .step-item-process {
    padding: 15px;
    height: 165px;
    position: relative;
    width: 360px;
    margin-top: 0%;
  }

  .step-draft-content {
    top: 44%;
    left: 14%;
    max-width: 85%;
  }

  .steps-container h3 {
    font-size: 15px;
  }

  .steps-container p {
    font-size: 12px;
  }
}

/* 7th section */
.psl-wrapper {
  display: flex;
  align-items: start;
  padding: 40px 20px;
  gap: 40px;
  height: 80vh;
}

.psl-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.psl-step {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  min-height: 160px;
  width: 500px;
}

.psl-step-1 {
  background-image: url('../img/prosecution-advantages-1.webp');
  position: absolute;
  width: 640px;
  top: -30px;
  left: -115px;
}

.psl-step-2 {
  background-image: url('../img/prosecution-advantages-2.webp');
  width: 565px;
  position: absolute;
  left: -40px;
  top: 125px;
}

.psl-step-3 {
  background-image: url('../img/prosecution-advantages-3.webp');
  width: 500px;
  position: absolute;
  top: 235px;
  left: 25px;
}

.psl-step-4 {
  background-image: url('../img/prosecution-advantages-4.webp');
  width: 570px;
  position: absolute;
  left: -45px;
  top: 330px;
}

.psl-step-5 {
  background-image: url('../img/prosecution-advantages-5.webp');
  width: 660px;
  position: absolute;
  left: -135px;
  bottom: -585px;
}

.psl-step-content {
  flex: 1;
  padding: 20px 25px;
  color: white;
  position: relative;
  margin-left: 12%;
}

.psl-title {
  font-size: 18px;
  font-weight: 600;
}

.psl-description {
  font-size: 14px;
}

.psl-step-1 .psl-step-content {
  margin-top: 12%;
  margin-left: 18%;
}

.psl-step-2 .psl-step-content {
  margin-top: 4%;
  margin-left: 20%;
}

.psl-step-3 .psl-step-content {
  margin-top: 4%;
  margin-left: 23%;
}

.psl-step-4 .psl-step-content {
  margin-top: 5%;
  margin-left: 24%;
}

.psl-step-5 .psl-step-content {
  margin-top: 6%;
  margin-left: 20%;
}

.patent-section-img-fluid {
  max-width: 400px;
  margin-top: 18%;
}

@media (max-width: 1024px) {
  .psl-wrapper {
    flex-direction: column;
    height: 68vh;
  }

  .patent-section-img-fluid {
    max-width: 400px;
    margin-top: -2%;
    margin-left: 15%;
  }

  .psl-step-1 {
    width: 600px;
    top: -30px;
    left: 5px;
  }

  .psl-step-2 {
    width: 560px;
    left: 45px;
  }

  .psl-step-3 {
    left: 105px;
  }

  .psl-step-4 {
    left: 35px;
  }

  .psl-step-5 {
    width: 620px;
    left: -14px;
  }
}

@media (min-width: 768px) and (max-width: 800px) {
  .psl-wrapper {
    flex-direction: column;
    height: 86vh;
  }
}

@media (max-width: 767px) {
  .psl-wrapper {
    flex-direction: column;
    padding: 20px;
    height: 90vh;
  }

  .psl-step {
    flex-direction: column;
  }

  .psl-step-1 {
    width: 350px;
    top: -44px;
    left: -15px;
  }

  .psl-step-2 {
    width: 350px;
    left: -15px;
    top: 45px;
  }

  .psl-step-3 {
    width: 350px;
    top: 118px;
    left: -15px;
  }

  .psl-step-4 {
    width: 350px;
    left: -15px;
    top: 180px;
  }

  .psl-step-5 {
    width: 350px;
    left: -15px;
    bottom: -400px;
  }

  .psl-step-number {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    width: 100%;
  }

  .patent-section-img-fluid {
    max-width: 100%;
    margin-top: 0%;
    margin-left: 0;
  }

  .psl-title {
    font-size: 12px;
    font-weight: 600;
  }

  .psl-description {
    font-size: 12px;
  }

  .psl-step-1 .psl-step-content {
    margin-top: 17%;
  }

  .psl-step-2 .psl-step-content {
    margin-top: 9%;
  }

  .psl-step-3 .psl-step-content {
    margin-top: 8%;
    margin-left: 18%;
  }

  .psl-step-4 .psl-step-content {
    margin-top: 10%;
  }

  .psl-step-5 .psl-step-content {
    margin-top: 12%;
    margin-left: 10%;
  }
}

/* 9th section  8th have styling same as the 5th have */
.licensing-steps-container .row {
  margin-right: 0;
  margin-left: 40px;
}

.licensing-card {
  position: relative;
  background-color: white;
  border-radius: 15px;
  padding: 0px 0px 0px 30px;
  box-shadow: 0px 4px 15px 0 rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
  margin-bottom: 5px;
  width: 90%;
  height: 115px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.licensing-card-border {
  position: absolute;
  top: 8px;
  left: 8px;
  width: calc(100% + 0px);
  height: calc(100% + 0px);
  border-radius: 15px 0px;
  border-right: 2px solid rgba(51, 141, 251, 0.8);
  border-bottom: 2px solid rgba(51, 141, 251, 0.8);
  border-left: none;
  border-top: none;
  z-index: 1;
  pointer-events: none;
}

.licensing-step-number {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(51, 141, 251, 0.6);
  color: #000;
  font-weight: bold;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 24px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.licensing-step-title {
  font-weight: 700;
  font-size: 18px;
  color: #000;
}

.licensing-step-desc {
  font-size: 16px;
  font-weight: 400;
  color: #333;
}

@media (max-width: 768px) {
  .licensing-step-number {
    left: 15px;
  }

  .licensing-card {
    padding-left: 60px;
    height: auto;
  }
}

/* 10th section  */
.timeline {
  position: relative;
  margin: 30px auto;
  margin-left: 22%;
  background-color: #E8EFFF;
  border-radius: 10px;
  box-shadow: 0 4px 4px 0 #00000040;
}

.timeline h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  background-color: rgba(51, 141, 251, 0.21);
  padding: 10px 0px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 20px;
}

.timeline h2::after {
  content: "";
  display: block;
  width: 270px;
  height: 5px;
  background-color: #338dfb;
  margin: 5px auto 10px auto;
  border-radius: 2px;
}

.timeline-line {
  position: absolute;
  width: 170px;
  background-image: url('../img/middle-tree-img.webp');
  background-repeat: no-repeat;
  background-size: 170px auto;
  top: 12%;
  bottom: 0;
  left: 42%;
  z-index: 1;
  margin-left: -2px;
  margin-bottom: 2%;
}

.timeline-tenth {
  margin-top: 10%;
  padding-bottom: 5%;
}

.timeline-item {
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: 55%;
  margin-right: 0px;
  padding: 10px 70px 10px 40px;
  margin-top: -5%;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 10%;
  padding: 10px 0px 10px 80px;
  margin-top: -6%;
}

.timeline-content {
  width: 340px;
  height: 150px;
  background-color: #B9DCFF;
  border-radius: 15px;
  padding: 20px;
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.timeline-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: green;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -1px;
}

.corner-badge {
  position: absolute;
  width: 80px;
  height: 82px;
  border-radius: 30px 0px 70% 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 15px;
  font-weight: bold;
  color: white;
  box-shadow: 5px 5px #CDE6FF;
}

.corner-badge.badge-green {
  border-radius: 0 30px 0 70%;
  top: -5px;
  right: -5px;
  box-shadow: -5px 5px #CDE6FF;
  background-color: #FEBF32;
}

.corner-badge.badge-orange {
  border-radius: 0 30px 0 70%;
  top: -5px;
  right: -5px;
  box-shadow: -5px 5px #CDE6FF;
  background-color: #53C3D1;
}

.corner-badge.badge-purple {
  border-radius: 0 30px 0 70%;
  top: -5px;
  right: -5px;
  box-shadow: -5px 5px #CDE6FF;
  background-color: #7865AD;
}

.badge-yellow {
  background-color: #B5D555;
  top: -5px;
  left: -5px;
}

.badge-teal {
  background-color: #F79544;
  top: -5px;
  left: -5px;
}

.timeline-content h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.timeline-content p {
  color: #495057;
  margin-bottom: 0;
}

@media (min-width: 1800px) and (max-width:2500px) {
  .timeline-item:nth-child(odd) .timeline-content {
    margin-left: 55%;
    margin-right: 0px;
    padding: 10px 70px 10px 40px;
    margin-top: 1%;
  }

  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 17%;
  }

  .hero-section {
    min-height: 65vh;
  }

  .patent-character {
    max-width: 600px;
    position: absolute;
    top: 17%;
    z-index: -1;
    left: 30%;
  }

  .psl-wrapper {
    display: flex;
    align-items: start;
    padding: 40px 20px;
    gap: 330px;
    height: 68vh;
  }
}

@media (max-width:1024px) {
  .patent-character {
    max-width: 500px;
    position: absolute;
    top: 17%;
    z-index: -1;
    left: 8%;
  }

  .timeline-item:nth-child(odd) .timeline-content {
    margin-left: 45%;
  }

  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 0%;
    margin-top: 0%;
  }

  .timeline-line {
    width: 165px;
    background-size: 150px auto;
    top: 10%;
    bottom: 0;
    left: 34%;
  }
}

@media (max-width: 768px) {
  .timeline {
    width: 100%;
    margin-left: 0%;
  }

  .timeline-line {
    display: none;
  }

  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 40px !important;
    margin-right: 0 !important;
    margin-top: 30px !important;
  }
}

/* 12th section */
.process-timeline {
  width: 100%;
  max-width: 795px;
  height: 700px;
  position: relative;
  margin: 0 auto;
}

.process-stage {
  position: absolute;
  height: 73px;
  display: flex;
  align-items: center;
  border-radius: 25px;
}

.stage-left-aligned {
  left: 0;
}

.stage-right-aligned {
  right: 0;
}

.identification-stage {
  width: 690px;
  top: 45px;
  background-color: #F7941D;
}

.cease-desist-stage {
  width: 690px;
  top: 177.77px;
  background-color: #ED1C24;
}

.negotiation-stage {
  width: 650px;
  top: 311px;
  background-color: #603913;
}

.lawsuit-stage {
  width: 690px;
  top: 444px;
  background-color: #1C75BC;
}

.enforcement-stage {
  width: 690px;
  top: 577px;
  background-color: #00B5B5;
}

.stage-icon-container {
  position: absolute;
  width: 130px;
  height: 118px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 36px 36px 0 0;
}

.stage-icon {
  width: 60px;
  height: 60px;
}

.stage-number {
  position: absolute;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
}

.number-left-positioned {
  left: 16px;
  top: 20px;
}

.identification-icon {
  left: 50px;
  top: -44px;
  background-color: #FFCB05;
}

.cease-desist-icon {
  right: 50px;
  top: -45px;
  background-color: #FF535A;
}

.number-right-positioned {
  right: 16px;
  top: 17px;
}

.negotiation-icon {
  left: 50px;
  top: -45px;
  background-color: #C26532;
}

.lawsuit-icon {
  right: 50px;
  top: -45px;
  background-color: #27AAE1;
}

.enforcement-icon {
  left: 50px;
  top: -45px;
  background-color: #00D0DB;
}

.stage-content {
  padding: 0 20px;
}

.stage-title {
  color: white;
  font-size: 18px;
  font-weight: 700;
}

.stage-description {
  color: white;
  font-size: 18px;
  font-weight: 300;
}

.shadow-overlay {
  position: absolute;
  width: 169.14px;
  height: 72.90px;
  background: linear-gradient(0deg, black 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.2;
}

.overlay-left {
  left: 31px;
}

.overlay-right {
  right: 31px;
}

.left-aligned-content {
  margin-left: 212px;
}

.right-aligned-content {
  text-align: right;
  margin-right: 212px;
}

@media (max-width: 1024px) {
  .identification-stage {
    width: 620px;
  }

  .cease-desist-stage {
    width: 620px;
  }

  .negotiation-stage {
    width: 620px;
  }

  .lawsuit-stage {
    width: 620px;
  }

  .enforcement-stage {
    width: 620px;
  }
}

@media (max-width: 768px) {
  .process-timeline {
    height: auto;
    padding-bottom: 50px;
  }

  .process-stage {
    position: relative;
    width: 100% !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    margin-bottom: 70px;
  }

  .stage-icon-container {
    top: -60px !important;
    left: 0 !important;
    right: auto !important;
    width: 100px;
    height: 90px;
  }

  .stage-number {
    top: 0px !important;
    left: 66px !important;
    right: auto !important;
  }

  .stage-content {
    text-align: left !important;
    margin-left: 20px !important;
    margin-right: 20px !important;
  }

  .shadow-overlay {
    display: none;
  }

  .process-stage {
    height: 100px;
  }
}

/* 13th section */
.patent-services-container {
  max-width: 970px;
  margin: 0 auto;
}

.patent-services-container .patent-row {
  margin-right: 0;
  display: flex;
  flex-wrap: wrap;
}

.patent-services-container .patent-row>* {
  padding-right: 0;
}

.patent-row-4th {
  margin-right: 5rem !important;
}

.patent-service-card {
  background: linear-gradient(to right, rgba(210, 218, 222, 1), rgba(241, 243, 244, 1));
  border-radius: 12px 0 0 12px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  position: relative;
}

.patent-service-number {
  position: absolute;
  right: -50px;
  top: 0;
  bottom: 0;
  width: 50px;
  border-radius: 0 12px 12px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.patent-service-title {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 15px;
}

.patent-service-description {
  font-size: 16px;
}

.patent-number-1 {
  background: linear-gradient(to right, rgba(240, 175, 61, 1), rgba(253, 216, 83, 1));
}

.patent-number-2 {
  background: linear-gradient(to right, rgba(234, 99, 53, 1), rgba(245, 135, 101, 1));
}

.patent-number-3 {
  background: linear-gradient(to right, rgba(91, 167, 87, 1), rgba(127, 194, 106, 1));
}

.patent-number-4 {
  background: linear-gradient(to right, rgba(20, 168, 196, 1), rgba(112, 201, 211, 1));
}

.patent-number-5 {
  background: linear-gradient(to right, rgba(49, 105, 159, 1), rgba(75, 135, 185, 1));
}

@media (max-width: 768px) {
  .patent-service-card {
    margin-right: 0px;
    margin-left: -50px;
    width: 300px;
  }


  .patent-row-4th {
    margin-right: 8rem !important;
  }

}

@media (max-width: 767px) {
  .patent-services-container .patent-row {
    flex-direction: column;
  }

  .patent-service-card {
    margin-right: 0px;
    margin-left: 75px;
  }

  .patent-service-number {
    right: 75px;
  }

  .patent-character {
    left: 3%;
  }

}

/* Startup Advisory Second Section CSS  */
.startup-first-sec {
  margin-top: 50px;
}

.startup-content-box {
  background-color: #E8EFFF;
  border-radius: 12px 12px 0 0;
  position: relative;
  z-index: -2;
}

.startup-section-after-title {
  padding: 30px;
}

.startup-second-image {
  width: 400px;
  max-width: 100%;
  height: 100%;
}

.container-startup {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.message-box-startup {
  background-color: #b9e0ff;
  padding: 20px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  border-radius: 10px;
}

.bottom-bar-startup {
  background-color: #6698ff;
  height: 15px;
  width: 90%;
  margin: auto;
  border-radius: 0px 0 10px 10px;
}

@media (max-width: 768px) {
  .startup-first-sec {
    margin-top: 25px;
  }
}

/* thired Section Startup Advisory CSS  */
.startup-thired-sec {
  width: 77.8%;
  margin-left: 22.2%;
  background-color: #E8EFFF;
}

.startup-thired-sec h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  background-color: rgba(51, 141, 251, 0.21);
  padding: 15px 0 5px 0;
  margin-bottom: 20px;
}

.startup-thired-sec h2::after {
  content: "";
  display: block;
  width: 200px;
  height: 5px;
  background-color: #338dfb;
  margin: 5px auto 10px auto;
  border-radius: 2px;
}

.startup-advisory-thired-sec {
  padding: 3rem 0;
}

.startup-advisory-thired-sec .advisory-service-card {
  background: #fff;
  border: 10px solid #3b82f6;
  border-radius: 10px;
  padding: 12px 10px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.startup-advisory-thired-sec .advisory-service-card-top::before {
  content: '';
  width: 0;
  height: 0;
  border: 15px solid transparent;
  border-bottom-color: #3b82f6;
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
}

.startup-advisory-thired-sec .advisory-service-card-bottom::before {
  content: '';
  width: 0;
  height: 0;
  border: 15px solid transparent;
  border-top-color: #3b82f6;
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
}

.startup-advisory-thired-sec .icon-container {
  width: 55px;
  height: 55px;
  margin: 0 auto;
}

.startup-advisory-thired-sec .advisory-card-title {
  font-weight: 400;
  font-size: 18px;
  margin-top: 15px;
  width: 140%;
  margin-left: -28px;
}

.startup-advisory-thired-sec .top-title {
  position: absolute;
  top: -85px;
  width: 130%;
}

.startup-advisory-thired-sec .top-row {
  margin-bottom: 2rem;
  margin-top: 50px;
  gap: 125px;
  margin-right: 0 !important;
}

.startup-advisory-thired-sec .bottom-row {
  gap: 130px;
  margin-right: 0 !important;
}

@media (min-width:768px) and (max-width:800px) {
  .startup-thired-sec {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .startup-thired-sec {
    width: 100%;
    margin-left: 0;
    background-color: #E8EFFF;
  }

  .startup-advisory-thired-sec {
    padding: 0rem 0;
  }

  .startup-advisory-thired-sec .top-title {
    position: static;
    width: 100%;
    margin-top: 15px;
    text-align: center;
  }

  .startup-advisory-thired-sec .advisory-card-title {
    width: 100%;
    margin-left: 0;
    font-size: 16px;
  }

  .startup-advisory-thired-sec .top-row,
  .startup-advisory-thired-sec .bottom-row {
    gap: 1.5rem !important;
    margin-left: 0;
  }

  .startup-advisory-thired-sec .advisory-service-card {
    margin-bottom: 2rem;
  }

  .startup-fifth-content-column {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding-right: 0 !important;
    margin-left: 0;
  }
}

/* fourth section  */
.engagement-benefits-sec {
  background-color: #f0f5ff;
  width: 77.8%;
  max-width: 77.8%;
  padding-right: 0 !important;
  margin-left: 22.2%;
  padding-bottom: 50px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.engagement-benefits-sec h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  background-color: rgba(51, 141, 251, 0.21);
  padding: 15px 0 5px 0;
  margin-bottom: 20px;
}

.engagement-benefits-sec h2:after {
  content: "";
  display: block;
  width: 200px;
  height: 5px;
  background-color: #338dfb;
  margin: 5px auto 10px auto;
  border-radius: 2px;
}

.engagement-benefits-sec .row {
  margin-right: 1px;
}

.benefit-row {
  position: relative;
  height: 250px;
}

.benefit-item {
  position: absolute;
  width: 150px;
}

.benefit-content {
  position: absolute;
  top: 0%;
  left: 24%;
  transform: translate(60%, 70%);
  color: white;
  border-radius: 20px;
  z-index: 2;
  font-size: 12px;
}

.benefit-icon img {
  width: 250px;
  height: auto;
  z-index: 1;
}

.benefit-item.benefit-1 {
  left: 6%;
}

.benefit-item.benefit-2 {
  left: 23%;
}

.benefit-item.benefit-3 {
  left: 40%;
}

.benefit-item.benefit-4 {
  left: 57%;
}

.benefit-item.benefit-5 {
  left: 75%;
}

@media (min-width: 1800px) and (max-width: 2500px) {
  .benefit-item.benefit-1 {
    left: 18%;
  }

  .benefit-item.benefit-2 {
    left: 28%;
  }

  .benefit-item.benefit-4 {
    left: 52%;
  }

  .benefit-item.benefit-5 {
    left: 64%;
  }
}

@media (min-width: 764px) and (max-width: 1068px) {
  .engagement-benefits-sec {
    background-color: #f0f5ff;
    width: 77.8%;
    max-width: 77.8%;
    padding-right: 0 !important;
    margin-left: 22%;
  }

  .benefit-item.benefit-1 {
    left: 0%;
  }

  .benefit-item.benefit-2 {
    left: 18%;
  }

  .benefit-item.benefit-3 {
    left: 36%;
  }

  .benefit-item.benefit-4 {
    left: 54%;
  }

  .benefit-item.benefit-5 {
    left: 69%;
  }

}

@media (max-width: 768px) {
  .engagement-benefits-sec {
    background-color: #f0f5ff;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .benefit-item {
    position: static;
    width: 300px;
  }

  .benefit-row {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .benefit-content {
    position: static;
    transform: translate(68%, -50%);
    color: white;
    border-radius: 20px;
    z-index: 2;
    font-size: 18px;
    width: 190px;
  }

  .benefit-icon img {
    width: 280px;
    rotate: 44deg;
    margin-left: 20px;
    margin-bottom: -140px;
  }

  .benefit-item.benefit-2 {
    margin-top: -105px;
  }

  .benefit-item.benefit-3 {
    margin-top: -80px;
  }

  .benefit-item.benefit-4 {
    margin-top: -105px;
  }

  .benefit-item.benefit-5 {
    margin-top: -80px;
  }
}

@media (max-width: 480px) {
  .benefit-icon img {
    width: 250px;
  }

}

/* fifth section of startup  */
.startup-fifth-content-column {
  flex: 0 0 auto;
  width: 77.8%;
  max-width: 77.8%;
  padding-right: 0 !important;
  margin-left: 22.2%;
}

@media (max-width: 768px) {
  .startup-fifth-content-column {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding-right: 0 !important;
    margin-left: 0;
  }
}

/* sixth sectio of startup */
.startup-six-sec-benefits-wrapper {
  position: relative;
  width: 100%;
  background: #E8EFFF;
  padding: 50px 0;
}

.startup-six-sec-center-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.startup-six-sec-semi-circle {
  position: absolute;
  width: 300px;
  z-index: 1;
  text-align: center;
  color: #000;
}

.startup-six-sec-text {
  font-size: 18px;
  font-weight: 400;
  padding: 10px;
}

.startup-six-sec-semi-circle-1 {
  top: 0px;
  left: 27%;
  transform: translateX(-30%);
}

.startup-six-sec-semi-circle-2 {
  top: 0%;
  right: 0%;
  transform: translateX(-58%);
}

.startup-six-sec-semi-circle-3 {
  bottom: 30px;
  left: 15%;
  transform: translateX(-45%);
}

.startup-six-sec-semi-circle-4 {
  bottom: 10px;
  right: 35%;
}

.startup-six-sec-semi-circle-5 {
  bottom: 10px;
  right: 0;
}

@media (min-width: 1800px) and (max-width: 2500px) {
  .startup-six-sec-center-circle {
    height: 500px;
  }

  .startup-six-sec-semi-circle-1 {
    transform: translateX(4%);
  }

  .startup-six-sec-semi-circle-2 {
    transform: translateX(-135%);
  }

  .startup-six-sec-semi-circle-3 {
    transform: translateX(10%);
  }

  .startup-six-sec-semi-circle-4 {
    right: 39%;
  }

  .startup-six-sec-semi-circle-5 {
    bottom: 10px;
    right: 15%;
  }

}

@media (max-width: 1023px) {
  .startup-six-sec-benefits-wrapper {
    padding: 130px 0;
  }

  .startup-six-sec-semi-circle {
    width: 226px;
  }

  .startup-six-sec-semi-circle-1 {
    left: 28%;
    transform: translateX(-30%);
    top: 10%;
  }

  .startup-six-sec-semi-circle-2 {
    top: 6%;
    right: 1%;
  }

  .startup-six-sec-semi-circle-3 {
    bottom: 65px;
    left: 15%;
  }

  .startup-six-sec-semi-circle-4 {
    right: 35%;
    top: 78%;
  }

  .startup-six-sec-semi-circle-5 {
    top: 78%;
    right: 1%;
  }
}

@media (max-width: 767px) {
  .startup-six-sec-benefits-wrapper {
    padding: 130px 0;
  }

  .startup-six-sec-semi-circle {
    width: 170px;
  }

  .startup-six-sec-semi-circle-1 {
    left: 20%;
    transform: translateX(-30%);
    top: 8%;
  }

  .startup-six-sec-semi-circle-2 {
    top: 2%;
    right: -14%;
  }

  .startup-six-sec-semi-circle-3 {
    bottom: 50px;
    left: 15%;
  }

  .startup-six-sec-semi-circle-4 {
    bottom: -2px;
    right: 28%;
  }

  .startup-six-sec-semi-circle-5 {
    top: 66%;
    right: 0%;
  }
}

/* seventh section of startup  */
.bma-benefits-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.bma-benefits-row {
  width: 100%;
  display: flex;
  justify-content: center;
}

.bma-benefit-item {
  position: relative;
  width: 45%;
  max-width: 500px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bma-benefit-bg {
  position: absolute;
  width: 80%;
  height: 100px;
  left: 70px;
  z-index: 1;
  clip-path: polygon(20px 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0px 100%, 0 0%);
  border-radius: 5px;
}

.bma-benefit-content {
  position: absolute;
  width: calc(100% - 40px);
  height: 80px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  z-index: 2;
  clip-path: polygon(20px 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 20px 100%, 0 50%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
}

.bma-yellow .bma-benefit-bg {
  background: linear-gradient(rgba(251, 204, 31, 1), rgba(252, 154, 13, 1));
}

.bma-green .bma-benefit-bg {
  background: linear-gradient(rgba(96, 180, 24, 1), rgba(58, 149, 21, 1));
}

.bma-blue .bma-benefit-bg {
  background: linear-gradient(rgba(41, 129, 199, 1), rgba(20, 101, 167, 1));
}

.bma-pink .bma-benefit-bg {
  background: linear-gradient(rgba(247, 104, 153, 1), rgba(248, 65, 127, 1));
}

.bma-purple .bma-benefit-bg {
  background: linear-gradient(rgba(171, 80, 156, 1), rgba(200, 112, 185, 1));
}

.bma-benefits-bottom-row {
  width: 100%;
  display: flex;
  justify-content: center;
}

.bma-benefits-bottom-row .bma-benefit-item {
  width: 600px;
  max-width: 600px;
}

@media (max-width: 768px) {
  .bma-benefits-row {
    flex-direction: column;
    align-items: center;
  }

  .bma-benefit-item {
    width: 90%;
    max-width: 400px;
  }

  .bma-benefits-bottom-row .bma-benefit-item {
    width: 90%;
  }
}

/* eighth section of startup  */
.startup-eighth-image {
  max-width: 100%;
  height: 330px;
  padding-left: 40px;
  margin-top: -35px;
}

/* nineth section of startup  */
.esop-structuring-scope-of-services-container {
  width: 100%;
  padding: 50px 0;
}

.esop-structuring-scope-of-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 20px;
  padding: 0 7%;
}

.esop-structuring-scope-of-services-grid-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0 30%;
}

.esop-structuring-scope-of-services-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.esop-structuring-scope-of-services-box {
  width: 120px;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  transform: skewX(20deg);
  box-shadow: 0 10px 0px rgba(0, 0, 0, 0.35);
}

.esop-structuring-scope-of-services-box:hover {
  transform: skewX(20deg) scale(1.05);
}

.esop-structuring-scope-of-services-icon {
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: skewX(-20deg);
}

.esop-structuring-scope-of-services-icon img {
  width: 55px;
  height: 55px;
}

.esop-structuring-scope-of-services-title {
  margin-left: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #333;
  width: 110px;
}

.esop-structuring-scope-of-services-blue {
  background-color: #2171f5;
}

.esop-structuring-scope-of-services-green {
  background-color: #41c7a7;
}

.esop-structuring-scope-of-services-yellow {
  background-color: #f5b120;
}

.esop-structuring-scope-of-services-navy {
  background-color: #1e4169;
}

.esop-structuring-scope-of-services-red {
  background-color: #d74036;
}

@media (min-width: 768px) and (max-width: 1068px) {
  .esop-structuring-scope-of-services-item {
    gap: 0px;
  }
}

@media (max-width: 768px) {

  .esop-structuring-scope-of-services-grid,
  .esop-structuring-scope-of-services-grid-bottom {
    grid-template-columns: 1fr;
  }

  .esop-structuring-scope-of-services-grid-bottom {
    padding: 0;
  }

  .esop-structuring-scope-of-services-box {
    width: 120px;
  }
}

/* tenth section */
.startup-tenth-section-benefits-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.startup-tenth-section-benefit-item {
  width: 160px;
  position: relative;
  margin: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.startup-tenth-section-circle {
  border-radius: 50%;
  width: fit-content;
  padding: 2px;
}

.startup-tenth-section-circle p {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.startup-tenth-section-content-box {
  background-color: white;
  padding: 30px 10px;
  text-align: center;
  margin-top: -25px;
  position: relative;
  z-index: 1;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.startup-tenth-section-benefit-text {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.startup-tenth-section-color-1 {
  background-color: #1abc9c;
}

.startup-tenth-section-color-2 {
  background-color: #f39c12;
}

.startup-tenth-section-color-3 {
  background-color: #c0392b;
}

.startup-tenth-section-color-4 {
  background-color: #2980b9;
}

.startup-tenth-section-color-5 {
  background-color: #9b59b6;
}

.startup-tenth-section-benefit-color-img-1 img {
  width: 180px;
  position: absolute;
  z-index: 0;
  left: -10px;
  top: 155px;
}

@media (min-width:1800px) and (max-width: 2500px) {
  .startup-tenth-section-benefits-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
}

/* 12th section of startup  */
.start-india-scope {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 50px;
}

.start-india-scope .scope {
  width: 190px;
  position: relative;
  transition: transform 0.3s ease;
}

.start-india-scope .scope:hover {
  transform: translateY(-10px);
}

.scope-container {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.start-india-scope .scope img {
  width: 100%;
  height: 100%;
  display: block;
}

.start-india-scope .scope-1 {
  margin-left: -10px;
}

.start-india-scope .scope p {
  text-align: center;
  font-weight: 500;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  position: absolute;
  width: 135px;
  left: 29%;
  top: 30%;
}

/* 13th section */
.start-india-benefits {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 20px;
  gap: 30px;
}

.start-india-benefits .benefits {
  width: 160px;
  position: relative;
  transition: transform 0.3s ease;
}

.start-india-benefits .benefits:hover {
  transform: translateY(-10px);
}

.benefits-container {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.start-india-benefits .benefits img {
  width: 100%;
  height: 100%;
  display: block;
}

.start-india-benefits .benefits p {
  text-align: center;
  font-weight: 500;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  position: absolute;
  width: 135px;
  left: 8%;
  top: 40%;
}

/* 14th section */
.startup-angle-tax-after-title {
  padding: 0px 30px;
}

@media (max-width: 768px) {
  .startup-angle-tax-after-title {
    padding: 20px 20px;
  }
}

/* 15th section */
.angel-tax-advisory {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  gap: 20px;
}

.angel-tax-advisory .scopess {
  width: 170px;
  position: relative;
  transition: transform 0.3s ease-in-out;
}

.angel-tax-advisory .scopess:hover {
  transform: translateY(-10px);
}

.scopess-container {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.angel-tax-advisory .scopess img {
  width: 100%;
  height: 100%;
  display: block;
}

.angel-tax-advisory .scopess p {
  text-align: center;
  font-weight: 500;
  color: #000;
  font-size: 16px;
  line-height: 1.4;
  position: absolute;
  width: 135px;
  left: 10%;
  top: 50%;
}

@media (max-width: 768px) {
  .angel-tax-advisory {
    gap: 10px;
  }
}

/* 16th section */
.angle-advisory-scope {
  height: 104px;
  width: 400px;
  position: relative;
  margin-top: 20px;
}

.angle-advisory-scope img {
  height: 100%;
  width: 100%;
}

.angle-advisory-scope p {
  font-weight: 500;
  color: #000;
  font-size: 16px;
  line-height: 1.4;
  position: absolute;
  width: 275px;
  left: 10%;
  top: 35%;
}

/* 18th section */
.due-diligence-investors-scope {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  gap: 20px;
}

.due-diligence-investors-scope .scopess {
  width: 170px;
  position: relative;
  transition: transform 0.3s ease-in-out;
}

.due-diligence-investors-scope .scopess:hover {
  transform: translateY(-10px);
}

.due-diligence-investors-scope .scopess img {
  width: 100%;
  height: 100%;
  display: block;
}

.due-diligence-investors-scope .scopess p {
  text-align: start;
  font-weight: 500;
  color: #000;
  font-size: 16px;
  line-height: 1.4;
  position: absolute;
  width: 105px;
  left: 32%;
  top: 50%;
}

@media (max-width: 768px) {
  .due-diligence-investors .benefits-grid {
    display: block !important;
  }

  .due-diligence-investors-scope {
    gap: 15px;
  }
}

/* 19th section */
.due-diligence-investors {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.due-diligence-investors .benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.due-diligence-investors .hexagon-card {
  position: relative;
  width: 380px;
  height: 182px;
}

.due-diligence-investors .hexagon-card img {
  width: 100%;
  height: 100%;
}

.due-diligence-investors .benefit-bottom {
  grid-column: 1 / span 2;
  justify-self: center;
  max-width: 500px;
}

.hexagon-card p {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: #333;
  position: absolute;
  top: 35%;
  width: 260px;
  left: 20%;
}

/* 21st section */
.ssx_con {
  display: flex;
  justify-content: center;
  padding: 0 20px 150px;
  flex-wrap: wrap;
}

.ssx_con1 {
  width: 188px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 235px;
  text-align: center;
}

.ssx_con1 img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.ssx_con1 p {
  margin: 0;
  padding: 5px;
  font-size: 15px;
}

.placeholder {
  min-height: 5em !important;
}

@media (min-width: 768px) and (max-width: 1068px) {
  .due-diligence-investors .hexagon-card {
    position: relative;
    width: 350px;
    height: 182px;
  }

  .ssx_con1 {
    width: 148px;
  }
}

@media (max-width: 768px) {
  .ssx_con {
    padding: 0 0 25px;
  }

  .ssx_con1 {
    width: 170px;
    height: 300px;
    margin-bottom: 50px;
  }

  .due-diligence-investors .hexagon-card {
    width: 360px;
  }
}

/* 22nd section */
.exit-agreement-benefit {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.exit-agreement-benefit .benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.exit-agreement-benefit .hexagon-card {
  position: relative;
  width: 450px;
  height: 130px;
}

.exit-agreement-benefit .hexagon-card img {
  width: 100%;
  height: 100%;
}

.exit-agreement-benefit .benefit-bottom {
  grid-column: 1 / span 2;
  justify-self: center;
  max-width: 500px;
}

.exit-agreement-benefit .hexagon-card p {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  color: #333;
  position: absolute;
  top: 48%;
  width: 295px;
  left: 5%;
}

@media (max-width:1086px) {
  .exit-agreement-benefit .hexagon-card {
    position: relative;
    width: 390px;
    height: 130px;
  }
}

@media (max-width: 768px) {
  .exit-agreement-benefit .benefits-grid {
    display: block !important;
  }

  .exit-agreement-benefit .hexagon-card {
    width: 360px;
    /* margin-left: 30px; */
  }

  .exit-agreement-benefit .hexagon-card p {
    left: 10px;
    top: 50%;
  }
}

/* twenty-four section */
.ipo-prepration-scope {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  gap: 0px;
}

.ipo-prepration-scope .scopess {
  width: 188px;
  position: relative;
  transition: transform 0.3s ease-in-out;
}

.ipo-prepration-scope .scopess img {
  width: 100%;
  height: 100%;
  display: block;
}

.ipo-prepration-scope .scopess p {
  text-align: center;
  color: #000;
  font-size: 14px;
  line-height: 1.4;
  position: absolute;
  width: 138px;
  left: 10%;
  top: 45%;
}

@media (max-width: 768px) {
  .ipo-prepration-scope {
    gap: 10px;
    padding: 0px 0px;
  }
}

/* twenty-five section */
.ipo-prepration {
  height: 90px;
  width: 420px;
  position: relative;
  margin-top: 10px;
}

.ipo-prepration img {
  height: 100%;
  width: 100%;
}

.ipo-prepration p {
  font-weight: 500;
  color: #000;
  font-size: 16px;
  line-height: 1.4;
  position: absolute;
  width: 280px;
  left: 18%;
  top: 25%;
}

/* twenty-six section */
.share-buyback-scope {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 20px;
}

.share-buyback-scope .scopess {
  width: 188px;
  position: relative;
  transition: transform 0.3s ease;
}

.share-buyback-scope .scopess:hover {
  transform: translateY(-10px);
}

.scopess-container {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.share-buyback-scope .scopess img {
  width: 100%;
  height: 100%;
  display: block;
}

.share-buyback-scope .scopess p {
  text-align: center;
  font-weight: 500;
  color: #000;
  font-size: 14px;
  line-height: 1.4;
  position: absolute;
  width: 150px;
  left: 10%;
  top: 40%;
}

@media (max-width: 768px) {
  .share-buyback-scope {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0px 0px;
    gap: 10px;
  }
}

.placeholder-1 {
  display: inline-block;
  min-height: 7rem !important;
  vertical-align: middle;
  cursor: wait;
  background-color: currentcolor;
  opacity: .5;
}

/* Criminal Matters Page CSS  */
/* first section */
.criminal-first-section {
  background: url('../img/criminal-matters-banner.webp') no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 88vh;
  margin: 0;
  padding: 20px 40px;
  position: relative;
  margin-top: 140px;
}

.criminal-first-section h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 100%;
  width: 480px;
  margin-top: 25px;
}

.outline {
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 2px #3a8dff;
}

.criminal-first-section h4 {
  font-size: 32px;
  font-weight: 700;
  margin-top: 10px;
}

.criminal-first-section p {
  font-size: 20px;
  margin: 0;
  width: 530px;
  text-align: justify;
}

.criminal-form {
  margin-top: 0;
  margin-left: auto;
}

@media (min-width:1800px) and (max-width:2500px) {
  .criminal-first-section {
    background: url('../img/criminal-matters-banner-large.webp') no-repeat center center;
    height: 66vh;
    top: 140px;
    background-size: cover;
    margin-top: 0;
  }

  .criminal-first-section h1 {
    margin-top: 90px;
  }

  .criminal-form {
    margin-left: 40%;
    margin-top: 9%;
  }

  .mna-section-wrapper .mna-content-column {
    flex: 0 0 auto;
    width: 78%;
    max-width: 78%;
    padding-right: 0 !important;
    margin-left: auto;
    margin-top: 25px;
  }
}

@media (max-width: 1024px) {
  .criminal-first-section {
    height: 40vh;
    background: url(../img/criminal-matter-tablet-view.png) no-repeat center center;
    margin-top: 200px;
    top: 0;
    padding: 0 40px;
  }

  .criminal-first-section h1 {
    margin-top: 0;
  }

  .criminal-form {
    margin-top: 0%;
  }

  .criminal-first-section p {
    width: 440px;
  }
}

@media (min-width:768px) and (max-width: 800px) {
  .criminal-first-section {
    padding: 0px 20px;
    top: 0px;
    margin-top: 0;
    height: 47vh;
  }
}

@media (max-width: 767.98px) {
  .criminal-first-section {
    padding: 20px 20px;
    height: auto;
    background-size: cover;
    top: 0px;
    margin-top: 0;
    background: url(../img/criminal-matter-tablet-view.png) no-repeat center center;
  }

  .criminal-first-section h1,
  .criminal-first-section h4,
  .criminal-first-section p {
    width: 85% !important;
  }

  .criminal-first-section h1 {
    font-size: 32px;
    margin-top: 40px;
  }

  .criminal-first-section h4 {
    font-size: 24px;
  }

  .outline {
    font-weight: bold;
    color: transparent;
    -webkit-text-stroke: 2px #fff;
  }

  .criminal-first-section p {
    font-size: 16px;
  }
}

/* section section  */
.criminal-second-image {
  width: auto;
  max-width: 100%;
  height: 270px;
}

.criminal-second-para {
  font-size: 18px;
  padding: 0 10px;
  text-align: justify;
}

.criminal-second-sec {
  background-color: #E8EFFF;
  border-radius: 12px 12px 0 0;
}

/* thired section  */
.bail-services-section {
  background-color: #E8EFFF;
  width: 78%;
  max-width: 78%;
  padding-right: 0 !important;
  margin-left: 22%;
}

.bail-services-section h2 {
  font-size: 24px;
  font-weight: 600;
  background-color: rgba(51, 141, 251, 0.21);
  height: 80px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bail-services-section .row {
  margin-right: 0px;
  padding: 20px;
}

.bail-card {
  background: linear-gradient(to right, #3BB7FF, #89CDF5);
  padding: 0;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s;
  border-radius: 0 70px;
}

.bail-card:hover {
  transform: translateY(-3px);
}

.bail-card .icon {
  background: linear-gradient(to right, #3BB7FF, #89CDF5);
  padding: 10px;
  margin-right: 15px;
  flex-shrink: 0;
  border-radius: 0 75px;
  width: 150px;
  height: 88px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bail-card .icon img {
  width: 50px;
  height: 50px;
}

.bail-card p {
  margin: 0;
  font-size: 17px;
  color: #fff;
  font-weight: 500;
  padding: 0 10px 0 0;
}

@media (max-width: 1068px) {
  /* .bail-services-section {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  } */

  .bail-services-section h2 {
    width: 100%;
    padding: 0 20px;
  }

  .bail-card {
    width: 100%;
    height: auto;
    border-radius: 15px;
    padding: 10px;
    flex-direction: column;
    gap: 10px !important;
  }

  .bail-card .icon {
    width: 100%;
    height: auto;
    border-radius: 0;
    margin-right: 0;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .criminal-matters-scope-21 .col-md-6 {
    max-width: 100%;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 800px) {
  .criminal-first-section p {
    width: 390px;
  }

  .bail-services-section {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .bail-services-section {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .bail-services-section h2 {
    width: 100%;
  }

  .criminal-matters-scope-21 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .criminal-matters-scope-21 .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .bail-card {
    padding: 0;
    margin: 0;
    border-radius: 15px;
    height: auto;
    gap: 0 !important;
    flex-direction: column;
  }

  .bail-card .icon {
    width: 100%;
    height: auto;
    border-radius: 0 0 70px 70px;
    margin-right: 0;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .bail-card p {
    font-size: 16px;
    padding: 10px;
    text-align: center;
  }

}

/* fourth section */
.legal-reference-section .row {
  margin-right: 0px;
  padding: 0px;
}

.ref-box {
  background: #fff;
  padding: 8px 12px;
  height: 60px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 5px;
  border-left-width: 8px !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .legal-reference-section .row {
    margin-right: 0px;
    padding: 0px;
    margin-bottom: 0;
    margin-left: 0px;
  }
}

/* fifth section */
.legal-process {
  background-color: #E8EFFF;
  width: 78%;
  max-width: 78%;
  padding-right: 0 !important;
  margin-left: 22%;
  margin-top: -25px;
}

.legal-process h2 {
  font-size: 24px;
  background-color: rgba(51, 141, 251, 0.21);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.legal-process h2:after {
  content: "";
  display: block;
  width: 200px;
  height: 5px;
  background-color: #338dfb;
  margin: 5px auto 10px auto;
  border-radius: 2px;
}

.legal-process .row {
  margin-right: 0px;
  padding: 20px;
  --bs-gutter-y: 3.5rem;
  padding-bottom: 4rem;
}

.step-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  flex-shrink: 0;
  top: -20%;
  left: 0;
}

.step-content {
  background: white;
  padding: 10px 10px 10px 30px;
  border-radius: 10px;
  font-size: 14px;
  border-right-width: 4px !important;
  flex-grow: 1;
  width: 220px;
  height: 104px;
  display: flex;
  align-items: center;
  margin-left: 35%;
}

.step-circle p {
  border: 3px solid white;
  border-radius: 50%;
  padding: 28px 32px;
  margin-bottom: 0;
}

@media (max-width: 1028px) {
  .step-circle {
    width: 100px;
    height: 100px;
    top: 0%;
    left: 0px;
  }

  .step-circle p {
    padding: 18px 20px;
  }

  .step-content {
    margin-left: 30%;
  }
}

@media (min-width: 768px) and (max-width: 800px) {
  .legal-process {
    width: 100%;
    max-width: 100%;
    padding-right: 0 !important;
    margin-left: 0;
    margin-top: 0;
  }

}

@media (max-width: 767px) {
  .legal-process {
    width: 100%;
    max-width: 100%;
    padding-right: 0 !important;
    margin-left: 0;
    margin-top: 0;
  }

  .legal-process h2 {
    font-size: 20px;
    padding: 0 20px;
  }

  .step-circle {
    left: 20px;
  }
}

/* 6th section */
.why-choose-criminal-matters {
  background-color: #E8EFFF;
  width: 78%;
  max-width: 78%;
  padding-right: 0 !important;
  margin-left: 22%;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.why-choose-criminal-matters h2 {
  font-size: 24px;
  font-weight: 700;
  background-color: rgba(51, 141, 251, 0.21);
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.why-choose-criminal-matters h2:after {
  content: "";
  display: block;
  width: 200px;
  height: 5px;
  background-color: #338dfb;
  margin: 5px auto 0px auto;
  border-radius: 2px;
}

.bail-benefits-section {
  background-color: #e8f0ff;
}

.bail-benefits-section .row {
  margin-right: 0;
}

.benefits-list li {
  list-style: none;
  background: linear-gradient(to right, #3370ff, #e5e5fc);
  color: white;
  font-weight: 500;
  margin-bottom: 15px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  font-size: 15px;
}

.badge-circle {
  background: #00AEEE;
  color: white;
  font-weight: bold;
  font-size: 18px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .why-choose-criminal-matters {
    width: 100%;
    max-width: 100%;
    padding-right: 0 !important;
    margin-left: 0;
    margin-top: 0;
  }

  .why-choose-criminal-matters h2 {
    font-size: 20px;
    padding: 0 20px;
    width: 100%;
  }
}

/* 7th section */
.why-choose-criminal-matters-item {
  border-radius: 60px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
  padding: 15px 0 15px 20px;
  min-height: 100px;
  max-width: 310px;
  display: flex;
  align-items: center;
}

.why-choose-criminal-matters-item p {
  margin: 0;
  font-weight: 500;
  width: 150px;
  font-size: 14px;
}

.why-choose-criminal-matters-item.left {
  flex-direction: row;
  text-align: right;
}

.why-choose-criminal-matters-item.right {
  flex-direction: row-reverse;
  text-align: left;
}

.why-choose-criminal-matters-item.right p {
  margin-left: 70px;
}

.why-choose-criminal-matters-item.left.red {
  background: url('../img/criminal-matters-icons-1.webp') no-repeat left center;
  background-size: 255px 110px;
  background-position: center;
  margin-left: 16%;
}

.why-choose-criminal-matters-item.left.teal {
  background: url('../img/criminal-matters-icons-2.webp') no-repeat left center;
  background-size: 270px 110px;
  max-width: 270px;
}

.why-choose-criminal-matters-item.left.green {
  background: url('../img/criminal-matters-icons-3.webp') no-repeat left center;
  background-size: 255px 110px;
  background-position: center;
  margin-left: 16%;
}

.why-choose-criminal-matters-item.right.red {
  background: url('../img/criminal-matters-icons-4.webp') no-repeat right center;
  background-size: 255px 110px;
  background-position: center;
  margin-right: 16%;
}

.why-choose-criminal-matters-item.right.teal {
  background: url('../img/criminal-matters-icons-5.webp') no-repeat right center;
  background-size: 255px 110px;
  max-width: 255px;
  margin-left: 10%;
}

.why-choose-criminal-matters-item.right.green {
  background: url('../img/criminal-matters-icons-6.webp') no-repeat right center;
  background-size: 255px 110px;
  background-position: center;
  margin-right: 16%;
}

.why-choose-criminal-matters-center {
  background: white;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose-criminal-matters-center h4 {
  font-weight: bold;
  color: #444;
}

@media (min-width:1800px) and (max-width: 2560px) {
  .why-choose-criminal-matters-item.left.red {
    background-size: 355px 110px;
  }

  .why-choose-criminal-matters-item.left.green {
    background-size: 355px 110px;
  }

  .why-choose-criminal-matters-item.right.red {
    background-size: 355px 110px;
  }

  .why-choose-criminal-matters-item.right.green {
    background-size: 355px 110px;
  }

  .why-choose-criminal-matters-item.right.teal {
    margin-left: 13%;
  }

  .why-choose-criminal-matters-item.left.teal {
    margin-left: 15%;
  }
}

@media (min-width:768px) and (max-width: 1024px) {
  .why-choose-criminal-matters-item.left.red {
    background-size: 275px 110px;
    margin-left: -8%;
  }

  .why-choose-criminal-matters-item.left.green {
    margin-left: -6%;
  }

  .why-choose-criminal-matters-item.right.red {
    margin-right: -8%;
  }

  .why-choose-criminal-matters-item.right.teal {
    margin-left: -4%;
  }

  .why-choose-criminal-matters-item.right.green {
    margin-right: -8%;
  }
}

@media (max-width: 767px) {
  .why-choose-criminal-matters-item {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 15px 0 15px 10px;
    text-align: center;
  }

  .why-choose-criminal-matters-item.left p,
  .why-choose-criminal-matters-item.right p {
    margin-left: 0;
    width: 230px;
  }

  .why-choose-criminal-matters-item.left.red,
  .why-choose-criminal-matters-item.left.teal,
  .why-choose-criminal-matters-item.left.green,
  .why-choose-criminal-matters-item.right.red,
  .why-choose-criminal-matters-item.right.teal,
  .why-choose-criminal-matters-item.right.green {
    background-position: center;
    margin-left: auto;
    margin-right: auto;
    max-width: none;
    width: 365px;
  }

  .why-choose-criminal-matters-item.left.red {
    background-size: 375px 110px;
  }

  .why-choose-criminal-matters-item.left.teal {
    background-size: 375px 110px;
  }

  .why-choose-criminal-matters-item.left.green {
    background-size: 375px 110px;
  }

  .why-choose-criminal-matters-item.right.red {
    background-size: 375px 110px;
  }

  .why-choose-criminal-matters-item.right.teal {
    background-size: 375px 110px;
  }

  .why-choose-criminal-matters-item.right.green {
    background-size: 375px 110px;
  }

}

/* 8th section */
.Cheque-bounce-cases {
  background-color: #E8EFFF;
  width: 78%;
  max-width: 78%;
  padding-right: 0 !important;
  margin-left: 22%;
  margin-top: 30px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.Cheque-bounce-cases .row {
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 768px) {
  .Cheque-bounce-cases {
    width: 100%;
    max-width: 100%;
    padding-right: 0 !important;
    margin-left: 0;
    margin-top: 0;
  }
}

/* 9th section */
.cheque-bounce-scope-layout {
  position: relative;
  background: url('../img/cheque-baunce-scope.webp') no-repeat center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 95%;
  min-height: 460px;
  margin: 20px 0 0 20px;
}

.cheque-bounce-scope-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.cheque-bounce-scope-item {
  position: absolute;
  width: 240px;
  padding: 5px 10px;
  font-size: 14px;
}

.cheque-bounce-scope-item-1 {
  top: 10%;
  left: 5%;
}

.cheque-bounce-scope-item-2 {
  top: 33%;
  left: 2%;
}

.cheque-bounce-scope-item-3 {
  top: 55%;
  left: 0%;
}

.cheque-bounce-scope-item-4 {
  bottom: 9%;
  left: 7%;
}

.cheque-bounce-scope-item-5 {
  top: 12%;
  right: 4%;
}

.cheque-bounce-scope-item-6 {
  top: 33%;
  right: 0%;
}

.cheque-bounce-scope-item-7 {
  right: -1%;
  bottom: 30%;
}

.cheque-bounce-scope-item-8 {
  right: 6%;
  bottom: 12%;
}

.cheque-bounce-scope-center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cheque-bounce-scope-center-circle h5 {
  font-weight: 600;
}

@media (min-width: 1800px) and (max-width: 2500px) {
  .bail-services-section {
    padding-bottom: 30px;
  }

  .cheque-bounce-scope-item-1 {
    top: 3%;
    left: 15%;
  }

  .cheque-bounce-scope-item-2 {
    top: 31%;
    left: 12%;
  }

  .cheque-bounce-scope-item-3 {
    top: 57%;
    left: 11%;
  }

  .cheque-bounce-scope-item-4 {
    bottom: 4%;
    left: 16%;
  }

  .cheque-bounce-scope-item-5 {
    top: 5%;
    right: 15%;
  }

  .cheque-bounce-scope-item-6 {
    top: 32%;
    right: 12%;
  }

  .cheque-bounce-scope-item-7 {
    right: 12%;
    bottom: 29%;
  }

  .cheque-bounce-scope-item-8 {
    right: 16%;
    bottom: 5%;
  }
}

/* 10th section */
.cheque-scope-layout {
  position: relative;
  background: url('../img/Cheque-Bounce-&-Criminal-Proceedings.webp') no-repeat center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 640px;
}

.cheque-scope-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
}

.cheque-scope-item {
  position: absolute;
  width: 230px;
  padding: 10px 10px;
  font-size: 16px;
  color: #fff;
}

.cheque-scope-item-1 {
  top: 18%;
  left: 38.9%;
}

.cheque-scope-item-2 {
  top: 45%;
  left: 21%;
}

.cheque-scope-item-3 {
  bottom: 14%;
  left: 38%;
}

.cheque-scope-item-4 {
  top: 45%;
  right: 20.9%;
}

.cheque-scope-center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (min-width: 1800px) and (max-width:2500px) {
  .cheque-scope-item-1 {
    top: 18%;
    left: 42.5%;
  }

  .cheque-scope-item-2 {
    top: 45%;
    left: 30.5%;
  }

  .cheque-scope-item-4 {
    top: 45%;
    right: 30.9%;
  }

  .cheque-scope-item-3 {
    bottom: 14%;
    left: 42%;
  }
}

@media (max-width: 767px) {
  .cheque-bounce-scope-layout {
    min-height: 600px;
    margin: 10px 0 0px 0px;
    width: 100%;
    position: relative;
    background: url(../img/legal-scope-cirle.webp) no-repeat center center;
    background-size: contain;
    background-size: 180px 180px;
  }

  .cheque-scope-item {
    width: 120px;
    padding: 10px 0;
    font-size: 10px;
  }

  .cheque-scope-center-circle {
    width: 385px;
    height: auto;
  }

  .cheque-bounce-scope-item-1 {
    top: -2%;
    left: 5%;
  }

  .cheque-bounce-scope-item-5 {
    top: 10%;
    right: 0%;
  }

  .cheque-bounce-scope-item-2 {
    top: 18%;
    left: 6%;
  }

  .cheque-bounce-scope-item-6 {
    top: 23%;
    right: 0%;
  }

  .cheque-bounce-scope-item-7 {
    right: 0%;
    bottom: 16%;
  }

  .cheque-bounce-scope-item-3 {
    top: 65%;
    left: 5%;
  }

  .cheque-bounce-scope-item-4 {
    bottom: 4%;
    left: 5%;
  }

  .cheque-bounce-scope-item-8 {
    right: 0%;
    bottom: 0%;
  }

  .cheque-bounce-scope-center-circle {
    position: absolute;
    top: 51%;
    left: 49%;
    transform: translate(-50%, -50%);
    width: 134px;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
  }

  .cheque-bounce-scope-center-circle h5 {
    font-weight: 600;
    font-size: 14px;
    text-align: center;
  }


  .cheque-scope-layout {
    width: 100%;
    min-height: 440px;
  }

  .cheque-scope-item-1 {
    top: 20%;
    left: 33.9%;
  }

  .cheque-scope-item-2 {
    top: 43%;
    left: 4%;
  }

  .cheque-scope-item-3 {
    bottom: 16%;
    left: 34%;
  }

  .cheque-scope-item-4 {
    top: 46%;
    right: 3.9%;
  }

}

/* 11th section */
.cheque-bounce-grid {
  display: flex;
  gap: 15px;
  position: relative;
  justify-content: center;
  align-items: center;
}

.cheque-bounce-grid:nth-child(2) {
  gap: 160px;
  position: relative;
  top: -20px;
}

.cheque-bounce-grid:nth-child(3) {
  top: -40px;
}

.cheque-bounce-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.cheque-bounce-image {
  width: 129px;
  height: 144px;
}

.cheque-bounce-image img {
  width: 129px;
  height: 144px;
}

.cheque-bounce-image:nth-child(3),
.cheque-bounce-image:nth-child(4) {
  margin-left: 25px;
}

.cheque-bounce-image:nth-child(5),
.cheque-bounce-image:nth-child(6) {
  margin-left: 25px;
}

.cheque-bounce-description {
  width: 200px;
  font-size: 18px;
}

.cheque-bounce-description:nth-child(1) {
  text-align: right;
}

@media (max-width: 1024px) {
  .cheque-bounce-description {
    width: 130px;
    font-size: 16px;
  }

  .cheque-bounce-item {
    gap: 0px;
  }

  .cheque-scope-item-1 {
    left: 33.9%;
  }

  .cheque-scope-item-2 {
    top: 45%;
    left: 6%;
  }

  .cheque-scope-item-4 {
    top: 45%;
    right: 5.9%;
  }

  .cheque-scope-item-3 {
    bottom: 14%;
    left: 33%;
  }

}

@media (min-width:768px) and (max-width: 800px) {
  .cheque-scope-item-1 {
    left: 35%;
  }

  .cheque-scope-item-2 {
    top: 45%;
    left: 12%;
  }

  .cheque-scope-item-4 {
    top: 45%;
    right: 12%;
  }

  .cheque-scope-item-3 {
    bottom: 14%;
    left: 35%;
  }

}

@media (max-width: 767px) {
  .container {
    padding: 0 10px;
  }

  .cheque-bounce-grid {
    flex-direction: column;
    gap: 20px;
    top: 0 !important;
  }

  .cheque-bounce-grid:nth-child(2) {
    gap: 20px;
  }

  .cheque-bounce-item {
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .cheque-bounce-image {
    width: 100px;
    height: 112px;
  }

  .cheque-bounce-image img {
    margin-bottom: 15px;
    width: 100px;
    height: 112px;
  }

  .cheque-bounce-image:nth-child(3),
  .cheque-bounce-image:nth-child(4),
  .cheque-bounce-image:nth-child(5),
  .cheque-bounce-image:nth-child(6) {
    margin-left: 0;
  }

  .cheque-bounce-description {
    font-size: 14px;
    width: 170px;
  }
}

/* 13th section */
.Cheque-Bounce-Cases-Benefits-of-Engaging-With-Us {
  max-width: fit-content;
}

.Cheque-Bounce-Cases-step {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  width: 100%;
}

.Cheque-Bounce-Cases-step:nth-child(1) {
  margin-left: 90%;
  margin-right: auto;
}

.Cheque-Bounce-Cases-step:nth-child(2) {
  margin-left: 75%;
  margin-right: auto;
}

.Cheque-Bounce-Cases-step:nth-child(3) {
  margin-left: 60%;
  margin-right: auto;
}

.Cheque-Bounce-Cases-step:nth-child(4) {
  margin-left: 45%;
  margin-right: auto;
}

.Cheque-Bounce-Cases-step:nth-child(5) {
  margin-left: 15%;
  margin-right: auto;
}

.Cheque-Bounce-Cases-step-icon {
  width: 180px;
  height: 80px;
  border-top-left-radius: 100px;
  border-bottom-right-radius: 100px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.Cheque-Bounce-Cases-step-icon img {
  width: 50px;
  height: 50px;
}

.Cheque-Bounce-Cases-step-text {
  background-color: #fff;
  padding-left: 80px;
  padding-right: 20px;
  border-radius: 0 8px 8px 0;
  height: 80px;
  flex: 1;
  margin-left: -80px;
  display: flex;
  font-size: 16px;
  width: 342px;
  font-weight: 600;
  align-items: center;
  z-index: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.color-items-1 .Cheque-Bounce-Cases-step-icon {
  background-color: #FDC82C;
}

.color-items-2 .Cheque-Bounce-Cases-step-icon {
  background-color: #F24656;
}

.color-items-3 .Cheque-Bounce-Cases-step-icon {
  background-color: #115E8C;
}

.color-items-4 .Cheque-Bounce-Cases-step-icon {
  background-color: #16C2D0;
}

.color-items-5 .Cheque-Bounce-Cases-step-icon {
  background-color: #EE70A4;
}

@media (max-width: 1024px) {
  .Cheque-Bounce-Cases-Benefits-of-Engaging-With-Us {
    max-width: fit-content;
    margin: auto;
  }

  .Cheque-Bounce-Cases-step:nth-child(1),
  .Cheque-Bounce-Cases-step:nth-child(2),
  .Cheque-Bounce-Cases-step:nth-child(3),
  .Cheque-Bounce-Cases-step:nth-child(4),
  .Cheque-Bounce-Cases-step:nth-child(5) {
    margin-left: 0;
    margin-right: auto;
  }

  .Cheque-Bounce-Cases-step-text {
    margin-left: 0;
    width: 100%;
    border-radius: 0 0 8px 8px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
    height: 60px;
  }

  .Cheque-Bounce-Cases-step-icon {
    width: 120px;
    height: 55px;
  }
}

/* 15th section */
.Criminal-Trials-scope {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 10px;
  margin: auto;
  margin-left: 10px;
  margin-right: 10px;
}

.Criminal-Trials-scope-cards {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  padding: 10px 10px 0 10px;
  position: relative;
}

.ribbon {
  width: 60px;
  min-width: 60px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: -13px;
  margin-right: 15px;
  flex-direction: column;
}

.ribbon img {
  height: 125px;
}

.Criminal-Trials-scope-card-text {
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 500px) {
  .Criminal-Trials-scope {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  }

  .Criminal-Trials-scope-cards {
    align-items: flex-start;
    padding: 15px;
  }

  .ribbon {
    margin-bottom: 10px;
    margin-right: 0;
    border-radius: 10px;
  }

  .ribbon::before {
    display: none;
  }
}

/* 16th section */
.criminal-trial-rlevant-legal {
  position: relative;
  color: #fff;
  padding: 30px 45px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.criminal-trial-rlevant-legal-top-row .col-md-4,
.criminal-trial-rlevant-legal-bottom-row .col-md-6 {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.criminal-trial-rlevant-legal-bottom-row {
  margin-top: -90px;
}

.criminal-trial-rlevant-legal-bottom-text {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 16px;
  width: 90%;
}

.criminal-trial-rlevant-legal-shape-content {
  min-width: 220px;
  min-height: 200px;
}

.rlevant-legal-bg-blue {
  background: url(../img/criminal-trial-relevant-1.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.rlevant-legal-bg-green {
  background: url(../img/criminal-trial-relevant-2.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.rlevant-legal-bg-yellow {
  background: url(../img/criminal-trial-relevant-3.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.rlevant-legal-bg-red {
  background: url(../img/criminal-trial-relevant-4.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-navy {
  background: url(../img/criminal-trial-relevant-5.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {

  .criminal-trial-rlevant-legal-top-row .col-md-4,
  .criminal-trial-rlevant-legal-bottom-row .col-md-6 {
    margin-bottom: 20px;
  }

  .criminal-trial-rlevant-legal {
    padding: 25px 15px 50px;
  }

  .icon-box img {
    width: 30px;
    height: 30px;
  }
}

/* 17th section  */
.criminal-process-flow {
  background: url('../img/criminal-trials-process.webp') no-repeat center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  width: 100%;
  height: 25vw;
  max-height: 700px;
  margin-bottom: 50px;
}

.process-flow-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.process-flow-container .process-text {
  position: absolute;
  width: 19vw;
  max-width: 290px;
  font-size: clamp(12px, 1.2vw, 16px);
  color: #000;
  line-height: 1.5;
}

/* Left Side Positions */
.left-text-1 {
  top: 4%;
  left: 12%;
  transform: translate(-50%, 0);
  text-align: right;
}

.left-text-2 {
  top: 50%;
  left: 7%;
  transform: translate(-50%, -50%);
  text-align: right;
}

.left-text-3 {
  bottom: 4%;
  left: 12%;
  transform: translate(-50%, 0);
  text-align: right;
}

/* Right Side Positions */
.right-text-1 {
  top: 0;
  right: 12%;
  transform: translate(50%, 0);
  text-align: left;
}

.right-text-2 {
  top: 50%;
  right: 10%;
  transform: translate(60%, -50%);
  text-align: left;
}

.right-text-3 {
  bottom: 4%;
  right: 12%;
  transform: translate(50%, 0);
  text-align: left;
}

/* Media Queries */
@media (max-width: 767px) {
  .criminal-process-flow {
    height: auto;
    background-size: 90%;
    padding: 30px 10px;
  }

  .process-flow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .process-flow-container .process-text {
    position: static;
    width: 100%;
    max-width: 90%;
    margin-bottom: 20px;
    text-align: center;
    transform: none;
  }
}


/* 19th section  */
.legal-support-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: #e7edf9;
  gap: 20px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.legal-support-section .left-image img {
  max-width: 100%;
  height: auto;
  width: 450px;
}

.legal-support-section .right-image {
  width: 600px;
  position: relative;
}

.criminal-trial-benefits-section {
  position: relative;
  width: 100%;
  height: 450px;
  background: url('../img/criminal-tial-benefits-2.webp') no-repeat center center;
  background-size: contain;
  z-index: 5;
}

.criminal-trial-benefits-text {
  position: absolute;
  width: 150px;
  font-size: 14px;
  line-height: 1.4;
  color: #000;
}

.criminal-trial-benefits-top-left {
  text-align: left;
  top: 30px;
  left: 50px;
}

.criminal-trial-benefits-top-center {
  top: 30px;
  left: 180px;
  text-align: center;
}

.criminal-trial-benefits-top-right {
  top: 30px;
  right: 50px;
  text-align: end;
}

.criminal-trial-benefits-bottom-left {
  bottom: 40px;
  left: 0px;
  text-align: end;
}

.criminal-trial-benefits-bottom-right {
  bottom: 40px;
  right: 0px;
}

@media (max-width: 1024px) {
  .legal-support-section {
    flex-direction: column;
    align-items: center;
    height: 720px;
    justify-content: space-evenly;
  }

  .left-image,
  .right-image {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .legal-support-section .right-image {
    width: 375px;
    position: relative;
  }

  .criminal-trial-benefits-section {
    height: 400px;
  }

  .criminal-trial-benefits-top-left {
    text-align: left;
    top: 80px;
    left: 30px;
  }

  .criminal-trial-benefits-top-right {
    top: 80px;
    right: 33px;
    text-align: end;
  }

  .criminal-trial-benefits-top-center {
    top: 0px;
    left: 95px;
    text-align: center;
    display: none;
  }

  .criminal-trial-benefits-bottom-left {
    left: 5px;
  }

  .criminal-trial-benefits-bottom-right {
    right: 3px;
  }
}

/* 20th section */
.cyber-crime-litigation-image {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  margin-left: -30px;
}

.cyber-crime-litigation-text-box {
  border-radius: 12px;
  margin-left: 20px;
  margin-left: -40%;
  position: relative;
  width: 130%;
}

.cyber-crime-litigation-text-border {
  position: absolute;
  top: 6%;
  left: 3%;
  right: 0;
  z-index: 0;
  border: 2px solid #407BFF;
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

.cyber-crime-litigation-text-box p {
  background-color: #f7f7f7;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 1.2rem;
  font-size: 18px;
  width: 100%;
  z-index: 1;
  position: relative;
  text-align: justify;
}

@media (max-width: 768px) {
  .cyber-crime-litigation-text-box {
    border-radius: 12px;
    margin-left: 20px;
    margin-left: 0%;
    position: relative;
    width: 95%;
  }
}

/* 21st section */
.cyber-crime-scope-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px 20px;
  margin-bottom: 50px;
  transition: transform 0.3s, box-shadow 0.3s;
  width: 225px;
  height: 138px;
  position: relative;
}

.cyber-crime-scope-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cyber-crime-icon-container {
  width: 65px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -30px;
}

.cyber-crime-icon-container img {
  width: 65px;
  height: 65px;
}

.cyber-crime-scop-title {
  font-size: 16px;
  margin-top: 25px;
  font-weight: 400;
}

.cyber-crime-scop-center-card {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* 22nd section */
.cyber-crime-legal-framework-hex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.cyber-crime-legal-framework-hex-container.second {
  margin-top: -30px;
}

.cyber-crime-legal-framework-hex-outer {
  position: relative;
  width: 260px;
  height: 260px;
  background: transparent;
}

.cyber-crime-legal-framework-hex-inner {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 260px;
  height: 260px;
  z-index: 1;
}

.cyber-crime-legal-framework-hex-content {
  position: absolute;
  top: 50%;
  left: 49%;
  z-index: 2;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 0 10px;
  font-size: 16px;
  width: 168px;
}

.cyber-crime-legal-framework-blue .cyber-crime-legal-framework-hex-outer::before,
.cyber-crime-legal-framework-blue .cyber-crime-legal-framework-hex-outer::after,
.cyber-crime-legal-framework-blue .cyber-crime-legal-framework-hex-outer {
  background: url(../img/cyber-crime-legal-framework-1.webp);
  background-position: center;
  background-size: cover;
}

.cyber-crime-legal-framework-yellow .cyber-crime-legal-framework-hex-outer::before,
.cyber-crime-legal-framework-yellow .cyber-crime-legal-framework-hex-outer::after,
.cyber-crime-legal-framework-yellow .cyber-crime-legal-framework-hex-outer {
  background: url(../img/cyber-crime-legal-framework-2.webp);
  background-position: center;
  background-size: cover;
}

.cyber-crime-legal-framework-red .cyber-crime-legal-framework-hex-outer::before,
.cyber-crime-legal-framework-red .cyber-crime-legal-framework-hex-outer::after,
.cyber-crime-legal-framework-red .cyber-crime-legal-framework-hex-outer {
  background: url(../img/cyber-crime-legal-framework-3.webp);
  background-position: center;
  background-size: cover;
}

.lightcyber-crime-legal-framework-blue .cyber-crime-legal-framework-hex-outer::before,
.lightcyber-crime-legal-framework-blue .cyber-crime-legal-framework-hex-outer::after,
.lightcyber-crime-legal-framework-blue .cyber-crime-legal-framework-hex-outer {
  background: url(../img/cyber-crime-legal-framework-4.webp);
  background-position: center;
  background-size: cover;
}

.cyber-crime-legal-framework-purple .cyber-crime-legal-framework-hex-outer::before,
.cyber-crime-legal-framework-purple .cyber-crime-legal-framework-hex-outer::after,
.cyber-crime-legal-framework-purple .cyber-crime-legal-framework-hex-outer {
  background: url(../img/cyber-crime-legal-framework-5.webp);
  background-position: center;
  background-size: cover;
}

/* 23nd section */
.criminal-twenty-thired {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.legal-process-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  width: 90%;
}

.legal-process-grid.second {
  margin-top: -145px;
  margin-left: -70px;
}

.legal-process-hex-outer {
  position: relative;
  width: 240px;
  height: 307px;
  background: transparent;
}

.legal-process-hex-inner {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 240px;
  height: 307px;
  z-index: 1;
}

.legal-process-hex-content {
  position: absolute;
  top: 46%;
  left: 49%;
  z-index: 2;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 0 10px;
  font-size: 16px;
  width: 168px;
}

.legal-process-theme-blue .legal-process-hex-outer,
.legal-process-theme-blue .legal-process-hex-outer::before,
.legal-process-theme-blue .legal-process-hex-outer::after {
  background: url(../img/cyber-legal-process-2.webp);
  background-position: center;
  background-size: cover;
}

.legal-process-theme-yellow .legal-process-hex-outer,
.legal-process-theme-yellow .legal-process-hex-outer::before,
.legal-process-theme-yellow .legal-process-hex-outer::after {
  background: url(../img/cyber-legal-process-4.webp);
  background-position: center;
  background-size: cover;
}

.legal-process-theme-red .legal-process-hex-outer,
.legal-process-theme-red .legal-process-hex-outer::before,
.legal-process-theme-red .legal-process-hex-outer::after {
  background: url(../img/cyber-legal-process-6.webp);
  background-position: center;
  background-size: cover;
}

.legal-process-theme-lightblue .legal-process-hex-outer,
.legal-process-theme-lightblue .legal-process-hex-outer::before,
.legal-process-theme-lightblue .legal-process-hex-outer::after {
  background: url(../img/cyber-legal-process-1.webp);
  background-position: center;
  background-size: cover;
}

.legal-process-theme-purple .legal-process-hex-outer,
.legal-process-theme-purple .legal-process-hex-outer::before,
.legal-process-theme-purple .legal-process-hex-outer::after {
  background: url(../img/cyber-legal-process-3.webp);
  background-position: center;
  background-size: cover;
}

.legal-process-theme-purp .legal-process-hex-outer,
.legal-process-theme-purp .legal-process-hex-outer::before,
.legal-process-theme-purp .legal-process-hex-outer::after {
  background: url(../img/cyber-legal-process-5.webp);
  background-position: center;
  background-size: cover;
}

@media (max-width: 1024px) {
  .criminal-twenty-thired {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    align-items: center;
    gap: 20px;
  }

  .legal-process-grid.second {
    margin-top: 0;
    margin-left: -3px;
  }

  .legal-process-grid {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

}

@media (max-width:768px) {
  .criminal-twenty-thired {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .legal-process-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 90%;
  }

  .legal-process-grid.second {
    margin-top: 0;
    margin-left: auto;
  }

  .cyber-crime-legal-framework-hex-container.second {
    margin-top: 0;
  }
}

/* 25th section */
.cyber-crime-legal-benefits-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 15px;
  flex-wrap: wrap;
  position: relative;
}

.cyber-crime-legal-second-benefits-row {
  margin-top: -150px;
  margin-bottom: 50px;
}

.cyber-crime-legal-benefit-item {
  position: relative;
  width: 224px;
  height: 200px;
}

.cyber-crime-legal-benefit-shape {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.cyber-crime-legal-benefit-top-text,
.cyber-crime-legal-benefit-bottom-text {
  position: absolute;
  width: 100%;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 10px;
  font-size: 17px;
  font-weight: 500;
}

.cyber-crime-legal-benefit-top-text {
  top: -55px;
}

.cyber-crime-legal-benefit-bottom-text {
  bottom: -45px;
}

@media (min-width:1800px) and (max-width:2500px) {
  .legal-process-grid {
    justify-content: center;
    width: 100%;
  }

  .legal-process-grid.second {
    margin-top: -25px;
    margin-left: -30px;
  }

}

@media (max-width: 1024px) {
  .cyber-crime-legal-second-benefits-row {
    margin-top: 0px;
  }
}

@media (max-width: 768px) {
  .cyber-crime-legal-second-benefits-row {
    margin-top: 20px;
    margin-bottom: 50px;
  }

  .cyber-crime-legal-benefits-container {
    gap: 55px;
  }
}

/* 27th section */
.legal-support-wrapper {
  display: flex;
  align-items: center;
  padding: 40px 20px;
  gap: 60px;
  flex-wrap: wrap;
}

.legal-support-image img {
  max-width: 100%;
  height: auto;
}

.legal-support-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal-support-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.legal-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px dashed;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legal-icon-circle img {
  width: 40px;
  height: 40px;
}

.legal-icon-circle.icon-1 {
  border-color: #4da1ff;
  color: #4da1ff;
}

.legal-icon-circle.icon-2 {
  border-color: #00c49a;
  color: #00c49a;
}

.legal-icon-circle.icon-3 {
  border-color: #8f68ff;
  color: #8f68ff;
}

.legal-icon-circle.icon-4 {
  border-color: #29a9ff;
  color: #29a9ff;
}

.legal-icon-circle.icon-5 {
  border-color: #a44df1;
  color: #a44df1;
}

.legal-icon-circle.icon-6 {
  border-color: #e86ed0;
  color: #e86ed0;
}

.legal-support-text {
  font-size: 16px;
  color: #333;
  max-width: 500px;
}

@media (max-width: 1024px) {
  .legal-support-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }

  .legal-support-image img {
    width: 100%;
    max-width: 500px;
  }

  .legal-support-list {
    align-items: center;
  }

  .legal-icon-circle {
    width: 70px;
    height: 70px;
  }

  .legal-icon-circle img {
    width: 35px;
    height: 35px;
  }

}

@media (max-width: 767px) {
  .legal-support-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .legal-support-image img {
    width: 100%;
    max-width: 400px;
  }

  .legal-support-list {
    align-items: center;
  }

  .legal-icon-circle {
    width: 60px;
    height: 60px;
  }

  .legal-icon-circle img {
    width: 30px;
    height: 30px;
  }

}

/* 28th section */
.section-suspention-sentence-legal-framework {
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

.suspention-sentence-legal-shape {
  height: 355px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.suspention-sentence-legal-shape img {
  height: 100%;
}

.section-suspention-sentence-legal-framework .content {
  position: relative;
  width: 240px;
  text-align: center;
  font-size: 16px;
}

.section-suspention-sentence-legal-framework .content.content-1 {
  transform: translate(20px, 180px);
}

.section-suspention-sentence-legal-framework .content.content-3 {
  transform: translate(0px, 180px);
}

@media (max-width: 768px) {
  .suspention-sentence-legal-shape {
    height: auto;
  }

  .suspention-sentence-legal-shape img {
    height: auto;
  }

  .section-suspention-sentence-legal-framework .content {
    width: 300px;
  }

  .section-suspention-sentence-legal-framework .content.content-1 {
    transform: translate(20px, 90px);
  }

  .section-suspention-sentence-legal-framework .content.content-3 {
    transform: translate(0px, 90px);
  }
}

/* 29th section */
.suspension-process {
  display: flex;
  justify-content: space-evenly;
  position: relative;
}

.suspension-process .process-stages {
  position: relative;
  width: 180px;
  text-align: center;
}

.suspension-process .process-stages .stage-icon {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.suspension-process .process-stages .stage-description {
  font-size: 18px;
  margin-top: 20px;
  color: #595959;
}

.suspension-process .process-stages:nth-child(odd) {
  margin-top: 0px;
}

.suspension-process .process-stages:nth-child(even) {
  margin-top: 50px;
}

.suspension-process .stage-connector {
  position: absolute;
  width: 170px;
  height: 10px;
  background: #d9d9d9;
  z-index: 1;
  top: 160px;
  left: 100%;
  transform: translateX(-50%) rotate(55deg);
}

.suspension-process .process-stages:nth-child(2) .stage-connector {
  transform: translateX(-50%) rotate(-55deg);
  top: 105px;
  left: 105%;
}

.process-stages:nth-child(3) .stage-connector {
  transform: translateX(-50%) rotate(55deg);
}

.process-stages:nth-child(4) .stage-connector {
  transform: translateX(-50%) rotate(-55deg);
  top: 105px;
  left: 105%;
}

.process-stages:last-child .stage-connector {
  display: none;
}

@media (min-width: 1800px) and (max-width: 2500px) {
  .suspension-process {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .suspension-process {
    flex-direction: row;
    align-items: center;
  }

  .suspension-process .process-stages .stage-icon {
    width: 100px;
    height: 100px;
  }

  .suspension-process .process-stages .stage-description {
    font-size: 16px;
    margin-top: 5px;
  }

  .suspension-process .stage-connector {
    display: none;
  }
}

@media (max-width: 767px) {
  .suspension-process {
    flex-direction: column;
    align-items: center;
  }

  .process-stage {
    margin-top: 40px !important;
  }

  .stage-connector {
    display: none;
  }

  .suspension-process .process-stages:nth-child(even) {
    margin-top: 50px;
    display: flex;
    flex-direction: column-reverse;
  }
}

/* 33 section */
.dual-list-section {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  /* flex-wrap: wrap; */
  margin-top: 120px;
  gap: 110px;
}

.fraud-list {
  min-width: 340px;
  background: #F4F4F4;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.fraud-item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.fraud-item:last-child {
  border-bottom: none;
}

.fraud-number {
  max-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fraud-text {
  font-size: 18px;
  color: #333;
  max-width: 235px;
  padding: 10px;
}

.arrow-connector {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 20px;
  width: 400px;
  position: absolute;
  transform: translate(0%, -7%);
}

.arrow-connector img {
  width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .dual-list-section {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .fraud-list {
    width: 100%;
    min-width: 280px;
    max-width: 400px;
  }

  .arrow-connector {
    display: none;
  }

}

@media (max-width: 480px) {
  .dual-list-section {
    flex-direction: column;
  }

  .fraud-item {
    align-items: flex-start;
  }

  .fraud-number {
    margin-bottom: 10px;
  }

  .arrow-connector img {
    display: none;
  }

  .dual-list-section {
    margin-top: 20px;
    gap: 10px;
  }
}

/* 34 section */
.relevant-law-white-collar {
  display: flex;
  justify-content: center;
  align-items: center;
}

.relevant-law-acts-container {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 860px;
  padding: 40px 0;
}

.relevant-law-acts-container .act-row-2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.relevant-law-acts-container .act-row {
  position: relative;
  width: 446px;
  border-radius: 8px;
  overflow: hidden;
}

.relevant-law-acts-container .act-image {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
}

.relevant-law-acts-container .act-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-weight: 500;
  font-size: 18px;
  width: 80%;
  padding: 0 15px;
  line-height: 1.2;
}

.relevant-law-acts-container .act-text.left {
  left: 0;
  text-align: left;
}

.relevant-law-acts-container .act-text.right {
  right: 0;
  text-align: right;
}

@media (max-width: 1024px) {
  .relevant-law-acts-container {
    align-items: center;
  }

  .relevant-law-acts-container .act-row {
    width: 100%;
    max-width: 375px;
  }
}

@media (max-width: 576px) {
  .relevant-law-acts-container {
    flex-direction: column;
    align-items: center;
  }
}

/* 35 section */
.white-collar-legal-process-card {
  position: relative;
  color: white;
  padding: 20px;
  min-height: 250px;
  min-width: 230px;
  margin-bottom: 30px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.white-collar-legal-process-card p {
  font-size: 18px;
  position: relative;
  padding: 20px;
  transform: translate(0%, 50px);
}

.white-collar-legal-process-assessment {
  background-image: url(../img/white-collar-legal-process-1.webp);
}

.white-collar-legal-process-advisory {
  background-image: url(../img/white-collar-legal-process-2.webp);
}

.white-collar-legal-process-drafting {
  background-image: url(../img/white-collar-legal-process-3.webp);
}

.white-collar-legal-process-representation {
  background-image: url(../img/white-collar-legal-process-4.webp);
}

.white-collar-legal-process-defense {
  background-image: url(../img/white-collar-legal-process-5.webp);
}

.white-collar-legal-process-coordination {
  background-image: url(../img/white-collar-legal-process-6.webp);
}

.white-collar-legal-process-compliance {
  background-image: url(../img/white-collar-legal-process-7.webp);
}

@media (max-width: 1024px) {
  .white-collar-legal-process-card {
    min-height: 200px;
    min-width: 150px;
    padding: 15px;
  }

  .white-collar-legal-process-card p {
    font-size: 15px;
    padding: 2px;
    transform: translate(0%, 30px);
  }
}

/* coming-soon page css */
.coming-soon-section {
  padding: 40px;
  background: url('../img/comming-soon.webp') no-repeat right center;
  background-size: cover;
  min-height: 100vh;
  position: relative;
  top: 140px;
}

.coming-text {
  max-width: 670px;
}

.coming-text h2 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 25px;
  margin-top: 30px;
}

.coming-text p {
  color: #000;
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 30px;
  max-width: 555px;
  text-align: justify;
}

.coming-text strong {
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.2px;
}

.notify-form {
  display: flex;
  max-width: 600px;
  gap: 20px;
  margin-top: 15px;
}

.notify-form input {
  border: 0.5px solid #000;
  box-shadow: 0px 20px 70px 0px rgba(0, 39, 96, 0.12);
  color: #4E545F;
  font-size: 18px;
  font-weight: 400;
  width: 394px;
  border-radius: 10px;
  padding: 10px;
}

.notify-form button {
  background-color: #2d8eff;
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.services-link {
  font-size: 18px;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 70px;
}

.services-link img {
  width: 20px;
  height: 20px;
}

@media (min-width: 1800px) {
  .coming-text {
    max-width: 880px;
  }

  .coming-text h2 {
    font-size: 72px;
    font-weight: 700;
  }

  .coming-text p {
    font-size: 52px;
    max-width: 670px;
  }

  .coming-text strong {
    font-size: 40px;
  }

  .notify-form input {
    font-size: 38px;
    width: 543px;
    padding: 15px;
  }

  .notify-form {
    max-width: 780px;
  }

  .notify-form button {
    font-size: 30px;
  }
}

@media (min-width: 768px) and (max-width: 1168px) {
  .coming-soon-section {
    padding: 40px 20px;
    background-position: center top;
    top: 0;
    min-height: 60vh;
    position: relative;
    top: 130px;
  }

  .notify-form {
    flex-direction: column;
    align-items: stretch;
  }

  .notify-form input {
    width: 100%;
  }

  .notify-form button {
    width: fit-content;
  }
}

@media (max-width: 768px) {
  .coming-soon-section {
    flex-direction: column;
    padding: 40px 20px;
    background-position: center top;
    top: 0;
    min-height: auto;
  }

  .notify-form {
    flex-direction: column;
    align-items: stretch;
  }

  .notify-form input {
    width: 100%;
  }

  .notify-form button {
    width: fit-content;
  }
}