/*=========================================================
SERVICE OVERVIEW
PART 01
=========================================================*/

.shservice-overview{

    position:relative;

    padding:70px 0;

    background:var(--white);

    overflow:hidden;

}

/*==================================
BACKGROUND
==================================*/

.shservice-overview::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(28,168,203,.12),
    transparent 70%);

    top:-250px;

    right:-180px;

    pointer-events:none;

}

.shservice-overview::after{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(17,61,72,.06),
    transparent 70%);

    bottom:-180px;

    left:-120px;

    pointer-events:none;

}

/*==================================
IMAGE
==================================*/

.shservice-image-wrap{

    position:relative;

}

.shservice-image{

    position:relative;

    border-radius:34px;

    overflow:hidden;

    box-shadow:
    0 40px 80px rgba(15,23,42,.12);

}

.shservice-image::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
    rgba(17,61,72,.28),
    transparent 45%);

    z-index:2;

}

.shservice-image img{

    width:100%;

    height:650px;

    object-fit:cover;

    display:block;

    transition:.7s;

}

.shservice-image:hover img{

    transform:scale(1.06);

}

/*==================================
BLUE GLOW
==================================*/

.shservice-image-wrap::before{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    border-radius:50%;

    background:#1ca8cb;

    filter:blur(120px);

    opacity:.18;

    left:-60px;

    top:80px;

    z-index:-1;

}

/*==================================
FLOATING CARD
==================================*/

.shservice-floating-card{

    position:absolute;

    left:-30px;

    bottom:45px;

    display:flex;

    align-items:center;

    gap:18px;

    width:310px;

    padding:22px 24px;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(20px);

    border-radius:24px;

    box-shadow:
    0 20px 50px rgba(15,23,42,.12);

    border:1px solid rgba(255,255,255,.8);

}

.shservice-floating-icon{

    width:62px;

    height:62px;

    border-radius:18px;

   background: linear-gradient(135deg,var(--dark),var(--primary));

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}

.shservice-floating-icon i{

    font-size:28px;

    color:#fff;

}

.shservice-floating-card h5{

    margin:0;

    font-size:19px;

    font-weight:700;

    color:#113d48;

    line-height:1.3;

}

.shservice-floating-card p{

    margin:8px 0 0;

    color:#5d6776;

    font-size:14px;

    line-height:1.7;

}

/*==================================
EXPERIENCE CARD
==================================*/

.shservice-exp-card{

    position:absolute;

    top:35px;

    right:-35px;

    width:170px;

    height:170px;

    border-radius:50%;

    background:#176bff;

    color:#fff;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    box-shadow:
    0 25px 50px rgba(17,61,72,.28);

}

.shservice-exp-card span{

    display:block;

    font-size:48px;

    font-weight:800;

    line-height:1;

}

.shservice-exp-card small{

    display:block;

    margin-top:10px;

    width:110px;

    font-size:13px;

    line-height:1.6;

    opacity:.9;

}

/*==================================
CONTENT
==================================*/

.shservice-content{

    padding-left:40px;

}

.shservice-subtitle{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    border-radius:50px;

    background:var(--bg);

    color:var(--primary);

    font-weight:600;

    margin-bottom:25px;

}

.shservice-subtitle i{

    font-size:18px;

}

.shservice-content h2{

    font-size:56px;

    line-height:1.15;

    color:#113d48;

    font-weight:700;

    margin-bottom:28px;

}

.shservice-content h2 span{

    color:var(--primary);

    display:block;

}

.shservice-desc{

    font-size:17px;

    line-height:2;

    color:#616b78;

    margin-bottom:38px;

    max-width:620px;

}



/*=========================================================
SERVICE OVERVIEW
PART 02
=========================================================*/

/*==================================
FEATURE LIST
==================================*/

.shservice-feature-list{

    display:grid;

    grid-template-columns:repeat(2,minmax(0,1fr));

    gap:18px 22px;

    margin-bottom:45px;

}

.shservice-feature{

    display:flex;

    align-items:flex-start;

    gap:14px;

    padding:18px 20px;

    border-radius:18px;

    background:#fff;

    border:1px solid rgba(17,61,72,.08);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.shservice-feature::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:4px;

    height:0;

    background:#1ca8cb;

    transition:.35s;

}

.shservice-feature:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

    box-shadow:0 18px 40px rgba(17,61,72,.10);

}

.shservice-feature:hover::before{

    height:100%;

}

.shservice-feature i{

    font-size:22px;

    color:var(--primary);

    flex-shrink:0;

    margin-top:2px;

}

.shservice-feature span{

    color:#113d48;

    font-size:16px;

    font-weight:600;

    line-height:1.7;

}

/*==================================
BUTTON
==================================*/

.shservice-btn-wrap{

    margin-top:10px;

}

.shservice-btn-wrap .sh-primary-btn{

    min-width:240px;

}

/*==================================
STATS
==================================*/

.shservice-stats-row{

    margin-top:110px;

}

.shservice-stat-card{

    position:relative;

    background:#fff;

    border-radius:28px;

    padding:42px 28px;

    text-align:center;

    overflow:hidden;

    border:1px solid rgba(17,61,72,.08);

    transition:.45s;

    height:100%;

}

.shservice-stat-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,
    #113d48,
    #1ca8cb);

}

.shservice-stat-card::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    border-radius:50%;

    background:rgba(28,168,203,.08);

    right:-80px;

    bottom:-80px;

    transition:.45s;

}

.shservice-stat-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 28px 60px rgba(17,61,72,.12);

    border-color:rgba(28,168,203,.25);

}

.shservice-stat-card:hover::after{

    transform:scale(1.3);

}

.shservice-stat-card h3{

    margin:0;

    font-size:54px;

    font-weight:800;

    color:#113d48;

    line-height:1;

}

.shservice-stat-card p{

    margin:18px auto 0;

    max-width:180px;

    color:#687482;

    font-size:16px;

    line-height:1.8;

}

/*==================================
SOFT DECORATION
==================================*/

.shservice-stat-card h3{

    position:relative;

    z-index:2;

}

.shservice-stat-card p{

    position:relative;

    z-index:2;

}

.shservice-floating-card,

.shservice-exp-card{

    transition:.45s;

}

.shservice-image-wrap:hover .shservice-floating-card{

    transform:translateY(-10px);

}

.shservice-image-wrap:hover .shservice-exp-card{

    transform:translateY(10px) rotate(5deg);

}


/*=========================================================
SERVICE OVERVIEW
PART 03
=========================================================*/

/*==================================
LARGE DESKTOP
==================================*/

@media(max-width:1399px){

    .shservice-content{

        padding-left:20px;

    }

    .shservice-content h2{

        font-size:50px;

    }

    .shservice-image img{

        height:600px;

    }

}


/*==================================
LAPTOP
==================================*/

@media(max-width:1199px){

    .shservice-overview{

        padding:120px 0;

    }

    .shservice-content{

        padding-left:0;

        margin-top:20px;

    }

    .shservice-content h2{

        font-size:44px;

    }

    .shservice-image img{

        height:560px;

    }

    .shservice-floating-card{

        left:20px;

        bottom:20px;

        width:280px;

    }

    .shservice-exp-card{

        width:150px;

        height:150px;

        right:20px;

    }

    .shservice-exp-card span{

        font-size:42px;

    }

}


/*==================================
TABLET
==================================*/

@media(max-width:991px){

    .shservice-overview{

        padding:100px 0;

    }

    .shservice-content{

        margin-top:60px;

    }

    .shservice-content h2{

        font-size:40px;

    }

    .shservice-feature-list{

        grid-template-columns:1fr;

    }

    .shservice-image img{

        height:520px;

    }

    .shservice-floating-card{

        position:absolute;

        left:20px;

        bottom:20px;

    }

    .shservice-exp-card{

        right:20px;

        top:20px;

    }

    .shservice-stats-row{

        margin-top:80px;

    }

}


/*==================================
MOBILE
==================================*/

@media(max-width:767px){

    .shservice-overview{

        padding:80px 0;

    }

    .shservice-content h2{

        font-size:34px;

    }

    .shservice-desc{

        font-size:15px;

        line-height:1.9;

    }

    .shservice-image{

        border-radius:24px;

    }

    .shservice-image img{

        height:420px;

    }

    .shservice-floating-card{

        position:relative;

        left:auto;

        bottom:auto;

        width:100%;

        margin-top:-35px;

        border-radius:20px;

        z-index:5;

    }

    .shservice-exp-card{

        width:120px;

        height:120px;

    }

    .shservice-exp-card span{

        font-size:34px;

    }

    .shservice-exp-card small{

        width:85px;

        font-size:11px;

    }

    .shservice-stat-card{

        padding:35px 20px;

    }

    .shservice-stat-card h3{

        font-size:42px;

    }

}


/*==================================
SMALL MOBILE
==================================*/

