/* FeatureCard */
.transition {
    transition: all 0.3s ease-in-out;
  }
  .ease-in-out {
    transition-timing-function: ease-in-out;
  }
  .delay-100 {
    transition-delay: 0.1s;
  }
  .duration-300 {
    transition-duration: 0.3s;
  }
  .bg-resume-100 {
    background-color: #f6f6f6;
  }
  .hover:bg-resume-500:hover {
    background-color: #3b82f6;
  }
  .text-resume-800 {
    color: #374151;
  }
  .hover:text-resume-50:hover {
    color: #f9fafb;
  }
  .fill-resume-800 {
    fill: #374151;
  }
  .px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .lg\:p-12 {
    padding: 3rem;
  }
  .flex {
    display: flex;
  }
  .shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
      0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }
  .cursor-pointer {
    cursor: pointer;
  }
  .relative {
    position: relative;
  }
  .rounded-xl {
    border-radius: 0.75rem;
  }
  
  /* CardPinnnedIcon */
  .backdrop-blur-2xl {
    backdrop-filter: blur(0.75rem);
  }
  .absolute {
    position: absolute;
  }
  .right-0 {
    right: 0;
  }
  .top-0 {
    top: 0;
  }
  .-mt-4 {
    margin-top: -1rem;
  }
  .-mr-1 {
    margin-right: -0.25rem;
  }
  .bg-resume-100 {
    background-color: #f6f6f6;
  }
  .rounded-full {
    border-radius: 9999px;
  }
  .p-2 {
    padding: 0.5rem;
  }
  .shadow-level-hard {
    box-shadow: 0px 10px 25px -5px rgba(0, 0, 0, 0.1),
      0px 5px 10px -5px rgba(0, 0, 0, 0.04);
  }
  
  /* FeatureSection */
  .text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  .mr-14 {
    margin-right: 3.5rem;
  }
  .strong {
    font-weight: 700;
  }
  .flex1{
    display:flex;
    gap: 10vw;
    justify-content: space-around;
  }
  .flex2{
    display:flex;
    gap: 10vw;
    justify-content: space-around;
  }
  .flex3{
    margin  : 50px;
    display: flex;
    flex-direction: column;
    gap: 10vh;
  }