*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#0f172a;
    color:#ffffff;
    overflow-x:hidden;

}

a{
    text-decoration:none;
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}

/* ==========================
Navbar
========================== */

.custom-navbar{

    background:rgba(15,23,42,.85);

    backdrop-filter:blur(15px);

    transition:.4s;

    padding:15px 0;

}

.navbar-brand{

    font-size:28px;

    color:#fff !important;

}

.nav-link{

    color:#d1d5db !important;

    margin-left:15px;

    transition:.3s;

}

.nav-link:hover{

    color:#3b82f6 !important;

}

.btn-primary{

    background:#2563eb;

    border:none;

    padding:12px 25px;

    font-weight:600;

}

.btn-primary:hover{

    background:#1d4ed8;

}

/* Footer */

.footer{

    background:#020617;

}

.footer i{

    font-size:24px;

    margin:0 10px;

    color:#ffffff;

    transition:.3s;

}

.footer i:hover{

    color:#3b82f6;

}
/* ==========================
Hero Section
========================== */

.hero-section{

    position:relative;

    background:linear-gradient(135deg,#020617,#0f172a,#111827);

    overflow:hidden;

}

.hero-badge{

    display:inline-block;

    background:#1e293b;

    color:#60a5fa;

    padding:8px 20px;

    border-radius:30px;

    font-weight:600;

}

.hero-title{

    font-size:65px;

    font-weight:800;

    margin-top:20px;

}

.hero-title span{

    color:#3b82f6;

}

.hero-subtitle{

    margin-top:20px;

    color:#60a5fa;

    min-height:45px;

}

.hero-description{

    color:#cbd5e1;

    line-height:1.9;

    margin-top:25px;

    max-width:550px;

}

.hero-buttons{

    margin-top:40px;

}

.hero-social a{

    width:50px;

    height:50px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:#1e293b;

    color:#fff;

    border-radius:50%;

    margin-right:12px;

    transition:.3s;

    font-size:22px;

}

.hero-social a:hover{

    background:#2563eb;

    transform:translateY(-6px);

}

.profile-wrapper{

    display:flex;

    justify-content:center;

}

.profile-circle{

    width:420px;

    height:420px;

    border-radius:50%;

    background:linear-gradient(45deg,#2563eb,#06b6d4);

    padding:10px;

    animation:float 5s ease-in-out infinite;

}

.profile-image{

    width:100%;

    height:100%;

    object-fit:cover;

    border-radius:50%;

    border:8px solid #0f172a;

}

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-20px);

    }

    100%{

        transform:translateY(0);

    }

}

/* Responsive */

@media(max-width:992px){

.hero-title{

font-size:48px;

}

.profile-circle{

width:320px;

height:320px;

margin-top:50px;

}

}

@media(max-width:576px){

.hero-title{

font-size:38px;

}

.hero-buttons .btn{

display:block;

margin-bottom:15px;

}

}
/* =======================
About Section
======================= */

.about-section{

    background:#111827;

}

.section-tag{

    color:#60a5fa;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:2px;

}

.section-title{

    font-size:42px;

    font-weight:700;

    color:#fff;

}

.about-text{

    color:#cbd5e1;

    line-height:1.9;

    margin-top:20px;

}

.about-image img{

    transition:.5s;

}

.about-image img:hover{

    transform:scale(1.03);

}

.about-list{

    padding-left:0;

}

.about-list li{

    list-style:none;

    margin-bottom:18px;

    color:#fff;

}

.about-list i{

    color:#3b82f6;

    margin-right:10px;

}

.counter-box{

    background:#1e293b;

    padding:25px;

    border-radius:16px;

    text-align:center;

    transition:.4s;

}

.counter-box:hover{

    transform:translateY(-8px);

    background:#2563eb;

}

.counter-box h3{

    font-size:32px;

    font-weight:700;

}

.counter-box p{

    margin:0;

    color:#e2e8f0;

}
/*============================
Skills Section
=============================*/

.skills-section{

    background:#0f172a;

}

.skill-item{

    margin-bottom:30px;

}

.skill-item h6{

    color:#fff;

    font-weight:600;

}

.skill-item span{

    color:#60a5fa;

    font-weight:600;

}

.progress{

    height:10px;

    border-radius:50px;

    background:#1e293b;

    margin-top:10px;

    overflow:hidden;

}

.progress-bar{

    background:linear-gradient(90deg,#2563eb,#06b6d4);

    border-radius:50px;

    animation:progressAnimation 2s ease;

}

@keyframes progressAnimation{

    from{

        width:0;

    }

}
/*=========================
Experience
==========================*/

.experience-section{

    background:#111827;

}

.timeline{

    position:relative;

    max-width:1100px;

    margin:auto;

}

.timeline::after{

    content:"";

    position:absolute;

    width:4px;

    background:#2563eb;

    top:0;

    bottom:0;

    left:50%;

    margin-left:-2px;

}

.timeline-item{

    position:relative;

    width:50%;

    padding:20px 40px;

}

.timeline-item.left{

    left:0;

}

.timeline-item.right{

    left:50%;

}

.timeline-content{

    background:#1e293b;

    padding:25px;

    border-radius:15px;

    transition:.4s;

}

.timeline-content:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(37,99,235,.25);

}

