.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section {
  background-color: white;
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}


/* ---- Enhanced Services Page Styling ---- */


@media (max-width: 992px) {
  .section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 1.6rem;
  }
}


/* ============================
   FRAUD RISK MANAGEMENT SECTION
   ============================ */

.fraud-section {
  padding: 80px 0;
  background: #f8f9fa;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

.fraud-section .section-title {
  font-weight: 600;
  color: #2c2c2c;
  letter-spacing: 0.5px;
}

.fraud-section .intro-text {
  max-width: 850px;
  margin: 0 auto 40px auto;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  color: #555;
}

.fraud-points {
  max-width: 900px;
  margin: 0 auto;
}

.fraud-points h5 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: #1a1a1a;
  font-weight: 600;
  position: relative;
}

.fraud-points h5::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 2px;
  background: #0d6efd; /* Subtle blue accent */
  border-radius: 2px;
}

.fraud-points p {
  color: #444;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.fraud-points ul {
  margin-left: 15px;
  padding-left: 15px;
  list-style: none;
}

.fraud-points ul li {
  margin-bottom: 15px;
  line-height: 1.7;
  position: relative;
  padding-left: 20px;
}

.fraud-points ul li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: #0d6efd;
  font-size: 18px;
  line-height: 1;
}

.fraud-points strong {
  color: #111;
  font-weight: 600;
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */
@media (max-width: 768px) {
  .fraud-section {
    padding: 50px 20px;
  }

  .fraud-section .intro-text {
    font-size: 14px;
    text-align: justify;
  }

  .fraud-points h5 {
    font-size: 16px;
  }

  .fraud-points p,
  .fraud-points li {
    font-size: 14px;
  }

  .fraud-points ul li::before {
    font-size: 16px;
  }
}


/* =======================================
   UNIFIED RISK & OPERATIONS SECTION STYLE
   (Fraud, Credit, Employment, Vendor, Payroll)
   ======================================= */

.section {
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.section .section-title {
  font-weight: 600;
  color: #2c2c2c;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
}

.section p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* Centered intro text (used in Employment & Payroll sections) */
.section .intro-text {
  max-width: 850px;
  margin: 0 auto 40px auto;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  color: #555;
}

/* Lists across all sections */
.section ul {
  list-style: none;
  padding-left: 15px;
  margin-bottom: 30px;
}

.section ul li {
  margin-bottom: 16px;
  padding-left: 22px;
  position: relative;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

.section ul li::before {
  content: "▹";
  position: absolute;
  left: 0;
  top: 0;
  color: #0d6efd; /* Accent blue */
  font-size: 18px;
  line-height: 1;
}

.section strong {
  color: #111;
  font-weight: 600;
}

/* Background alternation for visual rhythm */
.bg-light {
  background: #f8f9fa !important;
}

/* Vendor-specific adjustments (since it has image left) */
.vendor-section img {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Card style for Advisory section */
.card {
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 16px !important;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */

@media (max-width: 992px) {
  .section {
    padding: 60px 20px;
  }

  .section img {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 50px 20px;
  }

  .section p,
  .section ul li,
  .section .intro-text {
    font-size: 14px;
    line-height: 1.8;
  }

  .section .intro-text {
    text-align: justify;
  }
}


/* ===============================
   Responsive Fixes for Services Page
   =============================== */

@media (max-width: 767.98px) {
  .about.section .row {
    display: flex;
    flex-direction: column-reverse !important; 
    text-align: center;
  }

  .about.section img {
    margin-top: 20px;
    width: 100%;
    height: auto;
  }

  .about.section .section-title {
    font-size: 1.5rem !important;
    margin-bottom: 1rem;
  }

  .about.section p {
    text-align: justify;
    padding: 0 10px;
  }

  .vendor-section .col-lg-6 {
    margin-left: 0 !important;
    padding: 0 25px !important;
  }

  .vendor-section img {
    margin-top: 25px;
    border-radius: 12px;
  }
}

.section-title.mob {
  font-family: "Lora", serif;
  font-weight: 700;
  margin-left: 0;
  text-align: left;
}

@media (min-width: 992px) {
  .section-title.mob {
    margin-left: -40px;
  }
}

@media (max-width: 991px) {
  .section-title.mob {
    text-align: center;
    font-size: 1.5rem;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}


@media (min-width: 768px) and (max-width: 991.98px) {
  .about.section img {
    max-width: 90%;
    margin: 0 auto;
    display: block;
  }

  .vendor-section .col-lg-6 {
    margin-left: 0 !important;
    padding: 0 20px !important;
  }
}
