/* ====== GLOBAL RESET & TYPOGRAPHY ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

/* Utility classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

h1,
h2,
h3,
h4 {
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

p {
  margin-bottom: 1rem;
  color: #555;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ====== NAVIGATION ====== */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0056b3;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu li a {
  font-weight: 500;
  color: #333;
  transition: color 0.3s;
}

.nav-menu li a:hover {
  color: #0056b3;
}

/* Mobile menu toggle (hidden on desktop) */
.mobile-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #333;
}

/* ====== HERO ====== */
.hero {
  position: relative;
  height: 80vh;
  background: url('assets/hero-background.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-color: rgba(10, 25, 47, 0.6);*/
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.3s, background-color 0.3s;
}

.btn-primary {
  background-color: #0056b3;
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background-color: #004494;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #1a1a1a;
  color: #fff;
  border: none;
}

.btn-secondary:hover {
  background-color: #000;
  transform: translateY(-2px);
}

/* ====== SERVICES ====== */
.services-section {
  padding: 4rem 0 2rem;
  background-color: #fff;
  text-align: center;
}

.services-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #0056b3;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #f0f4f8;
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.3s;
  text-align: center;
}

.service-card i {
  color: #0056b3;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  color: #1a1a1a;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* ====== STAFFING ====== */
.staffing-section {
  padding: 4rem 0;
  background-color: #e9f0f8;
  text-align: center;
}

.staffing-section .container h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0056b3;
}

.staffing-section .subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #333;
}

.staffing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.staff-card {
  background-color: #fff;
  flex: 1 1 250px;
  max-width: 300px;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(10, 25, 47, 0.05);
  transition: transform 0.3s;
  text-align: center;
}

.staff-card i {
  color: #0056b3;
  margin-bottom: 1rem;
}

.staff-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  color: #1a1a1a;
}

.staff-card p {
  font-size: 0.95rem;
  color: #555;
}

.staff-card:hover {
  transform: translateY(-5px);
}

/* ====== ABOUT ====== */
.about-section {
  padding: 4rem 0;
  background-color: #fff;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.about-text {
  flex: 1 1 400px;
}

.about-text p {
  margin-bottom: 1rem;
}

.about-text ul {
  margin-top: 1rem;
  padding-left: 1.25rem;
  color: #555;
}

.about-text ul li {
  margin-bottom: 0.5rem;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(10, 25, 47, 0.1);
}

/* ====== TESTIMONIALS ====== */
.testimonials-section {
  padding: 4rem 0;
  background-color: #f9f9f9;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #0056b3;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  position: relative;
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(10, 25, 47, 0.05);
  text-align: left;
}

.quote-icon {
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 1.5rem;
  color: #0056b3;
}

.testimonial-card p {
  margin-bottom: 1rem;
  color: #555;
}

.testimonial-card h4 {
  font-weight: 600;
  color: #1a1a1a;
}

/* ====== CONTACT ====== */
.contact-section {
  padding: 4rem 0;
  background-color: #fff;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #0056b3;
  text-align: center;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Contact Info */
.contact-info {
  flex: 1 1 300px;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.75rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-icons {
  margin-top: 1rem;
}

.social-icons a {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: #0056b3;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #003f7f;
}

/* Contact Form */
.contact-form {
  flex: 1 1 300px;
  background-color: #f0f4f8;
  padding: 2rem;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.form-group label span {
  color: #e74c3c;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0056b3;
  outline: none;
}

/* ====== FOOTER ====== */
.footer {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 1.5rem 0;
  text-align: center;
}

.footer p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-links li a {
  color: #ccc;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links li a:hover {
  color: #fff;
}

/* ====== RESPONSIVE BREAKPOINTS ====== */
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    width: 200px;
    transform: translateX(100%);
    transition: transform 0.3s;
    padding-top: 1rem;
    box-shadow: 0 4px 8px rgba(10, 25, 47, 0.1);
  }
  .nav-menu.active {
    transform: translateX(0);
  }
  .nav-menu li {
    margin-bottom: 1rem;
  }
  .mobile-toggle {
    display: block;
  }

  .about-content,
  .contact-content {
    flex-direction: column;
  }
}
