.hero_section {
    position: relative;
    min-height: 531px;
    background-image: url('../images/solution/solution_hero_bg.webp'); /* replace with your image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-top: 56px;
}
html {
  scroll-behavior: smooth;
}
.hero_title {
  font-size: 72px;
  font-weight: 600; 
  letter-spacing: -1.44px;
  text-align: center;
  color: #fff;
}

.hero_subtitle {
  font-size: 16px;
  font-weight: normal; 
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
}
.custom_overview_section {
  padding: 80px 0;
  background-color: #f6f8fa;
}

.custom_who_for_section {
  padding: 90px 0;
  background-color: #ffffff;
}

.custom_section_title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.96px;
  text-align: center;
  color: #0d0d0d;
}

.custom_section_intro {
  max-width: 820px;
  margin: 0 auto;
  font-size: 16px;
  color: #808080;
  line-height: 1.6;
}

.custom_audience_grid {
  border-top: 1px solid #e5e7eb;
}

.custom_audience_item {
  padding: 40px 30px;
  text-align: center;
}

.custom_audience_title {
  font-size: 25px;
  font-weight: 500; 
  line-height: 1.6;
  letter-spacing: -0.5px;
  text-align: center;
  color: #000;
}

.custom_audience_desc {
  font-size: 16px;
  font-weight: normal; 
  line-height: 1.5;
  letter-spacing: normal;
  text-align: center;
  color: #808080;
}

/* Borders for desktop grid */
.custom_border_right {
  border-right: 1px solid #e5e7eb;
}

.custom_border_bottom {
  border-bottom: 1px solid #e5e7eb;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .custom_border_right {
    border-right: none;
  }

  .custom_border_bottom {
    border-bottom: 1px solid #e5e7eb;
  }
}
.custom_htd_title{
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: left;
  color: #808080;
}


.custom_htd_grid {
  border-top: 1px solid #e5e7eb;
}

.custom_htd_item {
  padding: 40px 30px;
}

.custom_htd_list {
  padding-left: 18px;
}

.custom_htd_list li {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.7;
  letter-spacing: normal;
  text-align: left;
  color: #808080;
  margin-bottom: 16px;
}

.custom_border_right {
  border-right: 1px solid #e5e7eb;
}

/* Buttons */
.custom_htd_buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.custom_primary_btn {
  background-color: #1e3a8a;
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 500;
}

.custom_primary_btn:hover {
  background-color: #1e40af;
  color: #ffffff;
}

.custom_secondary_btn {
  border: 1px solid #374151;
  color: #374151;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 500;
  background-color: transparent;
}

.custom_secondary_btn:hover {
  background-color: #f3f4f6;
}

/* Responsive */
@media (max-width: 991px) {
  .custom_border_right {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }
}

/* ===== Case Studies Section ===== */
.case_studies_section {
  padding: 80px 0;
  background-color: #f8fafc;
}

/* Headings */
.case_studies_title {
  font-size: 48px;
  font-weight: 500;
  color: #0d0d0d;
  margin-bottom: 8px;
}

.case_studies_subtitle {
  font-size: 16px;
  color: #808080;
}

/* ===== Card ===== */
.case_study_card {
  height: 100%;
  padding: 28px 26px;
  border-radius: 16px;
  color: #ffffff;
  position: relative;
  overflow: hidden;

  /* Dark blue gradient */
  background: linear-gradient(180deg, #0b3c78 0%, #072a52 100%);
}

/* Grid pattern overlay */
.case_study_card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.4;
  pointer-events: none;
}

/* ===== Logo bar ===== */
.case_study_logo {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
  width: 100%;
}

.case_study_logo img {
  max-height: 32px;
}

/* Yellow logo variant (middle card) */
.case_study_logo_yellow {
  background-color: #facc15;
}

/* ===== List ===== */
.case_study_list {
  padding-left: 18px;
  margin: 0;
  position: relative;
  z-index: 1;
}

.case_study_list li {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #fff;
}

/* Bold numbers */
.case_study_list strong {
  color: #ffffff;
  font-weight: 600;
}

/* ===== CTA Button ===== */
.case_study_cta_btn {
  background-color: #1e3a8a;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.case_study_cta_btn:hover {
  background-color: #1d4ed8;
  color: #ffffff;
  transform: translateY(-2px);
}

.cta_section {
  position: relative;
  padding: 90px 0;
  background-image: url("../images/solution/solution_cta_bg.webp"); /* replace with your bg image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  min-height: 472px;
}
.cta_title {
  font-size: 48px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

/* Subtitle */
.cta_subtitle {
  font-size: 16px;
  color: #e0ecff;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Button */
.cta_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  color: #0b3c78;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta_btn:hover {
  background-color: #e6efff;
  color: #0b3c78;
  transform: translateY(-2px);
}

/* Arrow */
.cta_arrow {
  font-size: 18px;
}
.custom_htd_section {
  scroll-margin-top: 60px;
}
/* ===== Responsive ===== */
@media (max-width: 767px) {
  .cta_section {
    padding: 70px 16px;
  }
.hero_title,.font_48,.custom_section_title{
    font-size: 24px;
}
.hero_section{
    min-height: 200px;
}
.cta_section{
min-height: 370px;
}
.custom_overview_section,.custom_who_for_section {
    padding: 32px 0;  
}
.custom_overview_text {
    text-align: justify;
}
  .cta_title {
    font-size: 28px;
  }

  .cta_subtitle {
    font-size: 14px;
  }
}
/* ===== Responsive ===== */
@media (max-width: 767px) {
  .case_studies_title {
    font-size: 24px;
  }

  .case_study_card {
    padding: 24px 20px;
  }
  .custom_audience_item,.custom_htd_item {
    padding: 16px 16px;
}

}


