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

.work-sans-regular {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}


/* ----------------------------------------- Shared Styles --------------------------------------- */

.display-flex{
    display: flex;
}

.bg-color{
    background-color: rgba(255, 144, 14, 0.1);
}

.btn-primary{
    background-color: #ff900e;
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
    padding: 25px 20px;
    border: none;
    border-radius: 8px;
}

main{
    max-width: 1440px;
    margin: 0 auto;
}

.section-title{
    font-size: 2.8rem;
    font-weight: 700;
}

/* ------------------------------------------ Navbar Styles ---------------------------------------- */

.brand{
    font-size: 3rem;  /* 1rem = 16px (Approx.) */
}

.navbar{
    justify-content: space-between;
    align-items: center;
}

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

.nav-link{
    text-decoration: none;
    color: #424242;
    font-weight: 500;
    font-size: 20px;
}

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

/* -------------------------------------------- Banner Styles -------------------------------------- */

.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%;
}


/* -------------------------------------------- Teams Design ------------------------------------- */
.teams{
    align-items: center;
    margin-top: 130px;
}

.team-features{
    margin-left: 130px;
    max-width: 530px;
}
.teams-img-container{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
}

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

.feature-description{
    color: #727272;
    font-size: rem;
}

#quick-list{
    color: #727272;
    font-weight: 500;
    font-size: 3rem;
}

#of-our{
    font-size: 3rem;
}

#features{
    color: #ff900e;
    font-size: 3rem;
}


/* ------------------------------------------------- Features Styles --------------------------------------------- */

.features{
    
    display: flex;
    gap: 145px;
    margin-top: 130px;
}
.features img{
    width: 100%;
}

#feature-border{
    border-left: 5px solid #ff900e;
    padding-left: 20px;
}

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

}

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

#experience-badge{
    padding: 45px 42px;
    margin-left: -100px;
    margin-top: -100px;
}

#experience-year{
    font-size: 4rem;
    font-weight: 700;
}

#exp-small{
    font-size: 1.5rem;
    font-weight: 500;
}


/* ------------------------------------------ Some Facts Syles -------------------------------------*/
.facts-container{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    
}
.some-facts-description{
    color: #727272;
    max-width: 540px;
    margin-top: -30px;
    margin-bottom: 30px;
}

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

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

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

/* ------------------------------------------------ Sponsor 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%);
}


/* -------------------------------------------- Footer styles ----------------------------------- */

footer{
    margin: 50px auto;
    width: 1000px;
    
    
}

.footer-text{
    text-align: center;
    color: #727272;
    padding: 30px;
    border-radius: 8px;
}










/* ------------------------------------------------ Media Query ----------------------------------- */
@media screen and (max-width:576px) {
    .menu, 
    .navbar, 
    .teams,
    .features
    {
        flex-direction: column;
    }

    .menu{
        display:grid;
        grid-template-columns: repeat(4,1fr);
    }

    .teams-img-container,
    .facts-container,
    .sponsor-companies{
        grid-template-columns: repeat(1,1fr);
    }

    .facts-container,
    .sponsor-companies{
        justify-items: center;
        gap: 24px;
    }

    .team-features{
        margin-left: 20px;
    }

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

    footer{
    margin: 50px auto;
    width: 360px;
    
    
    }

    .footer-text{
        font-size: small;
        text-align: center;

    }

    

    

    
}