/*==================================================
 APPLUMY PROJECTS PAGE
==================================================*/

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

.projects-hero{

    position:relative;

    padding:100px 0 30px;

    background:#000;

    overflow:hidden;

}

.projects-hero::before{

    content:"";

    position:absolute;

    top:-280px;

    right:-280px;

    width:700px;

    height:700px;

    border-radius:50%;

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

}

.projects-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%);

}

.projects-hero-wrapper{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:90px;

    align-items:center;

    position:relative;

    z-index:2;

}

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

.projects-content{

    max-width:650px;

}

.projects-content .hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 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;

}

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

    content:"";

    width:8px;

    height:8px;

    border-radius:50%;

    background:#fff;

}

.projects-content h1{

    color:#fff;

    font-size:42px;

    line-height:1.08;

    margin-bottom:28px;

    font-weight:700;

}

.projects-content p{

    color:#B5B5B5;

    font-size:18px;

    line-height:1.9;

    margin-bottom:42px;

}

/*==================================
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
==================================*/

.projects-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{

    padding:28px;

    border-radius:18px;

    background:#111;

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

    transition:.35s;

}

.dashboard-card:hover{

    transform:translateY(-8px);

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

}

.dashboard-card h4{

    color:#999;

    font-size:14px;

    margin-bottom:16px;

}

.dashboard-card strong{

    color:#fff;

    font-size:38px;

}

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

.section-heading{

    text-align:center;

    max-width:850px;

    margin:0 auto 30px;

}

.section-heading span{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:42px;

    padding:0 18px;

    border-radius:999px;

    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;

}

/*==================================
FEATURED PROJECT
==================================*/

.featured-project{

    padding:30px 0;

    background:#050505;

}

.featured-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.featured-image{

    overflow:hidden;

    border-radius:28px;

}

.featured-image img{

    width:100%;

    display:block;

    transition:.5s;

}

.featured-image:hover img{

    transform:scale(1.05);

}

.featured-content h3{

    color:#fff;

    font-size:22px;

    margin-bottom:22px;

}

.featured-content p{

    color:#B5B5B5;

    line-height:1.9;

    margin-bottom:30px;

    font-size:16px;

}

.project-features{

    list-style:none;

    padding:0;

    margin:0 0 35px;

}

.project-features li{

    color:#fff;

    padding:10px 0;

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

}

.project-tags{

    display:flex;

    gap:12px;

    flex-wrap:wrap;

    margin-bottom:35px;

}

.project-tags span{

    padding:10px 18px;

    border-radius:999px;

    background:#111;

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

    color:#fff;

    font-size:14px;

}
/*==================================================
PORTFOLIO GRID
==================================================*/

.portfolio-section{

    padding:30px 0;

    background:#000;

    position:relative;

    overflow:hidden;

}

.portfolio-section::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%);

}

.portfolio-grid{

    display:grid;

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

    gap:30px;

    position:relative;

    z-index:2;

}

.portfolio-card{

    background:#0B0B0B;

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

    border-radius:24px;

    overflow:hidden;

    transition:.35s ease;

}

.portfolio-card:hover{

    transform:translateY(-10px);

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

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

}

.portfolio-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    display:block;

    transition:.45s;

}

.portfolio-card:hover img{

    transform:scale(1.08);

}

.portfolio-content{

    padding:30px;

}

