/* ==========================================================================
   CASE STUDY LAW FIRMS - HERO SECTION STYLES
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap");
@import url("https://api.fontshare.com/v2/css?f[]=general-sans@600&display=swap");

.section-spacing-cs {
  padding: 100px 0;
}

/* Mobile Default (30px to 50px) */
.section-spacing-cs {
  padding: 50px 0;
}

.section-spacing-cs-t {
  padding-top: 50px;
}

.section-spacing-cs-b {
  padding-bottom: 50px;
}

.section-spacing-cs-bt {
  padding: 0;
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
  .section-spacing-cs {
    padding: 75px 0;
  }
  .section-spacing-cs-t {
    padding-top: 75px;
  }
  .section-spacing-cs-b {
    padding-bottom: 75px;
  }
}

/* Desktop (992px / 1200px and up) */
@media (min-width: 992px) {
  .section-spacing-cs {
    padding: 100px 0;
  }
  .section-spacing-cs-t {
    padding-top: 100px;
  }
  .section-spacing-cs-b {
    padding-bottom: 100px;
  }
}

.cs-lawfirm-page-wrapper {
  background-color: #f3f6fe;
  width: 100%;
}

.cs-lawfirm-hero {
  position: relative;
  padding: 120px 0 120px 0;
  min-height: calc(100vh - 90px);
  /* overflow: hidden; */
  display: flex;
  align-items: center;
  overflow-x: clip;
}

/* Light blue circular background shape on the right behind laptop */
.cs-lawfirm-hero-bg-shape {
  position: absolute;
  top: 35%;
  right: -12vw;
  transform: translateY(-50%);
  width: 1000px;
  height: 1000px;
  background-color: #dbeeff;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.cs-lawfirm-hero .container {
  position: relative;
  z-index: 2;
}

/* --- Left Column Styling --- */
.cs-lawfirm-hero-left {
  padding-right: 30px;
}

.cs-lawfirm-hero-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4.5vw + 1rem, 60px) !important;
  line-height: clamp(40px, 5vw + 1rem, 73px) !important;
  letter-spacing: 0%;
  color: #192038;
  margin-bottom: clamp(16px, 2vw, 24px);
}

.cs-lawfirm-hero-subtitle {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 18px) !important;
  line-height: clamp(26px, 2vw + 1rem, 30px) !important;
  letter-spacing: 0%;
  color: #191919;
  opacity: 0.7;
  margin-bottom: clamp(24px, 3vw, 35px);
  max-width: 530px;
}

