:root{
    --primary:#ff0055;
    --dark:#17191f;
    --dark2:#1f232d;
    --text:#ffffff;
    --muted:#bdbdbd;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--dark);
    color:var(--text);
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =====================
   HEADER
===================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(23,25,31,.95);
    backdrop-filter:blur(15px);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo{
    font-size:32px;
    font-weight:800;
    color:var(--primary);
}

.nav-links{
    list-style:none;
    display:flex;
    gap:35px;
}

.nav-links a{
    color:white;
    transition:.3s;
}

.nav-links a:hover{
    color:var(--primary);
}

.cv-btn{
    padding:12px 28px;
    background:var(--primary);
    color:white;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.cv-btn:hover{
    transform:translateY(-3px);
}

/* =====================
   HERO
===================== */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding-top:120px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-text h4{
    color:var(--primary);
    margin-bottom:10px;
}

.hero-text h1{
    font-size:72px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-text p{
    color:var(--muted);
    line-height:1.9;
    margin-bottom:30px;
}

.hero-btns{
    display:flex;
    gap:15px;
    margin-bottom:30px;
}

.btn{
    padding:14px 30px;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    background:var(--primary);
    color:white;
}

.btn-outline{
    border:2px solid var(--primary);
    color:white;
}

.btn:hover{
    transform:translateY(-5px);
}

.socials{
    display:flex;
    gap:15px;
}

.socials a{
    width:45px;
    height:45px;
    background:var(--dark2);
    border-radius:10px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
}

.hero-image{
    position:relative;
    text-align:center;
}

.hero-image img{
    width:100%;
    max-width:430px;
    border-radius:25px;
    position:relative;
    z-index:2;
}

.glow{
    position:absolute;
    width:400px;
    height:400px;
    background:var(--primary);
    border-radius:50%;
    filter:blur(120px);
    opacity:.25;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
}

/* =====================
   SECTION TITLE
===================== */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h5{
    color:var(--primary);
    margin-bottom:10px;
}

.section-title h2{
    font-size:48px;
}

/* =====================
   STATS
===================== */

.stats{
    padding:60px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-card{
    background:var(--dark2);
    padding:35px;
    border-radius:20px;
    text-align:center;
    transition:.4s;
}

.stat-card:hover{
    transform:translateY(-10px);
}

.stat-card h2{
    color:var(--primary);
    font-size:45px;
}

.stat-card p{
    color:#999;
}

/* =====================
   ABOUT
===================== */

.about{
    padding:60px 0;
}

.about-box{
    background:var(--dark2);
    padding:50px;
    border-radius:25px;
    color:#d0d0d0;
    line-height:2;
}

/* =====================
   SERVICES
===================== */

.services{
    padding:60px 0;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.service-card{
    background:var(--dark2);
    padding:35px;
    border-radius:20px;
    transition:.4s;
    border:1px solid transparent;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:var(--primary);
}

.service-card h3{
    margin-bottom:15px;
}

.service-card p{
    color:#bdbdbd;
    line-height:1.8;
}

/* =====================
   SKILLS
===================== */

.skills{
    padding:60px 0;
}

.skill{
    margin-bottom:25px;
}

.skill-head{
    display:flex;
    justify-content:space-between;
    margin-bottom:8px;
}

.progress{
    height:10px;
    background:#2a2f3b;
    border-radius:30px;
    overflow:hidden;
}

.progress span{
    display:block;
    height:100%;
    background:var(--primary);
}

/* =====================
   PROJECTS
===================== */

.projects{
    padding:60px 0;
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.project-card{
    background:var(--dark2);
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
}

.project-card:hover{
    transform:translateY(-10px);
}

.project-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.project-info{
    padding:20px;
}

/* =====================
   CONTACT
===================== */

.contact{
    padding:60px 0;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.contact-info,
.contact-form{
    background:var(--dark2);
    padding:35px;
    border-radius:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:none;
    outline:none;
    border-radius:10px;
    background:#2b313d;
    color:white;
}

.contact-form textarea{
    resize:none;
    height:150px;
}

.contact-form button{
    width:100%;
    padding:15px;
    background:var(--primary);
    color:white;
    border:none;
    border-radius:10px;
    cursor:pointer;
}

/* =====================
   FOOTER
===================== */

footer{
    padding:30px 0;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.05);
    margin-top:50px;
}

footer p{
    color:#999;
}

/* =====================
   ANIMATION
===================== */

.fade-up{
    opacity:0;
    transform:translateY(40px);
    animation:fadeUp 1s forwards;
}

@keyframes fadeUp{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =====================
   RESPONSIVE
===================== */

@media(max-width:992px){

    .hero-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-btns,
    .socials{
        justify-content:center;
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .project-grid{
        grid-template-columns:1fr 1fr;
    }

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .hero-text h1{
        font-size:50px;
    }
}

@media(max-width:768px){

    .nav-links{
        display:none;
    }

    .hero-text h1{
        font-size:40px;
    }

    .stats-grid,
    .service-grid,
    .project-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:34px;
    }

    .hero-btns{
        flex-direction:column;
    }
}

/*additional*/
.typing{
    color:#ff0055;
    font-weight:600;
}

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:all .8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

.nav-links a.active{
    color:#ff0055;
}

.skills{
padding:60px 0;
}

.subtitle{
color:#999;
margin-top:10px;
}

.skills-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
margin-top:50px;
}

.skill-card{
background:#1f232d;
padding:25px;
border-radius:18px;
transition:.4s;
border:1px solid rgba(255,255,255,.05);
}

.skill-card:hover{
transform:translateY(-8px);
border-color:#ff0055;
box-shadow:0 15px 35px rgba(255,0,85,.15);
}

.skill-info{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:15px;
}

.skill-info h3{
font-size:18px;
}

.skill-info span{
color:#ff0055;
font-weight:600;
}

.progress-bar{
height:10px;
background:#2d313c;
border-radius:30px;
overflow:hidden;
}

.progress{
height:100%;
border-radius:30px;
background:linear-gradient(
90deg,
#ff0055,
#ff4d88
);
}

.html{width:95%;}
.css{width:90%;}
.js{width:80%;}
.php{width:85%;}
.mysql{width:85%;}
.dotnet{width:65%;}

@media(max-width:768px){

.skills-grid{
grid-template-columns:1fr;
}

}

.subtitle{
color:#999;
margin-top:10px;
}

.about-wrapper{
display:grid;
grid-template-columns:400px 1fr;
gap:60px;
align-items:center;
}

.about-image{
position:relative;
}

.about-image img{
width:100%;
border-radius:25px;
border:4px solid #ff0055;
}

.experience-badge{
position:absolute;
bottom:-20px;
right:-20px;
background:#ff0055;
padding:20px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 30px rgba(255,0,85,.3);
}

.experience-badge h3{
font-size:32px;
}

.about-content h3{
font-size:32px;
margin-bottom:20px;
}

.about-content p{
color:#cfcfcf;
line-height:1.9;
margin-bottom:15px;
}

.about-cards{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
margin:35px 0;
}

.info-card{
background:#1f232d;
padding:20px;
border-radius:18px;
text-align:center;
transition:.4s;
}

.info-card:hover{
transform:translateY(-8px);
border:1px solid #ff0055;
box-shadow:0 10px 30px rgba(255,0,85,.15);
}

.info-card h4{
font-size:28px;
color:#ff0055;
margin-bottom:8px;
}

.info-card p{
margin:0;
font-size:14px;
}

.about-btn{
display:inline-block;
padding:14px 30px;
background:#ff0055;
color:white;
text-decoration:none;
border-radius:40px;
font-weight:600;
transition:.4s;
}

.about-btn:hover{
transform:translateY(-5px);
}

@media(max-width:992px){

.about-wrapper{
grid-template-columns:1fr;
}

.about-image{
max-width:400px;
margin:auto;
}

}

@media(max-width:768px){

.about-cards{
grid-template-columns:1fr;
}

.about-content h3{
font-size:26px;
}

}

.services{
padding:60px 0;
}

.services-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
margin-top:50px;
}

.service-card{
position:relative;
background:#1f232d;
padding:35px;
border-radius:25px;
overflow:hidden;
transition:.4s;
border:1px solid rgba(255,255,255,.05);
}

.service-card::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:4px;
background:linear-gradient(
90deg,
#ff0055,
#ff4d88
);
}

.service-card:hover{
transform:translateY(-12px);
border-color:#ff0055;
box-shadow:0 15px 40px rgba(255,0,85,.18);
}

.service-icon{
width:70px;
height:70px;
display:flex;
align-items:center;
justify-content:center;
font-size:32px;
background:rgba(255,0,85,.12);
border-radius:18px;
margin-bottom:20px;
}

.service-number{
position:absolute;
top:20px;
right:25px;
font-size:50px;
font-weight:800;
color:rgba(255,255,255,.05);
}

.service-card h3{
font-size:24px;
margin-bottom:15px;
}

.service-card p{
color:#c8c8c8;
line-height:1.8;
margin-bottom:20px;
}

.service-card a{
color:#ff0055;
text-decoration:none;
font-weight:600;
}

.service-card:hover .service-icon{
transform:rotate(10deg) scale(1.1);
transition:.4s;
}

@media(max-width:768px){

.services-grid{
grid-template-columns:1fr;
}

}

.contact{
padding:80px 0;
}

.subtitle{
color:#999;
margin-top:10px;
}

.contact-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
margin-top:50px;
align-items:stretch;
}

/* BOTH SIDE SAME HEIGHT */

.contact-left,
.contact-right{
background:#1f232d;
padding:35px;
border-radius:25px;
border:1px solid rgba(255,255,255,.05);
height:100%;
}

/* LEFT */

.contact-left{
display:flex;
flex-direction:column;
}

.availability{
display:inline-block;
padding:10px 18px;
background:rgba(0,255,100,.12);
border:1px solid rgba(0,255,100,.3);
color:#70ff9b;
border-radius:30px;
font-size:14px;
margin-bottom:20px;
}

.contact-left h3{
font-size:28px;
margin-bottom:15px;
}

.contact-desc{
color:#cfcfcf;
line-height:1.8;
margin-bottom:25px;
}

.contact-card{
display:flex;
align-items:center;
gap:18px;
padding:18px;
background:#262b36;
border-radius:15px;
margin-bottom:15px;
transition:.4s;
}

.contact-card:hover{
transform:translateX(10px);
border-left:4px solid #ff0055;
}

.contact-card .icon{
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
background:rgba(255,0,85,.12);
border-radius:15px;
font-size:28px;
}

.contact-card h4{
margin-bottom:5px;
}

.contact-card p{
color:#cfcfcf;
font-size:14px;
}

/* SOCIAL */

.social-contact{
display:flex;
gap:15px;
margin-top:auto;
}

.social-contact a{
width:50px;
height:50px;
display:flex;
align-items:center;
justify-content:center;
background:#262b36;
border-radius:12px;
text-decoration:none;
font-size:22px;
transition:.4s;
}

.social-contact a:hover{
background:#ff0055;
transform:translateY(-5px);
}

/* RIGHT */

.contact-right{
display:flex;
flex-direction:column;
justify-content:center;
}

.contact-right h3{
font-size:28px;
margin-bottom:25px;
}

.input-group{
margin-bottom:18px;
}

.input-group input,
.input-group textarea{
width:100%;
padding:16px;
background:#262b36;
border:none;
outline:none;
border-radius:12px;
color:white;
font-size:15px;
}

.input-group input:focus,
.input-group textarea:focus{
border:1px solid #ff0055;
}

.input-group textarea{
height:180px;
resize:none;
}

.send-btn{
width:100%;
padding:16px;
border:none;
border-radius:12px;
background:linear-gradient(
90deg,
#ff0055,
#ff4d88
);
color:white;
font-size:16px;
font-weight:600;
cursor:pointer;
transition:.4s;
}

.send-btn:hover{
transform:translateY(-4px);
box-shadow:0 10px 25px rgba(255,0,85,.35);
}

/* MOBILE */

@media(max-width:992px){

.contact-container{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.contact{
padding:80px 0;
}

.contact-left,
.contact-right{
padding:25px;
}

.contact-left h3,
.contact-right h3{
font-size:24px;
}

}

.footer{
padding:80px 0 30px;
background:#12141a;
border-top:1px solid rgba(255,255,255,.05);
}

.footer-content{
text-align:center;
max-width:700px;
margin:auto;
}

.footer-content h2{
font-size:40px;
color:#ff0055;
margin-bottom:10px;
}

.footer-title{
font-size:18px;
font-weight:600;
margin-bottom:15px;
}

.footer-description{
color:#bdbdbd;
line-height:1.8;
margin-bottom:30px;
}

.footer-social{
display:flex;
justify-content:center;
gap:15px;
margin-bottom:30px;
}

.footer-social a{
width:55px;
height:55px;
display:flex;
align-items:center;
justify-content:center;
background:#1f232d;
border-radius:15px;
text-decoration:none;
font-size:24px;
transition:.4s;
}

.footer-social a:hover{
background:#ff0055;
transform:translateY(-6px);
}

.footer-links{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
margin-bottom:30px;
}

.footer-links a{
color:#cfcfcf;
text-decoration:none;
transition:.3s;
}

.footer-links a:hover{
color:#ff0055;
}

.footer-bottom{
padding-top:25px;
border-top:1px solid rgba(255,255,255,.05);
text-align:center;
}

.footer-bottom p{
color:#888;
font-size:14px;
}

@media(max-width:768px){

.footer-content h2{
font-size:30px;
}

.footer-links{
gap:15px;
}

}

.footer-social a{
width:55px;
height:55px;
display:flex;
align-items:center;
justify-content:center;
background:#1f232d;
border-radius:15px;
text-decoration:none;
font-size:22px;
color:white;
transition:.4s;
}

.footer-social a:hover{
transform:translateY(-6px);
background:#ff0055;
box-shadow:0 10px 25px rgba(255,0,85,.3);
}