.timeline-year{

    color:#60a5fa;

    font-weight:700;

}

.timeline-content h4{

    color:#fff;

    margin-top:10px;

}

.timeline-content p{

    color:#cbd5e1;

    margin-top:10px;

    line-height:1.8;

}

.timeline-item::after{

    content:"";

    position:absolute;

    width:18px;

    height:18px;

    background:#2563eb;

    border-radius:50%;

    top:35px;

    right:-9px;

    z-index:1;

}

.timeline-item.right::after{

    left:-9px;

}

@media(max-width:992px){

.timeline::after{

left:15px;

}

.timeline-item{

width:100%;

padding-left:50px;

padding-right:15px;

left:0 !important;

}

.timeline-item::after{

left:6px;

}

}
/*==========================
Projects Section
===========================*/

.projects-section{
    background:#0b1120;
}

.project-card{
    background:#1e293b;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    height:100%;
    border:1px solid rgba(255,255,255,.08);
}

.project-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(37,99,235,.25);
}

.project-image{
    width:100%;
    height:260px;
    object-fit:cover;
}

.project-body{
    padding:25px;
}

.project-category{
    display:inline-block;
    background:#2563eb;
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:15px;
}

.project-body h3{
    color:#fff;
    margin-bottom:15px;
}

.project-body p{
    color:#cbd5e1;
    line-height:1.8;
}

.project-features{
    padding:0;
    margin-top:20px;
}

.project-features li{
    list-style:none;
    color:#e5e7eb;
    margin-bottom:10px;
}

.project-features i{
    color:#22c55e;
    margin-right:8px;
}

.project-links{
    margin-top:25px;
}

.project-links .btn{
    border-radius:50px;
    padding:10px 22px;
}
/*=========================
Services
=========================*/

.services-section{
    background:#111827;
}

.service-card{
    background:#1e293b;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    transition:.4s;
    border:1px solid rgba(255,255,255,.08);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(37,99,235,.25);
}

.service-card i{
    font-size:55px;
    color:#3b82f6;
    margin-bottom:20px;
}

.service-card h4{
    color:#fff;
    margin-bottom:15px;
}

.service-card p{
    color:#cbd5e1;
    line-height:1.8;
}
/*=========================
Achievements
=========================*/

.achievements-section{
    background:#0f172a;
}

.achievement-card{
    background:#1e293b;
    border-radius:18px;
    padding:35px;
    text-align:center;
    transition:.4s;
    border:1px solid rgba(255,255,255,.08);
}

.achievement-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(37,99,235,.25);
}

.achievement-card h2{
    color:#3b82f6;
    font-size:48px;
    font-weight:700;
}

.achievement-card h5{
    color:#fff;
    margin-top:10px;
}

.tech-stack{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    justify-content:center;
}

.tech-stack span{
    background:#2563eb;
    color:#fff;
    padding:10px 18px;
    border-radius:30px;
    font-size:15px;
    transition:.3s;
}

.tech-stack span:hover{
    background:#1d4ed8;
    transform:translateY(-3px);
}
/*=========================
Certificates
=========================*/

.certificates-section{

    background:#111827;

}

.certificate-card{

    background:#1e293b;

    border-radius:20px;

    padding:35px;

    text-align:center;

    height:100%;

    transition:.4s;

    border:1px solid rgba(255,255,255,.08);

}

.certificate-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(37,99,235,.25);

}

.certificate-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:#2563eb;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:20px;

}

.certificate-icon i{

    font-size:35px;

    color:#fff;

}

.certificate-card h4{

    color:#fff;

    margin-bottom:15px;

    font-size:22px;

}

.certificate-card p{

    color:#cbd5e1;

    line-height:1.8;

}

.certificate-year{

    display:inline-block;

    margin-top:20px;

    padding:8px 18px;

    background:#0f172a;

    color:#60a5fa;

    border-radius:30px;

    font-weight:600;

}
/*=========================
Resume
=========================*/

.resume-section{
    background:#0f172a;
}

.resume-card{
    background:#1e293b;
    padding:35px;
    border-radius:20px;
}

.resume-card h3{
    color:#fff;
    margin-bottom:25px;
}

.resume-info p{
    color:#e5e7eb;
}

.skill-tags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.skill-tags span{
    background:#2563eb;
    color:#fff;
    padding:10px 18px;
    border-radius:30px;
}

/*=========================
Contact
=========================*/

.contact-section{
    background:#111827;
}

.contact-card{
    background:#1e293b;
    padding:35px;
    border-radius:20px;
    height:100%;
}

.contact-card h4{
    color:#fff;
    margin-bottom:20px;
}

.contact-card p{
    color:#cbd5e1;
    margin-bottom:15px;
}

.form-control{
    background:#1e293b;
    border:1px solid #334155;
    color:#fff;
    padding:14px;
}

.form-control:focus{
    background:#1e293b;
    color:#fff;
    border-color:#3b82f6;
    box-shadow:none;
}

textarea.form-control{
    resize:none;
}