@media(max-width:575px){

    .shservice-content h2{

        font-size:30px;

    }

    .shservice-subtitle{

        font-size:14px;

        padding:8px 16px;

    }

    .shservice-feature{

        padding:16px;

    }

    .shservice-feature span{

        font-size:15px;

    }

    .shservice-floating-card{

        padding:18px;

        gap:14px;

    }

    .shservice-floating-icon{

        width:52px;

        height:52px;

    }

    .shservice-floating-icon i{

        font-size:22px;

    }

    .shservice-floating-card h5{

        font-size:16px;

    }

    .shservice-floating-card p{

        font-size:13px;

    }

}


/*==================================
REVEAL ANIMATION
==================================*/

.shservice-reveal{

    opacity:0;

    transform:translateY(60px);

    transition:all .8s ease;

}

.shservice-reveal.active{

    opacity:1;

    transform:translateY(0);

}


/*==================================
HOVER MICRO ANIMATIONS
==================================*/

.shservice-feature i{

    transition:.35s;

}

.shservice-feature:hover i{

    transform:scale(1.15) rotate(8deg);

}

.shservice-stat-card h3{

    transition:.35s;

}

.shservice-stat-card:hover h3{

    color:var(--primary);

}

.shservice-btn-wrap .sh-primary-btn{

    transition:.35s;

}

.shservice-btn-wrap .sh-primary-btn:hover{

    transform:translateY(-4px);

}









/*=========================================================
CONSULTATION SECTION
PART 01
=========================================================*/

.shconsult-section{

    position:relative;

    padding:70px 0;

    background:var(--bg);

    overflow:hidden;

}

/*==================================
BACKGROUND
==================================*/

.shconsult-section::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(67,195,255,.18),
    transparent 72%);

    top:-220px;

    right:-180px;

}

.shconsult-section::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(23,107,255,.08),
    transparent 72%);

    bottom:-180px;

    left:-150px;

}

/*==================================
HEADING
==================================*/

.shconsult-subtitle{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 22px;

    border-radius:100px;

    background:rgba(23,107,255,.08);

    color:var(--primary);

    font-weight:600;

    margin-bottom:22px;

}

.shconsult-subtitle i{

    font-size:18px;

}

.shconsult-title{

    font-size:54px;

    line-height:1.15;

    font-weight:700;

    color:var(--dark);

    margin-bottom:25px;

}

.shconsult-title span{

    display:block;

    color:var(--primary);

}

.shconsult-desc{

    max-width:720px;

    margin:auto;

    color:var(--text);

    line-height:2;

    font-size:17px;

}

/*==================================
LEFT SIDE
==================================*/

.shconsult-left{

    display:flex;

    flex-direction:column;

    gap:22px;

}

/*==================================
INFO CARD
==================================*/

.shconsult-card{

    display:flex;

    align-items:flex-start;

    gap:20px;

    padding:28px;

    background:var(--white);

    border-radius:24px;

    border:1px solid var(--border);

    box-shadow:
    0 18px 45px var(--shadow);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.shconsult-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:5px;

    height:100%;

    background:linear-gradient(
    var(--primary),
    var(--primary-light));

    transform:scaleY(0);

    transform-origin:top;

    transition:.35s;

}

.shconsult-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 25px 55px var(--shadow);

}

.shconsult-card:hover::before{

    transform:scaleY(1);

}

/*==================================
ICON
==================================*/

.shconsult-icon{

    width:64px;

    height:64px;

    min-width:64px;

    border-radius:20px;

    background:linear-gradient(135deg,
    var(--primary),
    var(--primary-light));

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--white);

    font-size:26px;

    transition:.35s;

}

.shconsult-card:hover .shconsult-icon{

    transform:rotate(-8deg) scale(1.08);

}

/*==================================
TEXT
==================================*/

.shconsult-card h5{

    margin:0 0 8px;

    color:var(--dark);

    font-size:21px;

    font-weight:700;

}

.shconsult-card p{

    margin:0;

    color:var(--text);

    line-height:1.8;

    font-size:15px;

}

/*==================================
TRUST BOX
==================================*/

.shconsult-trust{

    display:flex;

    align-items:flex-start;

    gap:16px;

    margin-top:12px;

    padding:24px;

    border-radius:10px;

    background:var(--white);

    border:1px dashed var(--border);

}

.shconsult-trust i{

    font-size:26px;

    color:var(--primary);

}

.shconsult-trust p{

    margin:0;

    color:var(--text);

    line-height:1.8;

}






/*=========================================================
CONSULTATION SECTION
PART 02
=========================================================*/

/*==================================
FORM BOX
==================================*/

.shconsult-form-box{

    position:relative;

    background:var(--white);

    border:1px solid var(--border);

    border-radius:10px;

    padding:50px;

    box-shadow:
    0 25px 60px var(--shadow);

    overflow:hidden;

}

.shconsult-form-box::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:6px;

    background:linear-gradient(90deg,
    var(--primary),
    var(--primary-light));

}

.shconsult-form-box::after{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    border-radius:50%;

    background:rgba(67,195,255,.08);

    right:-120px;

    top:-120px;

    pointer-events:none;

}

/*==================================
LABEL
==================================*/

.shconsult-form-box label{

    display:block;

    margin-bottom:10px;

    font-size:15px;

    font-weight:600;

    color:var(--dark);

}

/*==================================
INPUTS
==================================*/

.shconsult-form-box .form-control,
.shconsult-form-box .form-select{

    height:58px;

    border-radius:16px;

    border:1px solid var(--border);

    background:var(--white);

    color:var(--dark);

    padding:0 18px;

    font-size:15px;

    box-shadow:none;

    transition:.35s;

}

.shconsult-form-box .form-control::placeholder{

    color:#9aa7b5;

}

/*==================================
TEXTAREA
==================================*/

.shconsult-form-box textarea.form-control{

    height:auto;

    min-height:170px;

    resize:none;

    padding:18px;

}

/*==================================
FOCUS
==================================*/

.shconsult-form-box .form-control:focus,
.shconsult-form-box .form-select:focus{

    border-color:var(--primary);

    box-shadow:
    0 0 0 4px rgba(23,107,255,.08);

    outline:none;

}

/*==================================
SELECT
==================================*/

.shconsult-form-box .form-select{

    cursor:pointer;

}

/*==================================
CHECKBOX
==================================*/

.shconsult-form-box .form-check{

    display:flex;

    align-items:flex-start;

    gap:12px;

    margin-top:5px;

}

.shconsult-form-box .form-check-input{

    width:20px;

    height:20px;

    margin-top:2px;

    border:1px solid var(--border);

    box-shadow:none;

}

.shconsult-form-box .form-check-input:checked{

    background-color:var(--primary);

    border-color:var(--primary);

}

.shconsult-form-box .form-check-label{

    margin:0;

    font-size:14px;

    line-height:1.8;

    color:var(--text);

}

/*==================================
BUTTON
==================================*/

.shconsult-form-box .sh-primary-btn{

    min-width:230px;

    justify-content:center;

}

.shconsult-form-box .sh-primary-btn i{

    transition:.35s;

}

.shconsult-form-box .sh-primary-btn:hover i{

    transform:translateX(6px);

}

/*==================================
INPUT HOVER
==================================*/

.shconsult-form-box .form-control:hover,
.shconsult-form-box .form-select:hover{

    border-color:rgba(23,107,255,.25);

}


/*=========================================================
CONSULTATION SECTION
PART 03
=========================================================*/

/*==================================
MICRO ANIMATIONS
==================================*/

.shconsult-card,
.shconsult-form-box,
.shconsult-trust{

    transition:all .4s ease;

}

.shconsult-card:hover{

    border-color:rgba(23,107,255,.18);

}

.shconsult-form-box:hover{

    transform:translateY(-6px);

    box-shadow:
    0 35px 70px rgba(7,26,43,.12);

}

.shconsult-trust:hover{

    border-color:rgba(23,107,255,.25);

    transform:translateY(-4px);

}

/*==================================
INPUT ANIMATION
==================================*/

.shconsult-form-box .form-control,
.shconsult-form-box .form-select{

    transition:
    border-color .3s ease,
    box-shadow .3s ease,
    transform .3s ease;

}

.shconsult-form-box .form-control:focus,
.shconsult-form-box .form-select:focus{

    transform:translateY(-2px);

}

/*==================================
BUTTON
==================================*/

.shconsult-form-box .sh-primary-btn{

    transition:.35s;

}

.shconsult-form-box .sh-primary-btn:hover{

    transform:translateY(-4px);

}

/*==================================
REVEAL
==================================*/

.shconsult-reveal{

    opacity:0;

    transform:translateY(60px);

    transition:all .8s ease;

}

.shconsult-reveal.active{

    opacity:1;

    transform:translateY(0);

}

/*==================================
LARGE DEVICES
==================================*/

@media(max-width:1199px){

    .shconsult-section{

        padding:120px 0;

    }

    .shconsult-title{

        font-size:46px;

    }

    .shconsult-form-box{

        padding:40px;

    }

}

