
        .hovercard:hover {
  box-shadow: 0px 0px 10px black;
  transition: all 0.5s ease;
}

#strength {
  background: linear-gradient(to right bottom, #eaa636, #493626be);
}

.expanding-line {
  height: 4px; 
  width: 100px;
  background-color: #ffff;
  border-radius: 6px;
  transition: width 0.5s ease-in-out;
  margin-top: 2rem; 
  margin-bottom: 2rem; 
}

#strength:hover .expanding-line {
  width: 150px; 
}








.reason-card {
      position: relative;
      border: none;
      transition: all 0.2s ease-in-out;
      overflow: hidden;
      background: #f8f9fa;
      padding: 20px;
      min-height: 220px;
    }

    .reason-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('../img/bg.png') no-repeat center/cover;
      opacity: 0;
      transition: opacity 0.4s ease-in-out;
      z-index: 0;
    }

    .reason-card:hover::before {
      opacity: 0.2; /* Light opacity for bg image */
    }

    .reason-card h5,
    .reason-card p {
      position: relative;
      z-index: 1;
    }

    .btn-custom {
      background-color: #ff4d2d;
      color: #fff;
      border-radius: 5px;
      padding: 10px 20px;
      text-decoration: none;
    }

    .btn-custom:hover {
      background-color: #e63e1f;
      color: #fff;
    }




    .contact-card {
    transition: all 0.3s ease-in-out;
  }
  .contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.25);
  }