.myNav_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}
.menu ul {
  display: flex;
  gap: 3rem;
  align-items: center;
}
.logo img {
  width: 180px;
}
.menu ul li a {
  text-transform: capitalize;
  font-size: 18px;
  color: var(--black-color);
}

.topNav {
  padding: 10px 0;
  background-color: var(--main-color);
}
.topNav_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white-color);
}
.topNav_content a {
  color: var(--white-color);
  display: flex;
  gap: 3px;
  align-items: center;
}
.topNav_content__left,
.topNav_content__right {
  display: flex;
  gap: 14px;
  align-items: center;
}

/* banner_wrapper */
.banner_wrapper {
  position: relative;
}
.banner_img {
  position: relative;
}
.banner_img img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}
.banner_content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  text-align: center;
  color: var(--white-color);
}
.banner_img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.525);
  backdrop-filter: blur(1px);
}

.banner_content h1 {
  font-size: 55px;
  font-weight: 600;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}
.banner_content p {
  margin-top: 2rem;
  font-size: 18px;
}
.myBtn {
  margin-top: 3rem;
}

/* about css start */
.global_wrapper {
  padding: 80px 0;
}
.about_wrapper__img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.about_wrapper__img,
.about_wrapper__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.about_wrapper__content h2,
.main_heading h2 {
  font-weight: 600;
  max-width: max-content;
  background-color: var(--main-color);
  color: var(--white-color);
  font-size: 16px;
  text-transform: capitalize;
  padding: 4px 10px;
  border-radius: 100px;
}

.about_wrapper__content h3,
.main_heading h3 {
  font-size: 32px;
  margin-top: 1rem;
}
.about_wrapper__content p {
  margin-top: 1rem;
  font-size: 18px;
}

/* why choose us */
.main_heading {
  text-align: center;
}
.main_heading h2 {
  background-color: var(--white-color);
  color: var(--main-color);
  margin: 0 auto;
}
.main_heading h3 {
  max-width: 800px;
  margin: 0 auto;
  color: var(--white-color);
  margin-top: 1.2rem !important;
}

.global_content {
  margin-top: 3rem;
}
.why_box {
  background-color: var(--white-color);
  padding: 20px;
  transition: 0.3s ease;
  border-radius: 10px;
}
.why_box:hover {
  background-color: var(--black-color);
  color: var(--white-color);
  transition: 0.3s ease;
  transform: translateY(-10px);
}
.why_box h3 {
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 600;
  margin-top: 1rem;
}
.why_box p {
  margin-top: 10px;
}

.why_box__icon i {
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main-color);
  font-size: 22px;
  border-radius: 100px;
  color: var(--white-color);
}

/* cta_wrapper */
.cta_wrapper {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/cta.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: var(--white-color);
  background-attachment: fixed;
}
.cta_wrapper__content {
  text-align: center;
}
.cta_wrapper__content h2 {
  font-size: 32px;
  font-weight: 500;
  max-width: 800px;
  margin: 0 auto;
}
.cta_wrapper__content p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 1rem;
}

/* contact_left */
.contact_left h2,
.contact-form h2 {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 32px;
  color: var(--main-color);
}
.contact_left p {
  margin-top: 1rem;
  font-size: 16px;
}

.company-details {
  margin-top: 20px;
}
.company-details a {
  display: block;
  margin-bottom: 12px;
  color: var(--black-color);
}
.company-details a span {
  color: var(--main-color);
  font-weight: 700;
}
.contact_input iframe {
  width: 100%;
  height: 500px;
}
.contact_input input,
.contact_input textarea {
  width: 100%;
  margin-top: 1rem;
  padding: 10px;
  outline: none;
  border: 1px solid #ccc;
  background-color: #e7e7e7;
}
.contact-form {
  padding: 20px;
  background-color: whitesmoke;
  border: 1px solid #ccc;
  border-radius: 10px;
}
.contact-form h2 {
  margin-bottom: 20px !important;
}
.map iframe {
  width: 100%;
  height: 220px;
  border-radius: 10px;
}
.menu_icon {
  display: none;
}

/* mobileNav */
.mobileNav {
  position: fixed;
  right: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  z-index: 999;
  transition: 0.3s ease;
}
.mobileNav.active {
  right: 0;
  transition: 0.3s ease;
}
.mobileNav_content {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  max-width: 500px;
  background-color: var(--white-color);
  height: 100%;
}
.mobile_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #ccc;
}
.close-icon i {
  font-size: 18px;
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main-color);
  color: var(--white-color);
  border-radius: 100px;
}
.mobile-menu ul li a {
  display: block;
  padding: 1rem;
  border-bottom: 1px solid #efecec;
  text-transform: capitalize;
  color: var(--black-color);
  font-size: 18px;
}
.mobile-logo a {
  font-size: 25px !important;
}

@media (max-width: 1440px) {
  .banner_content {
    width: 80%;
  }
  .why_box h3 {
    font-size: 18px;
  }
  .why_box p {
    font-size: 15px;
  }
}

@media (max-width: 992px) {
  .about_wrapper__content {
    margin-top: 1rem;
  }
  .why_box {
    margin-bottom: 20px;
  }
  .banner_content h1 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .global_wrapper {
    padding: 50px 0;
  }
  .global_content,
  .myBtn {
    margin-top: 2rem;
  }
  .menu ul {
    gap: 1rem;
  }
  .menu ul li a {
    font-size: 16px;
  }

  .topNav_content a {
    font-size: 13px;
  }
  .topNav_content__left,
  .topNav_content__right {
    gap: 10px;
  }
  .banner_content {
    width: 96%;
  }
  .banner_content h1 {
    font-size: 25px;
  }
  .banner_content p {
    margin-top: 1rem;
    font-size: 16px;
  }
  .about_wrapper__content h3,
  .main_heading h3 {
    font-size: 24px;
  }
  .banner_img img {
    height: 450px;
  }
  .about_wrapper__content h3 {
    margin-top: 1rem;
  }
  .about_wrapper__content p {
    font-size: 15px;
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .about_wrapper__content h3,
  .main_heading h3 {
    font-size: 19px;
  }

  .topNav_content__right {
    display: none;
  }
  .why_box {
    margin-bottom: 14px;
  }
  .why_box h3 {
    font-size: 16px;
  }
  .why_box p {
    margin-top: 7px;
  }
  .why_box__icon i {
    height: 40px;
    width: 40px;
    font-size: 18px;
  }
  .cta_wrapper__content h2 {
    font-size: 23px;
  }
  .cta_wrapper__content p {
    font-size: 16px;
  }
  .contact_left p {
    font-size: 16px;
    margin-top: 10px;
  }
  .company-details a {
    font-size: 16px;
  }
  .contact_left h2,
  .contact-form h2 {
    font-size: 24px;
  }
  .contact_input input,
  .contact_input textarea {
    margin-top: 10px;
    padding: 5px;
    font-size: 13px;
  }
  .topNav_content {
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
  }
  .menu_icon {
    display: block;
  }
  .menu {
    display: none;
  }
  .menu_icon i {
    font-size: 22px;
  }
  .logo img {
    width: 150px;
  }
}
