/* =========================
   GOOGLE FONT
========================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

:root{

    --bg:#050816;
    --card:#0f172a;
    --green:#00ff88;
    --white:#ffffff;
    --text:#b6bfd1;

}

body{

    background:var(--bg);
    color:var(--white);
    overflow-x:hidden;

}

/* =========================
   HEADER
========================= */

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    padding:18px 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:rgba(5,8,22,.85);

    backdrop-filter:blur(15px);

    z-index:999;

}

.logo{

    font-size:30px;

    font-weight:700;

}

.logo span{

    color:var(--green);

}

.navbar{

    display:flex;

    gap:35px;

}

.navbar a{

    color:white;

    text-decoration:none;

    font-size:17px;

    transition:.3s;

}

.navbar a:hover{

    color:var(--green);

}

.menu-btn{

    display:none;

    font-size:25px;

    cursor:pointer;

}

/* =========================
   HERO
========================= */

.home{

    min-height:100vh;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:70px;

    padding:120px 8% 70px;

}

.hero-text{

    flex:1;

}

.hello{

    color:var(--green);

    font-size:20px;

    margin-bottom:10px;

}

.hero-text h1{

    font-size:68px;

    line-height:1.1;

}

.hero-text h1 span{

    color:var(--green);

}

.hero-text h3{

    margin:20px 0;

    font-size:30px;

    font-weight:500;

}

.typing{

    color:var(--green);

}

.hero-description{

    color:var(--text);

    font-size:18px;

    line-height:1.8;

    max-width:550px;

}

/* =========================
   BUTTONS
========================= */

.hero-buttons{

    display:flex;

    gap:18px;

    margin-top:35px;

}

.btn{

    display:inline-block;

    padding:15px 32px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

    background:var(--green);

    color:#000;

}

.btn:hover{

    transform:translateY(-5px);

    box-shadow:0 0 20px rgba(0,255,136,.5);

}

.btn-outline{

    background:transparent;

    border:2px solid var(--green);

    color:var(--green);

}

.btn-outline:hover{

    background:var(--green);

    color:#000;

}

/* =========================
   SOCIAL
========================= */

.social-links{

    display:flex;

    gap:18px;

    margin-top:35px;

}

.social-links a{

    width:50px;

    height:50px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:var(--green);

    border:2px solid var(--green);

    transition:.3s;

}

.social-links a:hover{

    background:var(--green);

    color:#000;

}

/* =========================
   HERO IMAGE
========================= */

.hero-image{

    flex:1;

    display:flex;

    justify-content:center;

}

.image-circle{

    width:370px;

    height:370px;

    border-radius:50%;

    padding:8px;

    background:linear-gradient(45deg,#00ff88,#00c3ff);

}

.image-circle img{

    width:100%;

    height:100%;

    object-fit:cover;

    border-radius:50%;

    border:6px solid #050816;

}

/* =========================
   MOBILE
========================= */

@media(max-width:992px){

.home{

    flex-direction:column-reverse;

    text-align:center;

}

.hero-buttons{

    justify-content:center;

}

.social-links{

    justify-content:center;

}

.hero-description{

    margin:auto;

}

.hero-text h1{

    font-size:48px;

}

.hero-text h3{

    font-size:24px;

}

.image-circle{

    width:280px;

    height:280px;

}

.navbar{

    display:none;

}

.menu-btn{

    display:block;

}

}
/* ===============================
        SECTION TITLE
================================ */

section{
    padding:90px 8%;
}

.section-title{
    text-align:center;
    font-size:42px;
    margin-bottom:60px;
    font-weight:700;
}

.section-title span{
    color:var(--green);
}

/* ===============================
            ABOUT
================================ */

.about{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:70px;
    flex-wrap:wrap;
}

.about-image{
    flex:1;
    display:flex;
    justify-content:center;
}

.about-image img{
    width:330px;
    border-radius:20px;
    border:4px solid var(--green);
    box-shadow:0 0 30px rgba(0,255,136,.3);
}

.about-content{
    flex:1;
    min-width:300px;
}

.about-content h2{
    font-size:42px;
    margin-bottom:15px;
}

.about-content h2 span{
    color:var(--green);
}

.about-content h3{
    font-size:24px;
    margin-bottom:20px;
}

.about-content p{
    color:var(--text);
    line-height:1.9;
    font-size:17px;
    margin-bottom:30px;
}

/* ===============================
            STATS
================================ */

.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-card{

    background:var(--card);

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.4s;

    border:1px solid rgba(255,255,255,.08);

}

.stat-card:hover{

    transform:translateY(-8px);

    box-shadow:0 0 25px rgba(0,255,136,.2);

}

.stat-card h2{

    color:var(--green);

    font-size:42px;

}

.stat-card p{

    margin-top:10px;

    color:var(--text);

}

/* ===============================
        EDUCATION
================================ */

.education-card{

    max-width:850px;

    margin:auto;

    background:var(--card);

    padding:35px;

    border-radius:20px;

    display:flex;

    align-items:center;

    gap:25px;

    border:1px solid rgba(255,255,255,.08);

}

.edu-icon{

    width:90px;

    height:90px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(0,255,136,.15);

    color:var(--green);

    font-size:38px;

}

.edu-text h3{

    font-size:28px;

    margin-bottom:10px;

}

.edu-text p{

    color:var(--text);

    margin:6px 0;

}

/* ===============================
            SKILLS
================================ */

.skills-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

}

