/* Careers Page Styles */
.careers-page {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  /* Hero Section */
  .careers-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
  }
  
  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
  }
  
  .hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
  }
  
  @keyframes float {
    0%,
    100% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(-20px) rotate(180deg);
    }
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .title-line {
    display: block;
  }
  
  .title-line.highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* Button Styles */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    min-width: 140px;
  }
  
  .btn-primary {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    border-color: #007bff;
  }
  
  .btn-primary:hover {
    background: linear-gradient(45deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
  }
  
  .btn-outline {
    background: transparent;
    color: white;
    border-color: white;
  }
  
  .btn-outline:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
  }
  
  .btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
    min-width: 100px;
  }
  
  /* Section Styles */
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
  }
  
  .section-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Why Join Us Section */
  .why-join-section {
    padding: 6rem 0;
    background: #f8f9fa;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
  }
  
  .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  }
  
  .benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
  }
  
  .benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
  }
  
  .benefit-description {
    color: #666;
    line-height: 1.6;
  }
  
  /* Job Openings Section */
  .job-openings-section {
    padding: 6rem 0;
    background: white;
  }
  
  .department-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
  }
  
  .filter-btn {
    padding: 10px 20px;
    border: 2px solid #e9ecef;
    background: white;
    color: #666;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
  }
  
  .filter-btn:hover,
  .filter-btn.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
  }
  
  .jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .job-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  
  .job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
  }
  
  .job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .job-department {
    background: #007bff;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .job-type {
    background: #f8f9fa;
    color: #666;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
  }
  
  .job-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
  }
  
  .job-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .job-details {
    margin-bottom: 1.5rem;
  }
  
  .job-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #666;
  }
  
  .job-detail i {
    width: 16px;
    color: #007bff;
  }
  
  .job-actions {
    display: flex;
    gap: 1rem;
  }
  
  .no-jobs-message {
    text-align: center;
    padding: 3rem;
    color: #666;
  }
  
  .no-jobs-content i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 1rem;
  }
  
  /* Testimonials Section */
  .testimonials-section {
    padding: 6rem 0;
    background: #f8f9fa;
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  }
  
  .testimonial-content {
    margin-bottom: 1.5rem;
  }
  
  .quote-icon {
    color: #007bff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
  }
  
  .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .author-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
  }
  
  .author-position {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }
  
  .author-experience {
    color: #007bff;
    font-size: 0.75rem;
    font-weight: 500;
  }
  
  /* Application Process Section */
  .application-process-section {
    padding: 6rem 0;
    background: white;
  }
  
  .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .step-item {
    text-align: center;
    position: relative;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
  }
  
  .step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
  }
  
  .step-description {
    color: #666;
    line-height: 1.6;
  }
  
  /* Contact Section */
  .careers-contact-section {
    padding: 6rem 0;
    background: #f8f9fa;
  }
  
  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
  }
  
  .contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
  }
  
  .contact-info p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.125rem;
  }
  
  .contact-details > * + * {
    margin-top: 1rem;
}

  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #555;
  }
  
  .contact-item i {
    width: 20px;
    color: #007bff;
    font-size: 1.125rem;
  }
  
  .contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #007bff;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
  }
  
  .form-group small {
    display: block;
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.875rem;
  }
  
  .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.4;
  }
  
  .checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
  }
  
  @media (max-width: 992px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .contact-info h2 {
    font-size: 1.75rem;
  }

  .contact-info p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .careers-contact-section {
    padding: 4rem 0;
  }

  .contact-content {
    gap: 2rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.95rem;
    padding: 10px 14px;
  }

  .form-group label {
    font-size: 0.95rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .careers-contact-section {
    padding: 3rem 1rem;
  }

  .contact-form {
    padding: 1rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.875rem;
    padding: 8px 12px;
  }

  .form-group label {
    font-size: 0.875rem;
  }

  .contact-info h2 {
    font-size: 1.5rem;
  }

  .contact-info p {
    font-size: 0.95rem;
  }

  .contact-item {
    font-size: 0.9rem;
    gap: 0.5rem;
  }

  .contact-item i {
    font-size: 1rem;
  }
}

  
  
  /* Modal Styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
  }
  
  .modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
  }
  
  @keyframes modalSlideIn {
    from {
      opacity: 0;
      transform: translateY(-50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
  }
  
  .modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  
  .modal-close:hover {
    background: #f8f9fa;
    color: #333;
  }
  
  .modal-body {
    padding: 2rem;
  }
  
  .modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
  }
  
  /* Notification Styles */
  #notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1100;
  }
  
  .notification {
    background: white;
    border-left: 4px solid #28a745;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.3s ease-out;
    max-width: 350px;
  }
  
  .notification.error {
    border-left-color: #dc3545;
  }
  
  .notification.warning {
    border-left-color: #ffc107;
  }
  
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(100%);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }
  
    .hero-stats {
      gap: 2rem;
    }
  
    .stat-number {
      font-size: 2rem;
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .contact-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .hero-actions {
      flex-direction: column;
      align-items: center;
    }
  
    .btn {
      width: 100%;
      max-width: 250px;
    }
  
    .department-filter {
      justify-content: flex-start;
      overflow-x: auto;
      padding-bottom: 1rem;
    }
  
    .filter-btn {
      white-space: nowrap;
      flex-shrink: 0;
    }
  
    .jobs-grid {
      grid-template-columns: 1fr;
    }
  
    .process-steps {
      grid-template-columns: 1fr;
    }
  
    .modal-content {
      margin: 10% auto;
      width: 95%;
    }
  
    .modal-header,
    .modal-body,
    .modal-footer {
      padding: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .hero-title {
      font-size: 2rem;
    }
  
    .hero-subtitle {
      font-size: 1rem;
    }
  
    .hero-stats {
      flex-direction: column;
      gap: 1rem;
    }
  
    .benefits-grid,
    .testimonials-grid {
      grid-template-columns: 1fr;
    }
  
    .job-actions {
      flex-direction: column;
    }
  }
  
  /* Print Styles */
  @media print {
    .careers-hero,
    .modal,
    #notification-container {
      display: none;
    }
  
    .careers-page {
      color: black;
    }
  
    .job-card,
    .benefit-card,
    .testimonial-card {
      break-inside: avoid;
      box-shadow: none;
      border: 1px solid #ccc;
    }
  }
  
  /* High Contrast Mode */
  @media (prefers-contrast: high) {
    .btn-primary {
      background: #000;
      border-color: #000;
    }
  
    .btn-outline {
      border-color: #000;
      color: #000;
    }
  
    .job-card:hover {
      border-color: #000;
    }
  }
  
  /* Reduced Motion */
  @media (prefers-reduced-motion: reduce) {
    .hero-particles,
    .benefit-card:hover,
    .job-card:hover,
    .testimonial-card:hover {
      animation: none;
      transform: none;
    }
  
    .btn:hover {
      transform: none;
    }
  }
  