/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #F4F4F4; /* Dark gray background */
  color: #333333; /* Charcoal text */
  overflow-x: hidden; /* Prevent horizontal overflow */
}

.container {
  width: 100%; /* Use percentage for responsiveness */
  max-width: 1200px; /* Limit maximum width for better readability */
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #a12731; /* Red for header */
  padding: 10px 20px;
  width: 100vw; /* Full width */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw; /* Center the full-width header */
  margin-right: -50vw; /* Center the full-width header */
}

header .logo img {
  max-height: 50px;
}

nav {
  flex-grow: 1;
  text-align: right;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center; /* Center navigation items */
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  padding: 10px 20px;
  color: #ffffff; /* White text for nav links */
  font-size: 1.2em;
  display: block;
  transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul li a:hover,
nav ul li a:focus {
  background-color: #669BBC; /* Air superiority blue on hover */
  color: #ffffff; /* White text */
}

nav ul li .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

nav ul li .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease;
}

nav ul li .dropdown-content a:hover {
  background-color: #f1f1f1;
}

nav ul li:hover .dropdown-content {
  display: block;
}

h2, h3 {
  color: #a12731; /* Red for headings */
}

footer {
  background-color: #a12731; /* Red for footer */
  padding: 20px;
  text-align: center;
  width: 100vw; /* Full width */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw; /* Center the full-width footer */
  margin-right: -50vw; /* Center the full-width footer */
}

footer .contact-info {
  margin-bottom: 20px;
}

footer .contact-info h3 {
  margin: 0 0 10px;
  font-size: 1.2em;
  color: #ffffff; /* White heading for contact info */
}

footer .contact-info p {
  margin: 5px 0;
  color: #ffffff; /* White text for contact info */
}


/* Hero Section Styles */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  background: #f4f4f4;
  color: #a12731; /* Red text for contrast */
}

.hero-container {
  background-color: rgba(255, 255, 255, 0.8); /* Light gray with some transparency */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
  max-width: 1000px; /* Limit width */
}

.hero-content {
  max-width: 50%;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #a12731; /* Red for hero title */
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #333333; /* Dark gray for hero subtitle */
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Benefits Section Styles */
.benefits {
  background-color: #F4F4F4; /* Match body background */
  padding: 50px 20px;
  text-align: center;
}

.benefits .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px; /* Limit width */
  margin: 0 auto;
}

.benefits .benefit {
  background-color: #ffffff; /* White */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.benefits .benefit h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #A12731; /* Red for benefit titles */
}

.benefits .benefit p {
  font-size: 1.2rem;
  margin: 0;
  color: #333333; /* Dark gray for benefit text */
}

/* Features Section Styles */
.features {
  background-color: #F4F4F4; /* Match body background */
  padding: 50px 20px;
}

.features .container {
  max-width: 1000px; /* Limit width */
  margin: 0 auto;
  text-align: center;
}

.features .feature {
  background-color: #ffffff; /* White */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #A12731; /* Red for section title */
}

.features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features ul li {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333333 /* Dark gray for list items */
}

/* Social Proof Section Styles */
.social-proof {
  padding: 50px 0;
  background-color: #f4f4f4;
  color: #333333;
  text-align: center;
}

.social-proof .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.social-proof h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color : #a12731; /* Red for section title */
}

.social-proof .reviews {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.social-proof .review {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.social-proof .review p {
  margin: 0;
}

.social-proof .review p strong {
  display: block;
  margin-top: 10px;
  font-size: 1.1em;
  color: #333333;
}

/* Container for the services section */
#services {
  padding: 50px 0;
  background-color: #f4f4f4;
  text-align: center;
}

/* Service grid container */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Service card styles */
.service {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #333333; /* Set text color to black */
}

/* Service card image styles */
.service-icon img {
  width: 100%;
  height: 150px; /* Fixed height for images */
  object-fit: cover;
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}

/* Service card heading styles */
.service h3 {
  color: #333333; /* Set heading color to black */
  margin: 15px 0;
}

/* Service card paragraph styles */
.service p {
  flex-grow: 1;
  color: #333333; /* Set paragraph color to black */
}

/* About Us Section Styles */
#about {
  padding: 50px 0;
  color: #333333; /* Dark text for contrast */
  background-color: #f4f4f4;
}

