body {
  font-family: "Poppins", sans-serif;
}

.navbar,
.footer {
  background-color: black;
  color: white;
}

.logo img {
  width: 120px;
}

.contact-info {
  color: white;
}

.form-label {
  color: black;
}

.contact-info span {
  font-size: 16px;
  display: block;
}

.contact-info a {
  color: #02b3ee;
  font-size: 25px;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 8px;
}

.main-services {
  position: relative;
  background-image: url("/images/background.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Keeps background fixed */
  padding: 50px 0;
}

.main-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.aboutTopBottom {
  margin-top: 70px;
  margin-bottom: 70px;
}

.about-us img {
  max-width: 100%; /* Ensures the image is responsive */
  height: auto; /* Maintains aspect ratio */
}

.about-us h2,
.address h2 {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  color: #02b3ee; /* Use the same color as the other headers */
}

.about-us p {
  font-size: 18px;
  color: #333; /* Darker text for readability */
}

.content-wrapper {
  position: relative;
  z-index: 2;
  color: white; /* Sets default text color for the content */
}

.content-wrapper h1 {
  color: #02b3ee; /* Headline color */
}

.content-wrapper h4 {
  color: #02b3ee; /* Headline color */
}

.content-wrapper p {
  color: #ffffff; /* Subheadline color */
}

.footer {
  padding: 20px 0;
  text-align: center;
}

.footer p {
  margin: 0;
  color: #aaa;
}

input::placeholder,
textarea::placeholder {
  color: gray; /* Set your desired color */
  opacity: 1; /* Ensures the color is fully opaque */
}

.address {
  background-color: rgb(243, 243, 243); /* Light background for contrast */
  padding: 70px 0; /* Top and bottom padding */
}

.address-line {
  margin: 0; /* Remove default margin for better alignment */
}

.contact-info {
  margin: 0; /* Remove default margin for better alignment */
}

.address i {
  margin-right: 8px; /* Space between icon and text */
}

a {
  color: #02b3ee; /* Link color */
  text-decoration: underline; /* Underline links for visibility */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .content-wrapper {
    padding: 20px; /* Adjust padding for smaller screens */
  }

  .contact-info {
    text-align: center; /* Center contact info on smaller screens */
  }

  .contact-info span {
    font-size: 14px; /* Smaller font size for mobile */
  }

  .contact-info a {
    font-size: 20px; /* Smaller phone number for mobile */
  }

  .address-line,
  .contact-info {
    font-size: 16px; /* Smaller font size for mobile */
  }

  iframe {
    width: 100%; /* Full width on smaller screens */
  }

  .footer {
    padding: 10px 0; /* Adjust footer padding for mobile */
  }
}

.map-container {
  height: 400px; /* Adjust the height of the map */
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
  color: #333;
}

.contact-info p,
.contact-info ul {
  font-size: 16px;
  line-height: 1.5;
}

.contact-info ul li {
  padding: 5px 0;
}

.text-blue {
  color: #02b3ee;
  text-decoration: none;
}

@media (min-width: 1400px) {
  .custom-container {
    max-width: 1140px !important;
  }
}