/* --- Buttons Styling --- */
.cs-lawfirm-hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Visit Website Button */
.btn-visit-website {
  font-family: "General Sans", "Poppins", sans-serif;
  font-weight: 600; /* Semibold */
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #ffffff !important;
  background: #53beed;
  border-radius: 10px;
  padding: 16px 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  box-shadow: 0px 8px 20px rgba(56, 179, 237, 0.35);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-visit-website:hover {
  background: linear-gradient(90deg, #30abeb 0%, #1c99d7 100%);
  box-shadow: 0px 10px 25px rgba(56, 179, 237, 0.45);
  transform: translateY(-2px);
}

/* Request A Demo Button */
.btn-request-demo {
  font-family: "General Sans", "Poppins", sans-serif;
  font-weight: 600; /* Semibold */
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #192038 !important;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 16px 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-request-demo:hover {
  background-color: #f8fafc;
  color: #192038 !important;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.btn-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.btn-visit-website:hover .btn-icon,
.btn-request-demo:hover .btn-icon {
  transform: translateX(4px);
}

/* --- Right Laptop Image Overflow Positioning --- */
.cs-lawfirm-hero-image-wrapper {
  position: absolute;
  top: 50%;
  right: -14%; /* Extends ~20% of laptop outside the right edge of viewport */
  transform: translateY(-50%);
  width: 58%;
  max-width: 1048px;
  z-index: 2;
  pointer-events: none;
}

.hero-laptop-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0px 25px 35px rgba(0, 0, 0, 0.12));
}

/* --- Responsive Adjustments --- */
@media (min-width: 1600px) {
  .cs-lawfirm-hero-image-wrapper {
    right: -10%;
    width: 55%;
  }
}

@media (max-width: 1200px) {
  .cs-lawfirm-hero-title {
    font-size: 48px;
    line-height: 60px;
  }
  .cs-lawfirm-hero-image-wrapper {
    right: -18%;
    width: 60%;
  }
}

@media (max-width: 991px) {
  .cs-lawfirm-hero {
    padding: 60px 0;
    flex-direction: column;
    min-height: auto;
  }
  .cs-lawfirm-hero-left {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
  .cs-lawfirm-hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .cs-lawfirm-hero-btns {
    justify-content: center;
  }
  .cs-lawfirm-hero-bg-shape {
    width: 600px;
    height: 600px;
    top: 50%;
    right: -30%;
  }
  .cs-lawfirm-hero-image-wrapper {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .cs-lawfirm-hero-left 
  {
    padding: 0 12px;
  }
  .cs-lawfirm-hero-bg-shape{
    display: none;
  }
  .cs-lawfirm-hero-title {
    font-size: 34px;
    line-height: 44px;
  }
  .cs-lawfirm-hero-subtitle {
    font-size: 16px;
    line-height: 26px;
  }
  .cs-lawfirm-hero-btns {
    flex-direction: column;
    width: 100%;
  }
  .btn-visit-website,
  .btn-request-demo {
    width: 100%;
  }
}

/* ==========================================================================
   PROJECT SPECS BAR SECTION
   ========================================================================== */
/* .cs-lawfirm-specs-section {
    padding: 20px 0 80px 0;
    position: relative;
    z-index: 5;
} */

.cs-lawfirm-specs-card {
  /* background-color: #F8FAFF; */
  border: 1px solid #c2cae0;
  border-radius: 20px;
  overflow: hidden;
}

.cs-lawfirm-spec-item {
  padding: 24px 25px;
  border-right: 1px solid #c2cae0;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
}

.cs-lawfirm-spec-item:last-child {
  border-right: none;
}

.cs-lawfirm-spec-item .spec-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.cs-lawfirm-spec-item .spec-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.cs-lawfirm-spec-item .spec-label {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: #192038;
}

.cs-lawfirm-spec-item .spec-value {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px !important;
  line-height: 100%;
  color: #192038;
  margin: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
  .cs-lawfirm-spec-item {
    border-right: 1px solid #c2cae0;
    border-bottom: 1px solid #c2cae0;
    padding: 24px;
  }
  .cs-lawfirm-spec-item:nth-child(2n) {
    border-right: none;
  }
  .cs-lawfirm-spec-item:nth-child(3),
  .cs-lawfirm-spec-item:nth-child(4) {
    border-bottom: none;
  }
}

@media (max-width: 767px) {
  .cs-lawfirm-spec-item {
    border-right: none;
    border-bottom: 1px solid #c2cae0;
    padding: 20px 20px;
  }
  .cs-lawfirm-spec-item:last-child {
    border-bottom: none;
  }
}

/* ==========================================================================
   PROJECT OVERVIEW SECTION STYLES
   ========================================================================== */
.cs-lawfirm-overview-section {
  position: relative;
  overflow-x: clip;
}

.cs-lawfirm-overview-wrapper {
  position: relative;
  background-color: #e8edfa;
  padding: 90px 0;
  min-height: 540px;
  display: flex;
  align-items: center;
  margin-left: 220px;
  margin-right: calc(-50vw + 50%);
}

.cs-lawfirm-overview-laptop-box {
  position: absolute;
  left: -280px;
  top: 64%;
  transform: translateY(-50%);
  width: 56vw;
  max-width: 880px;
  z-index: 5;
  pointer-events: none;
}

.overview-laptop-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0px 20px 30px rgba(0, 0, 0, 0.12));
}

.cs-lawfirm-overview-content {
  position: relative;
  z-index: 3;
}

.cs-lawfirm-overview-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw + 1rem, 48px) !important;
  line-height: clamp(36px, 4vw + 1rem, 61px) !important;
  letter-spacing: 0%;
  color: #192038;
  margin-top: clamp(40px, 5vw, 80px);
  margin-bottom: clamp(10px, 2vw, 17px);
}

.cs-lawfirm-overview-desc {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 18px !important;
  line-height: 30px !important;
  letter-spacing: 0%;
  color: #191919;
  opacity: 0.7;
  margin: 0;
}

/* Responsive adjustments for Project Overview */
@media (min-width: 1600px) {
  .cs-lawfirm-overview-wrapper {
    margin-left: 260px;
  }
  .cs-lawfirm-overview-laptop-box {
    left: -200px;
    max-width: 950px;
  }
}

@media (max-width: 1200px) {
  .cs-lawfirm-overview-wrapper {
    margin-left: 120px;
  }
  .cs-lawfirm-overview-laptop-box {
    left: -150px;
    width: 58vw;
  }
}

