
        .hovercard:hover {
  box-shadow: 0px 0px 10px black;
  transition: all 0.5s ease;
}

#strength {
  background: linear-gradient(to right bottom, #00396d, #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 {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
  }



  .contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  }

 
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
  }

  .contact-icon {
    min-width: 45px;
    height: 45px;
    background: rgba(33, 92, 92, 0.08);
    color: #00396d;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s ease;
  }

  .contact-card:hover .contact-icon {
    background: #00396d;
    color: #fff;
  }

  .contact-label {
    font-weight: 700;
    color: #222;
    display: block;
    margin-bottom: 2px;
  }

  @media (max-width: 768px) {
    .contact-card {
      padding: 28px 22px;
    }

    .contact-title {
      font-size: 24px;
    }

    .contact-list li {
      font-size: 15px;
    }
  }