/* Gradient Text and Glow Effects */
.gradient-text-green {
    background: linear-gradient(to right, #6EE7B7, #10B981);
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .gradient-text-orange {
    background: linear-gradient(to right, #FDBA74, #F97316);
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .btn-glow-green {
    box-shadow: 0 0 15px 5px rgba(16, 185, 129, 0.4);
  }
  
  .btn-glow-orange {
    box-shadow: 0 0 15px 5px rgba(249, 115, 22, 0.4);
  }
  
  .card-glow {
    position: relative;
  }
  
  .card-glow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    border-radius: 1.15rem;
    z-index: -1;
  }
  
  /* Navigation Link Hover Animation */
  .nav-link {
    position: relative;
    padding-bottom: 0.5rem;
    /* Space for the line */
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #F97316;
    /* Orange color */
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
  }
  
  .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }