/* Custom Styles  */
  .feature-image {
    transition: transform 0.4s ease;
  }

  .feature-image:hover {
    transform: translate(-15px, -15px);
  }


  @keyframes bounce-back {
    0% {
      transform: translate(-10px, -10px);
    }
    50% {
      transform: translate(0, 0);
    }
    100% {
      transform: none;
    }
  }
 /* When hovering over a feature line, animate the star */


  /* Optional: cursor pointer on hover for better UX */
  .feature-line:hover {
    cursor: pointer;
  }
    .feature-icon {
      width: 60px;
      height: 60px;
    }
    .feature-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;  
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-line {
  display: flex;
  align-items: center;
  gap: 10px;
}
    .bg-gradient-blue {
      background: rgb(15, 48, 84);
    }
    .text-shadow {
      text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }
    
 /* Smooth hover effect on feature items */
  .feature-item:hover {
    background-color: #e9f5ff;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    cursor: default;
  }

  /* Responsive adjustment for card height */
  @media (max-width: 767.98px) {
    .card.h-100 {
      height: auto !important;
    }
  }
    .star-icon {
    display: inline-block;
    transition: transform 0.6s ease;
  }

  .feature-line:hover .star-icon {
    animation: spin 0.6s forwards;
  }
@media (max-width: 576px) {
  .feature-icon {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
  .feature-line {
    align-items: flex-start;
  }
}
  @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  h1 {
    color: #343a40;
}
p {
    font-size: 1.1rem;
    line-height: 1.5;
    color:rgb(15, 48, 84);
}