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

*{
    font-family: "Work Sans", serif;
}


/* shared style */

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

/* dark-3 */
.text-light-gary{

    color: #727272;
    /* font-size: 1rem;
    font-weight: 500; */
}

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


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

}

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

.text-primary{
    color: #FF900E;
}
.section-title{
    font-size: 2.8rem;
    font-weight: 700;
}
/* header style */



.navbar{
   justify-content: space-between;
   align-items: center;
}
.brand{
    font-weight: 700;
    font-size: 3rem;
}
.nav-item{
    list-style: none;
    margin-right: 30px;
}
.nev-link{
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    
}
.navbar, .banner{
    max-width: 1420px;
    margin: 0px auto;
}
.nav-links{

}


/* banner-related-style */
.banner-content{
    max-width: 850PX;
    margin: 0PX auto;
    text-align: center;
    margin-bottom: 50px;
}
.banner-title{
    font-size: 4rem;
    font-weight: 700;
}
.banner-img{
    width: 100%;
}

.banner-description{
    font-size: 1rem;
    font-weight: 500;
    color: #727272;
}

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


/* teams related style */

.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-size: 2.9rem;
    font-weight: 500;
}
.features-description{
    margin-top: 24px;
    color: #727272;
    font-size: 1rem;
    font-weight: 500;
}
.our-features button{
  margin-top: 32px;
}

/* fact related style */

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

.fact-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 100px;
   
}

.fact-number{
    font-size: 2.8rem;
    font-weight: 600;
    color: #424242;
    margin-top: 5px;
    margin-bottom: 10px;
}
.fact-name{
    font-size: 1.25rem;
    font-weight: 600;
    color: #727272;
    margin-top: 10px;
}
.fact-title{
    font-size: 2.8rem;
    font-weight: 700;
    color: #131313;
}
.fact-description{
    max-width: 440px;
}


/* sponsor style */
.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%);
}


/* star features section */

#features-section-title{
    border-left: 5px solid #FF900E;
    padding-left: 20px;
}
.features {
    gap: 130px;
    

}
.fture-description{
    margin-top: 24px;
}
.archi-container{
    margin-top: 50px;
}
.feature-card{
    box-shadow:0px 4px 30px 0px rgba(0, 0, 0, 0.06) ;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    /* margin-top: 30px; */
    

    
    
}
.feature-card, .feature-title{
    font-size: 1.25rem;
    color: #131313;
    font-weight: 600;
   margin-top: 0px;
   margin-bottom: 0px;
  
}
.feature-card-description{
font-size: 1rem;
font-weight: 500;
margin-top: 10px;
}
#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;
}
.arci-img img{
    width: 100%;
}

/* start responsive part */
@media screen and (max-width:776px) {
    .navbar{
        flex-direction: column;

    }
    .nav-links{
        flex-direction: column;
    }
    .teams {
        flex-direction: column;
    }
    .team-img-container{
        grid-template-columns: repeat(1, 1fr);
    }
    .our-features{
        margin-left: 20px;
    }
    .our-features button{
        width: 100%;
        margin: 0px;
        padding: 10px 10px;
    }
    .fact-container{
        grid-template-columns: repeat(1, 1fr); 
        justify-items: center;
        gap: 24px;
    }
    .fact-title{
        text-align: center;
        font-size: 2rem;
        font-weight: 600;
    }
    .fact-description{
        text-align: center;
    }
    .sponsor-companies{
        grid-template-columns: repeat(1, 1fr);
        gap: 50px;
        justify-items: center;
    }
    .features{
        flex-direction: column;
    }
    #experience-badge{
        margin-top: 20px;
        margin-left: 50px;
        padding:20px 20px ;
    }
}

@media screen and (min-width:576px) and (max-width:992px) {
    .teams {
        flex-direction: column;
    }
    .our-features{
        margin-left: 50px auto;
    }
    .sponsor-companies{
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        justify-items: center;
    }
    .fact-container{
        grid-template-columns: repeat(2, 1fr); 
        justify-items: center;
        gap: 24px;
    }
    .features{
        flex-direction: column;
    }
    #experience-badge{
        margin-top: 20px;
        margin-left: 50px;
        padding:20px 20px ;
    }
}