/* Existing CSS */
body {
  margin: 0;
  font-family: "Roboto", sans-serif;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 10px 100px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 100px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 80px; /* Adjusted height to better fit the layout */
  margin-right: 10px;
}

.logo h1 {
  font-size: 20px;
  color: #333;
  margin: 0;
}

.navbar {
  display: flex;
  align-items: center;
}

.menu-icon {
  display: none; /* Hide the menu icon by default */
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
}

.bar {
  height: 3px;
  width: 100%;
  background-color: #111;
}

.nav-links {
  display: flex;
}

.nav-links a {
  text-decoration: underline;
  color: #111;
  font-size: 14px;
  margin-left: 20px;
  font-weight: 500;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .header {
    /* flex-direction: column; */
    padding: 10px 20px;
    height: auto;
  }

  .logo img {
    height: 60px;
  }

  .menu-icon {
    display: flex; /* Show the menu icon on smaller screens */
  }

  .nav-links {
    display: none; /* Hide the links by default on smaller screens */
    flex-direction: column;
    align-items: center;
  }

  .nav-links.show {
    display: flex; /* Show the links when the menu icon is clicked */
  }

  .nav-links a {
    margin-left: 0;
    margin-top: 10px;
    font-size: 14px;
  }
}

/* Hero section styling */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 180px;
  background-color: #f4f4f4;
}

.hero-content {
  max-width: 30%;
}

.hero-content h1 {
  font-size: 48px;
  color: #111;
  font-weight: 400;
}

.hero-content p {
  font-size: 14px;
  color: #111;
  margin-top: 10px;
  font-weight: 400;
}

.hero-image {
  max-width: 50%;
}

.hero-image img {
  width: 500px;
  height: auto;
  object-fit: cover;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .header {
    /* flex-direction: column; */
    padding: 10px 20px;
    height: auto;
  }

  .logo img {
    height: 60px;
  }

  .menu-icon {
    display: flex; /* Show the menu icon on smaller screens */
  }

  .nav-links {
    display: none; /* Hide the links by default on smaller screens */
    flex-direction: column;
    align-items: center;
  }

  .nav-links.show {
    display: flex; /* Show the links when the menu icon is clicked */
  }

  .nav-links a {
    margin-left: 0;
    margin-top: 10px;
    font-size: 14px;
  }

  /* Hero section adjustments for smaller screens */
  .hero {
    flex-direction: column;
    padding: 20px;
  }

  .hero-content,
  .hero-image {
    max-width: 100%;
    text-align: center;
  }

  .hero-image img {
    width: 80%;
  }
}

/* Services section styling */
.services {
  display: flex;
  justify-content: space-between;
  padding: 50px 180px;
  background-color: #2b2c32; /* Updated background color */
  font-family: "Jost", sans-serif; /* Updated font family */
}

.services-left,
.services-right {
  max-width: 45%;
}

.services h1 {
  font-size: 46px;
  color: #fff; /* Updated font color */
  font-family: "Krona One", sans-serif; /* Updated font family */
  font-weight: 500;
  margin-top: 20px;
}

.services h2 {
  font-size: 24px;
  color: #fff; /* Updated font color */
  font-family: "Krona One", sans-serif; /* Updated font family */
  font-weight: 500;
  margin-top: 20px;
}

.services p {
  font-size: 14px;
  color: #ddd; /* Updated font color */
  margin-top: 10px;
  font-weight: 400;
}

.services ul {
  padding-left: 20px;
  margin-top: 10px;
  list-style: none;
}

.services ul ul {
  padding-left: 20px;
  list-style: none;
  margin-top: 5px;
}

.services li {
  list-style: none;
  list-style-type: none;
  margin-top: 5px;
  font-size: 22px;
  color: #ddd; /* Updated font color */
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .services {
    flex-direction: column;
    padding: 20px;
  }

  .services-left,
  .services-right {
    max-width: 100%;
    text-align: left;
  }
}

/* Contact Us section styling */
.contact-us {
  /* display: flex;
  justify-content: space-between; */
  padding: 50px 100px;
  background-color: #fff; /* Updated background color */
  font-family: "Jost", sans-serif; /* Updated font family */
}

.contact-left {
  max-width: 30%;
  text-align: left;
}

.contact-right {
  max-width: 100%;
}

.contact-us h2 {
  font-size: 24px;
  color: #111; /* Updated font color */
  font-family: "Krona One", sans-serif; /* Updated font family */
  font-weight: 500;
  margin-top: 0;
}

.contact-us p {
  font-size: 14px;
  color: #111; /* Updated font color */
  margin-top: 10px;
  font-weight: 400;
}

.contact-us .form-group {
  margin-bottom: 20px;
}

.contact-us label {
  font-size: 14px;
  font-weight: 500;
  color: #111; /* Updated font color */
  display: block;
  margin-bottom: 5px;
}

.contact-us input,
.contact-us textarea {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  font-family: "Jost", sans-serif; /* Updated font family */
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff; /* Updated background color */
  color: #ddd; /* Updated font color */
}

.contact-us button {
  background-color: #111; /* Updated background color */
  color: #fff; /* Updated font color */
  font-family: "Krona One", sans-serif; /* Updated font family */
  padding: 20px 40px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

.contact-us button:hover {
  background-color: #111;
  color: #fff;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .contact-us {
    flex-direction: column;
    padding: 20px;
  }

  .contact-left,
  .contact-right {
    max-width: 100%;
  }

  .contact-right {
    margin-top: 20px;
  }
}

/* Footer section styling */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 180px;
  background-color: #2b2c32; /* Updated background color */
  color: #ddd; /* Updated font color */
  font-family: "Jost", sans-serif; /* Updated font family */
}

.footer-left,
.footer-middle,
.footer-right {
  max-width: 30%;
}

.footer-logo {
  height: 50px; /* Adjust the height to fit the layout */
  margin-bottom: 10px;
}

.footer p {
  margin: 5px 0;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }

  .footer-left,
  .footer-middle,
  .footer-right {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .footer-logo {
    height: 40px;
  }
}
