
  /* Professional Search Button */
  .search-btn {
    background: linear-gradient(135deg, #3B71FE 0%, #2954d4 100%);
    color: white !important;
    border-radius: 50px;
    padding: 12px 24px !important;
    margin: 0 15px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    box-shadow: 0 4px 12px rgba(59, 113, 254, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
  }
  
  .search-btn:hover {
    background: linear-gradient(135deg, #2954d4 0%, #1a3fb8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(59, 113, 254, 0.4);
    color: white !important;
  }
  
  .search-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(59, 113, 254, 0.3);
  }
  
  /* Clean Search Icon */
  .search-icon {
    font-size: 20px;
    margin-right: 8px;
    transition: transform 0.3s ease;
  }
  
  .search-btn:hover .search-icon {
    transform: scale(1.1);
  }
  
  /* Subtle shine effect */
  .search-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.1) 50%,
      rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: transform 0.6s ease;
  }
  
  .search-btn:hover::after {
    transform: translateX(100%) rotate(30deg);
  }


