#mainSection{
	margin-top: -102px;
}
.uiux-hero{
    background: radial-gradient(
        circle at top center,
        rgba(111,0,255,.22) 0%,
        transparent 30%
    );
    padding: 120px 0 0 0;
    background-repeat: no-repeat;
}

.hero-wrap{
    display:flex;
    align-items:center;
    gap:60px;
}

.hero-content{
    flex:1;
}

.hero-content h1{
    font-size:72px;
    line-height:1.1;
    margin:20px 0;
}

.hero-content h1 span{
    color:#8b5cf6;
}

.hero-content p{
    color:#94a3b8;
    font-size:18px;
    line-height:1.8;
    max-width:600px;
}

.hero-btns{
    display:flex;
    gap:15px;
    margin:30px 0;
}

.hero-stats{
    display:flex;
    gap:35px;
    margin-top:40px;
}

.hero-stats h3{
    color:#8b5cf6;
    font-size:30px;
}

.hero-stats p{
    font-size:14px;
}

.hero-image{
    flex:1;
}

.hero-image img{
    width:100%;
}

.section-tag{
    color:#8b5cf6;
    text-transform:uppercase;
    font-size:13px;
    text-align:center;
    display:block;
    margin-bottom:15px;
}

.what-we-design{
    padding:80px 0;
}

.what-we-design h2{
    text-align:center;
    font-size:42px;
    margin-bottom:40px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.service-card{
    padding:30px;
    background:#0b1020;
    border:1px solid rgba(255,255,255,.06);
    border-radius:18px;
}

.service-card h3{
    font-size:22px;
    margin-bottom:15px;
}

.service-card p{
    color:#94a3b8;
    line-height:1.7;
}

.tools-strip{
    padding:50px 0;
}

.tool-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:15px;
}

.tool-box{
    padding:20px;
    text-align:center;
    border:1px solid rgba(255,255,255,.06);
    border-radius:14px;
    background:#0b1020;
    font-weight:600;
}

.design-details{
    padding:80px 0;
}

.design-details h2{
    text-align:center;
    font-size:42px;
    margin-bottom:50px;
}

.detail-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.detail-card{
    background:#0b1020;
    border:1px solid rgba(255,255,255,.06);
    border-radius:18px;
    overflow:hidden;
    padding-bottom:25px;
}

.detail-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.detail-card h3{
    font-size:24px;
    padding:20px;
}

.detail-card ul{
    padding:0 20px;
}

.detail-card ul li{
    list-style:none;
    margin-bottom:12px;
    color:#d1d5db;
    position:relative;
    padding-left:20px;
}

.detail-card ul li::before{
    content:"•";
    color:#8b5cf6;
    position:absolute;
    left:0;
}


/* PROCESS SECTION */
.process-section{
    padding:90px 0;
}

.process-section h2{
    text-align:center;
    font-size:42px;
    margin-bottom:60px;
}

.process-line{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
    position:relative;
}

.process-line::before{
    content:'';
    position:absolute;
    top:35px;
    left:0;
    width:100%;
    height:2px;
    background:linear-gradient(
        to right,
        #8b5cf6,
        rgba(139,92,246,.3)
    );
}

.process-box{
    text-align:center;
    position:relative;
    z-index:2;
}

.process-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#8b5cf6;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    font-size:28px;
    margin-bottom:20px;
}

.process-box h4{
    font-size:18px;
    margin-bottom:10px;
}

.process-box p{
    color:#94a3b8;
    font-size:14px;
    line-height:1.7;
}


.why-choose-uiux{
    padding:90px 0;
}

.why-wrapper{
    display:flex;
    gap:50px;
    align-items:flex-start;
}

.why-left{
    flex:1;
}

.why-left h2{
    font-size:42px;
    margin-bottom:30px;
}

.why-left ul{
    padding:0;
}

.why-left ul li{
    list-style:none;
    margin-bottom:18px;
    color:#d1d5db;
    padding-left:28px;
    position:relative;
    font-size:17px;
}

.why-left ul li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#8b5cf6;
}


/* STATS BOX */
.stats-box{
    flex:1.5;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.stat-card{
    padding:30px;
    background:#0b1020;
    border:1px solid rgba(255,255,255,.06);
    border-radius:18px;
}

.stat-card h3{
    font-size:34px;
    color:#8b5cf6;
    margin-bottom:10px;
}

.stat-card p{
    color:#94a3b8;
}


/* CTA */
.cta-uiux{
    padding:80px 0;
}

.cta-box-uiux{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    padding:35px;
    background:linear-gradient(
        135deg,
        #0b1020,
        #140d2e
    );
    border:1px solid rgba(255,255,255,.06);
    border-radius:20px;
}

.cta-image{
    flex:0.8;
}

.cta-image img{
    width:100%;
    max-width:280px;
}

.cta-content{
    flex:2;
}

.cta-content h2{
    font-size:38px;
    margin-bottom:15px;
}

.cta-content p{
    color:#94a3b8;
    line-height:1.8;
}

.cta-btn{
    flex:1;
    text-align:right;
}


/* RESPONSIVE */
@media(max-width:991px){

    .why-wrapper{
        flex-direction:column;
    }

    .stats-box{
        grid-template-columns:repeat(2,1fr);
    }

    .cta-box-uiux{
        flex-direction:column;
        text-align:center;
    }

    .cta-btn{
        text-align:center;
    }
}

@media(max-width:768px){

    .stats-box{
        grid-template-columns:1fr;
    }

    .why-left h2,
    .cta-content h2{
        font-size:30px;
    }
}