html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  position: relative;
}

header {
  background-color: #1f1714;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-family: "Poppins", serif;
  font-weight: 300;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  clip-path: polygon(100% 0, 100% 80%, 24% 80%, 23% 100%, 1% 100%, 0 80%, 0 0);
  transition: all 0.4s ease-in-out;
}

header:hover {
  background-color: #28211d;
  padding: 30px 70px;
}

.logo img {
  width: 100%;
  height: auto;
  width: 150px;
}

.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.3em;
  padding: 5px 15px;
  border-radius: 5px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.nav a:hover {
  color: #f6872d;
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.nav a.active {
  color: #f6872d;
  font-weight: bold;
  border-bottom: 2px solid #f6872d;
}

.hero {
  position: relative;
  height: 810px;
  overflow: hidden;
  text-align: center;
  color: #fff;
  font-family: "Poppins", serif;
  font-weight: 700;
}

.hero img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(50%);
}

.hero-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 3em;
  letter-spacing: 2px;
  opacity: 0;
  animation: fadeIn 2s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.leading {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #7d706d;
  padding: 100px 20px;
  color: #555;
  font-family: "Poppins", serif;
  font-weight: 300;
}

.leading-content {
  display: flex;
  gap: 50px;
  max-width: 1200px;
  width: 100%;
}