/*==================================
TABLET
==================================*/

@media(max-width:991px){

    .shconsult-section{

        padding:100px 0;

    }

    .shconsult-left{

        margin-bottom:20px;

    }

    .shconsult-title{

        font-size:40px;

    }

    .shconsult-form-box{

        padding:35px;

    }

}

/*==================================
MOBILE
==================================*/

@media(max-width:767px){

    .shconsult-section{

        padding:80px 0;

    }

    .shconsult-title{

        font-size:32px;

    }

    .shconsult-desc{

        font-size:15px;

        line-height:1.9;

    }

    .shconsult-card{

        padding:22px;

    }

    .shconsult-icon{

        width:56px;

        height:56px;

        min-width:56px;

        font-size:22px;

        border-radius:18px;

    }

    .shconsult-card h5{

        font-size:18px;

    }

    .shconsult-card p{

        font-size:14px;

    }

    .shconsult-form-box{

        padding:25px;

        border-radius:24px;

    }

    .shconsult-form-box .form-control,
    .shconsult-form-box .form-select{

        height:54px;

        font-size:14px;

    }

    .shconsult-form-box textarea.form-control{

        min-height:150px;

    }

    .shconsult-form-box .sh-primary-btn{

        width:100%;

    }

}

/*==================================
SMALL MOBILE
==================================*/

@media(max-width:575px){

    .shconsult-title{

        font-size:28px;

    }

    .shconsult-subtitle{

        font-size:13px;

        padding:8px 16px;

    }

    .shconsult-form-box{

        padding:20px;

    }

    .shconsult-trust{

        padding:18px;

    }

    .shconsult-card{

        gap:15px;

    }

}






/*=========================================================
ABOUT RECRUITMENT
PART 01
=========================================================*/

.shabout-section{

    position:relative;

    padding:70px 0;

    background:var(--white);

    overflow:hidden;

}

/*==================================
BACKGROUND
==================================*/

.shabout-section::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(67,195,255,.12),
    transparent 72%);

    top:-260px;

    right:-220px;

}

.shabout-section::after{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(23,107,255,.08),
    transparent 72%);

    bottom:-180px;

    left:-120px;

}

/*==================================
IMAGE WRAP
==================================*/

.shabout-image-wrap{

    position:relative;

}

/*==================================
IMAGE
==================================*/

.shabout-image{

    position:relative;

    overflow:hidden;

    border-radius:34px;

    box-shadow:
    0 30px 70px var(--shadow);

}

.shabout-image img{

    width:100%;

    height:670px;

    object-fit:cover;

    display:block;

    transition:.7s;

}

.shabout-image:hover img{

    transform:scale(1.06);

}

.shabout-image::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
    rgba(7,26,43,.25),
    transparent 45%);

    z-index:2;

}

/*==================================
BLUE GLOW
==================================*/

.shabout-image-wrap::before{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    border-radius:50%;

    background:var(--primary);

    filter:blur(120px);

    opacity:.12;

    top:90px;

    left:-70px;

    z-index:-1;

}

/*==================================
FLOATING INFO CARD
==================================*/

.shabout-floating-card{

    position:absolute;

    left:-35px;

    bottom:40px;

    width:320px;

    display:flex;

    align-items:center;

    gap:18px;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(18px);

    border-radius:24px;

    padding:22px;

    border:1px solid rgba(255,255,255,.6);

    box-shadow:
    0 25px 50px var(--shadow);

}

.shabout-floating-icon{

    width:62px;

    height:62px;

    border-radius:18px;

    background:linear-gradient(135deg,
    var(--primary),
    var(--primary-light));

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--white);

    font-size:28px;

    flex-shrink:0;

}

.shabout-floating-card h5{

    margin:0;

    color:var(--dark);

    font-size:19px;

    font-weight:700;

}

.shabout-floating-card p{

    margin:8px 0 0;

    color:var(--text);

    line-height:1.7;

    font-size:14px;

}

/*==================================
EXPERIENCE CARD
==================================*/

.shabout-exp-card{

    position:absolute;

    top:35px;

    right:-35px;

    width:170px;

    height:170px;

    border-radius:50%;

    background:linear-gradient(
    135deg,
    var(--primary),
    var(--primary-light));

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:var(--white);

    box-shadow:
    0 25px 60px rgba(23,107,255,.25);

}

.shabout-exp-card span{

    display:block;

    font-size:48px;

    font-weight:800;

    line-height:1;

}

.shabout-exp-card small{

    display:block;

    width:110px;

    margin-top:10px;

    font-size:13px;

    line-height:1.6;

}

/*==================================
CONTENT
==================================*/

.shabout-content{

    padding-left:45px;

}

.shabout-subtitle{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 20px;

    border-radius:100px;

    background:rgba(23,107,255,.08);

    color:var(--primary);

    font-weight:600;

    margin-bottom:24px;

}

.shabout-subtitle i{

    font-size:18px;

}

.shabout-content h2{

    font-size:56px;

    font-weight:700;

    line-height:1.15;

    color:var(--dark);

    margin-bottom:30px;

}

.shabout-content h2 span{

    display:block;

    color:var(--primary);

}

.shabout-desc{

    color:var(--text);

    font-size:17px;

    line-height:2;

    margin-bottom:22px;

}

/*=========================================================
ABOUT RECRUITMENT
PART 02
=========================================================*/

/*==================================
FEATURE LIST
==================================*/

.shabout-feature-row{

    margin-top:35px;

    margin-bottom:42px;

}

.shabout-feature{

    position:relative;

    display:flex;

    align-items:center;

    gap:15px;

    padding:20px 22px;

    background:var(--white);

    border:1px solid var(--border);

    border-radius:18px;

    overflow:hidden;

    transition:.35s;

}

.shabout-feature::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:4px;

    height:0;

    background:linear-gradient(
    var(--primary),
    var(--primary-light));

    transition:.35s;

}

.shabout-feature:hover{

    transform:translateY(-8px);

    border-color:rgba(23,107,255,.22);

    box-shadow:
    0 18px 45px var(--shadow);

}

.shabout-feature:hover::before{

    height:100%;

}

.shabout-feature i{

    font-size:22px;

    color:var(--primary);

    transition:.35s;

}

.shabout-feature:hover i{

    transform:scale(1.15);

}

.shabout-feature span{

    color:var(--dark);

    font-size:16px;

    font-weight:600;

    line-height:1.7;

}

/*==================================
BUTTON
==================================*/

.shabout-btn-wrap{

    margin-top:10px;

}

.shabout-btn-wrap .sh-primary-btn{

    min-width:260px;

}

/*==================================
STATS
==================================*/

.shabout-stats-row{

    margin-top:110px;

}

.shabout-stat-card{

    position:relative;

    background:var(--white);

    border:1px solid var(--border);

    border-radius:28px;

    padding:42px 28px;

    text-align:center;

    overflow:hidden;

    transition:.4s;

    height:100%;

    box-shadow:
    0 15px 35px rgba(7,26,43,.05);

}

.shabout-stat-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(
    90deg,
    var(--primary),
    var(--primary-light));

}

.shabout-stat-card::after{

    content:"";

    position:absolute;

    width:170px;

    height:170px;

    border-radius:50%;

    background:rgba(67,195,255,.10);

    bottom:-90px;

    right:-90px;

    transition:.4s;

}

.shabout-stat-card:hover{

    transform:translateY(-12px);

    border-color:rgba(23,107,255,.22);

    box-shadow:
    0 30px 65px rgba(7,26,43,.12);

}

.shabout-stat-card:hover::after{

    transform:scale(1.35);

}

.shabout-stat-card h3{

    position:relative;

    z-index:2;

    margin:0;

    color:var(--dark);

    font-size:52px;

    font-weight:800;

    line-height:1;

    transition:.35s;

}

.shabout-stat-card:hover h3{

    color:var(--primary);

}

.shabout-stat-card p{

    position:relative;

    z-index:2;

    margin:18px auto 0;

    max-width:170px;

    color:var(--text);

    line-height:1.8;

    font-size:16px;

}

/*==================================
IMAGE ANIMATION
==================================*/

.shabout-floating-card,

.shabout-exp-card{

    transition:.45s;

}

.shabout-image-wrap:hover .shabout-floating-card{

    transform:translateY(-10px);

}

.shabout-image-wrap:hover .shabout-exp-card{

    transform:translateY(10px) rotate(5deg);

}


/*=========================================================
ABOUT RECRUITMENT
PART 03
=========================================================*/

/*==================================
REVEAL ANIMATION
==================================*/

.shabout-reveal{

    opacity:0;

    transform:translateY(60px);

    transition:all .8s ease;

}

.shabout-reveal.active{

    opacity:1;

    transform:translateY(0);

}

/*==================================
MICRO ANIMATIONS
==================================*/

