@charset "utf-8";
/* CSS Document */
/* =========================================================
   WEBSITEDEVELOP.IN
   ABOUT PAGE CSS
========================================================= */


/* ==========================
   ABOUT HERO
========================== */

.hero{
    padding:100px 0 90px;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(37,99,235,.13),
            transparent 30%
        ),
        #f8fafc;
}

.hero-tag{
    color:var(--primary);
    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1px;
}

.hero h1{
    font-size:55px;
    line-height:1.1;
    font-weight:800;
    letter-spacing:-1.5px;
    margin-top:12px;
}

.hero h1 span{
    color:var(--primary);
}

.hero p{
    max-width:720px;
    margin:22px auto 0;
    color:var(--text);
    font-size:18px;
}


/* ==========================
   ABOUT SECTION TITLES
========================== */

.section-title{
    font-size:38px;
    font-weight:800;
    letter-spacing:-1px;
}

.section-subtitle{
    color:var(--text);
    max-width:680px;
}


/* ==========================
   ABOUT INTRO
========================== */

.about-image{
    min-height:480px;
    background:#e2e8f0;
    border-radius:24px;
    overflow:hidden;
    position:relative;
}

.about-image img{
    width:100%;
    height:100%;
    min-height:480px;
    object-fit:cover;
}

.experience-box{
    position:absolute;
    bottom:25px;
    right:25px;
    background:#fff;
    padding:22px 27px;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(15,23,42,.15);
}

.experience-box strong{
    display:block;
    color:var(--primary);
    font-size:34px;
    line-height:1;
    font-weight:800;
}

.experience-box span{
    font-size:12px;
    color:#64748b;
    font-weight:600;
}

.about-content{
    padding-left:25px;
}

.about-content h2{
    font-size:38px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
}

.about-content h2 span{
    color:var(--primary);
}

.about-content p{
    color:var(--text);
    font-size:15px;
}

.about-checks{
    list-style:none;
    padding:0;
    margin:25px 0;
}

.about-checks li{
    margin-bottom:11px;
    font-size:14px;
    font-weight:600;
}

.about-checks i{
    color:#22c55e;
    margin-right:8px;
}


/* ==========================
   ABOUT STATS
========================== */

.stats{
    background:#0f172a;
    color:#fff;
    padding:65px 0;
}

.stat{
    text-align:center;
}

.stat h3{
    font-size:40px;
    font-weight:800;
    margin-bottom:3px;
}

.stat p{
    color:#94a3b8;
    margin:0;
    font-size:14px;
}


/* ==========================
   VALUES
========================== */

.value-card{
    height:100%;
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:32px;
    transition:.3s;
}

.value-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(15,23,42,.08);
    border-color:#bfdbfe;
}

.value-icon{
    width:58px;
    height:58px;
    background:#eff6ff;
    color:var(--primary);
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:25px;
    margin-bottom:22px;
}

.value-card h3{
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
}

.value-card p{
    color:var(--text);
    font-size:14px;
    margin:0;
}


/* ==========================
   SKILLS
========================== */

.skill-box{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:30px;
    height:100%;
}

.skill-item{
    margin-bottom:22px;
}

.skill-item:last-child{
    margin-bottom:0;
}

.skill-top{
    display:flex;
    justify-content:space-between;
    margin-bottom:8px;
}

.skill-top strong{
    font-size:14px;
}

.skill-top span{
    color:var(--primary);
    font-size:13px;
    font-weight:700;
}

.progress{
    height:8px;
    background:#e2e8f0;
    border-radius:20px;
}

.progress-bar{
    background:var(--primary);
    border-radius:20px;
}


/* ==========================
   TECHNOLOGIES
========================== */

.tech-list{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.tech-item{
    background:#fff;
    border:1px solid var(--border);
    padding:13px 18px;
    border-radius:9px;
    font-size:13px;
    font-weight:700;
    color:#334155;
    transition:.3s;
}

.tech-item:hover{
    border-color:var(--primary);
    color:var(--primary);
    transform:translateY(-3px);
}


/* ==========================
   PROCESS
========================== */

.process-card{
    text-align:center;
    position:relative;
    padding:15px;
}

.process-number{
    width:60px;
    height:60px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    font-size:18px;
    font-weight:800;
}

.process-card h3{
    font-size:18px;
    font-weight:700;
}

.process-card p{
    color:var(--text);
    font-size:14px;
}


/* ==========================
   ABOUT PAGE MOBILE
========================== */

@media(max-width:767px){

    .hero{
        padding:70px 0;
    }

    .hero h1{
        font-size:38px;
    }

    .hero p{
        font-size:16px;
    }

    .about-content{
        padding-left:0;
        margin-top:35px;
    }

    .about-content h2{
        font-size:31px;
    }

    .about-image,
    .about-image img{
        min-height:350px;
    }

    .section-title{
        font-size:31px;
    }

}

