/* =========================================
   BASIC COLORS & COMMON FIXES
========================================= */

.bi-check-circle {
  color: #00b8ff !important;
}

.read-more {
  color: #fff !important;
  background-color: #00b8ff !important;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

span a {
  color: black !important;
}

/* =========================================
   SECTION TITLE (CLEAN + FINAL)
========================================= */

.section-title h2 {
  color: var(--heading-color);
  margin: 0;
  font-size: 22px;      /* FINAL SIZE */
  font-weight: 700;
  font-family: var(--nav-font);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;

}

.section-title p {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1;
  margin: 0;
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.container.section-title {
  text-align: center;
}

/* =========================================
   RESET CSS
========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #f5f7fa;
  padding: 20px;
}

/* =========================================
   MAIN BOX DESIGN
========================================= */

.main-container {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* LEFT SECTION */
.left-section {
  background-color: #2e2e80;
  color: white;
  padding: 40px 30px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.left-section h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.left-section p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.explore-btn {
  background-color: #4c4cad;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 15px;
  border-radius: 25px;
  cursor: pointer;
  margin-top: auto;
  transition: background-color 0.3s;
}

.explore-btn:hover {
  background-color: #3a3a90;
}

/* RIGHT SECTION */
.right-section {
  display: flex;
  flex: 2 1 700px;
  flex-wrap: wrap;
  background-color: white;
  padding: 20px;
  gap: 15px;
}

.card {
  flex: 1 1 250px;
  background-color: #eef6fb !important;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  min-width: 260px;
}

.card p {
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
}

.card strong {
  color: #000;
  font-weight: bold;
}
    .card h3 {
      color: #0077cc;
      font-size: 14px;
      margin-bottom: 4px;
    }

    .card h4 {
      background-color: #2f3f54;
      color: #fff;
      padding: 6px;
      border-radius: 4px;
      font-size: 13px;
      margin-top: 0;
      margin-bottom: 10px;
    }
    
    /* BUTTON HOVER COLOR */
   .btn-get-started:hover {
     background-color: #00b8ff!important;   /* hover color you want */
     border:#00b8ff!important;
}


.why-us .why-box {
    color: #000!important;
    background: #fff!important;
    padding: 30px;
}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media only screen and (max-width: 600px) {
  .main-container {
    flex-direction: column;
  }

  .right-section {
    flex-direction: column;
    padding: 15px;
  }

  .card {
    width: 100%;
  }

  .explore-btn {
    width: 100%;
    text-align: center;
  }
      .section-title h2 {
  padding-bottom: 12px !important; /* space between text & underline */
}

.section-title h2::after {
  margin-top: 12px !important;     /* pushes the underline downward */
}
}
