@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&display=swap');

:root{
    --white: #f2f2f2;
    --black: #000;
    --background: #FBFDFB;
    --subtitle-color: rgba(0, 0, 0, 0.54);
    --sec-dark: #333;
    --primary: #185619;
    --secondary: #018103;
    --light-category: gainsboro ;
    --shadow-color: rgba(0, 0, 0, 0.25);
    --text-gray: #F9FAFB;
    --shadow: 8px 8px 0px 0px #000;
    --reverse-shadow: -8px -8px 0px 0px #000000d3;
    --slight-shadow : 2px 2px 1px 0px #000;
    --slight-shadow-faint : 2px 2px 1px 0px #00000022;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: "Inter", sans-serif;
    color: var(--black);
    user-select: none;
}

::-webkit-scrollbar {
  width: 10px;
  background-color: var(--light-category);
}

::-webkit-scrollbar-track {
  background: var(--light-category);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 6px;
  border: 2px solid var(--light-category);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

  .selection-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem 0;
  }

  .selection-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .header-section {
    text-align: center;
    margin-bottom: 3rem;
  }

  .main-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
  }

  .main-subtitle {
    font-size: 15px;
    color: var(--sec-dark);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
  }

  .cards-container {
    display: flex ;
    gap: 32px;
    justify-content: center;
    margin-top: 2rem;
  }

  .role-card {
    background: white;
    border-radius: 2px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    max-width: 500px;
    box-shadow: var(--shadow);
  }

  .line-between{
    background: var(--secondary);
    width: 1px;
  }

/*   .role-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--slight-shadow);
  } */

  .card-header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .role-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--secondary), #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
  }

  .role-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
  }

  .role-description {
    color: #4a5568;
    font-size: 0.9rem;
  }

  .steps-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
  }

  .step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: #f7fafc;
    border-radius: 6px;
    border-left: 3px solid var(--secondary);
  }

  .step-number {
    width: 32px;
    height: 32px;
    border: 1px solid var(--secondary);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
  }

  .step-content {
    flex: 1;
  }

  .step-text {
    color: #2d3748;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }

  .step-description {
    color: #4a5568;
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .continue-btn {
    width: 100%;
    background: var(--secondary);
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: block;
    text-align: center;
  }

  .continue-btn:hover {
    background: linear-gradient(135deg, #047857, var(--secondary));
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(5, 150, 105, 0.4);
  }

  .back-link {
    display: inline-flex;
    align-items: center;
    color: #4a5568;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
  }

  .back-link:hover {
    color: var(--secondary);
  }

  @media (max-width: 768px) {
    .cards-container {
      flex-direction: column;
      align-items: center;
    }
    .line-between{
      height: 1px;
      width: 70%;
      margin-top: 16px;
    }
    .role-card {
      padding: 1.5rem;
    }
  }
  @media (max-width: 668px) {
    .cards-container {
      flex-direction: column;
    }
  }