.skill-card{

    background:var(--card);

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.4s;

    border:1px solid rgba(255,255,255,.08);

}

.skill-card:hover{

    transform:translateY(-10px);

    box-shadow:0 0 25px rgba(0,255,136,.25);

}

.skill-card i{

    font-size:45px;

    color:var(--green);

    margin-bottom:20px;

}

.skill-card h3{

    font-size:22px;

}

/* ===============================
        MOBILE
================================ */

@media(max-width:768px){

.about{

flex-direction:column;

text-align:center;

}

.stats{

grid-template-columns:repeat(2,1fr);

}

.education-card{

flex-direction:column;

text-align:center;

}

}

@media(max-width:480px){

.stats{

grid-template-columns:1fr;

}

.section-title{

font-size:32px;

}

.about-content h2{

font-size:34px;

}

}
/*====================================
        PROJECTS
====================================*/

.projects{
    background:#08101f;
}

.projects-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.project-card{
    background:var(--card);
    padding:30px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.08);
    transition:.4s;
    text-align:center;
}

.project-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 25px rgba(0,255,136,.25);
}

.project-card i{
    font-size:45px;
    color:var(--green);
    margin-bottom:20px;
}

.project-card h3{
    font-size:24px;
    margin-bottom:15px;
}

.project-card p{
    color:var(--text);
    line-height:1.8;
    margin-bottom:25px;
}

.project-card a{
    display:inline-block;
    padding:12px 28px;
    border-radius:30px;
    text-decoration:none;
    background:var(--green);
    color:#000;
    font-weight:600;
    transition:.3s;
}

.project-card a:hover{
    transform:translateY(-4px);
    box-shadow:0 0 20px var(--green);
}

/*====================================
      CERTIFICATES
====================================*/

.certificates{
    background:#050816;
}

.certificate-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.certificate-card{
    background:var(--card);
    border-radius:20px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    transition:.4s;
}

.certificate-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 25px rgba(0,255,136,.25);
}

.certificate-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.certificate-card h3{
    text-align:center;
    padding:20px;
}

/*====================================
          CONTACT
====================================*/

.contact{
    background:#08101f;
}

.contact-box{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:25px;
    flex-wrap:wrap;
}

.contact-box a{
    width:65px;
    height:65px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:var(--card);
    color:var(--green);
    font-size:28px;
    border:2px solid var(--green);
    transition:.3s;
}

.contact-box a:hover{
    background:var(--green);
    color:#000;
    transform:translateY(-6px);
}

/*====================================
          FOOTER
====================================*/

footer{
    padding:30px;
    text-align:center;
    background:#030712;
    border-top:1px solid rgba(255,255,255,.08);
}

footer h2{
    color:var(--green);
    margin-bottom:10px;
}

footer p{
    color:var(--text);
}

/*====================================
      MOBILE MENU
====================================*/

.navbar.show{
    display:flex;
    flex-direction:column;
    position:absolute;
    top:80px;
    left:5%;
    width:90%;
    background:#111827;
    border-radius:15px;
    padding:20px;
    gap:20px;
}

.navbar.show a{
    text-align:center;
}

/*====================================
      IMAGE ANIMATION
====================================*/

.image-circle{
    animation:float 4s ease-in-out infinite;
}

@keyframes float{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-15px);
}

100%{
transform:translateY(0px);
}

}

/*====================================
      SCROLLBAR
====================================*/

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-thumb{
    background:var(--green);
    border-radius:10px;
}

::-webkit-scrollbar-track{
    background:#050816;
}

/*====================================
      MOBILE
====================================*/

@media(max-width:768px){

.projects-grid,
.certificate-grid{
grid-template-columns:1fr;
}

.contact-box{
gap:15px;
}

.contact-box a{
width:55px;
height:55px;
font-size:22px;
}

.project-card,
.certificate-card{
padding:20px;
}

}