/* Start custom CSS for text-editor, class: .elementor-element-85c2157 *//* ==============================
   PROJECT SHOWCASE - PREMIUM WHITE
============================== */

.projects-showcase{
    position:relative;
    padding:120px 0;
    background:#ffffff;
}

.projects-showcase .section-header{
    max-width:900px;
    margin:0 auto 80px;
    text-align:center;
}

.projects-showcase .section-badge{
    display:inline-block;
    padding:12px 22px;
    border-radius:50px;
    background:rgba(123,97,255,.08);
    color:#7b61ff;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.projects-showcase .section-header h2{
    font-size:58px;
    line-height:1.1;
    font-weight:700;
    color:#111111;
    margin-bottom:20px;
}

.projects-showcase .section-header p{
    font-size:18px;
    line-height:1.8;
    color:#666666;
}

/* ==============================
   GRID
============================== */

.project-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    max-width:1400px;
    margin:auto;
}

/* ==============================
   CARD
============================== */

.project-card{
    position:relative;
    background:#ffffff;
    border-radius:28px;
    padding:40px;
    border:1px solid #ececec;
    overflow:hidden;
    transition:all .45s cubic-bezier(.165,.84,.44,1);
    box-shadow:0 8px 30px rgba(0,0,0,.04);
    z-index:1;
}

/* Gradient Top Border Animation */

.project-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(
        90deg,
        #ff4fd8,
        #7b61ff
    );
    transform:scaleX(0);
    transform-origin:left;
    transition:.5s ease;
}

/* Soft Glow */

.project-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(
        circle at top right,
        rgba(123,97,255,.10),
        transparent 45%
    );
    opacity:0;
    transition:.5s ease;
    pointer-events:none;
}

/* Hover Effect */

.project-card:hover{
    transform:translateY(-12px);
    border-color:#dcd7ff;
    box-shadow:
    0 30px 60px rgba(123,97,255,.12),
    0 15px 25px rgba(255,79,216,.08);
}

.project-card:hover::before{
    transform:scaleX(1);
}

.project-card:hover::after{
    opacity:1;
}

/* ==============================
   PROJECT NUMBER
============================== */

.project-number{
    width:75px;
    height:75px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(
        135deg,
        #ff4fd8,
        #7b61ff
    );
    color:#ffffff;
    font-size:24px;
    font-weight:700;
    margin-bottom:25px;
    transition:.4s ease;
    box-shadow:
    0 10px 30px rgba(123,97,255,.25);
}

.project-card:hover .project-number{
    transform:rotate(8deg) scale(1.08);
}

/* ==============================
   INDUSTRY TAG
============================== */

.industry{
    display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    background:#f6f3ff;
    color:#7b61ff;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
}

/* ==============================
   TITLE
============================== */

.project-card h3{
    font-size:30px;
    line-height:1.3;
    font-weight:700;
    color:#111111;
    margin-bottom:18px;
    transition:.3s ease;
}

.project-card:hover h3{
    color:#7b61ff;
}

/* ==============================
   DESCRIPTION
============================== */

.project-card p{
    color:#666666;
    line-height:1.8;
    font-size:16px;
    margin-bottom:25px;
}

/* ==============================
   FEATURES
============================== */

.project-section h4{
    font-size:18px;
    font-weight:700;
    color:#111111;
    margin-bottom:15px;
}

.project-section ul{
    list-style:none;
    padding:0;
    margin:0 0 25px;
}

.project-section ul li{
    position:relative;
    padding-left:26px;
    margin-bottom:12px;
    color:#444444;
    transition:.3s ease;
}

.project-section ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#7b61ff;
    font-weight:700;
}

.project-card:hover .project-section ul li{
    transform:translateX(5px);
}

/* ==============================
   TECH STACK
============================== */

.tech-stack{
    background:#f8f8ff;
    border:1px solid #ece8ff;
    border-radius:16px;
    padding:18px 20px;
    margin-bottom:25px;
    color:#555555;
    font-size:15px;
    font-weight:500;
}

/* ==============================
   RESULTS BOX
============================== */

.results{
    padding:22px;
    border-radius:18px;
    background:#f5fff8;
    border:1px solid #dff7e8;
    color:#17a35b;
    line-height:2;
    font-weight:600;
    transition:.4s ease;
}

.project-card:hover .results{
    transform:scale(1.02);
}

/* ==============================
   ANIMATION ON LOAD
============================== */

.project-card{
    animation:fadeUp .8s ease forwards;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ==============================
   RESPONSIVE
============================== */

@media(max-width:1200px){

.project-grid{
    grid-template-columns:1fr;
}

}

@media(max-width:768px){

.projects-showcase{
    padding:80px 20px;
}

.projects-showcase .section-header h2{
    font-size:38px;
}

.project-card{
    padding:30px;
}

.project-card h3{
    font-size:24px;
}

.project-number{
    width:65px;
    height:65px;
    font-size:20px;
}

}/* End custom CSS */