/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #1a1a1a;
    color: #f5f5f5;
}

/* HERO */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.95)),
                url('https://images.unsplash.com/photo-1518770660439-4636190af475') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    color: #ff8c00;
}

.hero p {
    margin: 15px 0 25px;
    color: #ffd699;
}

.btn {
    background: linear-gradient(135deg, #ff8c00, #ff5e00);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255,140,0,0.5);
}

/* SECTION */
.section {
    padding: 80px 20px;
    text-align: center;
    max-width: 1100px;
    margin: auto;
}

/* DARK */
.dark {
    background: #262626;
    border-radius: 20px;
    margin: 40px auto;
}

/* GRID */
.grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.card {
    background: #2e2e2e;
    padding: 25px;
    border-radius: 15px;
    width: 260px;
    transition: 0.3s;
}

.card i {
    font-size: 30px;
    color: #ff8c00;
    margin-bottom: 10px;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255,140,0,0.2);
}

/* SKILLS */
.skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.skills span {
    background: #2e2e2e;
    padding: 10px 18px;
    border-radius: 20px;
    border: 1px solid #ff8c00;
    transition: 0.3s;
}

.skills span:hover {
    background: #ff8c00;
    color: black;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #ff8c00, #ff5e00);
    padding: 70px 20px;
    text-align: center;
    border-radius: 20px;
    margin: 50px auto;
}

.cta button {
    margin-top: 20px;
    padding: 12px 30px;
    border: none;
    background: black;
    color: #ff8c00;
    border-radius: 30px;
    cursor: pointer;
}

/* BACK */
.back {
    text-align: center;
    margin: 40px;
}

.back a {
    color: #ff8c00;
    text-decoration: none;
}