/* Who is this platform  */


.titel{
    display: flex;
    flex-direction: column;
    align-items: center;
    /* transform: translateX(-31%); */
    font-weight: 600;
    
}

.reason h3{
    display: flex;
    
    justify-content: space-around;

    font-weight: 600;
    justify-content: space-evenly;

    
   
}


.titel h2{
    background: #3291B6;
    border-radius: 100px 10px 100px 10px;
    padding: 20px 40px;
    color: white;
    
 
}


/* four role section */

.roles-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
    margin-top: 40px;
}
.role-card{
    background: #ffffff;
    border-radius: 28px;
    padding: 0 0 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef2f7;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.role-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.role-card{
    border-top: 5px solid #3291B6;
    background: linear-gradient(170deg, #eef6fb 0%, #ffffff 45%);
}

.role-card h3{
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    padding: 0 22px;
    color: #3291B6;
}

.role-link{
    text-decoration: none ;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 22px;
    margin-top: auto;
    color: #3291B6;
    transition: color 0.25s ease, gap 0.25s ease;
}

.role-link:hover{
    gap: 12px;
    color: #0a1e3c;
}



.role-desc{
    flex: 1;
    margin: 0;
    padding: 0 22px;
}
.role-desc li{
    padding: 8px 0;
    font-size: 15px;
    color: #4b5563;
}

.role-card img{
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 28px 28px 0 0;
    margin-bottom: 18px;
    display: block;
}

/* PLATFORM CAPABILITIES */

.platform-section{
    background: #F6F1F1;
    padding: 100px 70px;
    text-align: center;
    background-image: url(../images/image12.png);
    background-size: cover;
}





.platform{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 60px;
    text-align: left;
}

.main-titel h1{
    margin-bottom: 50px;
    letter-spacing: 1px;
    font-size: 42px;
    font-weight: 600;
    /* padding: 50px; */
}

.item img{
    width: 30px;
}
 
.item p{
    color: #1B211A;
}
.item{
    padding: 10px
}

