/* Start custom CSS for html, class: .elementor-element-2b7b022 */.team-section{
    position:relative;
    padding:180px 5% 120px;
    background:linear-gradient(
        135deg,
        #050505 0%,
        #0d0d0d 50%,
        #181818 100%
    );
    overflow:hidden;
}

.tech-bg{
    position:absolute;
    inset:0;
    z-index:1;
}

.tech-bg span{
    position:absolute;
    color:rgba(255,204,0,.08);
    font-size:80px;
    font-weight:800;
}

.tech-bg span:nth-child(1){
    top:15%;
    left:5%;
    animation:floatTech 12s infinite;
}

.tech-bg span:nth-child(2){
    top:20%;
    right:10%;
    animation:floatTech 14s infinite;
}

.tech-bg span:nth-child(3){
    bottom:15%;
    left:10%;
    animation:floatTech 13s infinite;
}

.tech-bg span:nth-child(4){
    bottom:20%;
    right:15%;
    animation:floatTech 15s infinite;
}

.tech-bg span:nth-child(5){
    top:50%;
    left:45%;
    animation:floatTech 16s infinite;
}

@keyframes floatTech{
    50%{
        transform:translateY(-40px);
    }
}

.container{
    position:relative;
    z-index:2;
    max-width:1400px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#ffcc00;
    font-weight:700;
    letter-spacing:3px;
}

.section-title h2{
    color:#fff;
    font-size:55px;
    margin:15px 0;
}

.section-title p{
    color:#cfcfcf;
    max-width:800px;
    margin:auto;
    line-height:1.8;
}

.team-heading{
    text-align:center;
    color:#ffcc00;
    font-size:34px;
    margin:40px 0;
}

.advisor-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-bottom:80px;
}

.core-team-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.team-card{
    background:rgba(255,255,255,.04);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:35px;
    text-align:center;
    transition:.4s;
}

.team-card:hover{
    transform:translateY(-12px);
    border-color:#ffcc00;
    box-shadow:0 20px 40px rgba(255,204,0,.15);
}

.advisor-card{
    border:2px solid #ffcc00;
}

.team-card img{
    width:160px;
    height:160px;
    object-fit:cover;
    border-radius:50%;
    border:5px solid #ffcc00;
    margin-bottom:20px;
}

.team-card h3{
    color:#fff;
    margin-bottom:10px;
}

.team-card span{
    display:inline-block;
    background:#ffcc00;
    color:#000;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.team-card p{
    color:#cfcfcf;
    line-height:1.8;
}

@media(max-width:1200px){

    .core-team-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .advisor-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .core-team-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:36px;
    }

    .team-card img{
        width:130px;
        height:130px;
    }

    .tech-bg{
        display:none;
    }
}/* End custom CSS */