
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: black;
    font-family: "Montserrat", sans-serif;

}

h2 {
    width: 100%;
    text-align: center;
    margin: 10px 0;
    color: #FFBD59;
    font-size: 2.5em;
}

.team-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 20px;
    background-color: black;
}

.team-member {
    display: flex;
    align-items: center;
    border: 3px solid #e0e0e0;
    border-radius: 10px;
    padding: 10px;
    width: 100%;
    max-width: 600px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 4px 4px 4px 4px  #5c121dfc;
}

.member-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
    transition: transform 0.3s;
    object-fit: cover;
}

.member-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.member-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.5em;
    color: white;
    font-weight: bold;
}

.member-info p {
    margin: 0;
    font-size: 1em;
    color: #FFBD59;

}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 4px 4px 4px 4px #5c121dfc;
}

.team-member:hover .member-img {
    transform: scale(1.1);
}

@media (min-width: 768px) {
    .team-section {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .team-member {
        width: calc(33.333% - 40px);
        margin: 10px;
    }
}



*{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

.sub-header{
    min-height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url("assets/bg.png");
    background-position: center;
    background-size: cover;
    text-align: center;
    color: white;
 
 }
 .sub-header h1{
    margin-top: 10px;
    font-size: 30px;
 }
 nav{
     display: flex;
     padding: 2% 6%;
     justify-content: space-between;
     align-items: center;
 }
 nav img{
     margin-top: 30px;
      width: 120px;
       height: 120px;
 }
 .nav-links{
     flex: 1;
     text-align: right;
 }
 .nav-links ul li{
     list-style: none;
     display: inline-block;
     padding: 8px 12px;
     position: relative;
     
 }
 .nav-links ul li a{
     color: antiquewhite;
     text-decoration: none;
     font-size: 20px;
     font-family: "Montserrat", sans-serif;

 }
 .nav-links ul li::after{
     content: '';
     width: 0%;
     height: 2px;
     background: #FFBD59;
     display: block;
     margin: auto;
     transition: 0.5s;
 
 }
 .nav-links ul li:hover::after{
    width: 100%;
 }
 
 .text-box{
     width: 90%;
     color: white;
     position: absolute;
     top: 60%;
     left: 52%;
     transform: translate(-50%,-50%);
     text-align: left;
     
 }
 .text-box #tagline{
     padding-bottom: 30px;
 }
 .text-box #tagline i{
     font-size: 20px;
 }
 .txt-wrapper #txt{
     font-size: 85px;
     font-weight: 600;
 }
 .txt-wrapper #cursor{
     font-size: 90px;
     font-weight: 700;
 }
 .text-box #welcome-line{
     font-size: 20px;
     color: white;   
 }
 .text-box #tagline {
     font-size: 25px;
     top: 70%;
 }
 .btn{
     display: inline-block;
     text-align: none;
     color: white;
     border: 1px solid white;
     padding: 12px 34px;
     font-size: 17px;
     background-color: transparent;
     position: relative;
     cursor: pointer;
     text-decoration: none;
 
 }
 
 .btn:hover{
     border: 1px solid #f44336;
     background-color: #f44336;
     transition: 1s;
 }
 
 nav .fa{
     display: none;
 }
 .team-img{
    border-radius: 100%;
 }
 
 @media(max-width: 700px){
     .txt-wrapper #txt {
         font-size: 50px;
     }
     .txt-wrapper #cursor{
         font-size: 50px;
     }
     .text-box #welcome-line{
         font-size: 15px;  
     }
     .text-box #tagline {
         font-size: 15px;
     }
 
     .nav-links ul li{
         display: block;
     }
     .nav-links {
         position: fixed;
         background: #5c121dfc;
         height: 100vh;
         width: 200px;
         top: 0;
         right: -200px;
         text-align: left;
         z-index: 2;
         transition: 1s;
         overflow-x: hidden;
     }
     nav .fa{
         display: block;
         color: white;
         margin: 10px;
         font-size: 22px;
         cursor: pointer;
     }
      .nav-links ul{
         padding: 30px;
      }
      .sub-header h1 {
     margin-top: 60px;
 }
 }


 .footer{
    margin-top: 50px;
    width: 100%;
    background-color: #361f22;
    color: white;
    text-align: center;
 }

.footer #footer{
   text-align: center;
    color: #FFBD59;
    font-size: 15px;
    padding-bottom: 7px;
    padding-top: 10px;
    font-weight: 700;
    
}
.footer #footer .fa{
    color: #f44336;
}

.footer #extra{
    font-size: 12px;
    padding-bottom: 5px;
}



::-webkit-scrollbar{
    width: 10px;
}
::-webkit-scrollbar-thumb{
    background: linear-gradient(transparent, #5c121dfc);
    border-radius: 5px;
}


::-webkit-scrollbar-thumb:hover{
    background: linear-gradient(transparent,#FFBD59);

}



