/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #F8F9FA;
  color: #2C3E50;
}

/* Navigation Bar */
.navbar {
  background: #2C3E50;
  padding: 15px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
}

.logo {
  color: white;
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: inline;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #FF6B6B;
}

/* CTA Button in Navbar */
.nav-links .cta {
  background: #FF6B6B;
  padding: 8px 15px;
  border-radius: 5px;
  transition: 0.3s;
}

.nav-links .cta:hover {
  background: #FF4C4C;
}

/* Responsive Navigation */
.menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #2C3E50;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%; /* Full width for mobile */
    padding: 10px 0; /* Adjusted padding */
    text-align: center; /* Center align for mobile */
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0; /* Add spacing between links */
  }

  .nav-links .cta {
    margin: 10px auto; /* Center the CTA button */
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  text-align: center;
  padding: 100px 20px; /* Increased padding for better spacing */
  background: url('investigation-background.jpg') no-repeat center/cover;
  color: white;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

.hero-content {
  position: relative;
  max-width: 600px;
  margin: auto;
  text-align: center;
}

.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-button {
  background: #FF6B6B;
  color: white;
  padding: 15px 30px;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 5px;
}

.cta-button:hover {
  background: #FF4C4C;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.trust-badges .badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-badges img {
  width: 50px;
  height: 50px;
}

/* Services */
.services {
  padding: 50px 20px;
  text-align: center;
}

.services h2 {
  margin-bottom: 30px;
}

.service-box {
  max-width: 800px;
  margin: 20px auto;
  text-align: left;
  padding: 20px;
  border-radius: 10px;
  background: white;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 768px) {
  .service-box {
    flex-direction: column;
    text-align: center;
  }
}

/* Pricing Section */
.pricing {
  padding: 50px 20px;
  text-align: center;
  background: #EFEFEF;
}

.pricing-table {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pricing-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 280px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .pricing-card {
    width: 90%;
  }
}

/* Footer */
.footer {
  background: #2C3E50;
  padding: 20px;
  text-align: center;
  color: white;
}