.leading-logo {
  width: 100%;
  height: auto;
  width: 500px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.leading-text {
  color: #fff;
  font-size: 1.5em;
  max-width: 600px;
  text-align: left;
  letter-spacing: 2px;
}

.leading-text p {
  margin-bottom: 20px;
}

.back1 {
  position: relative;
  height: 680px;
  overflow: hidden;
}

.back1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer {
  color: #555;
  flex-wrap: wrap;
  text-align: right;
  margin: 0 auto;
  background-color: #b6b1b0;
  padding: 40px 0px;
}

.offer-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.offer h3 {
  color: #000;
  font-size: 3em;
  max-width: 1200px;
  margin: 0 auto auto;
  text-align: right;
  letter-spacing: 2px;
  padding: 20px;
  font-family: "Poppins", serif;
  font-weight: 700;
}

.offer p {
  color: #453d3b;
  font-size: 1.5em;
  max-width: 1100px;
  margin: 0 auto;
  text-align: right;
  letter-spacing: 2px;
  padding: 20px;
  font-family: "Poppins", serif;
  font-weight: 300;
  font-style: italic;
}

.back2 {
  position: relative;
  height: 700px;
  overflow: hidden;
}

.back2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.performance {
  color: #555;
  flex-wrap: wrap;
  text-align: right;
  margin: 0 auto;
  background-color: #7d706d;
  padding: 40px 0px;
}

.performance-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.performance h3 {
  color: #000;
  font-size: 3em;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  letter-spacing: 2px;
  padding: 20px;
  font-family: "Poppins", serif;
  font-weight: 700;
}

.performance p {
  color: #fff;
  font-size: 1.5em;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
  letter-spacing: 2px;
  font-family: "Poppins", serif;
  font-weight: 300;
  font-style: italic;
  padding: 20px;
}

.back3 {
  position: relative;
  overflow: hidden;
  height: 400px;
  transform: scaleX(-1);
}

.back3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service {
  color: #555;
  flex-wrap: wrap;
  text-align: right;
  margin: 0 auto;
  background-color: #b6b1b0;
  padding: 40px 0px;
}

.service-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.service h3 {
  color: #000;
  font-size: 3em;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 2px;
  padding: 20px;
  font-family: "Poppins", serif;
  font-weight: 700;
}

.service p {
  color: #453d3b;
  font-size: 1.5em;
  max-width: 950px;
  margin: 0 auto;
  text-align: left;
  letter-spacing: 2px;
  padding: 10px;
  font-family: "Poppins", serif;
  font-weight: 300;
  font-style: italic;
}

.service li {
  color: #453d3b;
  font-size: 1.5em;
  max-width: 950px;
  margin: 0 auto;
  text-align: left;
  letter-spacing: 2px;
  padding: 10px;
  font-family: "Poppins", serif;
  font-weight: 300;
  font-style: italic;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.info {
  display: block;
  margin: 20px auto 0;
  padding: 12px 20px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, opacity 1s ease, transform 1s ease;
  text-align: left;
  font-family: "Poppins", serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.5em;
  word-spacing: 2px;
  transform: translateY(20px);
}

.info:hover {
  background-color: #d97a34;
}

.back4 {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.back4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact {
  position: relative;
  height: 680px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.contact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px);
  transform: scale(1.1);
}


.contact .left {
  position: absolute;
  top: 174px;
  left: 115px;
  width: 500px;
  height: auto;
  z-index: 0;
  border-radius: 8px;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
  filter: none;
}

.contact-form {
  position: absolute;
  top: 20%;
  right: 3%;
  transform: translateY(-50%);
  padding: 20px;
  width: 700px;
  height: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.contact-form h2 {
  margin: 0 0 15px;
  font-size: 24px;
  text-align: center;
  color: #fff;
  font-family: "Poppins", serif;
  font-weight: 500;
  font-style: italic;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #fff;
  font-family: "Poppins", serif;
  font-weight: 300;
  font-style: italic;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  resize: none;
  font-family: "Poppins", serif;
  font-weight: 300;
  font-style: italic;
}

.contact-form button {
  width: 100%;
  padding: 10px;
  background-color: #7d706d;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  font-family: "Poppins", serif;
  font-weight: 300;
  font-style: italic;
}

.contact-form button:hover {
  background-color: #b6b1b0;
}

@media (max-width: 1340px) {
  .contact-form {
    width: 700px;
  }
  .contact .left {
    width: 300px;
  }
}
@media (max-width: 1150px) {
  .contact-form {
    width: 600px;
  }
  .contact .left {
    width: 200px;
  }
}
@media (max-width: 950px) {
  .contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 50px 20px;
    max-width: 950px;
    margin: 0 auto;
  }

  .contact-form {
    position: static;
    width: 90%;
    max-width: 900px;
    transform: none;
    opacity: 1;
    text-align: center;
    font-size: 0.7em;
  }

  .contact .left {
    position: static;
    width: 200px;
    max-width: 250px;
    margin-top: 20px;
    transform: none;
    opacity: 1;
  }
  .contact img {
    width: 0%;
    height: 0%;
  }
}


@media (max-width: 1100px) {
  .nav a {
    font-size: 0.7em;
  }
  .logo img {
    width: 100%;
    height: auto;
    width: 100px;
  }
  .hero-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 1.7em;
    letter-spacing: 2px;
  }
  .leading-text {
    font-size: 1em;
  }
  .leading-logo {
    width: 100%;
    max-height: 200px;
    max-width: 200px;

  }
  .offer h3 {
    font-size: 1.7em;
  }
  .offer p {
    font-size: 1em;
  }
  .performance h3 {
    font-size: 1.7em;
  }
  .performance p {
    font-size: 1em;
  }
  .service h3 {
    font-size: 1.7em;
  }
  .service p {
    font-size: 1em;
  }
  .service li {
    font-size: 1em;
  }
  .info {
    font-size: 1em;
  }
}

@media (max-width: 600px) {
  header {
    padding: 20px 20px;
  }
  .nav {
    display: flex;
    gap: 0px;
  }
  .logo img {
    width: 100%;
    height: auto;
    width: 70px;
  }
  .hero-box {
    font-size: 1.2em;
  }
  .leading-text {
    font-size: 0.7em;
  }
  .leading-logo {
    max-height: 130px;
    max-width: 130px;

  }
  .offer h3 {
    font-size: 1.2em;
  }
  .offer p {
    font-size: 0.7em;
  }
  .performance h3 {
    font-size: 1.2em;
  }
  .performance p {
    font-size: 0.7em;
  }
  .service h3 {
    font-size: 1.2em;
  }
  .service p {
    font-size: 0.7em;
  }
  .service li {
    font-size: 0.7em;
  }
  .info {
    font-size: 0.7em;
  }
}

@media (max-width: 425px) {
  header {
    padding: 20px 20px;
  }
  .nav {
    display: flex;
    gap: 0px;
  }
  .logo img {
    width: 100%;
    height: auto;
    width: 70px;
    left: 100px;
  }
  .hero-box {
    font-size: 1.2em;
  }
  .leading-text {
    font-size: 0.7em;
  }
  .leading-logo {
    max-height: 50px;
    max-width: 50px;
  }
  .offer h3 {
    font-size: 1.2em;
  }
  .offer p {
    font-size: 0.7em;
  }
  .performance h3 {
    font-size: 1.2em;
  }
  .performance p {
    font-size: 0.7em;
  }
  .service h3 {
    font-size: 1.2em;
  }
  .service p {
    font-size: 0.7em;
  }
  .service li {
    font-size: 0.7em;
  }
  .info {
    font-size: 0.7em;
  }
}
@media (max-width: 341px) {
  header {
    padding: 20px 5px;
  }
  .hero-box {
    font-size: 1em;
  }
  .logo img {
    width: 100%;
    height: auto;
    width: 70px;
    left: 100px;
  }
}