@media (max-width: 991px) {
  .cs-lawfirm-overview-section {
    padding: 40px 0;
  }
  .cs-lawfirm-overview-wrapper {
    margin-left: 0;
    margin-right: 0;
    border-radius: 20px;
    flex-direction: column;
    padding: 40px 24px;
    min-height: auto;
  }
  .cs-lawfirm-overview-laptop-box {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 650px;
    margin: 0 auto 30px auto;
  }
  .cs-lawfirm-overview-content {
    padding-left: 0;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .cs-lawfirm-overview-wrapper {
    padding: 30px 16px;
    border-radius: 16px;
  }
}

/* ==========================================================================
   THE EXPERTS BEHIND THE PROJECT SECTION STYLES
   ========================================================================== */
.cs-lawfirm-experts-section {
  position: relative;
  /* padding: 80px 0; */
}
.mt-90 {
  margin-top: 90px;
}

.cs-lawfirm-experts-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800; /* ExtraBold */
  font-size: clamp(28px, 3.5vw + 1rem, 48px) !important;
  line-height: clamp(36px, 4vw + 1rem, 61px) !important;
  letter-spacing: 0%;
  color: #192038;
  margin-bottom: clamp(12px, 2vw, 20px);
}

.cs-lawfirm-experts-card {
  padding: 36px;
  border: 1px solid #c2cae0;
  border-radius: 20px;
  overflow: hidden;
}

.cs-lawfirm-expert-item {
  padding: 22px 30px;
  border-right: 1px solid #c2cae0;
  border-bottom: 1px solid #c2cae0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cs-lawfirm-expert-item:nth-child(2n) {
  border-right: none;
}

.cs-lawfirm-expert-item:nth-child(3),
.cs-lawfirm-expert-item:nth-child(4) {
  border-bottom: none;
}

.expert-icon-box {
  margin-bottom: 16px;
}

.expert-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.expert-role-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600; /* SemiBold */
  font-size: 24px !important;
  line-height: 36px !important;
  letter-spacing: 0%;
  color: #192038;
  margin: 0;
}

@media (max-width: 991px) {
  .cs-lawfirm-experts-left {
    text-align: center;
    margin-bottom: 35px;
  }
  .cs-lawfirm-experts-card {
    padding: 24px 16px;
  }
}

@media (max-width: 768px) {
  .mt-90 {
    margin-top: 0;
  }
  .cs-lawfirm-experts-card {
    padding: 16px 12px;
    border-radius: 16px;
  }
  .cs-lawfirm-expert-item {
    padding: 18px 12px;
  }
  .expert-icon {
    width: 36px;
    height: 36px;
  }
  .expert-icon-box {
    margin-bottom: 10px;
  }
  .expert-role-title {
    font-size: 15px !important;
    line-height: 22px !important;
  }
}

@media (max-width: 480px) {
  .cs-lawfirm-expert-item {
    padding: 14px 8px;
  }
  .expert-role-title {
    font-size: 14px !important;
    line-height: 20px !important;
  }
}

/* ==========================================================================
   ABOUT THE PROJECT SECTION STYLES
   ========================================================================== */
.cs-lawfirm-about-section {
  position: relative;
  margin-bottom: 180px;
  overflow-x: clip;
}

@media (max-width: 991px) {
  .cs-lawfirm-about-section {
    margin-bottom: 0;
  }
}

.cs-lawfirm-about-wrapper {
  position: relative;
  background-color: #3caee9;
  padding: 100px 0;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.cs-lawfirm-about-circuit-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  max-width: 45%;
  height: auto;
  pointer-events: none;
  z-index: 1;
}

.cs-lawfirm-about-content {
  position: relative;
  z-index: 3;
}

.cs-lawfirm-about-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800; /* ExtraBold */
  font-size: clamp(28px, 3.5vw + 1rem, 48px) !important;
  line-height: clamp(36px, 4vw + 1rem, 61px) !important;
  letter-spacing: 0%;
  color: #ffffff;
  margin-top: clamp(40px, 5vw, 80px);
  margin-bottom: clamp(12px, 2vw, 20px);
}

.cs-lawfirm-about-laptop-box {
  position: absolute;
  right: -14vw;
  top: 70%;
  transform: translateY(-50%);
  width: 58vw;
  max-width: 950px;
  z-index: 2;
  pointer-events: none;
}

.about-laptop-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0px 25px 35px rgba(0, 0, 0, 0.15));
}

@media (min-width: 1600px) {
  .cs-lawfirm-about-laptop-box {
    right: -7vw;
    max-width: 1050px;
  }
}

@media (max-width: 1200px) {
  .cs-lawfirm-about-laptop-box {
    right: -18vw;
    width: 62vw;
  }
}