.shabout-feature,
.shabout-stat-card,
.shabout-floating-card,
.shabout-exp-card{

    transition:all .4s ease;

}

.shabout-btn-wrap .sh-primary-btn{

    transition:.35s;

}

.shabout-btn-wrap .sh-primary-btn:hover{

    transform:translateY(-4px);

}

/*==================================
DESKTOP
==================================*/

@media(max-width:1399px){

    .shabout-content{

        padding-left:25px;

    }

    .shabout-content h2{

        font-size:50px;

    }

    .shabout-image img{

        height:620px;

    }

}

/*==================================
LAPTOP
==================================*/

@media(max-width:1199px){

    .shabout-section{

        padding:120px 0;

    }

    .shabout-content{

        padding-left:0;

    }

    .shabout-content h2{

        font-size:44px;

    }

    .shabout-image img{

        height:560px;

    }

    .shabout-floating-card{

        left:20px;

        bottom:20px;

        width:280px;

    }

    .shabout-exp-card{

        width:145px;

        height:145px;

        right:20px;

    }

    .shabout-exp-card span{

        font-size:40px;

    }

}

/*==================================
TABLET
==================================*/

@media(max-width:991px){

    .shabout-section{

        padding:100px 0;

    }

    .shabout-content{

        margin-top:50px;

    }

    .shabout-content h2{

        font-size:40px;

    }

    .shabout-image img{

        height:520px;

    }

    .shabout-feature-row{

        margin-top:30px;

    }

    .shabout-stats-row{

        margin-top:80px;

    }

}

/*==================================
MOBILE
==================================*/

@media(max-width:767px){

    .shabout-section{

        padding:80px 0;

    }

    .shabout-content h2{

        font-size:32px;

    }

    .shabout-desc{

        font-size:15px;

        line-height:1.9;

    }

    .shabout-image{

        border-radius:24px;

    }

    .shabout-image img{

        height:420px;

    }

    .shabout-floating-card{

        position:relative;

        left:auto;

        bottom:auto;

        width:100%;

        margin-top:-35px;

        border-radius:20px;

        z-index:5;

    }

    .shabout-exp-card{

        width:120px;

        height:120px;

        top:20px;

        right:20px;

    }

    .shabout-exp-card span{

        font-size:32px;

    }

    .shabout-exp-card small{

        width:80px;

        font-size:11px;

    }

    .shabout-feature{

        padding:18px;

    }

    .shabout-stat-card{

        padding:34px 20px;

    }

    .shabout-stat-card h3{

        font-size:40px;

    }

}

/*==================================
SMALL MOBILE
==================================*/

@media(max-width:575px){

    .shabout-content h2{

        font-size:28px;

    }

    .shabout-subtitle{

        font-size:13px;

        padding:8px 16px;

    }

    .shabout-feature span{

        font-size:15px;

    }

    .shabout-floating-card{

        padding:18px;

        gap:14px;

    }

    .shabout-floating-icon{

        width:52px;

        height:52px;

        font-size:22px;

    }

    .shabout-floating-card h5{

        font-size:16px;

    }

    .shabout-floating-card p{

        font-size:13px;

    }

}











/*=========================================================
OUR RECRUITMENT SOLUTIONS
PART 01
=========================================================*/

.shsolution-section{

    position:relative;

    padding:70px 0;

    background:var(--bg);

    overflow:hidden;

}

/*==================================
BACKGROUND
==================================*/

.shsolution-section::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(67,195,255,.12),
    transparent 72%);

    top:-260px;

    left:-220px;

}

.shsolution-section::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(23,107,255,.08),
    transparent 72%);

    right:-150px;

    bottom:-180px;

}

/*==================================
HEADING
==================================*/

.shsolution-heading{

    position:relative;

    margin-bottom:70px;

}

.shsolution-subtitle{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 20px;

    border-radius:100px;

    background:rgba(23,107,255,.08);

    color:var(--primary);

    font-weight:600;

    margin-bottom:22px;

}

.shsolution-subtitle i{

    font-size:18px;

}

.shsolution-heading h2{

    font-size:56px;

    line-height:1.15;

    color:var(--dark);

    margin-bottom:22px;

    font-weight:700;

}

.shsolution-heading h2 span{

    display:block;

    color:var(--primary);

}

.shsolution-heading p{

    max-width:760px;

    margin:auto;

    font-size:17px;

    line-height:2;

    color:var(--text);

}

/*==================================
CARD
==================================*/

.shsolution-card{

    position:relative;

    height:100%;

    background:var(--white);

    border:1px solid var(--border);

    border-radius:30px;

    padding:40px;

    overflow:hidden;

    transition:.45s;

    box-shadow:0 20px 45px rgba(7,26,43,.05);

}

/*==================================
TOP BORDER
==================================*/

.shsolution-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,
    var(--primary),
    var(--primary-light));

    transform:scaleX(0);

    transform-origin:left;

    transition:.45s;

}

/*==================================
BACKGROUND GLOW
==================================*/

.shsolution-card::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(67,195,255,.10);

    right:-120px;

    top:-120px;

    transition:.45s;

}

/*==================================
HOVER
==================================*/

.shsolution-card:hover{

    transform:translateY(-14px);

    border-color:rgba(23,107,255,.20);

    box-shadow:0 35px 70px rgba(7,26,43,.12);

}

.shsolution-card:hover::before{

    transform:scaleX(1);

}

.shsolution-card:hover::after{

    transform:scale(1.4);

}

/*==================================
ICON
==================================*/

.shsolution-icon{

    position:relative;

    z-index:2;

    width:82px;

    height:82px;

    border-radius:24px;

    background:linear-gradient(135deg,
    var(--primary),
    var(--primary-light));

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--white);

    font-size:34px;

    margin-bottom:28px;

    transition:.4s;

}

.shsolution-card:hover .shsolution-icon{

    transform:rotate(-8deg) scale(1.08);

}

/*=========================================================
OUR RECRUITMENT SOLUTIONS
PART 02
=========================================================*/

/*==================================
CARD CONTENT
==================================*/

.shsolution-card h4{

    position:relative;

    z-index:2;

    font-size:28px;

    font-weight:700;

    color:var(--dark);

    margin-bottom:18px;

    transition:.35s;

}

.shsolution-card:hover h4{

    color:var(--primary);

}

.shsolution-card p{

    position:relative;

    z-index:2;

    font-size:16px;

    line-height:1.9;

    color:var(--text);

    margin-bottom:28px;

}

/*==================================
FEATURE LIST
==================================*/

.shsolution-card ul{

    position:relative;

    z-index:2;

    margin:0;

    padding:0;

    list-style:none;

}

.shsolution-card ul li{

    display:flex;

    align-items:center;

    gap:12px;

    padding:11px 0;

    color:var(--dark);

    font-size:15px;

    font-weight:500;

}

.shsolution-card ul li::before{

    content:"";

    width:9px;

    height:9px;

    border-radius:50%;

    flex-shrink:0;

    background:linear-gradient(
    135deg,
    var(--primary),
    var(--primary-light));

}

/*==================================
LINK
==================================*/

.shsolution-card a{

    position:relative;

    z-index:2;

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:30px;

    text-decoration:none;

    font-weight:600;

    color:var(--primary);

    transition:.35s;

}

.shsolution-card a i{

    transition:.35s;

}

.shsolution-card:hover a{

    letter-spacing:.4px;

}

.shsolution-card:hover a i{

    transform:translateX(8px);

}

/*==================================
BOTTOM CTA
==================================*/

.shsolution-bottom{

    margin-top:80px;

}

.shsolution-bottom .sh-primary-btn{

    min-width:300px;

}

/*==================================
ROW SPACING
==================================*/

.shsolution-row{

    position:relative;

    z-index:2;

}

/*==================================
SOFT INNER SHADOW
==================================*/

.shsolution-card{

    background-image:
    linear-gradient(
    180deg,
    rgba(255,255,255,.75),
    rgba(255,255,255,1));

}

/*==================================
HOVER EFFECTS
==================================*/

.shsolution-card:hover{

    background:var(--white);

}

.shsolution-card:hover .shsolution-icon{

    box-shadow:

    0 18px 35px rgba(23,107,255,.28);

}

.shsolution-card:hover ul li{

    transform:translateX(3px);

}

.shsolution-card ul li{

    transition:.3s;

}

/*==================================
SUBTLE BORDER GLOW
==================================*/

.shsolution-card{

    isolation:isolate;

}

.shsolution-card::selection{

    background:transparent;

}


/*=========================================================
OUR RECRUITMENT SOLUTIONS
PART 03
=========================================================*/

/*==================================
REVEAL ANIMATION
==================================*/

.shsolution-reveal{

    opacity:0;

    transform:translateY(60px) scale(.98);

    transition:
    opacity .8s ease,
    transform .8s cubic-bezier(.22,.61,.36,1);

}

.shsolution-reveal.active{

    opacity:1;

    transform:translateY(0) scale(1);

}

