
body {
      font-family: 'Roboto', sans-serif;
      background-color: #f8f9fa;
      overflow-x: hidden;
    }
    /* Navbar */
    .navbar {
      background-color: #fff;
      border-bottom: 3px solid #0055a5;
      padding: 1.5rem 0;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    .navbar-brand img {
      height: 50px;
    }
    .nav-link {
      font-size: 1.1rem;
      font-weight: 500;
      color: #003087;
      transition: color 0.3s;
    }
    .nav-link:hover {
      color: #0055a5;
    }
    .dropdown-menu {
      border: none;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    .dropdown-item {
      font-weight: 400;
      color: #003087;
    }
    .dropdown-item:hover {
      background-color: #f8f9fa;
      color: #0055a5;
    }
    /* Banner Section */
    .banner-section {
      position: relative;
      height: 450px;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      margin-bottom: 3rem;
    }
    .banner-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    }
    .banner-content {
      position: relative;
      z-index: 1;
      padding: 2rem;
      max-width: 900px;
    }
    .banner-content h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 1rem;
      text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    }
    .banner-content p {
      font-size: clamp(1.1rem, 2vw, 1.4rem);
      font-weight: 300;
      line-height: 1.6;
      margin-bottom: 2rem;
    }
    .banner-content .btn-primary {
      font-size: 1.2rem;
      font-weight: 500;
      padding: 0.8rem 2.5rem;
      border-radius: 50px;
      background-color: #80b3ff;
      border: 2px solid #80b3ff;
      transition: all 0.3s ease;
    }
    .banner-content .btn-primary:hover {
      background-color: transparent;
      color: #fff;
      border-color: #fff;
      transform: scale(1.05);
    }
    /* Careers Section */
    .careers-section {
      padding: 4rem 0;
      background-color: #fff;
    }
    .careers-section h1 {
      font-size: 2.8rem;
      font-weight: 700;
      color: #003087;
      margin-bottom: 1rem;
    }
    .careers-section p.lead {
      font-size: 1.3rem;
      font-weight: 300;
      color: #4a4a4a;
      margin-bottom: 2rem;
    }
    /* Why Join Section */
    .why-join {
      background: linear-gradient(135deg, #f8f9fa, #e9ecef);
      padding: 2.5rem;
      border-radius: 12px;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
      margin-bottom: 3rem;
    }
    .why-join h5 {
      font-size: 1.6rem;
      font-weight: 500;
      color: #003087;
      margin-bottom: 1.5rem;
    }
    .why-join .row {
      display: flex;
      flex-wrap: wrap;
    }
    .why-join .col-md-6 {
      display: flex;
    }
    .benefit-card {
      background-color: #fff;
      padding: 1.5rem;
      border-radius: 8px;
      margin-bottom: 1rem;
      transition: transform 0.3s, box-shadow 0.3s;
      min-height: 180px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 100%;
    }
    .benefit-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }
    .benefit-card i {
      font-size: 2rem;
      color: #0055a5;
      margin-bottom: 0.5rem;
    }
    .benefit-card h6 {
      font-size: 1.1rem;
      font-weight: 500;
      color: #003087;
    }
    .benefit-card p {
      font-size: 0.95rem;
      color: #4a4a4a;
      flex-grow: 1;
    }
    /* Job Openings */
    .job-openings {
      padding: 2rem 0;
    }
    .job-card {
      border: none;
      border-radius: 12px;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s, box-shadow 0.3s;
      background-color: #fff;
      padding: 1.5rem;
      position: relative;
    }
    .job-card:hover {
      transform: scale(1.03);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }
    .job-card .badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background-color: #80b3ff;
      color: #fff;
      font-size: 0.85rem;
      padding: 0.5rem 1rem;
      border-radius: 50px;
    }
    .job-card h5 {
      font-size: 1.4rem;
      font-weight: 500;
      color: #003087;
      margin-bottom: 0.5rem;
    }
    .job-card p {
      font-size: 1rem;
      color: #4a4a4a;
      margin-bottom: 1rem;
    }
    .job-card .btn-primary {
      background-color: #0055a5;
      border-color: #0055a5;
      font-weight: 500;
      padding: 0.5rem 1.5rem;
      border-radius: 50px;
      transition: all 0.3s ease;
    }
    .job-card .btn-primary:hover {
      background-color: #80b3ff;
      border-color: #80b3ff;
      transform: scale(1.05);
    }
    .job-row:nth-child(odd) .job-card {
      background-color: #f8f9fa;
    }
    /* Call to Action */
    .cta-section {
      background: linear-gradient(135deg, #0055a5, #80b3ff);
      color: #fff;
      padding: 3rem;
      border-radius: 12px;
      text-align: center;
      margin-top: 3rem;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }
    .cta-section h5 {
      font-size: 1.6rem;
      font-weight: 500;
      margin-bottom: 1rem;
    }
    .cta-section p {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
    }
    .cta-section .btn-outline-light {
      border-color: #fff;
      color: #fff;
      font-weight: 500;
      padding: 0.75rem 2rem;
      border-radius: 50px;
      transition: all 0.3s ease;
      animation: pulse 2s infinite;
    }
    .cta-section .btn-outline-light:hover {
      background-color: #fff;
      color: #003087;
      animation: none;
    }
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }
    /* Back to Top Button */
    .back-to-top {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #0055a5;
      color: #fff;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s, transform 0.3s;
      z-index: 1000;
    }
    .back-to-top.show {
      opacity: 1;
      transform: translateY(0);
    }
    .back-to-top:hover {
      background-color: #80b3ff;
      transform: translateY(-5px);
    }
    /* Footer */
    footer {
      background-color: #003087;
      color: white;
      padding: 3rem 0;
    }
    .footer-links a {
      color: #f8f9fa;
      text-decoration: none;
      margin: 0 1rem;
      font-size: 1rem;
      font-weight: 400;
      transition: color 0.3s;
    }
    .footer-links a:hover {
      color: #80b3ff;
    }
    .social-icons a {
      color: #fff;
      font-size: 1.2rem;
      margin: 0 0.5rem;
      transition: color 0.3s;
    }
    .social-icons a:hover {
      color: #80b3ff;
    }
    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .navbar {
        border-bottom: 2px solid #0055a5;
        padding: 1rem 0;
      }
      .nav-link {
        font-size: 1rem;
      }
      .banner-section {
        height: 350px;
        background-attachment: scroll;
      }
      .banner-content h1 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
      }
      .banner-content p {
        font-size: clamp(0.9rem, 1.5vw, 1.1rem);
      }
      .banner-content .btn-primary {
        padding: 0.6rem 2rem;
        font-size: 1rem;
      }
      .careers-section h1 {
        font-size: 2.2rem;
      }
      .careers-section p.lead {
        font-size: 1.1rem;
      }
      .why-join {
        padding: 1.5rem;
      }
      .benefit-card {
        padding: 1rem;
        min-height: 160px;
      }
      .job-card {
        padding: 1rem;
      }
      .cta-section {
        padding: 2rem;
      }
    }