/* Career Hero Section */
main{
    background-color: #222563;
}
.career-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    height: 100vh;
  }
  
  .career-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .career-hero .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
  }
  
  .career-hero .hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  /* Career Opportunities Section */
  .career-section {
    padding: 5rem 0;
  }
  
  .career-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }
  
  .job-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: #000;
  }
  
  .job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
  }
  
  .job-header h3 {
    font-size: 1.25rem;
    color: var(--zhahi-navy);
  }
  
  .job-type {
    background-color: var(--zhahi-teal);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
  }
  
  .job-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #666;
  }
  
  .job-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  
  .job-description {
    margin-bottom: 1rem;
    color: #333;
  }
  
  .job-requirements {
    margin: 1.5rem 0;
    padding: 0;
    list-style: none;
  }
  
  .job-requirements li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
  }
  
  .job-card .btn-primary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  .cta-box {
    background-color: rgba(30, 136, 229, 0.1);
    border: 1px solid var(--zhahi-teal);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
  }
  
  .cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
  }
  
  .cta-box p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
  }
  
  /* Training Programs Section */
  .training-section {
    padding: 5rem 0;
  }
  
  .training-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }
  
  .training-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: #000;
  }
  
  .training-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .training-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .training-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--zhahi-navy);
  }
  
  .training-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #666;
  }
  
  .training-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  
  .training-card p {
    margin-bottom: 1rem;
    color: #333;
  }
  
  .training-topics {
    margin: 1.5rem 0;
    padding: 0;
    list-style: none;
  }
  
  .training-topics li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
  }
  
  .training-card .btn-primary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  .training-benefits {
    margin-top: 4rem;
  }
  
  .training-benefits h3 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: white;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .benefit-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
  }
  
  .benefit-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .benefit-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: white;
  }
  
  .benefit-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
  }
  
  /* Testimonials Section */
  .testimonials-section {
    padding: 5rem 0;
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }
  
  .testimonial-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #000;
  }
  
  .testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  .testimonial-content i {
    font-size: 1.5rem;
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .testimonial-content p {
    padding-left: 2rem;
    font-style: italic;
    color: #333;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--zhahi-navy);
  }
  
  .testimonial-author span {
    font-size: 0.875rem;
    color: #666;
  }

 /* Resume Submission Section */
.resume-section {
  padding-bottom: 5rem;
}


.resume-container {
  background-color: var(--zhahi-navy);
  border-radius: 0.5rem;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.resume-content{
  display: flex;
  align-items: center;
  justify-content: center;
}

.resume-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: white;
}

.resume-content p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.resume-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.resume-form {
  background-color: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  color: #000;
}

.resume-form h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--zhahi-navy);
  text-align: center;
}

.job-application-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  font-size: 0.95rem;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.file-upload {
  position: relative;
  margin: 1rem 0;
}

.file-upload input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.file-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border: 2px dashed #ddd;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.file-label:hover {
  border-color: var(--zhahi-teal);
  background-color: rgba(0, 172, 193, 0.05);
}

.file-label i {
  font-size: 2rem;
  color: var(--zhahi-teal);
  margin-bottom: 0.5rem;
}

.file-text {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.file-name {
  font-size: 0.85rem;
  color: #666;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
}

.checkbox-group input {
  width: auto;
}

.checkbox-group label {
  font-size: 0.85rem;
  color: #666;
}

.submit-btn {
  position: relative;
  transition: all 0.3s ease;
}

.submit-text {
  transition: opacity 0.3s ease;
}

.spinner {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hidden {
  display: none;
}

.form-feedback {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 0.25rem;
  text-align: center;
  font-size: 0.9rem;
  display: none;
}

.form-feedback.success {
  background-color: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
  display: block;
}

.form-feedback.error {
  background-color: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
  display: block;
}

  
  /* Animations */
  .animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Media Queries */
  @media (min-width: 640px) {
    .benefits-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .resume-features {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 768px) {
    .career-grid,
    .training-grid,
    .testimonials-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-box {
      padding: 3rem;
    }

    .resume-container {
      grid-template-columns: 1fr 1fr;
      padding: 3rem;
    }
    
    .resume-features {
      grid-template-columns: 1fr;
    }
  }
  
  @media (min-width: 1024px) {
    .career-grid,
    .training-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-grid {
      grid-template-columns: repeat(4, 1fr);
    }
    
    .career-hero {
      min-height: 70vh;
    }

    .resume-content h2 {
      font-size: 2rem;
    }
    
    .resume-form h3 {
      font-size: 1.5rem;
    }
  }



   /* Form animations */
.fade-in-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease-out;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.6s ease-out;
}

.fade-in-left.animate,
.fade-in-right.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Loading spinner */
.bx-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Form success/error states */
.form-success .form-input,
.form-success .form-select,
.form-success .form-textarea {
  border-color: #4CAF50 !important;
}

.form-error .form-input,
.form-error .form-select,
.form-error .form-textarea {
  border-color: #F44336 !important;
}
  
/* Notification Toast Styles */
.notification-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: rgba(17, 34, 64, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(100, 255, 218, 0.3);
  border-radius: 8px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 9999;
  max-width: 350px;
}

.notification-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.notification-toast.success {
  border-left: 4px solid #4CAF50;
}

.notification-toast.error {
  border-left: 4px solid #F44336;
}

.toast-icon {
  font-size: 24px;
}

.toast-icon.success {
  color: #4CAF50;
}

.toast-icon.error {
  color: #F44336;
}

.toast-message {
  color: white;
  font-size: 14px;
  line-height: 1.4;
}

/* Close button for toast */
.toast-close {
  margin-left: 15px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.toast-close:hover {
  color: white;
}