@media (max-width: 991px) {
  .cs-lawfirm-about-wrapper {
    padding: 60px 0;
    flex-direction: column;
    min-height: auto;
  }
  .cs-lawfirm-about-content {
    text-align: center;
    margin-bottom: 40px;
  }
  .cs-lawfirm-about-laptop-box {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
  }
  .cs-lawfirm-about-circuit-bg {
    max-width: 35%;
    /* opacity: 0.6; */
  }
}

@media (max-width: 576px) {
  .cs-lawfirm-about-circuit-bg {
    max-width: 34%;
    /* opacity: 1; */
  }
}

/* ==========================================================================
   ROLE-BASED ACCESS SYSTEM SECTION STYLES
   ========================================================================== */
.cs-lawfirm-roles-section {
  position: relative;
  /* padding: 80px 0; */
}

.cs-lawfirm-roles-main-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw + 1rem, 48px) !important;
  line-height: clamp(36px, 4vw + 1rem, 61px) !important;
  letter-spacing: 0%;
  color: #192038;
  margin-bottom: clamp(10px, 1.5vw, 16px);
}

.cs-lawfirm-roles-main-desc {
  font-family: "Poppins", sans-serif;
  font-weight: 400; /* Regular */
  font-size: 18px !important;
  line-height: 30px !important;
  letter-spacing: 0%;
  color: #191919;
  opacity: 0.7;
  margin: 0 auto;
  max-width: 620px;
}

/* Card Styling */
.cs-lawfirm-role-card {
  background-color: #e8edfa;
  border-radius: 20px;
  padding: 25px 31px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.cs-lawfirm-role-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 15px 30px rgba(25, 32, 56, 0.08);
}

/* White Circle Icon Container */
.role-icon-box {
  width: 72px;
  height: 72px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  /* box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.04); */
}

.role-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.role-card-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700; /* Bold */
  font-size: 29px !important;
  line-height: 38px !important;
  letter-spacing: 0%;
  color: #192038;
  margin-bottom: 12px;
}

/* Blue Accent Underline */
.role-accent-line {
  width: 71px;
  height: 3px;
  background-color: #3caee9;
  border-radius: 2px;
  margin-bottom: 12px;
}

.role-card-desc {
  font-family: "Poppins", sans-serif;
  font-weight: 400; /* Regular */
  font-size: 16px !important;
  line-height: 24px !important;
  letter-spacing: 0%;
  color: #191919;
  opacity: 0.8;
  margin: 0;
}

@media (max-width: 1200px) {
  .role-card-title {
    font-size: 24px !important;
    line-height: 32px !important;
  }
  .cs-lawfirm-role-card {
    padding: 28px 22px 32px 22px;
  }
}

@media (max-width: 991px) {
  .cs-lawfirm-role-card {
    padding: 24px 20px;
  }
  .role-icon-box {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
  }
  .role-icon {
    width: 32px;
    height: 32px;
  }
  .role-card-title {
    font-size: 22px !important;
    line-height: 28px !important;
  }
  .role-card-desc {
    font-size: 15px !important;
    line-height: 23px !important;
  }
}

@media (max-width: 768px) {
  .cs-lawfirm-roles-main-desc {
    font-size: 15px !important;
    line-height: 24px !important;
  }
  .cs-lawfirm-role-card {
    padding: 24px 20px;
    border-radius: 16px;
  }
  .role-card-title {
    font-size: 20px !important;
    line-height: 26px !important;
    margin-bottom: 10px;
  }
  .role-accent-line {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .cs-lawfirm-role-card {
    padding: 20px 16px;
  }
  .role-icon-box {
    width: 54px;
    height: 54px;
    margin-bottom: 14px;
  }
  .role-icon {
    width: 28px;
    height: 28px;
  }
  .role-card-title {
    font-size: 18px !important;
    line-height: 24px !important;
  }
  .role-card-desc {
    font-size: 14px !important;
    line-height: 21px !important;
  }
}

/* ==========================================================================
   COLORS & TYPOGRAPHY SECTION STYLES
   ========================================================================== */
.cs-lawfirm-design-section {
  position: relative;
  /* padding: 80px 0; */
}

/* Typo AA Image */
.typo-aa-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Font Name (Manrope) */
.typo-font-name {
  font-family: "Poppins", sans-serif;
  font-weight: 600; /* SemiBold */
  font-size: 36px !important;
  line-height: 36px !important;
  letter-spacing: 0%;
  color: #192038;
  margin-bottom: 16px;
}

.max-w-none {
  max-width: none !important;
}

.typo-sample-img {
  max-width: 100%;
  height: auto;
}

/* Color Palette Subheader Title */
.color-palette-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800; /* ExtraBold */
  font-size: 36px !important;
  line-height: 36px !important;
  letter-spacing: 0%;
  color: #192038;
  margin-bottom: 16px;
}
.cs-lawfirm-typo-main-desc {
  font-family: "Poppins", sans-serif;
  font-weight: 400; /* Regular */
  font-size: 18px !important;
  line-height: 30px !important;
  letter-spacing: 0%;
  color: #191919;
  opacity: 0.7;
  margin: 0 auto;
  /* max-width: 620px; */
}

