@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 */
.display-flex {
  display: flex;
}

.text-primary {
  color: #FF900E;
}

/* dark 02 */
.text-gray {
  color: #424242;
}

/* dark 03 */
.text-light-gray {
    color: #727272;
}

.bg-ight {
    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;
}

main > section {
    margin-top: 100px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0px;
}

/* header styles */


/* navbar related styles */
  .navbar { 
    justify-content: space-between;
    align-items: center;
  }

  .brand {
    font-weight: 700;
    font-size: 2.5rem;
  }

  .nav-items {
    list-style: none;
    margin-right: 30px;
}

.nav-links {
    text-decoration: none;
    font-weight: 500;
}

.navbar, .banner {
    max-width: 1440px;
    margin: 0 auto;
}

/* banner related styles */
  .banner-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 50px;
  }

  .banner-title {
    font-weight: 700;
    font-size: 3rem;
  }

  .banner-image {
    width: 100%;
  }

  /* team and feature related styles */
    .teams {
        align-items: center;
    }  
   
  .team-img-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.our-features {
    margin-left: 50px;
    max-width: 530px;
}

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

.feature-description {
 margin-bottom: 20px;
}

/* feature section related styles */

.features {
  gap: 140px;
  /* margin-bottom: 0px; */
}

#feature-section-title {
  border-left: 5px solid #FF900E;
  padding-left: 20px;
}

.feature-card {
  padding: 30px;
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
  border-radius: 8px;
}

.feature-card .feature-title {
  font-weight: 600;
  font-size: 1.25rem;
  margin-top: 0px;
  margin-bottom: 0px;

}

#experience-badge {
  padding: 45px 40px;
  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 related styles */
   .fact-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    
  }

  .fact-card {
    border: 1px solid #FF900E;
    width: 249px;
    height: 240px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    text-align: center;
    }

    .fact-number {
      font-size: 2.8rem;
      font-weight: 600;
      margin-top: 10px;
      margin-bottom: 5px;
    }

    .fact-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 10px;

    }

    .fact-description {
      max-width: 450px;
      margin-top: 25px;
      margin-bottom: 80px;
    }

    /* sponsor related styles */
       .sponsor-info {
         max-width: 540px;
         margin: 50px auto;
         text-align: center;
       }

      .sponsor-companies {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
      }

      .sponsor-companies img {
        filter: grayscale(100%);
      }


   /* responsive media query for small devices */
   @media screen and (max-width:576px) {
    .nav-bar,
    .nav-links,
    .teams,
    .features {
        flex-direction: column;
    }
     
    .team-img-container,
    .fact-container,
    .sponsor-companies {
      grid-template-columns: 1fr;
    }

    .fact-container {
      justify-items: center;
      gap: 25px;
    }

    .sponsor-companies {
      justify-items: center;
      gap: 50px;
    }

    #experience-badge {
      margin-top: 20px;
      margin-left: 20px;
    }

   }

   /* media query for mediam size divice */
    @media screen and (min-width:576px) and (max-width:992px) {
        .teams,
        .features {
          flex-direction: column;
        }
     
       .our-features {
        /* margin-right: 150px; */
        margin: 50px auto;
       }

       .sponsor-companies,
       .fact-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        justify-items: center;
       }
       
        #experience-badge {
      margin-top: 20px;
      margin-left: 20px;
    }

    }