/*==================================
BUTTON HOVER
==================================*/

.shsolution-bottom .sh-primary-btn{

    transition:.35s;

}

.shsolution-bottom .sh-primary-btn:hover{

    transform:translateY(-5px);

}

/*==================================
DESKTOP
==================================*/

@media(max-width:1399px){

    .shsolution-heading h2{

        font-size:50px;

    }

}

/*==================================
LAPTOP
==================================*/

@media(max-width:1199px){

    .shsolution-section{

        padding:120px 0;

    }

    .shsolution-heading{

        margin-bottom:60px;

    }

    .shsolution-heading h2{

        font-size:44px;

    }

    .shsolution-card{

        padding:34px;

    }

    .shsolution-icon{

        width:74px;

        height:74px;

        font-size:30px;

        border-radius:22px;

    }

    .shsolution-card h4{

        font-size:25px;

    }

}

/*==================================
TABLET
==================================*/

@media(max-width:991px){

    .shsolution-section{

        padding:100px 0;

    }

    .shsolution-heading{

        margin-bottom:50px;

    }

    .shsolution-heading h2{

        font-size:38px;

    }

    .shsolution-heading p{

        font-size:16px;

    }

    .shsolution-card{

        padding:30px;

    }

    .shsolution-bottom{

        margin-top:60px;

    }

}

/*==================================
MOBILE
==================================*/

@media(max-width:767px){

    .shsolution-section{

        padding:80px 0;

    }

    .shsolution-heading{

        margin-bottom:40px;

    }

    .shsolution-heading h2{

        font-size:32px;

    }

    .shsolution-heading p{

        font-size:15px;

        line-height:1.9;

    }

    .shsolution-card{

        border-radius:24px;

        padding:26px;

    }

    .shsolution-icon{

        width:68px;

        height:68px;

        font-size:28px;

        border-radius:20px;

        margin-bottom:22px;

    }

    .shsolution-card h4{

        font-size:23px;

    }

    .shsolution-card p{

        font-size:15px;

        margin-bottom:22px;

    }

    .shsolution-card ul li{

        font-size:14px;

        padding:9px 0;

    }

    .shsolution-bottom{

        margin-top:45px;

    }

}

/*==================================
SMALL MOBILE
==================================*/

@media(max-width:575px){

    .shsolution-heading h2{

        font-size:28px;

    }

    .shsolution-subtitle{

        font-size:13px;

        padding:8px 16px;

    }

    .shsolution-card{

        padding:22px;

    }

    .shsolution-icon{

        width:60px;

        height:60px;

        font-size:24px;

        border-radius:18px;

    }

    .shsolution-card h4{

        font-size:21px;

    }

    .shsolution-card p{

        font-size:14px;

    }

    .shsolution-card a{

        font-size:15px;

    }

    .shsolution-bottom .sh-primary-btn{

        width:100%;

        min-width:100%;

    }

}

/*==================================
REDUCED MOTION
==================================*/

@media(prefers-reduced-motion:reduce){

    .shsolution-card,
    .shsolution-icon,
    .shsolution-card::before,
    .shsolution-card::after,
    .shsolution-card a,
    .shsolution-card ul li{

        transition:none !important;

    }

}







/*=========================================================
OUR RECRUITMENT PROCESS
PART 01
=========================================================*/

.shprocess-section{

    position:relative;

    padding:70px 0;

    background:var(--white);

    overflow:hidden;

}

/*==================================
BACKGROUND
==================================*/

.shprocess-section::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(67,195,255,.10),
    transparent 72%);

    top:-280px;

    left:-240px;

}

.shprocess-section::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(23,107,255,.08),
    transparent 72%);

    bottom:-220px;

    right:-180px;

}

/*==================================
HEADING
==================================*/

.shprocess-heading{

    margin-bottom:90px;

}

.shprocess-subtitle{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 20px;

    border-radius:100px;

    background:rgba(23,107,255,.08);

    color:var(--primary);

    font-weight:600;

    margin-bottom:22px;

}

.shprocess-subtitle i{

    font-size:18px;

}

.shprocess-heading h2{

    font-size:56px;

    line-height:1.15;

    font-weight:700;

    color:var(--dark);

    margin-bottom:24px;

}

.shprocess-heading h2 span{

    display:block;

    color:var(--primary);

}

.shprocess-heading p{

    max-width:760px;

    margin:auto;

    color:var(--text);

    font-size:17px;

    line-height:2;

}

/*==================================
TIMELINE
==================================*/

.shprocess-timeline{

    position:relative;

    max-width:1200px;

    margin:auto;

}

/*==================================
CENTER LINE
==================================*/

.shprocess-line{

    position:absolute;

    top:0;

    left:50%;

    width:4px;

    height:100%;

    transform:translateX(-50%);

    background:linear-gradient(
    to bottom,
    rgba(23,107,255,.12),
    var(--primary),
    rgba(23,107,255,.12));

    border-radius:100px;

}

/*==================================
ITEM
==================================*/

.shprocess-item{

    position:relative;

    width:50%;

    margin-bottom:90px;

}

.shprocess-item.left{

    padding-right:80px;

    text-align:right;

}

.shprocess-item.right{

    margin-left:50%;

    padding-left:80px;

}


/*=========================================================
OUR RECRUITMENT PROCESS
PART 02
=========================================================*/

/*==================================
CENTER DOT
==================================*/

.shprocess-dot{

    position:absolute;

    top:55px;

    right:-13px;

    width:26px;

    height:26px;

    border-radius:50%;

    background:var(--primary);

    border:6px solid var(--white);

    box-shadow:
    0 0 0 6px rgba(23,107,255,.12);

    z-index:5;

}

.shprocess-item.right .shprocess-dot{

    left:-13px;

    right:auto;

}

/*==================================
CARD
==================================*/

.shprocess-card{
     height: 450px;
    position:relative;

    background:var(--white);

    border:1px solid var(--border);

    border-radius:30px;

    padding:45px 40px 40px;

    overflow:visible;

    transition:.45s;

    box-shadow:
    0 18px 45px rgba(7,26,43,.06);

}

.shprocess-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(
    90deg,
    var(--primary),
    var(--primary-light));

    transform:scaleX(0);

    transform-origin:left;

    transition:.45s;

}

.shprocess-card::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(67,195,255,.08);

    right:-120px;

    top:-120px;

    transition:.45s;

}

.shprocess-card:hover{

    transform:translateY(-12px);

    border-color:rgba(23,107,255,.18);

    box-shadow:
    0 35px 70px rgba(7,26,43,.12);

}

.shprocess-card:hover::before{

    transform:scaleX(1);

}

.shprocess-card:hover::after{

    transform:scale(1.35);

}

/*==================================
STEP NUMBER
==================================*/

.shprocess-number{

    position:absolute;

    top:25px;

    right:28px;

    font-size:70px;

    font-weight:800;

    line-height:1;

    color:rgba(23,107,255,.08);

    user-select:none;

    pointer-events:none;

}

.shprocess-item.right .shprocess-number{

    right:28px;

}

/*==================================
ICON
==================================*/

.shprocess-icon{

    width:82px;

    height:82px;

    border-radius:24px;

    background:linear-gradient(
    135deg,
    var(--primary),
    var(--primary-light));

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--white);

    font-size:34px;

    margin-bottom:28px;

    transition:.4s;

    box-shadow:
    0 18px 35px rgba(23,107,255,.22);

}

.shprocess-card:hover .shprocess-icon{

    transform:rotate(-8deg) scale(1.08);

}

/*==================================
TEXT
==================================*/

.shprocess-card h3{

    font-size:28px;

    color:var(--dark);

    font-weight:700;

    margin-bottom:18px;

    transition:.35s;

}

.shprocess-card:hover h3{

    color:var(--primary);

}

.shprocess-card p{

    color:var(--text);

    font-size:16px;

    line-height:1.9;

    margin:0;

}

/*=========================================================
OUR RECRUITMENT PROCESS
PART 03
=========================================================*/

/*==================================
CARD CONNECTOR
==================================*/

.shprocess-item.left .shprocess-card::marker{

    content:"";

}

.shprocess-item.left .shprocess-card{

    margin-right:15px;

}

.shprocess-item.right .shprocess-card{

    margin-left:15px;

}

/* Connector Line */

.shprocess-item.left::before{

    content:"";

    position:absolute;

    top:67px;

    right:0;

    width:70px;

    height:2px;

    background:linear-gradient(
    to right,
    rgba(23,107,255,.18),
    var(--primary));

}

.shprocess-item.right::before{

    content:"";

    position:absolute;

    top:67px;

    left:0;

    width:70px;

    height:2px;

    background:linear-gradient(
    to left,
    rgba(23,107,255,.18),
    var(--primary));

}

/*==================================
DOT ANIMATION
==================================*/

