/* ------------------------------------------
   GLOBAL
------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0d0d0d;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    line-height: 1.6;
}

/* Background Glow */
.glow {
    position: fixed;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(255, 45, 85, 0.25), transparent 70%);
    filter: blur(150px);
    z-index: -1;
}

/* ------------------------------------------
   NAVBAR
------------------------------------------- */
.navbar {
    width: 100%;
    padding: 22px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    z-index: 999;
}

.nav-left {
    font-size: 1.35rem;
    font-weight: 700;
}

.nav-right a {
    margin-left: 28px;
    color: #d4d4d4;
    text-decoration: none;
    font-weight: 400;
    transition: 0.25s ease;
}

.nav-right a:hover {
    color: #ff4d4d;
}

/* ------------------------------------------
   HERO SECTION
------------------------------------------- */
.hero {
    text-align: center;
    padding-top: 180px;
    padding-bottom: 130px;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 18px;
}

.hero p {
    font-size: 1.2rem;
    color: #bbbbbb;
    margin-bottom: 40px;
}

/* Socials */
.socials {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-btn {
    padding: 10px 22px;
    border-radius: 6px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.25s ease;
}

.social-btn:hover {
    color: #ff4d4d;
    border-color: #ff4d4d;
}

/* ------------------------------------------
   PROJECTS SECTION
------------------------------------------- */
.projects-section {
    padding: 80px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 45px;
}

/* Project Grid */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 30px;
}

.project-card {
    background: #141414;
    border: 1px solid #1f1f1f;
    padding: 28px;
    border-radius: 14px;
    transition: 0.25s ease;
}

.project-card:hover {
    border-color: #ff4d4d;
    transform: translateY(-4px);
}

.project-card h3 {
    margin-bottom: 10px;
    font-weight: 700;
}

.project-card p {
    margin-bottom: 20px;
    color: #b7b7b7;
}

/* Button */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ff4d4d;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s ease;
}

.btn:hover {
    background: #ff3333;
}

/* ------------------------------------------
   FOOTER
------------------------------------------- */
.footer {
    text-align: center;
    padding: 35px 0;
    co