/* 4 Color Swatch Image Cards */
.cs-lawfirm-color-img-card {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.cs-lawfirm-color-img-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.08);
}

.color-swatch-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .typo-font-name,
  .color-palette-title {
    font-size: 28px !important;
    line-height: 32px !important;
  }
}

/* ==========================================================================
   CHALLENGES FACED SECTION STYLES
   ========================================================================== */
.cs-lawfirm-challenges-section {
  position: relative;
  /* padding: 80px 0; */
  background-color: #e8edfa;
}

.cs-lawfirm-challenges-img-box {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.08);
}

.challenges-main-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.challenges-section-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800; /* ExtraBold */
  font-size: clamp(30px, 4vw + 1rem, 48px) !important;
  line-height: clamp(38px, 4.5vw + 1rem, 48px) !important;
  letter-spacing: 0%;
  color: #192038;
  margin-bottom: 12px;
}

.challenges-subtitle {
  font-family: "General Sans", "Poppins", sans-serif;
  font-weight: 600; /* SemiBold */
  font-size: clamp(20px, 2.5vw + 0.5rem, 30px) !important;
  line-height: 100% !important;
  letter-spacing: 0%;
  color: #53beed;
  margin-bottom: 30px;
}

.challenges-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.challenges-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.challenges-item .check-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.challenges-text {
  font-family: "Poppins", sans-serif;
  font-weight: 500; /* Medium */
  font-size: 20px !important;
  line-height: 18px !important;
  letter-spacing: 0%;
  color: #191919;
}

@media (max-width: 991px) {
  .challenges-list {
    gap: 14px;
  }
  .challenges-text {
    font-size: 16px !important;
    line-height: 24px !important;
  }
}

/* ==========================================================================
   SOLUTIONS IMPLEMENTED SECTION STYLES
   ========================================================================== */
.cs-lawfirm-solutions-section {
  position: relative;
}
/* ==========================================================================
   WHAT DIFFERENTIATES US SECTION STYLES
   ========================================================================== */
.cs-lawfirm-different-section {
  background-color: #e8edfa;
}

/* ==========================================================================
   PROJECT TIMELINE SECTION STYLES
   ========================================================================== */
.cs-lawfirm-timeline-section {
  position: relative;
  /* padding: 80px 0; */
}

.timeline-card-col {
  position: relative;
}

/* Connecting Dashed Line with Caret Arrow between step cards on desktop */
@media (min-width: 992px) {
  .timeline-card-col:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 20px;
    border-bottom: 2px dashed #87cdff;
    z-index: 0;
  }

  .timeline-card-col:not(:last-child)::before {
    content: "";
    position: absolute;
    right: -2px;
    top: 53.5%;
    transform: translateY(-50%) rotate(-45deg);
    width: 10px;
    height: 10px;
    border-right: 3px solid #53beed;
    border-bottom: 3px solid #53beed;
    z-index: 6;
  }
}

.cs-lawfirm-timeline-card {
  position: relative;
  background-color: #f3f6fe;
  border: 1px solid #c2cae0;
  border-radius: 20px;
  padding: 53px 45px 38px 23px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.cs-lawfirm-timeline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 12px 25px rgba(25, 32, 56, 0.08);
}

/* Top-Right Numbered Step Badge */
.timeline-step-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  background-color: #cbebfc;
  color: #53beed;
  font-family: "Helvetica", "Poppins", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card Title */
.timeline-card-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700; /* Bold */
  font-size: 27px !important;
  line-height: 38px !important;
  letter-spacing: 0%;
  color: #192038;
  margin-top: 15px;
  margin-bottom: 12px;
}

/* Card Description */
.timeline-card-desc {
  font-family: "Poppins", sans-serif;
  font-weight: 400; /* Regular */
  font-size: 16px !important;
  line-height: 24px !important;
  letter-spacing: 0%;
  color: #191919;
  opacity: 0.8;
  margin: 0;
}

@media (max-width: 1200px) {
  .timeline-card-title {
    font-size: 22px !important;
    line-height: 30px !important;
  }
  .cs-lawfirm-timeline-card {
    padding: 24px 18px 28px 18px;
  }
}