.shprocess-dot::before{

    content:"";

    position:absolute;

    inset:-10px;

    border-radius:50%;

    border:2px solid rgba(23,107,255,.18);

    animation:shprocessPulse 2.6s infinite;

}

@keyframes shprocessPulse{

    0%{

        transform:scale(.8);

        opacity:1;

    }

    70%{

        transform:scale(1.5);

        opacity:0;

    }

    100%{

        opacity:0;

    }

}

/*==================================
HOVER EFFECTS
==================================*/

.shprocess-card:hover .shprocess-number{

    color:rgba(23,107,255,.16);

}

.shprocess-card:hover .shprocess-dot{

    transform:scale(1.1);

}

.shprocess-icon,
.shprocess-number,
.shprocess-card{

    transition:.4s;

}

/*==================================
REVEAL
==================================*/

.shprocess-reveal{

    opacity:0;

    transform:translateY(70px);

    transition:

    opacity .8s ease,

    transform .8s cubic-bezier(.22,.61,.36,1);

}

.shprocess-reveal.active{

    opacity:1;

    transform:translateY(0);

}

/*==================================
ALTERNATE ANIMATION
==================================*/

.shprocess-item.left.shprocess-reveal{

    transform:translateX(-70px);

}

.shprocess-item.right.shprocess-reveal{

    transform:translateX(70px);

}

.shprocess-item.left.active,

.shprocess-item.right.active{

    transform:translateX(0);

}

/*==================================
LAST ITEM
==================================*/

.shprocess-item:last-child{

    margin-bottom:0;

}


/*=========================================================
OUR RECRUITMENT PROCESS
PART 04
=========================================================*/

/*==================================
LARGE DESKTOP
==================================*/

@media(max-width:1399px){

    .shprocess-heading h2{

        font-size:50px;

    }

}

/*==================================
LAPTOP
==================================*/

@media(max-width:1199px){

    .shprocess-section{

        padding:120px 0;

    }

    .shprocess-heading{

        margin-bottom:70px;

    }

    .shprocess-heading h2{

        font-size:44px;

    }

    .shprocess-card{

        padding:38px 34px;

    }

    .shprocess-icon{

        width:72px;

        height:72px;

        font-size:30px;

        border-radius:22px;

    }

    .shprocess-card h3{

        font-size:24px;

    }

}

/*==================================
TABLET
==================================*/

@media(max-width:991px){

    .shprocess-section{

        padding:100px 0;

    }

    .shprocess-heading{

        margin-bottom:55px;

    }

    .shprocess-heading h2{

        font-size:38px;

    }

    .shprocess-heading p{

        font-size:16px;

    }

    .shprocess-line{

        left:30px;

        transform:none;

    }

    .shprocess-item{

        width:100%;

        margin-left:0 !important;

        padding-left:80px !important;

        padding-right:0 !important;

        text-align:left;

        margin-bottom:60px;

    }

    .shprocess-dot{

        left:18px !important;

        right:auto !important;

    }

    .shprocess-item::before{

        left:30px !important;

        width:40px;

        background:linear-gradient(
        to right,
        var(--primary),
        rgba(23,107,255,.15));

    }

    .shprocess-card{

        margin:0 !important;

    }

}

/*==================================
MOBILE
==================================*/

@media(max-width:767px){

    .shprocess-section{

        padding:80px 0;

    }

    .shprocess-heading h2{

        font-size:32px;

    }

    .shprocess-heading p{

        font-size:15px;

        line-height:1.9;

    }

    .shprocess-line{

        left:24px;

    }

    .shprocess-item{

        padding-left:65px !important;

        margin-bottom:45px;

    }

    .shprocess-dot{

        width:20px;

        height:20px;

        border-width:4px;

        left:15px !important;

        top:42px;

    }

    .shprocess-item::before{

        width:28px;

        top:51px;

        left:24px !important;

    }

    .shprocess-card{
height:300px;
        border-radius:24px;

        padding:28px 24px;

    }

    .shprocess-number{

        font-size:48px;

        top:18px;

        right:20px;

    }

    .shprocess-icon{

        width:60px;

        height:60px;

        border-radius:18px;

        font-size:24px;

        margin-bottom:18px;

    }

    .shprocess-card h3{

        font-size:22px;

        margin-bottom:12px;

    }

    .shprocess-card p{

        font-size:14px;

        line-height:1.8;

    }

}

/*==================================
SMALL MOBILE
==================================*/

@media(max-width:575px){

    .shprocess-heading h2{

        font-size:28px;

    }

    .shprocess-subtitle{

        padding:8px 16px;

        font-size:13px;

    }

    .shprocess-item{

        padding-left:55px !important;

    }

    .shprocess-line{

        left:20px;

        width:3px;

    }

    .shprocess-dot{

        left:11px !important;

    }

    .shprocess-item::before{

        left:20px !important;

        width:22px;

    }

    .shprocess-card{

        padding:24px 20px;

    }

    .shprocess-icon{

        width:54px;

        height:54px;

        font-size:22px;

        margin-bottom:16px;

    }

    .shprocess-card h3{

        font-size:20px;

    }

    .shprocess-card p{

        font-size:14px;

    }

    .shprocess-number{

        font-size:42px;

    }

}

/*==================================
REDUCED MOTION
==================================*/

@media(prefers-reduced-motion:reduce){

    .shprocess-card,
    .shprocess-dot,
    .shprocess-icon,
    .shprocess-number{

        transition:none !important;

        animation:none !important;

    }

}
















/*=========================================================
FAQ SECTION
PART 01
=========================================================*/

.shfaq-section{

    position:relative;

    padding:70px 0;

    background:var(--bg);

    overflow:hidden;

}

/*==================================
BACKGROUND
==================================*/

.shfaq-section::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(67,195,255,.10),
    transparent 72%);

    top:-260px;

    left:-220px;

}

.shfaq-section::after{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(23,107,255,.08),
    transparent 72%);

    right:-180px;

    bottom:-220px;

}

/*==================================
HEADING
==================================*/

.shfaq-heading{

    position:relative;

    margin-bottom:70px;

}

.shfaq-subtitle{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 20px;

    border-radius:100px;

    background:rgba(23,107,255,.08);

    color:var(--primary);

    font-weight:600;

    margin-bottom:22px;

}

.shfaq-subtitle i{

    font-size:18px;

}

.shfaq-heading h2{

    font-size:56px;

    font-weight:700;

    line-height:1.15;

    color:var(--dark);

    margin-bottom:22px;

}

.shfaq-heading h2 span{

    display:block;

    color:var(--primary);

}

.shfaq-heading p{

    max-width:760px;

    margin:auto;

    color:var(--text);

    font-size:17px;

    line-height:2;

}

/*==================================
WRAPPER
==================================*/

.shfaq-wrapper{

    position:relative;

    z-index:2;

}

/*==================================
FAQ ITEM
==================================*/

.shfaq-item{

    position:relative;

    background:var(--white);

    border:1px solid var(--border);

    border-radius:24px;

    margin-bottom:22px;

    overflow:hidden;

    transition:.4s;

    box-shadow:
    0 15px 35px rgba(7,26,43,.05);

}

.shfaq-item:last-child{

    margin-bottom:0;

}

.shfaq-item::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:4px;

    height:0;

    background:linear-gradient(
    to bottom,
    var(--primary),
    var(--primary-light));

    transition:.4s;

}

.shfaq-item:hover{

    transform:translateY(-6px);

    border-color:rgba(23,107,255,.18);

    box-shadow:
    0 25px 55px rgba(7,26,43,.10);

}

.shfaq-item:hover::before{

    height:100%;

}

/*==================================
QUESTION
==================================*/

.shfaq-question{

    width:100%;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:25px;

    padding:30px 34px;

    background:none;

    border:none;

    cursor:pointer;

    text-align:left;

}

.shfaq-question span{

    font-size:21px;

    font-weight:600;

    color:var(--dark);

    line-height:1.6;

    transition:.3s;

}

.shfaq-item:hover .shfaq-question span{

    color:var(--primary);

}

/*==================================
ICON
==================================*/

.shfaq-icon{

    width:52px;

    height:52px;

    min-width:52px;

    border-radius:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(23,107,255,.08);

    color:var(--primary);

    transition:.35s;

}

.shfaq-icon i{

    font-size:20px;

    transition:.35s;

}

.shfaq-item:hover .shfaq-icon{

    background:linear-gradient(
    135deg,
    var(--primary),
    var(--primary-light));

    color:var(--white);

}


/*=========================================================
FAQ SECTION
PART 02
=========================================================*/

/*==================================
ANSWER
==================================*/

.shfaq-answer{

    display:grid;

    grid-template-rows:0fr;

    transition:grid-template-rows .45s ease;

}

.shfaq-answer-content{

    overflow:hidden;

}

.shfaq-answer-content p{

    padding:0 34px 30px;

    margin:0;

    color:var(--text);

    font-size:16px;

    line-height:2;

}

/*==================================
ACTIVE STATE
==================================*/

