```css
/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: #080808;
    color: #f5f5f5;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}


/* =========================
   NAVBAR
========================= */

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
    max-width: 1150px;
    height: 75px;
    margin: auto;
    padding: 0 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo span {
    color: #ff3b3b;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    font-size: 14px;
    color: #bbb;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 25px;
    cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;
    max-width: 1150px;
    margin: auto;
    padding: 130px 25px 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    max-width: 650px;
}

.hello {
    color: #ff3b3b;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.hero h1 {
    font-size: clamp(45px, 7vw, 82px);
    line-height: 1.05;
    letter-spacing: -3px;
}

.hero h1 span {
    color: #ff3b3b;
}

.hero h2 {
    margin-top: 20px;
    font-size: 22px;
    color: #ccc;
    font-weight: 500;
}

.hero-description {
    margin-top: 20px;
    max-width: 570px;
    color: #999;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.btn.primary {
    background: #ff3b3b;
    color: white;
}

.btn.primary:hover {
    transform: translateY(-3px);
}

.btn.secondary {
    border: 1px solid #444;
    color: #ddd;
}

.btn.secondary:hover {
    background: #fff;
    color: #111;
}


/* =========================
   PROFILE IMAGE
========================= */

.hero-image {
    display: flex;
    justify-content: center;
}

.profile-circle {
    width: 330px;
    height: 330px;

    border-radius: 50%;
    overflow: hidden;

    border: 5px solid #ff3b3b;
    box-shadow: 0 0 60px rgba(255, 59, 59, 0.2);

    position: relative;
    background: #151515;

    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.initial {
    position: absolute;
    font-size: 65px;
    font-weight: 700;
    color: #ff3b3b;
}

.no-photo .initial {
    display: block;
}


/* =========================
   SECTION
========================= */

.section {
    max-width: 1150px;
    margin: auto;
    padding: 110px 25px;
}

.dark-section {
    max-width: none;
    padding-left: max(25px, calc((100% - 1100px) / 2));
    padding-right: max(25px, calc((100% - 1100px) / 2));
    background: #101010;
}

.section-title {
    margin-bottom: 55px;
}

.section-title p {
    color: #ff3b3b;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
}

.section-title h2 {
    font-size: 40px;
    margin-top: 5px;
}


/* =========================
   ABOUT
========================= */

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
}

.about-card,
.info-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 15px;
    padding: 35px;
}

.about-card h3 {
    font-size: 25px;
    margin-bottom: 20px;
}

.about-card p {
    color: #aaa;
    margin-bottom: 15px;
}

.info-card {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.info-item > span {
    font-size: 25px;
}

.info-item small {
    display: block;
    color: #777;
    font-size: 12px;
}

.info-item strong {
    display: block;
    font-size: 14px;
}


/* =========================
   PROFILE SECTION
========================= */

.profile-section {
    background: linear-gradient(180deg, rgba(255, 59, 59, 0.06), rgba(255, 255, 255, 0.01));
}

.profile-showcase {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 40px;
}

.profile-photo-wrap {
    display: flex;
    justify-content: center;
}

.profile-photo-frame {
    position: relative;
    width: min(420px, 80vw);
    aspect-ratio: 1;
    padding: 18px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.profile-photo-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: #1b1b1b;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(0, 0, 0, 0.08);
}

.profile-photo-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-initial {
    position: absolute;
    font-size: clamp(60px, 9vw, 120px);
    font-weight: 800;
    color: rgba(255, 59, 59, 0.9);
    display: none;
}

.no-photo .profile-initial {
    display: block;
}

.heart {
    position: absolute;
    color: #ff4d4d;
    font-size: 28px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.heart-1 { top: 15%; left: 18%; }
.heart-2 { top: 22%; left: 34%; }
.heart-3 { top: 29%; left: 50%; }
.heart-4 { top: 37%; left: 66%; }
.heart-5 { top: 48%; left: 22%; }
.heart-6 { top: 54%; left: 62%; }

.profile-card {
    background: rgba(17, 17, 17, 0.9);
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.profile-card h3 {
    font-size: clamp(30px, 5vw, 42px);
    margin-bottom: 10px;
}

.profile-role {
    color: #ff3b3b;
    font-weight: 600;
    margin-bottom: 25px;
}

.profile-list {
    display: grid;
    gap: 12px;
}

.profile-list li {
    color: #bdbdbd;
    font-size: 15px;
}

.profile-list strong {
    color: #fff;
}


/* =========================
   SKILLS
========================= */

.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.skill-card {
    padding: 30px 25px;
    background: #171717;
    border: 1px solid #292929;
    border-radius: 15px;
    transition: 0.3s;
}

.skill-card:hover {
    transform: translateY(-7px);
    border-color: #ff3b3b;
}

.skill-icon {
    font-size: 35px;
    margin-bottom: 20px;
}

.skill-card h3 {
    margin-bottom: 10px;
}

.skill-card p {
    color: #888;
    font-size: 14px;
}


/* =========================
   TIMELINE
========================= */

.timeline {
    max-width: 850px;
    margin: auto;
    border-left: 2px solid #333;
    padding-left: 35px;
}

.timeline-item {
    position: relative;
    margin-bottom: 45px;
}

.timeline-dot {
    width: 14px;
    height: 14px;
    background: #ff3b3b;
    border-radius: 50%;

    position: absolute;
    left: -43px;
    top: 8px;
}

.timeline-content {
    background: #111;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #222;
}

.timeline-content span {
    color: #ff3b3b;
    font-size: 13px;
}

.timeline-content h3 {
    margin: 5px 0 10px;
}

.timeline-content p {
    color: #888;
    font-size: 14px;
}


/* =========================
   FUTURE
========================= */

.future-section {
    padding-bottom: 120px;
}

.future-card {
    display: flex;
    gap: 30px;
    align-items: flex-start;

    padding: 40px;
    background: #111;
    border-radius: 18px;
    border: 1px solid #222;
}

.future-icon {
    font-size: 45px;
}

.future-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.future-card p {
    color: #999;
    margin-bottom: 12px;
}


/* =========================
   CONTACT
========================= */

.contact-content {
    max-width: 700px;
}

.contact-content > p {
    color: #999;
    margin-bottom: 30px;
}

.contact-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card {
    display: flex;
    gap: 15px;
    align-items: center;

    padding: 20px;
    border: 1px solid #292929;
    border-radius: 12px;

    transition: 0.3s;
}

.contact-card:hover {
    border-color: #ff3b3b;
    transform: translateY(-3px);
}

.contact-card > span {
    font-size: 25px;
}

.contact-card small {
    display: block;
    color: #777;
    font-size: 12px;
}

.contact-card strong {
    font-size: 14px;
}


/* =========================
   FOOTER
========================= */

footer {
    padding: 25px;
    text-align: center;
    background: #050505;
    color: #666;
    font-size: 12px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .nav-links {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;

        background: #101010;

        flex-direction: column;
        align-items: center;

        padding: 25px;

        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-btn {
        display: block;
    }

    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 120px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        margin-bottom: 20px;
    }

    .profile-circle {
        width: 250px;
        height: 250px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .navbar {
        padding: 0 18px;
    }

    .hero {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero h2 {
        font-size: 18px;
    }

    .section {
        padding: 80px 18px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .contact-links {
        grid-template-columns: 1fr;
    }

    .future-card {
        padding: 25px;
        flex-direction: column;
    }

    .profile-circle {
        width: 210px;
        height: 210px;
    }

    .initial {
        font-size: 45px;
    }

}
```
