  :root {
      --primary: #004aad;
      --accent: #f9b233;
      --muted: #555;
      --bg: #fff;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }

    body {
      background-color: var(--bg);
      color: #222;
    }

    header {
      background-color: #fff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 14px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .brand img {
      width: 50px;
      height: 50px;
      object-fit: cover;
    }

    .brand h1 {
      font-size: 20px;
      font-weight: 700;
      color: var(--primary);
      letter-spacing: 0.5px;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 25px;
    }

    nav ul li a {
      text-decoration: none;
      color: var(--muted);
      font-weight: 600;
      transition: color 0.2s;
    }

    nav ul li a:hover {
      color: var(--primary);
    }

    .cta {
      background-color: var(--primary);
      color: #fff;
      padding: 8px 18px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      transition: background-color 0.3s;
    }

    .cta:hover {
      background-color: #003380;
    }

    /* Hamburger Menu */
    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
      margin-left: 90px;
    }

    .menu-toggle span {
      width: 24px;
      height: 2px;
      background-color: #333;
      border-radius: 2px;
    }

    @media (max-width: 768px) {
      nav ul {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        flex-direction: column;
        background: #fff;
        align-items: center;
        gap: 18px;
        padding: 20px 0;
        border-top: 1px solid #eee;
        display: none;
      }

      nav ul.active {
        display: flex;
      }

      .menu-toggle {
        display: flex;
      }

      .container {
        flex-wrap: wrap;
      }
    }
     /* HERO SECTION */
    .hero {
      background: linear-gradient(135deg, #004aad 0%, #0078d4 50%, #00a8e8 100%);
      color: #fff;
      text-align: center;
      padding: 100px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .hero h1 {
      font-size: 2.6rem;
      font-weight: 800;
      margin-bottom: 20px;
      line-height: 1.3;
      max-width: 700px;
    }

    .hero p {
      font-size: 1.1rem;
      font-weight: 400;
      max-width: 600px;
      margin-bottom: 30px;
      color: #e6f2ff;
    }

    .hero-buttons {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn-primary {
      background-color: #fff;
      color: #004aad;
      padding: 10px 24px;
      border-radius: 8px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.3s;
    }

    .btn-primary:hover {
      background-color: #f9b233;
      color: #000;
    }

    .btn-secondary {
      border: 2px solid #fff;
      color: #fff;
      padding: 10px 24px;
      border-radius: 8px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.3s;
    }

    .btn-secondary:hover {
      background-color: rgba(255, 255, 255, 0.15);
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2rem;
      }
      .hero p {
        font-size: 1rem;
      }
    }
      /* STAFFING SECTION */
  .staffing-section {
    background: #f8f9ff;
    padding: 80px 20px;
  }

  .staffing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
  }

  .staffing-left h2 {
    font-size: 2rem;
    color: #004aad;
    font-weight: 800;
    margin-bottom: 8px;
  }

  .staffing-left .subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
  }

  .staff-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 16px;
    transition: all 0.3s;
  }

  .staff-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  .staff-step .icon {
    font-size: 1.8rem;
    background: #004aad;
    color: #fff;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .staff-step h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: #111;
  }

  .staff-step p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .staffing-right {
    background: linear-gradient(135deg, #004aad, #0078d4);
    color: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 16px rgba(0,0,0,0.1);
  }

  .staffing-right h3 {
    font-size: 1.6rem;
    margin-bottom: 14px;
    font-weight: 700;
  }

  .staffing-right p {
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.6;
  }

  .features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .features li {
    font-size: 1rem;
    background: rgba(255,255,255,0.15);
    padding: 10px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* RESPONSIVE */
  @media (max-width: 992px) {
    .staffing-container {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .staffing-right {
      text-align: center;
    }
  }

  /* STAFFING CARDS SECTION */
  .staffing-cards {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
  }

  .staffing-cards h2 {
    font-size: 2rem;
    color: #004aad;
    font-weight: 800;
    margin-bottom: 10px;
  }

  .section-subtitle {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 50px;
  }

  .card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .staff-card {
    background: linear-gradient(145deg, #f8faff, #eef4ff);
    border-radius: 14px;
    padding: 40px 25px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
    animation-delay: var(--delay);
  }

  .staff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.08);
    background: linear-gradient(145deg, #004aad, #0078d4);
    color: #fff;
  }

  .staff-card .icon {
    font-size: 2.8rem;
    color: #004aad;
    margin-bottom: 20px;
    transition: color 0.3s;
  }

  .staff-card:hover .icon {
    color: #fff;
  }

  .staff-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .staff-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
  }

  .staff-card:hover p {
    color: #f0f4ff;
  }

  /* Fade-up animation */
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive */
  @media (max-width: 992px) {
    .card-container {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 600px) {
    .card-container {
      grid-template-columns: 1fr;
    }
  }
.staffing-section {
  width: 100%;
  padding: 30px;
  display: flex;
  justify-content: center;
}

.staffing-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: slideUp 1s ease-in-out;
}

.staffing-card h2 {
  text-align: center;
  color: #2c5364;
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 1.6rem;
}

.staffing-card h2 i {
  color: #004aad;
  margin-right: 10px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: #333;
  font-weight: 500;
  margin-bottom: 5px;
}

.form-group i {
  color: #004aad;
  margin-right: 8px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #004aad;
  box-shadow: 0 0 5px rgba(15, 157, 88, 0.3);
}

.submit-btn {
  width: 100%;
  background: linear-gradient(90deg, #98b6dd, #004aad);
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 12px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.submit-btn:hover {
  background: linear-gradient(90deg, #004aad, #98b6dd);
  transform: scale(1.03);
  box-shadow: 0 4px 15px rgba(0, 200, 83, 0.4);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 600px) {
  .staffing-card {
    padding: 25px;
  }

  .staffing-card h2 {
    font-size: 1.4rem;
  }
}
/* --- Everything You Need Section --- */
.everything-section {
  background: linear-gradient(135deg, #ffffff, #eaf2f8);
  padding: 80px 20px;
  text-align: center;
  animation: fadeIn 1.2s ease-in;
}

.everything-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f2027;
  margin-bottom: 10px;
}

.everything-header h3 {
  font-size: 1.5rem;
  color: #203a43;
  margin-bottom: 15px;
}

.everything-header p {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
}

.everything-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.everything-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  width: 320px;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.everything-card i {
  font-size: 40px;
  color: #004aad;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.everything-card h4 {
  font-size: 1.2rem;
  color: #203a43;
  margin-bottom: 10px;
  font-weight: 600;
}

.everything-card p {
  font-size: 0.95rem;
  color: #555;
}

.everything-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(15, 157, 88, 0.2);
}

.everything-card:hover i {
  transform: scale(1.2);
  color: #004aad;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .everything-cards {
    flex-direction: column;
    align-items: center;
  }

  .everything-card {
    width: 90%;
  }

  .everything-header h2 {
    font-size: 1.8rem;
  }

  .everything-header h3 {
    font-size: 1.2rem;
  }
}
/* --- FAQ Section --- */
.faq-section {
  background: linear-gradient(135deg, #44a2ca, #a3c7d3, #597a88);
  color: black;
  padding: 80px 20px;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeIn 1s ease;
}

.faq-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-header p {
  font-size: 1rem;
  color: black;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: black;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
}

.faq-question i {
  color: #00c853;
  transition: transform 0.3s;
}

.faq-answer {
  background: rgba(255, 255, 255, 0.05);
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 20px;
}

.faq-answer p {
  padding: 15px 0;
  font-size: 0.95rem;
  color: black;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 15px;
}

.faq-item.active .faq-question i.fas.fa-chevron-down {
  transform: rotate(180deg);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .faq-header h2 {
    font-size: 1.6rem;
  }

  .faq-question {
    font-size: 0.95rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }
}
 /* FOOTER SECTION */
 /* FOOTER */
    footer {
      background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
      color: #fff;
      padding: 50px 20px 20px 20px;
      font-family: 'Inter', sans-serif;
      margin-top: 50px;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      justify-content: space-between;
      width: 100%;
    }

    .footer-left, .footer-middle, .footer-right {
      flex: 1;
      min-width: 250px;
    }

    .footer-left h3, .footer-middle h3, .footer-right h3 {
      font-size: 1.3rem;
      margin-bottom: 15px;
      color: #f9b233;
    }

    .footer-left a {
      display: block;
      color: #fff;
      text-decoration: none;
      margin-bottom: 8px;
      transition: color 0.3s;
    }

    .footer-left a:hover {
      color: #f9b233;
    }

    .footer-middle p {
      margin-bottom: 8px;
      line-height: 1.5;
    }

    .footer-right iframe {
      box-shadow: 0 4px 15px rgba(0,0,0,0.4);
      border-radius: 12px;
      max-width: 100%;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 30px;
      border-top: 1px solid rgba(255,255,255,0.2);
      padding-top: 15px;
      font-size: 0.9rem;
      color: #ccc;
      width: 100%;
    }

    /* MEDIA QUERIES */
    @media (max-width: 992px) {
      .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-right iframe {
        height: 200px;
      }
    }
p a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

p a:hover {
  color: #f9b233;
}