.shfaq-item.active{

    border-color:rgba(23,107,255,.20);

    box-shadow:
    0 28px 60px rgba(7,26,43,.10);

}

.shfaq-item.active::before{

    height:100%;

}

.shfaq-item.active .shfaq-answer{

    grid-template-rows:1fr;

}

.shfaq-item.active .shfaq-question span{

    color:var(--primary);

}

.shfaq-item.active .shfaq-icon{

    background:linear-gradient(
    135deg,
    var(--primary),
    var(--primary-light));

    color:var(--white);

}

.shfaq-item.active .shfaq-icon i{

    transform:rotate(45deg);

}

/*==================================
QUESTION HOVER
==================================*/

.shfaq-question:hover .shfaq-icon{

    transform:rotate(90deg);

}

.shfaq-item.active .shfaq-question:hover .shfaq-icon{

    transform:rotate(0deg);

}

/*==================================
BOTTOM CTA
==================================*/

.shfaq-bottom{

    margin-top:90px;

    text-align:center;

}

.shfaq-bottom h4{

    font-size:38px;

    color:var(--dark);

    margin-bottom:16px;

    font-weight:700;

}

.shfaq-bottom p{

    max-width:650px;

    margin:0 auto 35px;

    color:var(--text);

    font-size:17px;

    line-height:1.9;

}

.shfaq-bottom .sh-primary-btn{

    min-width:270px;

}

/*==================================
MICRO EFFECT
==================================*/

.shfaq-item{

    isolation:isolate;

}

.shfaq-item::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(67,195,255,.08);

    right:-120px;

    top:-120px;

    opacity:0;

    transition:.45s;

    z-index:-1;

}

.shfaq-item:hover::after{

    opacity:1;

    transform:scale(1.35);

}

/*==================================
BUTTON
==================================*/

.shfaq-bottom .sh-primary-btn{

    transition:.35s;

}

.shfaq-bottom .sh-primary-btn:hover{

    transform:translateY(-5px);

}



/*=========================================================
FAQ SECTION
PART 03
=========================================================*/

/*==================================
REVEAL ANIMATION
==================================*/

.shfaq-reveal{

    opacity:0;

    transform:translateY(60px) scale(.98);

    transition:
    opacity .8s ease,
    transform .8s cubic-bezier(.22,.61,.36,1);

}

.shfaq-reveal.active{

    opacity:1;

    transform:translateY(0) scale(1);

}

/*==================================
DESKTOP
==================================*/

@media(max-width:1399px){

    .shfaq-heading h2{

        font-size:50px;

    }

}

/*==================================
LAPTOP
==================================*/

@media(max-width:1199px){

    .shfaq-section{

        padding:120px 0;

    }

    .shfaq-heading{

        margin-bottom:60px;

    }

    .shfaq-heading h2{

        font-size:44px;

    }

    .shfaq-question{

        padding:28px 30px;

    }

    .shfaq-answer-content p{

        padding:0 30px 28px;

    }

}

/*==================================
TABLET
==================================*/

@media(max-width:991px){

    .shfaq-section{

        padding:100px 0;

    }

    .shfaq-heading{

        margin-bottom:50px;

    }

    .shfaq-heading h2{

        font-size:38px;

    }

    .shfaq-heading p{

        font-size:16px;

    }

    .shfaq-question span{

        font-size:19px;

    }

    .shfaq-bottom{

        margin-top:70px;

    }

    .shfaq-bottom h4{

        font-size:32px;

    }

}

/*==================================
MOBILE
==================================*/

@media(max-width:767px){

    .shfaq-section{

        padding:80px 0;

    }

    .shfaq-heading{

        margin-bottom:40px;

    }

    .shfaq-heading h2{

        font-size:32px;

    }

    .shfaq-heading p{

        font-size:15px;

        line-height:1.9;

    }

    .shfaq-item{

        border-radius:20px;

    }

    .shfaq-question{

        padding:22px;

        gap:18px;

    }

    .shfaq-question span{

        font-size:17px;

        line-height:1.5;

    }

    .shfaq-icon{

        width:46px;

        height:46px;

        min-width:46px;

        border-radius:14px;

    }

    .shfaq-icon i{

        font-size:18px;

    }

    .shfaq-answer-content p{

        padding:0 22px 22px;

        font-size:14px;

        line-height:1.8;

    }

    .shfaq-bottom{

        margin-top:55px;

    }

    .shfaq-bottom h4{

        font-size:28px;

    }

    .shfaq-bottom p{

        font-size:15px;

        margin-bottom:28px;

    }

}

/*==================================
SMALL MOBILE
==================================*/

@media(max-width:575px){

    .shfaq-heading h2{

        font-size:28px;

    }

    .shfaq-subtitle{

        font-size:13px;

        padding:8px 16px;

    }

    .shfaq-question{

        padding:18px;

    }

    .shfaq-question span{

        font-size:16px;

    }

    .shfaq-icon{

        width:40px;

        height:40px;

        min-width:40px;

        border-radius:12px;

    }

    .shfaq-icon i{

        font-size:16px;

    }

    .shfaq-answer-content p{

        padding:0 18px 18px;

        font-size:14px;

    }

    .shfaq-bottom h4{

        font-size:24px;

    }

    .shfaq-bottom .sh-primary-btn{

        width:100%;

        min-width:100%;

    }

}

/*==================================
REDUCED MOTION
==================================*/

@media(prefers-reduced-motion:reduce){

    .shfaq-item,
    .shfaq-icon,
    .shfaq-question,
    .shfaq-answer{

        transition:none !important;

        animation:none !important;

    }

}
















/*=========================================================
NAPS & NATS SECTION
PART 01
=========================================================*/

.sh-naps-section{

    position:relative;

    padding:70px 0;

    overflow:hidden;

    background:linear-gradient(
        180deg,
        #ffffff 0%,
        #f6faff 100%
    );

}


/*==================================
BACKGROUND
==================================*/

.sh-naps-section::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    right:-220px;

    top:-180px;

    border-radius:50%;

    background:radial-gradient(
        rgba(23,107,255,.12),
        transparent 70%
    );

    pointer-events:none;

}

.sh-naps-section::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    left:-180px;

    bottom:-180px;

    border-radius:50%;

    background:radial-gradient(
        rgba(67,195,255,.10),
        transparent 70%
    );

    pointer-events:none;

}


/*==================================
CONTENT
==================================*/

.sh-naps-content{

    position:relative;

    z-index:2;

}


/*==================================
BADGE
==================================*/

.sh-naps-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 22px;

    margin-bottom:28px;

    background:#eef5ff;

    color:var(--primary);

    border:1px solid rgba(23,107,255,.12);

    border-radius:100px;

    font-size:.92rem;

    font-weight:600;

}

.sh-naps-badge i{

    font-size:18px;

}


/*==================================
HEADING
==================================*/

.sh-naps-content h2{

    margin:0;

    color:var(--dark);

    font-size:clamp(2.6rem,5vw,4.6rem);

    line-height:1.05;

    font-weight:800;

    letter-spacing:-1px;

}

.sh-naps-content h2 span{

    color:var(--primary);

}


/*==================================
DESCRIPTION
==================================*/

.sh-naps-content p{

    max-width:620px;

    margin:32px 0 0;

    color:var(--text);

    font-size:1.08rem;

    line-height:1.9;

}


/*==================================
BUTTON WRAPPER
==================================*/

.sh-naps-btns{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    margin-top:42px;

}


/*==================================
RIGHT SIDE
==================================*/

.sh-naps-visual{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:700px;

}


/*==================================
IMAGE WRAPPER
==================================*/

.sh-naps-image{

    position:relative;

    width:520px;

    max-width:100%;

    border-radius:40px;

    overflow:hidden;

    background:#fff;

    box-shadow:
    0 35px 90px rgba(7,26,43,.10);

}


/* Blue Circle */

.sh-naps-image::before{

    content:"";

    position:absolute;

    width:760px;

    height:760px;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    border-radius:50%;

    background:radial-gradient(
        rgba(23,107,255,.16),
        transparent 72%
    );

    z-index:0;

}


/* Image */

.sh-naps-image img{

    position:relative;

    z-index:2;

    width:100%;

    display:block;

}

/*=========================================================
NAPS & NATS SECTION
PART 02
=========================================================*/


/*==================================
FLOATING CARD
==================================*/

.sh-naps-card{

    /* position:absolute; */

    top:50%;

    right:-20px;

    transform:translateY(-50%);

    width:440px;

    padding:34px;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(18px);

    border:1px solid rgba(23,107,255,.10);

    border-radius:32px;

    box-shadow:
    0 25px 60px rgba(7,26,43,.12);

    z-index:10;

}


/*==================================
CARD TITLE
==================================*/

.sh-naps-card-title{

    display:flex;

    align-items:center;

    gap:16px;

    margin-bottom:28px;

}

