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

.work-sans-font {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
/* shared styles */
.section-title {
  font-size: 2.8rem;
  font-weight: 700;
}
main > section {
  margin-top: 130px;
}
.display-flex {
  display: flex;
}
.text-primary {
  color: #ff900e;
}
/* color 02 */
.text-gray {
  color: #424242;
}
/* color 03 */
.text-light-gray {
  color: #727272;
}
.bg-light {
  background-color: rgba(255, 144, 14, 0.1);
}

.btn-primary {
  background-color: #ff900e;
  color: white;
  padding: 20px 25px;
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
}
main {
  max-width: 1440px;
  margin: 0 auto;
}

/* navbar related syles */
.navbar {
  justify-content: space-between;
  align-items: center;
}
.nav-link {
  text-decoration: none;
  font-weight: 500;
  font-size: 1.2rem;
}
.nav-item {
  list-style: none;
  margin-right: 30px;
}
.navbar,
.banner {
  max-width: 1440px;
  margin: 0 auto;
}
.brand {
  font-weight: 700;
  font-size: 2.8rem;
}
/* banner related style  */
.banner-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 50px;
}
.banner-title {
  font-weight: 700;
  font-size: 4rem;
}
.banner-img {
  width: 100%;
}

/* +team feature related styles */
.teams {
  align-items: center;
}
.team-img-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.our-features {
  margin-left: 130px;
  max-width: 530px;
}

#quick-list {
  font-weight: 500;
}

/* feature section related section style */
.features {
  gap: 140px;
}
#feature-section-title {
  border-left: 5px solid #ff900e;
  padding-left: 20px;
}
.feature-card,
.feature-title {
  font-weight: 600;
  font-size: 1.25rem;
  margin-top: 0;
  margin-bottom: 0;
}
.feature-card {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}
#experience-badge {
  padding: 45px 42px;
  font-size: 1.5rem;
  font-weight: 500;
  margin-left: -100px;
  margin-top: -100px;
}
#experience-year {
  font-size: 4rem;
  font-weight: 700;
}
.featured-architect img {
  width: 100%;
}
/* some facts */
.fact-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.fact-card {
  border: 1px solid #ff900e;
  border-radius: 8px;
  width: 240px;
  height: 240px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.fact-number {
  font-size: 2.8rem;
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 10px;
}
.fact-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 10px;
}
.fact-description {
  max-width: 540px;
}

.sponser-info {
  max-width: 540px;
  margin: 50px auto;
  text-align: center;
}
.sponser-company {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  filter: grayscale(100%);
}
/* footer section  */
footer {
  max-width: 1440px;
  margin: 0 auto;
}
.footer {
  background-color: #FFF4E7;
  padding: 40px 410px;
  margin-top: 130px;
  margin-bottom: 200px;
  text-align: center;
}
.footer p {
  font-size: 20px;
}



/* responsinve media query  */
@media screen and (max-width: 576px) {
  .navbar,
  .nav-links,
  .teams,
  .features {
    flex-direction: column;
  }

  .team-img-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .our-features {
    margin-left: 20px;
  }
  .fact-container {
    grid-template-columns: repeat(1fr);
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .sponser-company {
    justify-items: center;
    grid-template-columns: 1fr;
    gap: 50px;
  }
  #experience-badge {
    margin-top: 20px;
    margin-left: 20px;
  } 
  .footer {
    padding: 10px 5px;
    margin: 5px;
    max-width: 100%;
  }
  .footer p {
  font-size: 10px;
}
}

/* medium size device */
@media screen and (min-width: 576px) and (max-width: 992px) {
  .teams, .features {
    flex-direction: column;
  }
   #experience-badge {
    margin-top: 20px;
    margin-left: 20px;
  } 
  .our-features {
    margin: 50px auto;
  }
  .fact-container{
    gap: 5px;
  }
  .sponser-company {
    justify-items: center;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }
  
}