
/* =========================
SECTION
========================= */

.ak_portal_section{
width:100%;
max-width:95%;
margin:auto;
padding:80px 4%;
font-family:stcforward,roboto,arial,sans-serif;
}

.ak_portal_title{
text-align:center;
font-size:34px;
color:#1d252d;
margin-bottom:10px;
font-weight:700;
}

.ak_portal_desc{
text-align:center;
max-width:700px;
margin:auto;
margin-bottom:60px;
color:#666;
line-height:1.7;
}

/* =========================
GRID
========================= */

.ak_portal_grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:28px;
}

/* =========================
CARD
========================= */

.ak_portal_card{
background:linear-gradient(135deg,#ffffff,#f8f5ff);
border-radius:16px;
padding:30px;
cursor:pointer;
transition:.35s;
border:1px solid rgba(79,0,140,.08);
box-shadow:0 12px 30px rgba(0,0,0,0.06);
text-align:center;
position:relative;
overflow:hidden;
width: 85%;;
}

.ak_portal_card::before{
content:'';
position:absolute;
width:180px;
height:180px;
background:radial-gradient(circle,rgba(79,0,140,.08),transparent);
top:-60px;
right:-60px;
}

.ak_portal_card:hover{
transform:translateY(-8px);
box-shadow:0 20px 45px rgba(0,0,0,0.1);
}

.ak_portal_logo{
display:block;
margin-left:auto;
margin-right:auto;
margin-bottom:18px;
max-width:110px;
height:auto;
}

.ak_portal_type{
color:#ff375e;
font-size:12px;
font-weight:700;
letter-spacing:1px;
margin-bottom:10px;
text-transform:uppercase;
}

.ak_portal_name{
font-size:20px;
font-weight:700;
color:#4f008c;
margin-bottom:10px;
}

.ak_portal_short{
font-size:14px;
color:#555;
line-height:1.6;
margin-bottom:16px;
}

.ak_card_arrow{
font-size:15px;
color:#4f008c;
font-weight:600;
}

/* =========================
DRAWER OVERLAY
========================= */

.ak_drawer_overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.45);
opacity:0;
visibility:hidden;
transition:.3s;
z-index:999;
}

.ak_drawer_overlay.active{
opacity:1;
visibility:visible;
}

/* =========================
SIDE DRAWER
========================= */

.ak_side_drawer{
position:fixed;
top:0;
right:-480px;
width:460px;
height:100%;
background:#fff;
z-index:1000;
display:flex;
flex-direction:column;
transition:.4s;
box-shadow:-10px 0 40px rgba(0,0,0,0.25);
}

.ak_side_drawer.active{
right:0;
}

/* =========================
DRAWER HEADER
========================= */

.ak_drawer_header{
padding:28px 30px;
border-bottom:1px solid #eee;
display:flex;
justify-content:space-between;
align-items:center;
}

.ak_drawer_title{
font-size:24px;
color:#4f008c;
font-weight:700;
}

.ak_drawer_close{
font-size:26px;
cursor:pointer;
color:#999;
}

/* =========================
DRAWER BODY
========================= */

.ak_drawer_body{
padding:30px;
overflow-y:auto;
flex:1;
}

.ak_drawer_sub{
color:#ff375e;
font-weight:600;
margin-bottom:18px;
font-size:14px;
}

.ak_drawer_text{
color:#555;
line-height:1.7;
margin-bottom:25px;
}

.ak_drawer_list{
margin-bottom:30px;
padding-left:18px;
}

.ak_drawer_list li{
margin-bottom:10px;
color:#444;
}

/* =========================
BUTTON
========================= */

.ak_drawer_btn{
display:inline-block;
background:#ff375e;
color:white;
padding:14px 30px;
border-radius:10px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.ak_drawer_btn:hover{
background:#4f008c;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1000px){

.ak_portal_grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.ak_portal_grid{
grid-template-columns:1fr;
}

.ak_side_drawer{
width:100%;
right:-100%;
}

.ak_portal_title{
font-size:26px;
}

}


