﻿*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
.processing-main-section{
    position:relative;
    overflow:hidden;
    padding:50px 20px 60px;
    background:linear-gradient(135deg,#001b5e,#06328d,#0a255f);
}
.bg-shape{
    position:absolute;
    border-radius:50%;
    animation:float 7s ease-in-out infinite;
}
.shape1{
    width:250px;
    height:250px;
    background:rgba(255,153,0,.08);
    top:-70px;
    left:-70px;
}
.shape2{
    width:180px;
    height:180px;
    background:rgba(19,136,8,.08);
    right:5%;
    top:10%;
}
.shape3{
    width:140px;
    height:140px;
    background:rgba(255,255,255,.05);
    bottom:8%;
    left:10%;
}
@keyframes float{
    50%{
        transform:translateY(-20px);
    }
}
.processing-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:50px;
    margin-bottom:45px;
    position:relative;
    z-index:2;
}
.processing-logo{
    flex:0 0 260px;
}
.processing-logo img{
    width:100%;
    max-width:260px;
    animation:logoFloat 4s ease-in-out infinite;
    border-radius: 50px;
}
@keyframes logoFloat{
    50%{
        transform:translateY(-10px);
    }
}
.processing-content{
    flex:1;
}
.badge{
    display:inline-block;
    background:rgba(255,255,255,.12);
    padding:12px 25px;
    border-radius:40px;
    color:#fff;
    font-weight:600;
    margin-bottom:20px;
}
.processing-content h1{
    color:#fff;
    font-size:58px;
    line-height:1.2;
    margin-bottom:20px;
}
.processing-content h1 span{
    color:#ffd54f;
}
.processing-content p{
    color:#ecf1f9;
    font-size:18px;
    line-height:1.9;
    max-width:750px;
}
/* FOUNDERS */
.founders-wrapper{
    max-width:1200px;
    margin:25px auto 0;
    display:grid;
    grid-template-columns:repeat(12,1fr);
    gap:20px;
    position:relative;
    z-index:2;
}
.founder-card{
    grid-column:span 4;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.10);
    border-radius:20px;
    padding:18px;
    text-align:center;
    transition:.4s ease;
}
.founder-card:nth-child(7),
.founder-card:nth-child(8),
.founder-card:nth-child(9),
.founder-card:nth-child(10){
    grid-column:span 3;
}
.founders-wrapper .founder-card:nth-child(n+7){
    grid-column:span 3;
}
.founder-card:hover{
    transform:translateY(-6px);
    background:rgba(255,255,255,.16);
}
.founder-image{
    width:145px;
    height:145px;
    margin:auto;
    margin-bottom:16px;
    border-radius:50%;
    overflow:hidden;

    /* premium border */
    border:4px solid rgba(255,255,255,.85);

    /* remove white background */
    background:transparent;

    display:flex;
    align-items:center;
    justify-content:center;

    /* soft glow like generated image */
    box-shadow:
    0 0 0 6px rgba(255,255,255,.08),
    0 12px 30px rgba(0,0,0,.20);
}
.founder-image img{
    width:100%;
    height:100%;

    /* face fills circle */
    object-fit:cover;

    /* keep face centered */
    object-position:center top;

    transition:.5s ease;
}
.founder-card:hover .founder-image img{
    transform:scale(1.08);
}
.founder-content h3{
    font-size:18px;
    color:#fff;
    margin-bottom:5px;
    font-weight:700;
}
.founder-content h4{
    color:#d7dce7;
    font-size:13px;
    margin-bottom:5px;
}
.founder-content h5{
    color:#ffd54f;
    font-size:15px;
    margin-bottom:8px;
}
.founder-content p{
    color:#edf2f7;
    font-size:13px;
    line-height:1.6;
}
@media(max-width:991px){
    .processing-main-section{
        padding:50px 18px;
    }
    .processing-container{
        flex-direction:column;
        text-align:center;
        gap:30px;
    }
    .processing-logo{
        flex:unset;
    }
    .processing-logo img{
        max-width:180px;
        border-radius:35px;
    }
    .processing-content h1{
        font-size:40px;
        line-height:1.3;
    }
    .processing-content p{
        font-size:16px;
        max-width:100%;
    }
    .founders-wrapper{
        grid-template-columns:repeat(2,1fr);
        gap:18px;
    }
    .founder-card,
    .founders-wrapper .founder-card:nth-child(n+7){
        grid-column:span 1;
    }
    .founder-image{
        width:120px;
        height:120px;
    }
    .founder-content h3{
        font-size:17px;
    }
   .founder-content h5{
        font-size:14px;
    }
}
@media(max-width:767px){
    .processing-main-section{
        padding:45px 16px 55px;
    }
   .processing-container{
        flex-direction:column;
        text-align:center;
        gap:25px;
        margin-bottom:35px;
    }
   .badge{
        padding:10px 18px;
        font-size:13px;
    }
    .processing-logo img{
        max-width:150px;
        border-radius:28px;
    }
    .processing-content h1{
        font-size:30px;
        line-height:1.3;
        margin-bottom:15px;
    }
    .processing-content p{
        font-size:14px;
        line-height:1.8;
    }
    .founders-wrapper{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:14px;
    }
    .founder-card{
        padding:16px 12px;
        border-radius:18px;
        min-height:auto;
    }
    .founder-card,
    .founders-wrapper .founder-card:nth-child(n+7){
        grid-column:span 1;
    }
    .founder-image{
        width:105px;
        height:105px;
        margin-bottom:12px;
        border:3px solid rgba(255,255,255,.18);
    }
    .founder-image img{
        object-fit:contain;
        background:#fff;
    }
    .founder-content h3{
        font-size:15px;
        line-height:1.4;
        margin-bottom:4px;
    }
   .founder-content h4{
        font-size:12px;
        line-height:1.5;
    }
    .founder-content h5{
        font-size:13px;
        margin-bottom:6px;
    }
    .founder-content p{
        font-size:12px;
        line-height:1.6;
    }
}