* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff1500;
}

.cta-button button {
    padding: 0.8rem 1.5rem;
    background-color: #ff0000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button button:hover {
    background-color: #b30000;
}
/* Hero Section Styling */
.container {
    max-width: 900px; /* Constrained width for the form area */
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Section 1: Hero Banner --- */
.hero-banner {
    height: 100vh; /* Full screen height */
    width: 100%;
    
    /* REPLACE THIS with your image path */
    background-image: url('images/about/Frame-44.png');
    
    background-size: cover;
    background-position: center;
}
.image-display-section {
  /* This just adds some space around the section */
  padding: 2rem 0; 
  background: #ffffff;
  
  /* This will center the image if it's not full-width */
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-display-section img {
  /* This makes the image responsive */
  width: 100%; 
  
  /* Set a max-width to match your site's container */
  max-width: 1600px; 
  
  height: auto; /* Keeps the image's aspect ratio */
  display: block;
}
/* --- Section 2: Careers Form --- */
.careers-section {
    padding: 80px 0;
}

.intro-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.intro-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a2b48;
    margin: 0 0 10px 0;
}

.intro-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a2b48;
    margin: 0 0 20px 0;
}

.intro-text p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

/* * ADD THIS NEW BLOCK TO CENTER THE FORM
 * This matches the form's width to the intro text width (700px)
 * and centers it on the page.
*/
.career-form {
    max-width: 700px;
    margin: 0 auto; /* Centers the form block */
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns */
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #495057; /* CHANGE: A softer, more professional grey-blue */
  margin-bottom: 8px;
}

/* Add the red asterisk */
.form-group label::after {
  content: ' *';
  color: #d93025; /* Red color */
}

/* Styling for text, email, tel inputs */
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
  width: 100%;
  padding: 14px; /* Slightly more padding to match image */
  font-size: 1rem;
  border: 1px solid #ced4da;
  background-color: #f8f9fa; /* This is perfect! */
  border-radius: 4px;
  box-sizing: border-box;
}

/* CHANGE 1: Added placeholder styling */
.form-group input::placeholder {
  color: #adb5bd; /* Light grey placeholder text */
  opacity: 1; /* Firefox fix */
}

/* Styling for file inputs */
.form-group input[type="file"] {
  font-size: 0.9rem;
  color: #555;
  margin-top: 4px; /* Align it better with other fields */
}

/* Style the file input button */
.form-group input[type="file"]::file-selector-button {
  /* CHANGE 2: Matched the blue button color from the image */
  background-color: #3a7bc8; 
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.85rem;
  margin-right: 10px;
  transition: background-color 0.3s ease;
}

.form-group input[type="file"]::file-selector-button:hover {
  background-color: #326ab1; /* Darker on hover */
}

/* Submit Button */
.submit-container {
  text-align: center;
  margin-top: 40px;
}

.submit-btn {
  padding: 14px 40px; /* More padding */
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  
  /* CHANGE 3: Matched the dark teal button color */
  background-color: #084c61;
  
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #063a4c; /* Darker on hover */
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  /* Stack form fields in a single column */
  .form-grid {
    grid-template-columns: 1fr;
  }
}