/* ==========================================================================
   TECHNOLOGY USED SECTION STYLES
   ========================================================================== */
.cs-lawfirm-tech-section {
  position: relative;
  background-color: #e8edfa;
}

.cs-lawfirm-tech-card {
  border: 1px solid #c2cae0;
  border-radius: 20px;
  padding: 24px 15px;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.cs-lawfirm-tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 12px 25px rgba(25, 32, 56, 0.08);
}

.tech-icon-box {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.tech-icon {
  max-width: 100%;
  max-height: 54px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.tech-card-name {
  font-family: "Poppins", sans-serif;
  font-weight: 400; /* Regular */
  font-size: 18px !important;
  line-height: 120% !important;
  letter-spacing: 0%;
  color: #192038;
  text-align: center;
}

@media (max-width: 768px) {
  .cs-lawfirm-tech-card {
    padding: 20px 10px;
  }
  .tech-icon-box {
    height: 50px;
    margin-bottom: 15px;
  }
  .tech-icon {
    max-height: 55px;
  }
  .tech-card-name {
    font-size: 15px !important;
    line-height: 110% !important;
  }
}

@media (max-width: 576px) {
  .cs-lawfirm-tech-card {
    padding: 16px 8px;
    border-radius: 16px;
  }
  .tech-icon-box {
    height: 42px;
    margin-bottom: 15px;
  }
  .tech-icon {
    max-height: 55px;
  }
  .tech-card-name {
    font-size: 13px !important;
    line-height: 17px !important;
  }
}

/* ==========================================================================
   WEBSITE SCREENS SECTION STYLES
   ========================================================================== */
.cs-lawfirm-screens-section {
  position: relative;
}

/* Filter Tab Pills */
.cs-lawfirm-screen-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background-color: transparent;
  padding: 4px;
  flex-wrap: wrap;
}

.cs-screen-tab-btn {
  font-family: "General Sans", "Poppins", sans-serif;
  font-weight: 500; /* Medium */
  font-size: 18px !important;
  line-height: 30px !important;
  letter-spacing: 0%;
  color: #192038;
  background-color: transparent;
  border: 1px solid #53beed;
  border-radius: 20px;
  padding: 16px 51px;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  white-space: nowrap;
}

.cs-screen-tab-btn:hover {
  border-color: #3caee9;
}

.cs-screen-tab-btn.active {
  background: #53beed;
  color: #ffffff;
  border-color: #53beed;
}

@media (max-width: 768px) {
  .cs-lawfirm-screen-tabs {
    gap: 10px;
    width: 100%;
  }

  .cs-screen-tab-btn {
    padding: 10px 24px;
    font-size: 15px !important;
    line-height: 22px !important;
    border-radius: 14px;
    flex: 1 1 auto;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .cs-screen-tab-btn {
    padding: 8px 16px;
    font-size: 14px !important;
    line-height: 20px !important;
  }
}

/* Screen Image Cards */
.cs-lawfirm-screen-card {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 4px 14px 0px #0000001a;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.cs-lawfirm-screen-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 20px 40px rgba(25, 32, 56, 0.12);
}

.screen-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Swiper Slider Responsive Styles */
.cs-lawfirm-screens-swiper {
  position: relative;
  width: 100%;
  overflow: visible;
}

.cs-screens-scrollbar-container {
  display: none;
  width: 100%;
  max-width: 320px;
  height: 6px;
  background-color: #d9e5fc;
  border-radius: 10px;
  margin: 35px auto 0 auto;
  position: relative;
  overflow: hidden;
}

.cs-screens-scrollbar {
  position: absolute !important;
  left: 0;
  top: 0;
  height: 100% !important;
  background-color: #53beed !important;
  border-radius: 10px !important;
}

@media (min-width: 992px) {
  .cs-lawfirm-screens-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 30px !important;
    transform: none !important;
  }
  .cs-lawfirm-screens-grid > .swiper-slide {
    width: calc(50% - 15px) !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
  }
}

@media (max-width: 991px) {
  .cs-lawfirm-screens-swiper {
    overflow: hidden;
    padding-bottom: 10px;
  }

  .cs-lawfirm-screens-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    margin: 0 !important;
  }

  .cs-lawfirm-screens-grid > .swiper-slide {
    flex-shrink: 0 !important;
    height: auto !important;
  }

  .cs-screens-scrollbar-container {
    display: block;
  }
}

/* ==========================================================================
   KEY FEATURES SECTION STYLES
   ========================================================================== */