.sh-naps-card-title i{

    width:62px;

    height:62px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

    color:#fff;

    font-size:28px;

    flex-shrink:0;

}

.sh-naps-card-title h4{

    margin:0;

    color:var(--dark);

    font-size:1.45rem;

    font-weight:700;

    line-height:1.3;

}


/*==================================
CARD LIST
==================================*/

.sh-naps-card ul{

    margin:0;

    padding:0;

    list-style:none;

}

.sh-naps-card ul li{

    display:flex;

    align-items:center;

    gap:14px;

    padding:15px 0;

    color:var(--dark);

    font-weight:500;

    border-bottom:1px solid rgba(23,107,255,.08);

}

.sh-naps-card ul li:last-child{

    border-bottom:none;

}

.sh-naps-card ul li i{

    color:var(--primary);

    font-size:18px;

    flex-shrink:0;

}


/*==================================
FLOATING CIRCLE
==================================*/

.sh-naps-circle{

    position:absolute;

    left:20px;

    bottom:30px;

    width:180px;

    height:180px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    background:#fff;

    border-radius:50%;

    border:8px solid rgba(255,255,255,.65);

    box-shadow:
    0 25px 60px rgba(7,26,43,.12);

    z-index:12;

}

.sh-naps-circle i{

    color:var(--primary);

    font-size:48px;

    margin-bottom:14px;

}

.sh-naps-circle span{

    width:120px;

    color:var(--dark);

    font-size:.95rem;

    font-weight:700;

    line-height:1.45;

}


/*==================================
DECORATIVE DOTS
==================================*/

.sh-naps-visual::before{

    content:"";

    position:absolute;

    top:40px;

    left:60px;

    width:120px;

    height:120px;

    background-image:radial-gradient(
        rgba(23,107,255,.35) 1.6px,
        transparent 1.6px
    );

    background-size:16px 16px;

    opacity:.55;

}

.sh-naps-visual::after{

    content:"";

    position:absolute;

    right:90px;

    bottom:70px;

    width:90px;

    height:90px;

    border-radius:24px;

    border:2px dashed rgba(23,107,255,.18);

    transform:rotate(18deg);

}


/*==================================
HOVER EFFECT
==================================*/

.sh-naps-card,
.sh-naps-circle,
.sh-naps-image{

    transition:.45s ease;

}

.sh-naps-section:hover .sh-naps-image{

    transform:translateY(-8px);

}

.sh-naps-section:hover .sh-naps-card{

    transform:translateY(calc(-50% - 8px));

}

.sh-naps-section:hover .sh-naps-circle{

    transform:translateY(-8px);

}







/*=========================================================
NAPS & NATS SECTION
PART 03
=========================================================*/


/*==================================
BUTTONS
==================================*/

.sh-btn-primary,
.sh-btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    min-width:220px;

    height:60px;

    padding:0 34px;

    border-radius:100px;

    font-size:1rem;

    font-weight:600;

    text-decoration:none;

    transition:.35s;

}

.sh-btn-primary{

    color:#fff;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

    box-shadow:
    0 18px 40px rgba(23,107,255,.28);

}

.sh-btn-primary:hover{

    color:#fff;

    transform:translateY(-5px);

    box-shadow:
    0 24px 55px rgba(23,107,255,.35);

}

.sh-btn-outline{

    color:var(--dark);

    background:#fff;

    border:1px solid rgba(23,107,255,.12);

}

.sh-btn-outline:hover{

    color:var(--primary);

    border-color:var(--primary);

    transform:translateY(-5px);

    box-shadow:
    0 18px 40px rgba(7,26,43,.08);

}


/*==================================
BOTTOM STATS
==================================*/

.sh-naps-stats{

    position:relative;

    z-index:5;

    margin-top:90px;

    padding:35px;

    background:#fff;

    border:1px solid rgba(23,107,255,.08);

    border-radius:32px;

    box-shadow:
    0 20px 60px rgba(7,26,43,.08);

}

.sh-naps-stat{

    text-align:center;

}

.sh-naps-stat h3{

    margin:0;

    color:var(--primary);

    font-size:clamp(2rem,4vw,3rem);

    font-weight:800;

}

.sh-naps-stat p{

    margin:10px 0 0;

    color:var(--text);

    font-size:1rem;

    font-weight:500;

}


/*==================================
FLOAT ANIMATION
==================================*/

@keyframes shFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}

.sh-naps-image{

    animation:shFloat 5s ease-in-out infinite;

}

.sh-naps-circle{

    animation:shFloat 4s ease-in-out infinite;

}

.sh-naps-card{

    animation:shFloat 6s ease-in-out infinite;

}


/*==================================
RESPONSIVE
==================================*/

@media(max-width:991px){

    .sh-naps-section{

        padding:100px 0;

    }

    .sh-naps-content{

        text-align:center;

    }

    .sh-naps-content p{

        margin-left:auto;

        margin-right:auto;

    }

    .sh-naps-btns{

        justify-content:center;

    }

    .sh-naps-visual{

        min-height:auto;

        margin-top:70px;

    }

    .sh-naps-card{

        position:relative;

        top:auto;

        right:auto;

        width:100%;

        margin-top:30px;

        transform:none;

    }

    .sh-naps-circle{

        display:none;

    }

    .sh-naps-section:hover .sh-naps-card{

        transform:none;

    }

}

@media(max-width:767px){

    .sh-naps-section{

        padding:80px 0;

    }

    .sh-naps-badge{

        font-size:.82rem;

        padding:8px 18px;

    }

    .sh-naps-content h2{

        font-size:2.4rem;

    }

    .sh-btn-primary,
    .sh-btn-outline{

        width:100%;

        min-width:100%;

    }

    .sh-naps-card{

        padding:25px;

        border-radius:24px;

    }

    .sh-naps-image{

        border-radius:24px;

    }

    .sh-naps-stats{

        padding:25px;

        margin-top:60px;

    }

    .sh-naps-stat{

        margin:20px 0;

    }

}

/*=========================================================
NAPS & NATS SECTION
PART 04 - PREMIUM EFFECTS
=========================================================*/


/*==================================
IMAGE BORDER GLOW
==================================*/

.sh-naps-image{

    isolation:isolate;

}

.sh-naps-image::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:inherit;

    padding:2px;

    background:linear-gradient(
        135deg,
        rgba(23,107,255,.45),
        rgba(67,195,255,.15),
        rgba(255,255,255,.4)
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    mask-composite:exclude;

    pointer-events:none;

}


/*==================================
CARD TOP STRIP
==================================*/

.sh-naps-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:6px;

    border-radius:32px 32px 0 0;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--primary-light)
    );

}


/*==================================
CARD HOVER
==================================*/

.sh-naps-card:hover{

    transform:translateY(calc(-50% - 12px)) scale(1.02);

    box-shadow:
    0 35px 80px rgba(7,26,43,.18);

}


/*==================================
LIST ICON ANIMATION
==================================*/

.sh-naps-card ul li{

    transition:.35s;

}

.sh-naps-card ul li:hover{

    padding-left:10px;

    color:var(--primary);

}

.sh-naps-card ul li i{

    transition:.35s;

}

.sh-naps-card ul li:hover i{

    transform:scale(1.15);

}


/*==================================
CIRCLE ROTATION
==================================*/

.sh-naps-circle{

    overflow:hidden;

}

.sh-naps-circle::before{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    border:2px dashed rgba(23,107,255,.20);

    animation:shRotate 18s linear infinite;

}

@keyframes shRotate{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}


/*==================================
SECTION SHAPES
==================================*/

.sh-naps-section .shape-one{

    position:absolute;

    top:120px;

    left:8%;

    width:18px;

    height:18px;

    border-radius:50%;

    background:var(--primary);

    opacity:.18;

}

.sh-naps-section .shape-two{

    position:absolute;

    right:8%;

    top:160px;

    width:90px;

    height:90px;

    border-radius:24px;

    background:rgba(67,195,255,.10);

    transform:rotate(25deg);

}

.sh-naps-section .shape-three{

    position:absolute;

    left:12%;

    bottom:120px;

    width:60px;

    height:60px;

    border-radius:50%;

    border:2px solid rgba(23,107,255,.15);

}


/*==================================
BUTTON SHINE
==================================*/

.sh-btn-primary{

    position:relative;

    overflow:hidden;

}

.sh-btn-primary::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:60%;

    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

    transform:skewX(-25deg);

    transition:.8s;

}

.sh-btn-primary:hover::before{

    left:160%;

}


/*==================================
IMAGE ZOOM
==================================*/

.sh-naps-image img{

    transition:transform .8s ease;

}

.sh-naps-section:hover .sh-naps-image img{

    transform:scale(1.04);

}


/*==================================
STATS HOVER
==================================*/

.sh-naps-stat{

    transition:.35s;

}

.sh-naps-stat:hover{

    transform:translateY(-8px);

}

.sh-naps-stat:hover h3{

    color:var(--primary-light);

}