/*==================================================
 APPLUMY SERVICES PAGE
==================================================*/

/*==================================
 HERO
==================================*/

.services-hero{

    position:relative;

    padding:100px 0 30px;

    background:#000;

    overflow:hidden;

}

.services-hero::before{

    content:"";

    position:absolute;

    top:-260px;

    right:-260px;

    width:700px;

    height:700px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(255,255,255,.05),
    transparent 70%);

}

.services-hero::after{

    content:"";

    position:absolute;

    left:-220px;

    bottom:-220px;

    width:520px;

    height:520px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(255,255,255,.03),
    transparent 70%);

}

.services-hero-wrapper{

    display:grid;

    grid-template-columns:1.05fr .95fr;

    gap:90px;

    align-items:center;

    position:relative;

    z-index:2;

}

/*==================================
 CONTENT
==================================*/

.services-content{

    max-width:650px;

}

.services-content .hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    height:44px;

    padding:0 22px;

    border-radius:100px;

    border:1px solid rgba(255,255,255,.08);

    color:#FFF;

    font-size:13px;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:28px;

}

.services-content .hero-badge::before{

    content:"";

    width:8px;

    height:8px;

    border-radius:50%;

    background:#FFF;

}

.services-content h1{

    color:#FFF;

    font-size:42px;

    line-height:1.08;

    margin-bottom:28px;

}

.services-content p{

    color:#B5B5B5;

    font-size:18px;

    line-height:1.9;

    margin-bottom:40px;

}

/*==================================
 BUTTONS
==================================*/

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.btn-primary,

.btn-secondary{

    height:58px;

    padding:0 34px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    border-radius:100px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.btn-primary{

    background:#FFF;

    color:#000;

}

.btn-primary:hover{

    transform:translateY(-5px);

}

.btn-secondary{

    color:#FFF;

    border:1px solid rgba(255,255,255,.12);

}

.btn-secondary:hover{

    background:#FFF;

    color:#000;

}

/*==================================
 DASHBOARD
==================================*/

.services-dashboard{

    background:#090909;

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    overflow:hidden;

}

.dashboard-header{

    display:flex;

    gap:10px;

    padding:24px 30px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.dashboard-header span{

    width:12px;

    height:12px;

    border-radius:50%;

    background:#FFF;

    opacity:.2;

}

.dashboard-body{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    padding:30px;

}

.dashboard-card{

    background:#111;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:28px;

    transition:.35s;

}

.dashboard-card:hover{

    transform:translateY(-8px);

    border-color:rgba(255,255,255,.18);

}

.dashboard-card h4{

    color:#9A9A9A;

    font-size:14px;

    margin-bottom:16px;

}

.dashboard-card strong{

    color:#FFF;

    font-size:38px;

}

/*==================================
 SECTION
==================================*/

.services-section{

    padding:30px 0;

    background:#050505;

}

.section-heading{

    text-align:center;

    max-width:850px;

    margin:0 auto 70px;

}

.section-heading span{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:42px;

    padding:0 18px;

    border-radius:100px;

    border:1px solid rgba(255,255,255,.08);

    color:#FFF;

    font-size:12px;

    letter-spacing:1px;

    text-transform:uppercase;

}

.section-heading h2{

    color:#FFF;

    font-size:36px;

    line-height:1.15;

    margin:24px 0;

}

.section-heading p{

    color:#B5B5B5;

    font-size:16px;

    line-height:1.9;

}

/*==================================
 SERVICES GRID
==================================*/

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.service-card{

    position:relative;

    padding:40px;

    background:#0B0B0B;

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    transition:.35s ease;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:3px;

    background:#FFF;

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.service-card:hover::before{

    transform:scaleX(1);

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:rgba(255,255,255,.18);

    box-shadow:0 30px 70px rgba(255,255,255,.05);

}

.service-icon{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    border:1px solid rgba(255,255,255,.08);

    color:#FFF;

    font-size:22px;

    font-weight:700;

    margin-bottom:30px;

    transition:.35s;

}

.service-card:hover .service-icon{

    background:#FFF;

    color:#000;

}

.service-card h3{

    color:#FFF;

    font-size:28px;

    line-height:1.3;

    margin-bottom:18px;

}

.service-card p{

    color:#B5B5B5;

    line-height:1.9;

    margin-bottom:28px;

    font-size:16px;

}

.service-card a{

    color:#FFF;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.service-card:hover a{

    letter-spacing:.5px;

}
/*==================================================
WHY CHOOSE APPLUMY
==================================================*/

.services-why{

    position:relative;

    padding:30px 0;

    background:#000;

    overflow:hidden;

}

.services-why::before{

    content:"";

    position:absolute;

    left:-250px;

    top:-250px;

    width:600px;

    height:600px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(255,255,255,.04),
    transparent 70%);

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.why-card{

    position:relative;

    padding:40px;

    background:#0B0B0B;

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    transition:.35s ease;

    overflow:hidden;

}

.why-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:3px;

    background:#FFF;

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.why-card:hover::before{

    transform:scaleX(1);

}

.why-card:hover{

    transform:translateY(-10px);

    border-color:rgba(255,255,255,.18);

    box-shadow:0 30px 70px rgba(255,255,255,.05);

}

.why-number{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.08);

    color:#FFF;

    font-size:22px;

    font-weight:700;

    margin-bottom:28px;

    transition:.35s;

}

.why-card:hover .why-number{

    background:#FFF;

    color:#000;

}

.why-card h3{

    color:#FFF;

    font-size:22px;

    margin-bottom:18px;

}

.why-card p{

    color:#B5B5B5;

    line-height:1.9;

    font-size:16px;

}

/*==================================================
PROCESS
==================================================*/

.services-process{

    position:relative;

    padding:30px 0;

    background:#050505;

    overflow:hidden;

}

.services-process::after{

    content:"";

    position:absolute;

    right:-250px;

    bottom:-250px;

    width:550px;

    height:550px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(255,255,255,.04),
    transparent 70%);

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.process-card{

    position:relative;

    padding:42px;

    background:#0A0A0A;

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    transition:.35s ease;

    overflow:hidden;

}

.process-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:3px;

    background:#FFF;

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.process-card:hover::before{

    transform:scaleX(1);

}

.process-card:hover{

    transform:translateY(-10px);

    border-color:rgba(255,255,255,.18);

    box-shadow:0 30px 70px rgba(255,255,255,.05);

}

.process-card span{

    width:72px;

    height:72px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.08);

    color:#FFF;

    font-size:22px;

    font-weight:700;

    margin-bottom:28px;

    transition:.35s;

}

.process-card:hover span{

    background:#FFF;

    color:#000;

}

.process-card h3{

    color:#FFF;

    font-size:22px;

    margin-bottom:18px;

}

.process-card p{

    color:#B5B5B5;

    line-height:1.9;

    font-size:16px;

}

/*==================================================
CARD ANIMATION
==================================================*/

.why-card,
.process-card{

    opacity:0;

    transform:translateY(35px);

    animation:serviceFade .8s ease forwards;

}

.why-card:nth-child(1){animation-delay:.1s;}
.why-card:nth-child(2){animation-delay:.2s;}
.why-card:nth-child(3){animation-delay:.3s;}
.why-card:nth-child(4){animation-delay:.4s;}
.why-card:nth-child(5){animation-delay:.5s;}
.why-card:nth-child(6){animation-delay:.6s;}

.process-card:nth-child(1){animation-delay:.1s;}
.process-card:nth-child(2){animation-delay:.2s;}
.process-card:nth-child(3){animation-delay:.3s;}
.process-card:nth-child(4){animation-delay:.4s;}
.process-card:nth-child(5){animation-delay:.5s;}
.process-card:nth-child(6){animation-delay:.6s;}

@keyframes serviceFade{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/*==================================================
TECHNOLOGIES
==================================================*/

.services-technologies{

    position:relative;

    padding:30px 0;

    background:#000;

    overflow:hidden;

}

.services-technologies::before{

    content:"";

    position:absolute;

    top:-250px;

    right:-250px;

    width:600px;

    height:600px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(255,255,255,.04),
    transparent 70%);

}

.technology-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.technology-card{

    position:relative;

    padding:40px;

    background:#0B0B0B;

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    transition:.35s ease;

    overflow:hidden;

}

.technology-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:3px;

    background:#FFF;

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.technology-card:hover::before{

    transform:scaleX(1);

}

.technology-card:hover{

    transform:translateY(-10px);

    border-color:rgba(255,255,255,.18);

    box-shadow:0 30px 70px rgba(255,255,255,.05);

}

.technology-card span{

    display:inline-flex;

    width:70px;

    height:70px;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.08);

    color:#FFF;

    font-size:22px;

    font-weight:700;

    margin-bottom:28px;

    transition:.35s;

}

