* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #0f172a, #111827, #000);
    color: white;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HERO */

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 100px 0;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.tag {
    color: #3b82f6;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 14px;
}

.hero-text h1 {
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-text span {
    color: #3b82f6;
}

.desc {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 35px;
    font-size: 18px;
}

.buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* BUTTON */

.btn {
    padding: 14px 28px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.primary-btn {
    background: #3b82f6;
    color: white;
}

.primary-btn:hover {
    background: #2563eb;
}

.outline-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.outline-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* IMAGE */

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 300px;
}

.hero-image img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.4);
}

/* SECTION */

section {
    padding: 60px 0;
}

.title {
    font-size: 38px;
    margin-bottom: 30px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
}

/* SKILLS */

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.skill-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 25px;
    transition: 0.3s;
}

.skill-box:hover {
    transform: translateY(-10px);
}

.skill-box h3 {
    color: #3b82f6;
    margin-bottom: 15px;
}

/* PROJECT */

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.project-box {
    padding: 35px;
    border-radius: 25px;
}

.project1 {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.1));
}

.project2 {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.1));
}

/* CONTACT */

.contact {
    text-align: center;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.social-btn {
    padding: 14px 28px;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    color: white;
    transition: 0.3s;
}

.social-btn:hover {
    transform: scale(1.05);
}

.tiktok {
    background: #ec4899;
}

.facebook {
    background: #2563eb;
}

.email {
    background: #374151;
}

/* FOOTER */

footer {
    text-align: center;
    padding: 30px 0;
    color: #6b7280;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .hero {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 45px;
    }

    .buttons {
        justify-content: center;
    }

    .hero-image img {
        width: 280px;
        height: 280px;
    }

}