/* Base Styles */
body {
  background-color: #121212;
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
}

/* Header Container */
.site-header {
  background-color: #1e1e1e;
  padding: 10px 20px;
  border-bottom: 1px solid #333;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Logo and Brand */
.brand {
  display: flex;
  align-items: center;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

/* Nav Toggle (Mobile) */
.nav-toggle {
  font-size: 24px;
  background: none;
  color: #fff;
  border: none;
  cursor: pointer;
  display: none;
}
.nav-toggle .icon {
  font-size: 24px;
  line-height: 1;
  display: inline-block;
  transition: transform 0.3s ease;
}

.nav-toggle.open .icon {
  transform: rotate(180deg); /* Optional animation */
}

/* Nav Links */
.navbar {
  flex-basis: 100%;
  display: none;
}

.navbar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
}

.navbar li {
  display: inline-block;
}

.navbar a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
}

.navbar a:hover {
  background-color: #555;
}

.current {
  background-color: #3498db;
  color: #fff;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .navbar {
    display: block !important;
    flex-basis: auto;
  }

  .navbar ul {
    display: flex;
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .nav-toggle {
    display: block;
  }

  .navbar.open {
    display: block;
  }

  .navbar ul {
    text-align: left;
  }

  .navbar li {
    display: block;
  }
}

footer {
    background-color: #333;
    text-align: center;
    padding: 1rem;
}

.container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

p a {
    color: #4e8cff;
    /* Set your desired link color in dark mode */
    text-decoration: none;
    border-bottom: 1px solid #4e8cff;
    /* Add an underline effect on hover */
    transition: border-bottom 0.3s ease;
}

p a:hover {
    border-bottom: 2px solid #4e8cff;
    /* Enhance the underline effect on hover */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #fff;
    /* Text color for headings */
    font-weight: bold;
    /* Adjust font weight as needed */
}

/* Style for paragraphs */
#main p {
    color: #fff;
    /* Text color for paragraphs */
    margin: 0px;
    padding: 5px;
}

#main .container {
    text-align: center;
    flex-direction: column;
    height: 50vh;
}

#main h1,
#main h2 {
    margin: 0px;
}

/* Section 2: Job Promotion Section */
.job-section {
    background-color: #1e1e1e; /* Slight contrast from #121212 */
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 12px;
    margin: 60px auto 40px;
    max-width: 1000px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
    border: 1px solid #2e2e2e;
}

.job-section-content {
    max-width: 800px;
    margin: 0 auto;
}

.job-section h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    font-weight: 600;
    color: #ffffff;
}

.job-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #cccccc;
}

.view-jobs-button {
    background-color: #0096ff;
    color: #fff;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 10px rgba(0, 150, 255, 0.2);
    display: inline-block;
}

.view-jobs-button:hover {
    background-color: #0077cc;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .job-section {
        padding: 40px 15px;
    }

    .job-section h2 {
        font-size: 1.6rem;
    }

    .job-section p {
        font-size: 1rem;
    }

    .view-jobs-button {
        width: 100%;
        padding: 14px 0;
        font-size: 1rem;
    }
}

.visually-hidden {
    position: fixed;
    bottom: 0;
    left: 0;
    /* z-index: 9999; */
    padding: 0px;
    background-color: white;
    color: black;
    font-size: 30px;
    font-family: Arial, sans-serif;
    /* visibility: hidden; */
}
/* Success message - Dark Mode */
#announcement.success {
    /* display: block; */
    background: #22372b; /* Dark green background */
    color: #a3e4b0; /* Soft green text */
    border: 1px solid #3c6655; /* Subtle border */
}

/* Error message - Dark Mode */
#announcement.error {
    /* display: block; */
    background: #3b1f1f; /* Dark red background */
    color: #f28b82; /* Soft red text */
    border: 1px solid #8b3a3a; /* Subtle border */
}
/* Media query for mobile devices */
@media (max-width: 767px) {
    .visually-hidden {
        width: 100%;
        /* Cover entire width */
        left: 0;
        /* text-align: center; */
    }
}