*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body{
    background: #0f172a;
    color: #fff;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar{
    width: 8px;
}

::-webkit-scrollbar-thumb{
    background: #00f7ff;
    border-radius: 10px;
}

/* Navbar */
.header{
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(15px);
    background: rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
}

.logo{
    font-size: 28px;
    color: #00f7ff;
    font-weight: 700;
}

.nav-links{
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a{
    color: white;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
}

.nav-links a:hover{
    color: #00f7ff;
}

/* Hero Section */
.hero{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 8%;
    gap: 50px;
}

.hero-content{
    flex: 1;
}

.hero-content h3{
    font-size: 26px;
}

.hero-content h1{
    font-size: 60px;
    color: #00f7ff;
}

.hero-content h2{
    font-size: 30px;
    margin: 10px 0;
}

.hero-content p{
    margin: 20px 0;
    line-height: 1.8;
    color: #d1d5db;
}

.hero-image{
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img{
    width: 550px;
    height: 550px;
    object-fit: fill;
    border-radius: 80%;
    border: 5px solid #00f7ff;
    box-shadow: 0 0 40px rgba(0,247,255,0.4);
}

/* Buttons */
.hero-buttons{
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.btn{
    padding: 14px 28px;
    border-radius: 12px;
    background: #00f7ff;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover{
    transform: translateY(-5px);
}

.btn-outline{
    background: transparent;
    border: 2px solid #00f7ff;
    color: #00f7ff;
}

/* Social Icons */
.social-icons{
    margin-top: 25px;
}

.social-icons a{
    color: white;
    font-size: 28px;
    margin-right: 20px;
    transition: 0.3s;
}

.social-icons a:hover{
    color: #00f7ff;
}

/* Sections */
section{
    padding: 100px 8%;
}

.section-title{
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #00f7ff;
}

/* Glass Effect */
.glass{
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
}

/* Cards */
.card-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 25px;
}

.card,
.project-card,
.skill-card{
    transition: 0.4s;
}

.card:hover,
.project-card:hover,
.skill-card:hover{
    transform: translateY(-10px);
}

.card h3,
.project-card h3{
    color: #00f7ff;
    margin-bottom: 10px;
}

.card p,
.project-card p{
    color: #d1d5db;
    line-height: 1.7;
}

.skill-card{
    text-align: center;
    padding: 25px;
    font-size: 22px;
    font-weight: 600;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Contact */
.contact{
    text-align: center;
}

.contact-info{
    margin: 25px 0;
}

.contact-info p{
    margin: 15px 0;
    font-size: 18px;
}

.contact-info i{
    color: #00f7ff;
    margin-right: 10px;
}

/* Footer */
footer{
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #d1d5db;
}

/* Responsive */
@media(max-width: 992px){

    .hero{
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-content h1{
        font-size: 45px;
    }

    .hero-image img{
        width: 480px;
        height: 480px;
    }

    .hero-buttons{
        justify-content: center;
    }

    .nav-links{
        display: none;
    }
}