.portfolio-content span{

    display:inline-flex;

    padding:8px 16px;

    border-radius:100px;

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

    color:#fff;

    font-size:12px;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.portfolio-content h3{

    color:#fff;

    font-size:22px;

    line-height:1.3;

    margin-bottom:16px;

}

.portfolio-content p{

    color:#B5B5B5;

    line-height:1.9;

    font-size:16px;

    margin-bottom:24px;

}

.portfolio-content a{

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.portfolio-card:hover a{

    letter-spacing:.5px;

}

/*==================================================
RESULTS
==================================================*/

.project-results{

    padding:30px 0;

    background:#050505;

    position:relative;

}

.project-results::after{

    content:"";

    position:absolute;

    right:-220px;

    bottom:-220px;

    width:520px;

    height:520px;

    border-radius:50%;

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

}

.results-grid{

    display:grid;

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

    gap:30px;

    position:relative;

    z-index:2;

}

.result-card{

    padding:45px 30px;

    text-align:center;

    background:#0B0B0B;

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

    border-radius:22px;

    transition:.35s;

}

.result-card:hover{

    transform:translateY(-10px);

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

    box-shadow:0 25px 60px rgba(255,255,255,.05);

}

.result-card strong{

    display:block;

    color:#fff;

    font-size:32px;

    font-weight:700;

    margin-bottom:16px;

}

.result-card span{

    color:#B5B5B5;

    font-size:16px;

    line-height:1.7;

}

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

.portfolio-card,

.result-card{

    opacity:0;

    transform:translateY(35px);

    animation:projectFade .8s ease forwards;

}

.portfolio-card:nth-child(1){animation-delay:.10s;}
.portfolio-card:nth-child(2){animation-delay:.20s;}
.portfolio-card:nth-child(3){animation-delay:.30s;}
.portfolio-card:nth-child(4){animation-delay:.40s;}
.portfolio-card:nth-child(5){animation-delay:.50s;}
.portfolio-card:nth-child(6){animation-delay:.60s;}

.result-card:nth-child(1){animation-delay:.20s;}
.result-card:nth-child(2){animation-delay:.35s;}
.result-card:nth-child(3){animation-delay:.50s;}
.result-card:nth-child(4){animation-delay:.65s;}

@keyframes projectFade{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

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

.projects-technologies{

    position:relative;

    padding:30px 0;

    background:#000;

    overflow:hidden;

}

.projects-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:30px;

    position:relative;

    z-index:2;

}

.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;

    top:0;

    left: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{

    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:26px;

    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){

.projects-hero-wrapper,
.featured-wrapper{

grid-template-columns:1fr;

gap:70px;

}

.projects-content{

text-align:center;

max-width:900px;

margin:auto;

}

.hero-buttons{

justify-content:center;

}

.portfolio-grid,
.technology-grid{

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

}

.results-grid{

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

}

}

@media(max-width:991px){

.projects-hero{

padding:140px 0 90px;

}

.projects-content h1{

font-size:52px;

}

.section-heading h2{

font-size:42px;

}

.dashboard-body{

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

}

.featured-content{

text-align:center;

}

.project-tags{

justify-content:center;

}

}

@media(max-width:767px){

.projects-hero{

padding:120px 0 80px;

}

.projects-content{

text-align:center;

}

.projects-content h1{

font-size:38px;

line-height:1.2;

}

.projects-content p{

font-size:16px;

}

.hero-buttons{

flex-direction:column;

}

.hero-buttons a{

width:100%;

}

.dashboard-body{

grid-template-columns:1fr;

}

.portfolio-grid,
.results-grid,
.technology-grid{

grid-template-columns:1fr;

}

.featured-content h3{

font-size:32px;

}

.portfolio-content,
.technology-card,
.result-card{

padding:28px;

}

.section-heading{

margin-bottom:50px;

}

.section-heading h2{

font-size:34px;

}

}

@media(max-width:480px){

.projects-content h1{

font-size:30px;

}

.section-heading h2{

font-size:28px;

}

.featured-content h3{

font-size:26px;

}

.portfolio-content h3,

.technology-card h3{

font-size:22px;

}

.dashboard-card strong{

font-size:30px;

}

.result-card strong{

font-size:42px;

}

}

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

.projects-hero,
.featured-project,
.portfolio-section,
.project-results,
.projects-technologies{

overflow:hidden;

}

.projects-hero img,
.featured-project img,
.portfolio-card img{

max-width:100%;

height:auto;

display:block;

}

.dashboard-card,
.portfolio-card,
.result-card,
.technology-card{

will-change:transform;

}