#about h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #a12731;
  font-size: 2.5em;
}

#about .about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #333333; /* Dark text for readability */
  line-height: 1.6;
  font-size: 1.1em;
}

#about .about-images {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#about .about-images img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* FAQ Styles */
.faq-container {
  text-align: center;
  margin: 40px auto;
}

.faq {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  padding: 20px;
  max-width: 800px; /* Limit width of FAQ boxes */
  margin-left: auto;
  margin-right: auto;
}

.faq h3 {
  color: #333333; /* Red for FAQ headings */
  margin-bottom: 10px;
}

.faq p {
  margin: 0;
}

/* Contact us styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f1f1f1;
}

.contact .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 20px;
}

.contact .container .contactinfo {
  width: 350px;
  background: #a12731;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);
  color: white;
}

.contact .container .contactinfo h2 {
  font-size: 24px;
  font-weight: 500;
}

.contact .container .contactinfo .info {
  list-style: none;
}

.contact .container .contactinfo .info li {
  display: flex;
  margin: 20px 0;
  align-items: flex-start;
}

.contact .container .contactinfo .info li span:nth-child(1) {
  width: 30px;
  min-width: 30px;
}

.contact .container .contactinfo .info li span:nth-child(1) img {
  max-width: 100%;
  filter: invert(1);
  opacity: 0.5;
}

.contact .container .contactinfo .info li span:nth-child(2) {
  margin-left: 10px;
  font-weight: 300;
}

.contact .container .contactinfo .info li:hover span:nth-child(1) img,
.contact .container .contactinfo .info li:hover span:nth-child(2) {
  opacity: 1;
}

.contact .container .contactinfo .social {
  display: flex;
}

.contact .container .contactinfo .social li {
  list-style: none;
  margin-right: 15px;
}

.contact .container .contactinfo .social li a {
  text-decoration: none;
}

.contact .container .contactinfo .social li a img {
  filter: invert(1);
  opacity: 0.5;
}

.contact .container .contactinfo .social li:hover a img {
  opacity: 1;
}

.contact .container .contactForm {
  background: #ffffff;
  padding: 40px;
  width: calc(100% - 350px);
  box-shadow: 0 50px 50px rgba(0, 0, 0, 0.5);
}

.contact .container .contactForm h2 {
  font-size: 24px;
  font-weight: 500;
  color: #333333;
}

.contact .container .contactForm .formBox {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.contact .container .contactForm .formBox .inputBox {
  width: 47%;
  margin: 0 15px 20px;
}

.contact .container .contactForm .formBox .inputBox.w100 {
  width: calc(100% - 30px);
}

.contact .container .contactForm .formBox .inputBox input,
.contact .container .contactForm .formBox .inputBox textarea {
  width: 100%;
  padding: 10px;
  font-size: 18px;
  font-weight: 300;
  color: #333333;
  border: none;
  border-bottom: 1px solid #777;
  outline: none;
}

.contact .container .contactForm .formBox .inputBox textarea {
  min-height: 70px;
}

.contact .container .contactForm .formBox .inputBox span {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 300;
  color: #333333;
}

.contact .container .contactForm .formBox .inputBox input:focus ~ span,
.contact .container .contactForm .formBox .inputBox textarea:focus ~ span,
.contact .container .contactForm .formBox .inputBox input:valid ~ span,
.contact .container .contactForm .formBox .inputBox textarea:valid ~ span {
  /* transform: translateY(-20px);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px; */
  color: transparent;
}

.contact .container .contactForm .formBox .inputBox input[type="submit"] {
  cursor: pointer;
  background: #0073e6;
  color: white;
  border: none;
  padding: 10px 20px;
  max-width: 100px;
}


/* Specific styles for buttons */
.service .button, .btn {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 15px;
  background-color: #0073e6;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
}

/* Additional styles to make all text black in the body */
body {
  color: #000; /* Set body text color to black */
}

/* Ensure all text in the header, hero section, benefits, features, and social proof sections is black */
header, .hero, .benefits, .features, .social-proof {
  color: #000; /* Set text color to black */
}