.cs-lawfirm-features-section {
  position: relative;
  background-color: #e8edfa;
}

.cs-lawfirm-features-grid {
  position: relative;
}

.cs-feature-col {
  padding: 40px 30px;
  border-right: 1px solid #c2cae0;
  border-bottom: 1px solid #c2cae0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Remove right border on 3rd column of each row in 3-column desktop layout */
@media (min-width: 992px) {
  .cs-feature-col:nth-child(3n) {
    border-right: none;
  }
  .cs-feature-col:nth-last-child(-n + 3) {
    border-bottom: none;
  }
}

@media (max-width: 991px) {
  .cs-feature-col:nth-child(2n) {
    border-right: none;
  }
  .cs-feature-col:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

.cs-feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Soft Blue Circular Icon Box */
.cs-feature-icon-box {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background-color: #53beed33;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.cs-feature-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

/* Feature Title Typography */
.cs-feature-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 28px !important;
  line-height: 43px !important;
  letter-spacing: 0%;
  color: #192038;
  margin: 0;
}

@media (max-width: 1200px) {
  .cs-feature-title {
    font-size: 22px !important;
    line-height: 32px !important;
  }
  .cs-feature-col {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .cs-feature-col {
    padding: 24px 16px;
    align-items: center;
    text-align: center;
  }
  .cs-feature-item {
    align-items: center;
    text-align: center;
  }
  .cs-feature-icon-box {
    width: 68px;
    height: 68px;
    margin-bottom: 16px;
  }
  .cs-feature-icon {
    width: 36px;
    height: 36px;
  }
  .cs-feature-title {
    font-size: 18px !important;
    line-height: 26px !important;
  }
}

@media (max-width: 480px) {
  .cs-feature-col {
    padding: 20px 12px;
  }
  .cs-feature-icon-box {
    width: 58px;
    height: 58px;
    margin-bottom: 12px;
  }
  .cs-feature-icon {
    width: 30px;
    height: 30px;
  }
  .cs-feature-title {
    font-size: 16px !important;
    line-height: 23px !important;
  }
}
/* ==========================================================================
   CLIENT FEEDBACK SECTION STYLES
   ========================================================================== */
.cs-lawfirm-feedback-section {
  position: relative;
}

.cs-lawfirm-feedback-swiper {
  width: 100%;
  padding-bottom: 20px;
}

.cs-lawfirm-feedback-card {
  /* background-color: #F3F6FE; */
  border: 1px solid #c2cae0;
  border-radius: 20px;
  padding: 33px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.cs-lawfirm-feedback-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 15px 30px rgba(25, 32, 56, 0.08);
}

.feedback-stars {
  display: flex;
  align-items: center;
  gap: 5px;
}

.cs-lawfirm-feedback-card .star-icon {
  width: 32px !important;
  height: 32px !important;
  object-fit: contain;
}

.cs-lawfirm-feedback-card .quote-icon {
  width: 65px !important;
  height: 65px !important;
  object-fit: contain;
}

.feedback-desc {
  font-family: "Poppins", sans-serif;
  font-weight: 400; /* Regular */
  font-size: 18px !important;
  line-height: 28px !important;
  letter-spacing: 0%;
  color: #191919;
  margin-top: 15px;
  margin-bottom: 30px;
}

.feedback-author-box {
  display: flex;
  align-items: center;
  gap: 31px;
}

.author-img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 3px solid #53beed;
  object-fit: cover;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.author-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700; /* Bold */
  font-size: 24px !important;
  line-height: 100% !important;
  letter-spacing: 0%;
  color: #192038;
}

.author-role {
  font-family: "Poppins", sans-serif;
  font-weight: 400; /* Regular */
  font-size: 18px !important;
  line-height: 100% !important;
  letter-spacing: 0%;
  color: #192038;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .cs-lawfirm-feedback-card {
    padding: 24px 20px;
    border-radius: 16px;
  }
  .cs-lawfirm-feedback-card .star-icon {
    width: 24px !important;
    height: 24px !important;
  }
  .cs-lawfirm-feedback-card .quote-icon {
    width: 48px !important;
    height: 48px !important;
  }
  .feedback-desc {
    font-size: 15px !important;
    line-height: 24px !important;
    margin-top: 10px;
    margin-bottom: 20px;
  }
  .feedback-author-box {
    gap: 16px;
  }
  .author-img {
    width: 58px;
    height: 58px;
  }
  .author-name {
    font-size: 18px !important;
  }
  .author-role {
    font-size: 15px !important;
  }
}

@media (max-width: 480px) {
  .cs-lawfirm-feedback-card {
    padding: 20px 16px;
  }
  .cs-lawfirm-feedback-card .star-icon {
    width: 20px !important;
    height: 20px !important;
  }
  .cs-lawfirm-feedback-card .quote-icon {
    width: 40px !important;
    height: 40px !important;
  }
  .feedback-desc {
    font-size: 14px !important;
    line-height: 22px !important;
  }
  .author-img {
    width: 50px;
    height: 50px;
  }
  .author-name {
    font-size: 16px !important;
  }
  .author-role {
    font-size: 14px !important;
  }
}

/* Custom Navigation Buttons */
.cs-feedback-nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.cs-feedback-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
  padding: 0;
}

