.career-section {
  padding: 60px 20px;
  background-color: #f4f7f9; 
  width: 100%;
  box-sizing: border-box;
}

.career-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Header Styling */
.career-header {
  text-align: center;
  margin-bottom: 40px;
}

.career-header h2 {
  /* font-size: 32px; */
  color: #1a2b49;
  margin-bottom: 2px;
}

.career-header p {
  font-size: 18px;
  color: #000000;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

/* Form Container Box */
.career-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Grid Layout Rows */
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 5px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  width: 100%;
  margin-bottom: 20px;
}

/* Labels and Inputs */
.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 8px;
}

.form-group .file-info {
  font-size: 12px;
  color: #64748b;
  font-weight: normal;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  font-size: 15px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background-color: #f8fafc;
  color: #1e293b;
  transition: all 0.3s ease;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

/* Input Focus States */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2563eb; /* Corporate Blue Focus */
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Custom File Upload Styling */
.file-upload-wrapper input[type="file"] {
  background: #f1f5f9;
  padding: 6px;
  border: 2px dashed #cbd5e1;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}

.file-upload-wrapper input[type="file"]:hover {
  border-color: #2563eb;
  background-color: #f8fafc;
}

/* Textarea specific overrides */
.form-group textarea {
  resize: vertical;
  font-family: inherit;
}

/* Submit Button Layout */
.form-submit {
  text-align: right;
  margin-top: 10px;
}

.submit-btn {
  background-color: #2563eb;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.15);
}

.submit-btn:hover {
  background-color: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(37, 99, 235, 0.2);
}

.submit-btn:active {
  transform: translateY(0);
}

/* 📱 Responsive Layout for Tablets and Mobile Phones */
@media (max-width: 768px) {
  .career-form {
    padding: 25px 20px;
  }
  
  .form-row {
    flex-direction: column; 
    gap: 20px;
    margin-bottom: 0;
  }

  .form-group {
    margin-bottom: 20px;
  }
  
  .form-submit {
    text-align: center;
  }
  
  .submit-btn {
    width: 100%;
  }
}