.technology-card:hover span{

    background:#FFF;

    color:#000;

}

.technology-card h3{

    color:#FFF;

    font-size:22px;

    margin-bottom:18px;

}

.technology-card p{

    color:#B5B5B5;

    line-height:1.9;

    font-size:16px;

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px){

.services-hero-wrapper{

grid-template-columns:1fr;

gap:70px;

}

.services-content{

text-align:center;

max-width:900px;

margin:auto;

}

.hero-buttons{

justify-content:center;

}

.services-grid,

.why-grid,

.process-grid,

.technology-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:991px){

.services-hero{

padding:140px 0 90px;

}

.services-content h1{

font-size:52px;

}

.section-heading h2{

font-size:42px;

}

.dashboard-body{

grid-template-columns:repeat(2,1fr);

}

.services-cta-box{

padding:60px 40px;

}

.services-cta-box h2{

font-size:42px;

}

}

@media(max-width:767px){

.services-hero{

padding:120px 0 80px;

}

.services-content{

text-align:center;

}

.services-content h1{

font-size:38px;

line-height:1.2;

}

.services-content p{

font-size:16px;

}

.hero-buttons{

flex-direction:column;

}

.hero-buttons a{

width:100%;

}

.dashboard-body{

grid-template-columns:1fr;

}

.services-grid,

.why-grid,

.process-grid,

.technology-grid{

grid-template-columns:1fr;

}

.service-card,

.why-card,

.process-card,

.technology-card{

padding:30px;

}

.section-heading{

margin-bottom:50px;

}

.section-heading h2{

font-size:34px;

}

.services-cta{

padding:90px 0;

}

.services-cta-box{

padding:40px 25px;

}

.services-cta-box h2{

font-size:34px;

}

}

@media(max-width:480px){

.services-content h1{

font-size:30px;

}

.section-heading h2{

font-size:28px;

}

.service-card h3,

.why-card h3,

.process-card h3,

.technology-card h3{

font-size:22px;

}

.dashboard-card strong{

font-size:30px;

}

.services-cta-box h2{

font-size:28px;

}

.services-cta-box p{

font-size:15px;

}

}

/*==================================================
FINAL FIX
==================================================*/

.services-hero,
.services-section,
.services-why,
.services-process,
.services-technologies,
.services-cta{

overflow:hidden;

}

.services-hero img{

max-width:100%;

height:auto;

display:block;

}

.service-card,
.why-card,
.process-card,
.technology-card,
.dashboard-card{

will-change:transform;

}