/* ------------------------------------
   Google Fonts Import
------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/* ------------------------------------
   Base Styles
------------------------------------ */
body {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #fff;
  color: #000;
}

/* ------------------------------------
   Header Styles
------------------------------------ */
.header {
  background-color: #fff4e7;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  max-width: 1440px;
  width: 100%;
  margin: auto;
  background-color: #fff4e7;
}

.logo {
  font-size: 45px;
  font-weight: 700;
  padding: 10px;
  margin: 10px 0;
}

/* Navigation Menu */
.menu {
  display: flex;
  gap: 50px;
  padding: 0;
  margin: 0;
}

.menu li {
  list-style: none;
}

.menu li a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  color: black;
  transition: color 0.3s ease;
}

.menu li a:hover {
  color: #FF900E;
}

/* ------------------------------------
   Banner Section
------------------------------------ */
.banner {
  padding: 50px 0;
  background-color: #fff4e7;
  text-align: center;
  max-width: 1440px;
  margin: auto;
}

.banner-title {
  margin: 0 0 20px 0;
  font-size: 64px;
  font-weight: 700;
}

.banner-description {
  max-width: 868px;
  margin: 0 auto 32px auto;
  font-size: 16px;
  font-weight: 400;
}

/* ------------------------------------
   Button Styles
------------------------------------ */
.primary-btn {
  background-color: #FF900E;
  padding: 20px 25px;
  margin-bottom: 50px;
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.primary-btn:hover {
  background-color: #e5800c;
}

/* ------------------------------------
   Features Section
------------------------------------ */

.features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    max-width: 1440px;
    gap: 73px;
    padding: 80px 0;
}

.features-img {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}


.features-title {
    width: 468px;
}
.quick-list {
    font-size: 45px;
    font-weight: 500;
    color: #727272;
}

.of-our {
    font-size: 45px;
    font-weight: 700;
    color: black;
}
.fts {
    font-size: 45px;
    font-weight: 700;
    color: #FF900E;
}

.features-description {
    font-size: 16px;
    font-weight: 400;
    color: #727272;
    margin: 20px 0;
}

/* ------------------------------------
   Information Section Styles
------------------------------------ */

.information {
    display: flex;
    justify-content: space-between;
    max-width: 1440px;
    margin: auto;
    gap: 145px;
    padding-top: 70px;

}

.information-title {
  border-left: 5px solid #FF900E;
  padding-left: 20px;
}

.information-title > h2 {
  font-size: 45px;
  font-weight: 700;
}

.information-description {
    font-size: 16px;
    font-weight: 400;
    color: #727272;
    margin: 20px 0;
}

.info-item {
  padding: 30px;
  box-shadow: 2px 2px 10px 10px rgba(0, 0, 0, 0.03);
  border-radius: 10px;
  margin-bottom: 20px;
}

.info-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.info-item p {
  font-size: 16px;
  font-weight: 400;
  color: #727272;
}

.ftr-img {
  position: relative;
  z-index: 1;
}

.experience {
  padding: 44px;
  border-radius: 8px;
  text-align: center;
  gap: 20px;
  background-color: #FF900E;
  width: 342px;
  margin-left: -92px;
  margin-top: -100px;
  position: relative;
  z-index: 9;
}

.experience h4 {
  font-size: 65px;
  font-weight: 700;
  color: white;
  margin: 0;
}

.ex {
  font-size: 25px;
  font-weight: 500;
  color: white;
  margin: 0;
}




/* ------------------------------------
   Device Responsive Styles
------------------------------------ */

@media screen and (max-width: 576px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    text-align: left;
    padding: 0;
    margin-bottom: 20px;
  }

  .menu {
    flex-direction: column;
    gap: 20px;
  }

  .banner {
    padding: 0px;
  }

  .banner-title {
    font-size: 36px;
  }

  .banner-description {
    font-size: 14px;
    padding: 0 20px;
  }

  .primary-btn {
    text-align: center;
    margin-bottom: 20px;
  }
  .banner-content > img {
    width: 95%;
  }

  .features {
    flex-direction: column;
    gap: 10px;
    padding: 30px 0;
  }
  .features-img {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

  .features-content {
    width: 95%;
    margin: 0;
}

.information {
  flex-direction: column;
  width: 95%;
  gap: 30px;
}

.information-title > h2 {
  font-size: 35px;
  font-weight: 700;
}

.ftr-img {
  width: 100%;
  height: auto;
}

.experience {
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  gap: 20px;
  background-color: #FF900E;
  width: 86.5%;
  margin: 0;
  position: relative;
  z-index: 9;
}

}


@media screen and (min-width: 576px) and (max-width: 1024px) {
  .navbar {
    width: 90%;
    padding: 10px 0;
    margin: auto;
  }

  .menu {
    gap: 15px;
  }

  .banner-title {
    font-size: 48px;
  }

  .banner-description {
    font-size: 16px;
    padding: 0 40px;
  }

  .primary-btn {
    padding: 15px 20px;
    font-size: 18px;
    margin-bottom: 30px;
  }
  .banner-content > img {
    width: 90%;
  }

  .features {
    flex-direction: column;
    gap: 15px;
    padding: 50px 0;
  }
  .features-img {
    gap: 10px;
}

  .features-content {
    width: 90%;
}


.information {
  flex-direction: column;
  width: 90%;
  gap: 30px;
}

.information-title > h2 {
  font-size: 45px;
  font-weight: 700;
}

.ftr-img {
  width: 100%;
  height: auto;
}

.experience {
  padding: 44px;
  border-radius: 8px;
  text-align: center;
  gap: 20px;
  background-color: #FF900E;
  width: 342px;
  margin-left: 30px;
  margin-top: -220px;
  position: relative;
  z-index: 9;
}

    
}

/* ------------------------------------
   The End CSS Styles
------------------------------------ */