
:root{
    --bg-color: #121315;
    --font-color: #e0eeee;
    --menu-bg-color: #a6a9b033
}

.hero-section{
    height: 100vh;
    padding: 34px 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 800px){
    .hero-section{
        padding: 34px 20px;
    }
}

.team-intro{
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 70px 84px;
    padding-top: 100px;
}

.team-heading p{
    font-size: 12vw;
    line-height: 8rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.team-cards{
    overflow-x: scroll;
    scroll-behavior: smooth;
    -ms-overflow-style: none; 
    scrollbar-width: none;    
    display: flex; 
    gap: 40px;
    align-items: center;
    white-space: nowrap;
    scroll-snap-type: x mandatory; /* Enables snapping */

}
  
.team-cards::-webkit-scrollbar {
    display: none; 
}
  
.team-card{
    width: 40vw;
    height: 40vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    border-radius: 1.5rem;
    border: 2px solid var(--font-color);
    flex: 0 0 auto; /* Prevent shrinking */
    scroll-snap-align: start; /* Snap to each card */

}

.team-cards {
    -webkit-overflow-scrolling: touch;
}

.team-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1;
    gap: 4px;
}

.team-name{
    font-size: 27px;
}
.team-designation{
    font-size: 16px;
}

.team-card img{
    width: 10vw;
    height: 10vw;
    border-radius: 50%;
    object-fit: cover;
}

button.team-button{
    padding: 16px 32px;
}

@media (max-width: 1035px ){
    .team-card{
        width: 38vw;
    }
    .team-heading p{
        font-size: 12vw;
        line-height: 6rem;
        font-weight: bold;
        letter-spacing: 2px;
    }
}

@media (max-width: 885px ){
    .team-card{
       height: 60vw;
       width: 80vw;
    }
    .team-card img{
        width: 20vw;
        height: 20vw;
    }
    .team-intro{
        padding: 100px 20px;
    }
    .team-heading p{
        font-size: 12vw;
        line-height: 5rem;
        font-weight: bold;
        letter-spacing: 2px;
    }
}

@media (max-width: 625px ){
    .team-card{
       height: 90vw;
       width: 80vw;
    }
    .team-heading p{
        font-size: 12vw;
        line-height: 3.5rem;
        font-weight: bold;
        letter-spacing: 2px;
    }
}

@media (max-width: 430px ){
    .team-heading p{
        font-size: 12vw;
        line-height: 2.8rem;
        font-weight: bold;
        letter-spacing: 2px;
    }
    .team-card img{
        width: 25vw;
        height: 25vw;
    }
    .team-card{
        height: 120vw;
        width: 88vw;
     }
}


.usp{
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 100px 84px;
}

.usp-info{
    display: flex;
    justify-content: start;
    align-items: center;
}

.usp-info p{
    font-size: 50px;
    width: 70%;
    letter-spacing: -3px;
    line-height: 3.5rem;
}

.usp-sub-para{
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 30px;
}

.usp-sub-para p{
    font-size: 22px;
    width: 50%;
}

@media (max-width: 1049px){
    .usp-sub-para{
        align-items: start;
    }
    .usp-info p{
        width: 100%;
        font-size: 42px;
        line-height: 3rem;
    }
    .usp-sub-para p{
        width: 100%;
        font-size: 20px;
    }
}
@media (max-width: 885px){
    .usp{
        padding: 100px 20px;
    }
}
@media (max-width: 734px){
    .usp-info p{
        font-size: 38px;
        line-height: 2.5rem;
    }
    .usp-sub-para p{
        font-size: 18px;
    }
}

@media (max-width: 500px){
    .usp-info p{
        font-size: 36px;
        line-height: 2.4rem;
    }
    .usp-sub-para p{
        font-size: 17px;
    }
}



