.our-features {
  position: relative;
  background: #fff;
  /*overflow: hidden;*/
  z-index: 1;
}
.our-features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  background: #0a4b8c;
    /* background: linear-gradient(135deg, #3a669e 0%, #3492b0 100%);*/
  clip-path: polygon(0 0%, 100% 15%, 100% 100%, 0% 85%);
  z-index: -1;
}



/* Section Title */
.our-features-section-title {
  font-weight: 700;
  color: #002602;
  font-size: 2.8rem;
}

/* Pattern Section */
.our-features-pattern-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}

.our-features-pattern-line {
  flex: 1;
  height: 2px;
  background-color: #0d6efd;
  max-width: 120px;
}

.our-features-pattern-label {
  background-color: #d62250;
  color: red;
  font-weight: 600;
  border-radius: 50rem;
  padding: 7px 60px;
  white-space: nowrap;
}

/* Card Design */
.our-features-card-box {
  border-left: 5px solid yellow;
  width: 93%;
  background: white;
  color: #000;
  padding: 16px 20px;
  margin-bottom: 8px;
  border-radius: 0px;

  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

/*.our-features-card-box:hover {*/
/*  transform: translateY(-4px);*/
/*  box-shadow: 0 8px 18px rgba(0,0,0,0.25);*/
/*}*/

.right {
  margin: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .our-features-section-title {
    font-size: 2rem;
  }

  .row.g-4 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .col-md-6 {
    width: 100%;
    max-width: 500px;
  }

  .our-features-card-box {
    width: 100%;
    margin: 10px auto;
  }

  .heading-times {
    text-align: center !important;
  }

  .our-features::before {
    transform: skewY(-6deg);
  }
}
