body {
  font-family: "Poppins", sans-serif;
}

.navbar,
.footer {
  background-color: #000;
  color: white;
}

.logo img {
  width: 78px;
}

.form-label {
  color: black;
}

.contact-info {
  display: flex;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  gap: 5px;
}

.contact-info i {
  color: #ffff;
}

.contact-info span {
  color: #ffff;
}

.contact-info a {
  color: #009FE2;
  text-decoration: none;
  font-weight: bold;
}

.garage-hero-section {
  background: url('your-image-path.jpg') no-repeat center center;
  background-size: cover;
  padding: 50px 0;
}

.garage-hero-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
  color: #fff;
}

.garage-left {
  padding: 100px 0;
  width: 600px;
}

.garage-left h2 {
  font-size: 42px;
  font-weight: bold;
  line-height: 1.3;
  font-family: "Poppins", sans-serif;
}

.garage-left ul {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
  font-family: "Poppins", sans-serif;

}

.garage-left li {
  font-size: 18px;
  margin-bottom: 10px;
}

.garage-form-wrapper {
  background-color: #000;
  padding: 0;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  max-width: 350px;
}

.form-header {
  background-color: #009FE2;
  color: white;
  text-align: center;
  padding: 15px 10px;
  font-family: "Poppins", sans-serif;
}

.form-header h3 {
  margin-bottom: 5px;
  margin-top: 15px;
  font-size: 22px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.form-header p {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}

.garage-form {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 12px;
}

.garage-form input,
.garage-form textarea {
  padding: 10px;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  width: 100%;
}

.garage-form textarea {
  font-family: "Poppins", sans-serif;
  resize: none;
}

.garage-form button {
  background-color: #e60000;
  color: white;
  border: none;
  padding: 12px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  border-radius: 3px;
  font-family: "Poppins", sans-serif;
}


.main-services {
  position: relative;
  background-image: url("./images/background.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: 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;
}

.garage-services {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  background-color: #fff;
  flex-wrap: wrap;
  text-align: center;
}

.service-card {
  max-width: 300px;
  font-family: "Poppins", sans-serif;
}

.service-card img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.service-card h3 {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}

.service-card p {
  color: #444;
  font-size: 15px;
  line-height: 1.5;
}

.garage-why-choose2 {
  background-color: #009FE2;
  padding: 70px 20px 40px;
  text-align: center;
}

.garage-why-choose2 h2 {
  color: #fff;
  font-size: 42px;
  margin-top: 0;
  margin-bottom: 40px;
  font-family: "Poppins", sans-serif;
}

.garage-why-choose {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  flex-wrap: wrap;
  text-align: center;
}

.choose-card {
  max-width: 300px;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

.choose-card .icon {
  font-size: 60px;
  margin-bottom: 20px;
  color: #fff;
}

.choose-card h3 {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.choose-card p {
  font-size: 15px;
  line-height: 1.5;
}


.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: #009FE2; /* 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: #009FE2; /* Headline color */
}

.content-wrapper h4 {
  color: #009FE2; /* Headline color */
}

.content-wrapper p {
  color: #ffff; /* 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: #009FE2; /* Link color */
  text-decoration: underline; /* Underline links for visibility */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {

  .garage-hero-wrapper {
    display: flex;
    justify-content: space-around;
}

  .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: #009FE2;
  text-decoration: none;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
  .garage-hero-wrapper {
      flex-direction: column;
      align-items: stretch;
  }

  .header-flex {
      flex-direction: column;
      gap: 10px;
      text-align: center;
  }

  .contact-info {
      justify-content: center;
  }
}

@media (max-width: 576px) {
  .garage-hero-wrapper {
    justify-content: space-around;
    align-content: space-around;
    gap: 0px;
}

  .garage-left h2 {
      font-size: 24px;
  }

  .garage-left {
    padding: 0;
    width: 300px;
}

  .form-header h3 {
      font-size: 20px;
  }

  .form-header p {
      font-size: 14px;
  }

  .garage-left ul li {
      font-size: 16px;
  }

  .contact-info a {
      font-size: 18px;
  }
}

@media (min-width: 1400px) {
  .custom-container {
    max-width: 1140px !important;
  }
}
