.akra-services {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #080312 0%,
            #05010d 100%
        );
}
/* =========================================================
   GRID BACKGROUND
========================================================= */
.akra-services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: .35;
}
/* =========================================================
   GLOW
========================================================= */
.services-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(123,97,255,.18),
            transparent 70%
        );
    filter: blur(140px);
    top: -300px;
    right: -250px;
    pointer-events: none;
    animation: glowMove 12s ease-in-out infinite;
}
@keyframes glowMove {
    0%{
        transform: translate(0,0);
    }
    50%{
        transform: translate(-40px,30px);
    }
    100%{
        transform: translate(0,0);
    }
}
/* =========================================================
   HEADING
========================================================= */
.services-heading {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: auto;
    text-align: center;
    margin-bottom: 90px;
}
.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    background:
        rgba(255,255,255,.04);
    border:
        1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
    margin-bottom: 28px;
    font-size: 13px;
    letter-spacing: 3px;
    color:
        rgba(255,255,255,.7);
}
.services-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ba6eeb;
    box-shadow:
        0 0 15px #ba6eeb;
}
.services-heading h2 {
    font-size: 64px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -3px;
    color: #fff;
    margin-bottom: 26px;
}
.services-heading h2 span {
    background:
        linear-gradient(
            90deg,
            #7b61ff,
            #c084fc
        );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.services-heading p {
    font-size: 20px;
    line-height: 1.8;
    color:
        rgba(255,255,255,.68);
}
/* =========================================================
   SERVICES GRID
========================================================= */
.services-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 24px;
}
/* =========================================================
   CARD
========================================================= */
.service-bento {
    position: relative;
    min-height: 280px;
    padding: 36px;
    border-radius: 34px;
    background:
        rgba(255,255,255,.04);
    border:
        1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    overflow: hidden;
    transition: .4s;
    display: flex;
    flex-direction: column;
}
.service-bento::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.08),
            transparent
        );
    opacity: 0;
    transition: .4s;
}
.service-bento:hover {
    transform:
        translateY(-10px);
    border-color:
        rgba(123,97,255,.4);
    box-shadow:
        0 0 50px rgba(123,97,255,.16);
}
.service-bento:hover::before {
    opacity: 1;
}
/* =========================================================
   LAYOUT
========================================================= */
/* ROW 1 */
.large-card {
    grid-column: 1 / -1;
}
/* =========================================================
   TOP
========================================================= */
.service-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 34px;
}
/* =========================================================
   ICON
========================================================= */
.service-icon-box {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    background:
        rgba(123,97,255,.14);
    border:
        1px solid rgba(123,97,255,.28);
    box-shadow:
        inset 0 0 20px rgba(255,255,255,.03);
}
/* =========================================================
   MINI STAT
========================================================= */
.service-mini-stat {
    padding: 12px 18px;
    border-radius: 999px;
    background:
        rgba(255,255,255,.05);
    border:
        1px solid rgba(255,255,255,.08);
    font-size: 13px;
    font-weight: 600;
    color:
        rgba(255,255,255,.75);
}
/* =========================================================
   TITLE
========================================================= */
.service-bento h3 {
    position: relative;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 18px;
}
/* =========================================================
   DESCRIPTION
========================================================= */
.service-bento p {
    position: relative;
    font-size: 17px;
    line-height: 1.8;
    color:
        rgba(255,255,255,.65);
    margin-bottom: 28px;
}
/* =========================================================
   TAGS
========================================================= */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.service-tags span {
    padding: 12px 18px;
    border-radius: 999px;
    background:
        rgba(255,255,255,.05);
    border:
        1px solid rgba(255,255,255,.08);
    font-size: 13px;
    color:
        rgba(255,255,255,.78);
}
/* =========================================================
   PROGRESS
========================================================= */
.service-progress {
    margin-top: auto;
}
.progress-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: #fff;
    font-size: 14px;
}
.progress-bar {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    overflow: hidden;
    background:
        rgba(255,255,255,.08);
}
.progress-fill {
    width: 98%;
    height: 100%;
    border-radius: inherit;
    background:
        linear-gradient(
            90deg,
            #7b61ff,
            #c084fc
        );
    box-shadow:
        0 0 20px rgba(123,97,255,.45);
}
/* =========================================================
   TABLET
========================================================= */
@media(max-width:992px){
    .akra-services{
        padding:100px 0;
    }
    .services-heading h2{
        font-size:48px;
    }
}
/* =========================================================
   MOBILE
========================================================= */
@media(max-width:768px){
    .services-heading{
        margin-bottom:70px;
    }
    .services-heading h2{
        font-size:38px;
        letter-spacing:-2px;
    }
    .services-heading p{
        font-size:16px;
    }
    .services-grid{
        grid-template-columns:1fr;
    }
    .large-card,
    .service-bento{
        grid-column:auto !important;
    }
    .service-bento{
        min-height:auto;
        padding:30px;
    }
    .service-bento h3{
        font-size:28px;
    }
}
/* =========================================================
   SMALL MOBILE
========================================================= */
@media(max-width:576px){
    .akra-services{
        padding:80px 0;
    }
    .services-heading h2{
        font-size:32px;
    }
    .service-icon-box{
        width:60px;
        height:60px;
        font-size:24px;
    }
}