.cs-feedback-btn:hover {
  transform: scale(1.08);
}

.cs-feedback-btn .nav-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

/* ==========================================================================
   CTA DISCUSSION BANNER SECTION STYLES
   ========================================================================== */
.cs-lawfirm-cta-section {
  position: relative;
  background-color: #3caee9;
}

.cs-lawfirm-cta-banner {
  overflow: hidden;
  position: relative;
}

.cs-cta-left-content {
  padding-bottom: 50px;
  padding-left: calc((100vw - 1320px) / 2 + 15px);
}

@media (max-width: 1400px) {
  .cs-cta-left-content {
    padding-left: 60px;
  }
}

/* Main Title Typography */
.cs-cta-main-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800; /* ExtraBold */
  font-size: 48px !important;
  line-height: 68px !important;
  letter-spacing: 0%;
  color: #ffffff;
  margin-bottom: 16px;
}

/* Subtitle Typography */
.cs-cta-sub-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600; /* SemiBold */
  font-size: 24px !important;
  line-height: 30px !important;
  letter-spacing: 0%;
  color: #ffffff;
  margin-bottom: 24px;
}

/* Contact Info Pill */
.cs-cta-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background-color: #cbebfc;
  border-radius: 40px;
  padding: 14px 28px;
  flex-wrap: wrap;
}

.contact-pill-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pill-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.pill-link,
.pill-text {
  font-family: "Poppins", sans-serif;
  font-weight: 600; /* SemiBold */
  font-size: 22px !important;
  line-height: 100% !important;
  letter-spacing: 0%;
  color: #192038;
  text-decoration: none;
  transition: color 0.2s ease;
}

a.pill-link:hover {
  color: #000000;
}

.pill-divider {
  font-family: "Poppins", sans-serif;
  font-weight: 400; /* Regular */
  font-size: 24px !important;
  line-height: 100% !important;
  letter-spacing: 0%;
  color: #192038;
}

/* Right Illustration Positioned to Right Bottom */
.cs-lawfirm-cta-section {
  position: relative;
  background-color: #3caee9;
  padding-bottom: 0 !important;
}

.cs-cta-right-img {
  margin-top: auto;
  align-self: flex-end;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-right: 35px !important;
}

.cta-illustration {
  max-height: 420px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 0;
  margin-right: 0 !important;
  vertical-align: bottom;
}

@media (max-width: 1200px) {
  .cs-cta-main-title {
    font-size: 36px !important;
    line-height: 52px !important;
  }
  .cs-cta-sub-title {
    font-size: 20px !important;
    line-height: 28px !important;
  }
  .pill-link,
  .pill-text {
    font-size: 18px !important;
  }
  .pill-divider {
    font-size: 18px !important;
  }
  .cs-lawfirm-cta-banner {
    padding: 40px 30px 0 30px;
  }
}

@media (max-width: 991px) {
  .cs-cta-left-content {
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-bottom: 30px;
    text-align: center;
  }
  .cs-cta-contact-pill {
    justify-content: center;
  }
  .cs-cta-right-img {
    justify-content: center;
    align-items: center;
    padding-right: 0 !important;
  }
  .cta-illustration {
    max-height: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .cs-cta-main-title {
    font-size: 26px !important;
    line-height: 36px !important;
  }
  .cs-cta-sub-title {
    font-size: 18px !important;
    line-height: 24px !important;
    margin-bottom: 18px;
  }
  .cs-cta-contact-pill {
    padding: 14px 20px;
    gap: 12px;
    border-radius: 20px;
    flex-direction: column;
    width: 100%;
  }
  .pill-divider {
    display: none;
  }
  .pill-phone-numbers {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
  }
  .pill-phone-sep {
    display: none !important;
  }
  .pill-text {
    display: block !important;
    text-align: center !important;
    white-space: nowrap !important;
  }
  .pill-link,
  .pill-text {
    font-size: 14px !important;
  }
  .cta-illustration {
    max-height: 260px;
  }
}
