/* =========================================================
   PENUL PORTFOLIO
   BLACK + NEON PURPLE PREMIUM
========================================================= */


/* =========================================================
   ROOT
========================================================= */

:root {

    --bg: #050507;
    --bg-soft: #0a080f;
    --bg-card: #0e0b14;
    --bg-card-2: #120d19;

    --purple: #8b2cff;
    --purple-light: #b86cff;
    --purple-dark: #5d13c9;

    --neon: #a855f7;
    --violet: #7c3aed;

    --white: #ffffff;
    --text: #f5f3f7;
    --text-soft: #b8b1c3;
    --text-muted: #777080;

    --border: rgba(168, 85, 247, 0.20);
    --border-light: rgba(255, 255, 255, 0.08);

    --shadow:
        0 20px 70px rgba(0, 0, 0, 0.55);

    --purple-shadow:
        0 0 50px rgba(139, 44, 255, 0.20);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --container: 1200px;

    --transition:
        all 0.35s ease;

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: "Poppins", sans-serif;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(124, 58, 237, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(168, 85, 247, 0.07),
            transparent 30%
        ),
        var(--bg);

    color: var(--text);

    overflow-x: hidden;

    line-height: 1.7;

}


body::-webkit-scrollbar {
    width: 8px;
}


body::-webkit-scrollbar-track {
    background: #050507;
}


body::-webkit-scrollbar-thumb {

    background:
        linear-gradient(
            var(--purple),
            var(--purple-light)
        );

    border-radius: 50px;
}


::selection {

    background: var(--purple);

    color: white;

}


img {

    max-width: 100%;

    display: block;

}


a {

    text-decoration: none;

    color: inherit;

}


button,
input,
textarea,
select {

    font-family: inherit;

}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;

}


/* =========================================================
   SECTION
========================================================= */

.section {

    position: relative;

    padding: 120px 0;

}


.section-heading {

    max-width: 700px;

    margin: 0 auto 70px;

    text-align: center;

}


.section-label {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 15px;

    color: var(--purple-light);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

}


.section-label::before {

    content: "";

    width: 25px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--purple-light)
        );

}


.section-heading h2 {

    font-size: clamp(
        34px,
        5vw,
        55px
    );

    line-height: 1.15;

    font-weight: 800;

    margin-bottom: 18px;

    letter-spacing: -1.5px;

}


.section-heading h2 span {

    color: var(--purple-light);

    text-shadow:
        0 0 25px rgba(168, 85, 247, 0.35);

}


.section-heading p {

    color: var(--text-soft);

    font-size: 15px;

}


/* =========================================================
   BACKGROUND EFFECT
========================================================= */

.background-effects {

    position: fixed;

    inset: 0;

    pointer-events: none;

    z-index: -10;

    overflow: hidden;

}


.purple-orb {

    position: absolute;

    border-radius: 50%;

    filter: blur(100px);

    opacity: 0.14;

}


.orb-1 {

    width: 400px;

    height: 400px;

    background: var(--purple);

    top: -150px;

    left: -150px;

    animation: orbMove 12s ease-in-out infinite alternate;

}


.orb-2 {

    width: 350px;

    height: 350px;

    background: #6d28d9;

    right: -120px;

    top: 35%;

    animation: orbMove 15s ease-in-out infinite alternate-reverse;

}


.orb-3 {

    width: 300px;

    height: 300px;

    background: #c026d3;

    bottom: -150px;

    left: 40%;

    animation: orbMove 18s ease-in-out infinite alternate;

}


@keyframes orbMove {

    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(50px, -30px) scale(1.1);
    }

    100% {
        transform: translate(-30px, 50px) scale(0.9);
    }

}


.grid-background {

    position: absolute;

    inset: 0;

    opacity: 0.12;

    background-image:

        linear-gradient(
            rgba(168, 85, 247, 0.12) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(168, 85, 247, 0.12) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 85%
        );

}


/* =========================================================
   PRELOADER
========================================================= */

#preloader {

    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #050507;

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;

}


#preloader.loaded {

    opacity: 0;

    visibility: hidden;

}


.loader-content {

    text-align: center;

}


.loader-logo {

    width: 75px;

    height: 75px;

    margin: 0 auto 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            var(--purple),
            var(--purple-dark)
        );

    font-size: 36px;

    font-weight: 900;

    box-shadow:
        0 0 50px rgba(139, 44, 255, 0.6);

    animation:
        loaderPulse 1.5s ease-in-out infinite;

}


.loader-name {

    font-size: 22px;

    font-weight: 800;

    letter-spacing: 5px;

}


.loader-line {

    width: 180px;

    height: 3px;

    margin: 15px auto;

    overflow: hidden;

    background: rgba(255,255,255,0.08);

    border-radius: 20px;

}


.loader-line span {

    display: block;

    width: 50%;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            var(--purple),
            var(--purple-light)
        );

    animation:
        loaderLine 1.2s infinite ease-in-out;

}


.loader-content p {

    color: var(--text-muted);

    font-size: 12px;

}


@keyframes loaderPulse {

    50% {
        transform: scale(1.08);
    }

}


@keyframes loaderLine {

    0% {
        transform: translateX(-150%);
    }

    100% {
        transform: translateX(400%);
    }

}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 20px 0;

    transition: var(--transition);

}


.navbar.scrolled {

    padding: 12px 0;

    background:
        rgba(5, 5, 7, 0.82);

    backdrop-filter: blur(20px);

    border-bottom:
        1px solid var(--border);

    box-shadow:
        0 10px 40px rgba(0,0,0,0.25);

}


.nav-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.logo {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-size: 22px;

    font-weight: 900;

    letter-spacing: 1px;

}


.logo-symbol {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            var(--purple),
            var(--purple-dark)
        );

    box-shadow:
        0 0 25px rgba(139, 44, 255, 0.35);

}


.logo-text span {

    color: var(--purple-light);

}


.nav-menu {

    display: flex;

    align-items: center;

    gap: 28px;

}


.nav-link {

    position: relative;

    color: var(--text-soft);

    font-size: 13px;

    font-weight: 500;

    transition: var(--transition);

}


.nav-link::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    border-radius: 20px;

    background: var(--purple-light);

    box-shadow:
        0 0 10px var(--purple);

    transition: var(--transition);

}


.nav-link:hover,
.nav-link.active {

    color: white;

}


.nav-link:hover::after,
.nav-link.active::after {

    width: 100%;

}


.nav-actions {

    display: flex;

    align-items: center;

    gap: 15px;

}


.nav-contact {

    padding: 10px 18px;

    border: 1px solid var(--border);

    border-radius: 50px;

    font-size: 12px;

    font-weight: 600;

    color: white;

    background:
        rgba(168,85,247,0.08);

    transition: var(--transition);

}


.nav-contact:hover {

    background: var(--purple);

    border-color: var(--purple);

    box-shadow:
        0 0 25px rgba(139,44,255,0.35);

}


.menu-toggle {

    display: none;

    width: 42px;

    height: 42px;

    border: 1px solid var(--border);

    border-radius: 10px;

    background:
        rgba(168,85,247,0.08);

    cursor: pointer;

}


.menu-toggle span {

    display: block;

    width: 20px;

    height: 2px;

    margin: 4px auto;

    border-radius: 10px;

    background: white;

    transition: var(--transition);

}


/* =========================================================
   HERO
========================================================= */

.hero {

    min-height: 100vh;

    padding-top: 150px;

    display: flex;

    align-items: center;

}


.hero-container {

    display: grid;

    grid-template-columns:
        1.1fr
        0.9fr;

    align-items: center;

    gap: 80px;

}


.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 8px 14px;

    margin-bottom: 25px;

    border:
        1px solid var(--border);

    border-radius: 50px;

    background:
        rgba(168,85,247,0.06);

    color: var(--text-soft);

    font-size: 11px;

    font-weight: 600;

}


.status-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #a855f7;

    box-shadow:
        0 0 12px #a855f7;

    animation:
        statusPulse 1.5s infinite;

}


@keyframes statusPulse {

    50% {
        opacity: 0.35;
        transform: scale(0.7);
    }

}


.hero-small-text {

    color: var(--purple-light);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 5px;

}


.hero-title {

    font-family: "Poppins", sans-serif;

    font-size: clamp(
        70px,
        10vw,
        145px
    );

    line-height: 0.9;

    font-weight: 900;

    letter-spacing: -8px;

    margin-left: -7px;

}


.hero-title span {

    color: var(--purple-light);

    text-shadow:
        0 0 40px rgba(168,85,247,0.5);

}


.hero-subtitle {

    margin-top: 20px;

    font-size: clamp(
        20px,
        3vw,
        30px
    );

    font-weight: 700;

}


.typing-text {

    color: white;

}


.hero-description {

    max-width: 650px;

    margin-top: 20px;

    color: var(--text-soft);

    font-size: 15px;

}


.hero-description strong {

    color: #d8b4fe;

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 35px;

}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 50px;

    padding: 0 24px;

    border-radius: 12px;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    transition: var(--transition);

}


.btn-primary {

    color: white;

    border: 1px solid var(--purple);

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--purple-dark)
        );

    box-shadow:
        0 10px 35px rgba(139,44,255,0.25);

}


.btn-primary:hover {

    transform: translateY(-4px);

    box-shadow:
        0 15px 45px rgba(139,44,255,0.45);

}


.btn-outline {

    color: white;

    border:
        1px solid rgba(168,85,247,0.35);

    background:
        rgba(168,85,247,0.05);

}


.btn-outline:hover {

    border-color: var(--purple);

    background:
        rgba(168,85,247,0.12);

    transform: translateY(-4px);

}


.hero-social {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 35px;

}


.hero-social > span {

    margin-right: 5px;

    color: var(--text-muted);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.hero-social a {

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid var(--border);

    border-radius: 10px;

    color: var(--text-soft);

    background:
        rgba(255,255,255,0.025);

    transition: var(--transition);

}


.hero-social a:hover {

    color: white;

    border-color: var(--purple);

    background: var(--purple);

    transform: translateY(-4px);

    box-shadow:
        0 0 20px rgba(139,44,255,0.35);

}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {

    display: flex;

    justify-content: center;

}


.hero-image-wrapper {

    position: relative;

    width: min(
        440px,
        100%
    );

    aspect-ratio: 0.82;

}


.profile-image {

    position: absolute;

    inset: 25px;

    z-index: 3;

    overflow: hidden;

    border-radius: 45% 45% 25px 25px;

    border:
        1px solid rgba(168,85,247,0.5);

    background:
        linear-gradient(
            145deg,
            #170c25,
            #080509
        );

    box-shadow:
        0 0 80px rgba(139,44,255,0.18);

}


.profile-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5,5,7,0.45),
            transparent 50%
        );

    pointer-events: none;

}


.profile-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.image-glow {

    position: absolute;

    inset: 10%;

    background: var(--purple);

    filter: blur(90px);

    opacity: 0.22;

    z-index: 0;

}


.image-ring {

    position: absolute;

    border: 1px solid rgba(168,85,247,0.25);

    border-radius: 50%;

}


.ring-1 {

    width: 110%;

    height: 70%;

    top: 15%;

    left: -5%;

    transform: rotate(-25deg);

}


.ring-2 {

    width: 105%;

    height: 65%;

    top: 20%;

    left: -2%;

    transform: rotate(25deg);

}


.floating-card {

    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px;

    border:
        1px solid var(--border);

    border-radius: 14px;

    background:
        rgba(10,8,15,0.82);

    backdrop-filter: blur(15px);

    box-shadow:
        0 15px 40px rgba(0,0,0,0.4);

    animation:
        floating 4s ease-in-out infinite;

}


.floating-icon {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--purple-dark)
        );

    box-shadow:
        0 0 20px rgba(139,44,255,0.3);

}


.floating-card strong {

    display: block;

    font-size: 17px;

}


.floating-card small {

    display: block;

    color: var(--text-muted);

    font-size: 9px;

}


.card-experience {

    top: 18%;

    right: -20px;

}


.card-project {

    left: -30px;

    bottom: 18%;

    animation-delay: -2s;

}


@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}


.scroll-down {

    position: absolute;

    left: 50%;

    bottom: 25px;

    transform: translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 5px;

    color: var(--text-muted);

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 2px;

}


.scroll-down i {

    color: var(--purple-light);

    animation:
        scrollBounce 1.5s infinite;

}


@keyframes scrollBounce {

    50% {
        transform: translateY(6px);
    }

}


/* =========================================================
   ABOUT
========================================================= */

.about {

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(168,85,247,0.025),
            transparent
        );

}


.about-grid {

    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    align-items: center;

    gap: 80px;

}


.about-image {

    position: relative;

}


.about-image-box {

    position: relative;

    overflow: hidden;

    aspect-ratio: 0.85;

    border-radius: 25px;

    border:
        1px solid var(--border);

    background: var(--bg-card);

    box-shadow:
        var(--purple-shadow);

}


.about-image-box img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.about-decoration {

    position: absolute;

    width: 100px;

    height: 100px;

    right: -25px;

    bottom: -25px;

    border-right:
        2px solid var(--purple);

    border-bottom:
        2px solid var(--purple);

    border-radius: 0 0 20px 0;

}


.about-content h3 {

    max-width: 600px;

    font-size: clamp(
        26px,
        4vw,
        42px
    );

    line-height: 1.2;

    margin-bottom: 20px;

}


.about-content p {

    margin-bottom: 15px;

    color: var(--text-soft);

    font-size: 14px;

}


.about-tag {

    display: inline-block;

    margin-bottom: 15px;

    color: var(--purple-light);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.about-info {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 1px;

    margin: 30px 0;

    border:
        1px solid var(--border);

    border-radius: 15px;

    overflow: hidden;

    background: var(--border);

}


.info-item {

    padding: 15px;

    background: var(--bg-card);

}


.info-item span {

    display: block;

    color: var(--text-muted);

    font-size: 10px;

    margin-bottom: 3px;

}


.info-item strong {

    font-size: 13px;

}


.info-item .available {

    color: #c084fc;

}


/* =========================================================
   STATS
========================================================= */

.stats-section {

    padding: 25px 0 100px;

}


.stats-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border:
        1px solid var(--border);

    border-radius: 22px;

    overflow: hidden;

    background:
        rgba(168,85,247,0.025);

}


.stat-card {

    padding: 35px 20px;

    text-align: center;

    border-right:
        1px solid var(--border);

    transition: var(--transition);

}


.stat-card:last-child {

    border-right: 0;

}


.stat-card:hover {

    background:
        rgba(168,85,247,0.07);

}


.stat-icon {

    color: var(--purple-light);

    font-size: 20px;

    margin-bottom: 10px;

}


.stat-number {

    font-size: 30px;

    font-weight: 800;

}


.stat-title {

    color: var(--text-muted);

    font-size: 11px;

}


/* =========================================================
   SERVICES
========================================================= */

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

}


.service-card {

    position: relative;

    padding: 30px;

    overflow: hidden;

    border:
        1px solid var(--border-light);

    border-radius: var(--radius-md);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.035),
            rgba(168,85,247,0.025)
        );

    transition: var(--transition);

}


.service-card::before {

    content: "";

    position: absolute;

    width: 150px;

    height: 150px;

    right: -80px;

    bottom: -80px;

    border-radius: 50%;

    background: var(--purple);

    filter: blur(60px);

    opacity: 0;

    transition: var(--transition);

}


.service-card:hover {

    transform: translateY(-10px);

    border-color:
        rgba(168,85,247,0.4);

    box-shadow:
        0 20px 60px rgba(0,0,0,0.35),
        0 0 35px rgba(139,44,255,0.08);

}


.service-card:hover::before {

    opacity: 0.18;

}


.service-card.featured {

    border-color:
        rgba(168,85,247,0.45);

    background:
        linear-gradient(
            145deg,
            rgba(139,44,255,0.12),
            rgba(15,10,22,0.8)
        );

}


.featured-label {

    position: absolute;

    top: 18px;

    right: 18px;

    padding: 5px 8px;

    border-radius: 50px;

    background:
        rgba(168,85,247,0.15);

    color: var(--purple-light);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;

}


.service-number {

    color: rgba(168,85,247,0.25);

    font-size: 13px;

    font-weight: 800;

}


.service-icon {

    width: 55px;

    height: 55px;

    margin: 30px 0 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--purple-dark)
        );

    box-shadow:
        0 10px 30px rgba(139,44,255,0.25);

    font-size: 21px;

}


.service-card h3 {

    margin-bottom: 12px;

    font-size: 20px;

}


.service-card p {

    min-height: 125px;

    color: var(--text-muted);

    font-size: 12px;

}


.service-card ul {

    list-style: none;

    margin: 20px 0;

}


.service-card li {

    display: flex;

    gap: 8px;

    align-items: center;

    margin-bottom: 8px;

    color: var(--text-soft);

    font-size: 11px;

}


.service-card li i {

    color: var(--purple-light);

    font-size: 9px;

}


.service-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--purple-light);

    font-size: 11px;

    font-weight: 700;

}


.service-link i {

    transition: var(--transition);

}


.service-link:hover i {

    transform: translateX(5px);

}


/* =========================================================
   EXPERIENCE TIMELINE
========================================================= */

.timeline {

    position: relative;

    max-width: 900px;

    margin: auto;

}


.timeline::before {

    content: "";

    position: absolute;

    left: 50%;

    top: 0;

    bottom: 0;

    width: 1px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            to bottom,
            transparent,
            var(--purple),
            transparent
        );

}


.timeline-item {

    position: relative;

    display: flex;

    width: 50%;

    padding: 0 45px 70px 0;

}


.timeline-item:nth-child(even) {

    margin-left: 50%;

    padding:
        0 0 70px 45px;

}


.timeline-dot {

    position: absolute;

    top: 0;

    right: -18px;

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid var(--purple);

    border-radius: 50%;

    background: var(--bg);

    color: var(--purple-light);

    box-shadow:
        0 0 25px rgba(139,44,255,0.25);

    z-index: 2;

}


.timeline-item:nth-child(even) .timeline-dot {

    left: -18px;

    right: auto;

}


.timeline-content {

    width: 100%;

    padding: 25px;

    border:
        1px solid var(--border-light);

    border-radius: 18px;

    background:
        rgba(255,255,255,0.025);

    transition: var(--transition);

}


.timeline-content:hover {

    transform: translateY(-5px);

    border-color:
        rgba(168,85,247,0.35);

    background:
        rgba(168,85,247,0.045);

}


.timeline-date {

    display: inline-block;

    margin-bottom: 12px;

    padding: 5px 10px;

    border-radius: 50px;

    background:
        rgba(168,85,247,0.1);

    color: var(--purple-light);

    font-size: 9px;

    font-weight: 800;

}


.timeline-content h3 {

    font-size: 19px;

    margin-bottom: 2px;

}


.timeline-content h4 {

    margin-bottom: 12px;

    color: var(--purple-light);

    font-size: 11px;

    font-weight: 600;

}


.timeline-content p {

    color: var(--text-muted);

    font-size: 12px;

}


.timeline-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 18px;

}


.timeline-tags span {

    padding: 5px 9px;

    border:
        1px solid var(--border);

    border-radius: 50px;

    color: var(--text-soft);

    font-size: 8px;

}


/* =========================================================
   SKILLS
========================================================= */

.skills {

    background:
        rgba(168,85,247,0.018);

}


.skills-layout {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 80px;

    align-items: center;

}


.skills-list {

    display: flex;

    flex-direction: column;

    gap: 25px;

}


.skill-info {

    display: flex;

    justify-content: space-between;

    margin-bottom: 8px;

    font-size: 12px;

}


.skill-info strong {

    color: var(--purple-light);

}


.skill-bar {

    height: 6px;

    overflow: hidden;

    border-radius: 20px;

    background:
        rgba(255,255,255,0.06);

}


.skill-bar span {

    display: block;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            var(--purple-dark),
            var(--purple-light)
        );

    box-shadow:
        0 0 15px rgba(168,85,247,0.5);

}


.skill-cards {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;

}


.skill-box {

    aspect-ratio: 1;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border:
        1px solid var(--border-light);

    border-radius: 18px;

    background:
        rgba(255,255,255,0.025);

    color: var(--text-soft);

    transition: var(--transition);

}


.skill-box i {

    color: var(--purple-light);

    font-size: 25px;

}


.skill-box span {

    font-size: 10px;

}


.skill-box:hover {

    transform: translateY(-7px);

    border-color: var(--purple);

    color: white;

    background:
        rgba(168,85,247,0.08);

    box-shadow:
        0 15px 40px rgba(139,44,255,0.12);

}


/* =========================================================
   PORTFOLIO FILTER
========================================================= */

.portfolio-filter {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 40px;

}


.filter-btn {

    padding: 9px 18px;

    border:
        1px solid var(--border-light);

    border-radius: 50px;

    background:
        rgba(255,255,255,0.025);

    color: var(--text-muted);

    font-size: 11px;

    cursor: pointer;

    transition: var(--transition);

}


.filter-btn:hover,
.filter-btn.active {

    color: white;

    border-color: var(--purple);

    background:
        rgba(168,85,247,0.15);

}


/* =========================================================
   PORTFOLIO GRID
========================================================= */

.portfolio-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

}


.portfolio-card {

    overflow: hidden;

    border:
        1px solid var(--border-light);

    border-radius: 20px;

    background:
        var(--bg-card);

    transition: var(--transition);

}


.portfolio-card:hover {

    transform: translateY(-8px);

    border-color:
        rgba(168,85,247,0.35);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.35);

}


.portfolio-card.hide {

    display: none;

}


.portfolio-image {

    position: relative;

    aspect-ratio: 16 / 10;

    overflow: hidden;

}


.portfolio-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;

}


.portfolio-card:hover
.portfolio-image img {

    transform: scale(1.08);

}


.portfolio-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(88,28,135,0.55);

    opacity: 0;

    transition: var(--transition);

}


.portfolio-card:hover
.portfolio-overlay {

    opacity: 1;

}


.portfolio-view {

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: white;

    color: var(--purple);

    transform: scale(0.7);

    transition: var(--transition);

}


.portfolio-card:hover
.portfolio-view {

    transform: scale(1);

}


.portfolio-info {

    padding: 22px;

}


.portfolio-info > span {

    color: var(--purple-light);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


.portfolio-info h3 {

    margin: 5px 0;

    font-size: 17px;

}


.portfolio-info p {

    color: var(--text-muted);

    font-size: 11px;

}


/* =========================================================
   CTA
========================================================= */

.cta-section {

    padding: 30px 0 120px;

}


.cta-box {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 55px;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            rgba(139,44,255,0.13),
            rgba(255,255,255,0.025)
        );

}


.cta-box::before {

    content: "";

    position: absolute;

    width: 250px;

    height: 250px;

    right: -100px;

    top: -100px;

    border-radius: 50%;

    background: var(--purple);

    filter: blur(100px);

    opacity: 0.2;

}


.cta-content {

    position: relative;

    z-index: 1;

}


.cta-content h2 {

    font-size: clamp(
        30px,
        5vw,
        50px
    );

    line-height: 1.1;

    margin-bottom: 12px;

}


.cta-content h2 span {

    color: var(--purple-light);

}


.cta-content p {

    color: var(--text-soft);

    font-size: 13px;

}


/* =========================================================
   CONTACT
========================================================= */

.contact-grid {

    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 60px;

}


.contact-info {

    display: flex;

    flex-direction: column;

    gap: 15px;

}


.contact-card {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 20px;

    border:
        1px solid var(--border-light);

    border-radius: 16px;

    background:
        rgba(255,255,255,0.025);

    transition: var(--transition);

}


.contact-card:hover {

    border-color:
        rgba(168,85,247,0.35);

    transform: translateX(5px);

}


.contact-icon {

    flex-shrink: 0;

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background:
        rgba(168,85,247,0.1);

    color: var(--purple-light);

    font-size: 20px;

}


.contact-card span {

    color: var(--text-muted);

    font-size: 10px;

}


.contact-card h3 {

    font-size: 14px;

}


.contact-card a {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    margin-top: 3px;

    color: var(--purple-light);

    font-size: 10px;

}


.contact-form-wrapper {

    padding: 30px;

    border:
        1px solid var(--border-light);

    border-radius: 20px;

    background:
        rgba(255,255,255,0.025);

}


.contact-form {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;

}


.form-group {

    display: flex;

    flex-direction: column;

    gap: 7px;

}


.form-group:nth-child(3),
.form-group:nth-child(4),
.form-submit {

    grid-column: 1 / -1;

}


.form-group label {

    color: var(--text-soft);

    font-size: 11px;

    font-weight: 600;

}


.form-group input,
.form-group textarea,
.form-group select {

    width: 100%;

    padding: 13px 15px;

    border:
        1px solid var(--border-light);

    outline: none;

    border-radius: 10px;

    background:
        rgba(0,0,0,0.25);

    color: white;

    font-size: 12px;

    transition: var(--transition);

}


.form-group select option {

    background: #100b15;

    color: white;

}


.form-group input::placeholder,
.form-group textarea::placeholder {

    color: #5f5868;

}


.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    border-color: var(--purple);

    box-shadow:
        0 0 20px rgba(139,44,255,0.1);

}


.form-group textarea {

    resize: vertical;

    min-height: 130px;

}


.form-submit {

    border: 0;

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    padding: 80px 0 25px;

    border-top:
        1px solid var(--border-light);

    background:
        #030305;

}


.footer-top {

    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1fr;

    gap: 50px;

    padding-bottom: 60px;

}


.footer-brand > p {

    max-width: 300px;

    margin: 20px 0;

    color: var(--text-muted);

    font-size: 12px;

}


.footer-social {

    display: flex;

    gap: 8px;

}


.footer-social a {

    width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid var(--border-light);

    border-radius: 10px;

    color: var(--text-muted);

    transition: var(--transition);

}


.footer-social a:hover {

    color: white;

    border-color: var(--purple);

    background: var(--purple);

}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.footer-column h3 {

    margin-bottom: 10px;

    font-size: 13px;

}


.footer-column a {

    width: fit-content;

    color: var(--text-muted);

    font-size: 11px;

    transition: var(--transition);

}


.footer-column a:hover {

    color: var(--purple-light);

    transform: translateX(4px);

}


.footer-bottom {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding-top: 25px;

    border-top:
        1px solid var(--border-light);

    color: #5f5868;

    font-size: 10px;

}


.heart {

    color: var(--purple-light);

}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 45px;

    height: 45px;

    z-index: 900;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid var(--border);

    border-radius: 12px;

    background:
        rgba(10,8,15,0.85);

    backdrop-filter: blur(10px);

    color: var(--purple-light);

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

    transition: var(--transition);

}


.back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


.back-to-top:hover {

    background: var(--purple);

    color: white;

    box-shadow:
        0 0 25px rgba(139,44,255,0.35);

}


/* =========================================================
   WHATSAPP FLOAT
========================================================= */

.whatsapp-float {

    position: fixed;

    right: 25px;

    bottom: 85px;

    z-index: 899;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 11px 16px;

    border:
        1px solid rgba(168,85,247,0.3);

    border-radius: 50px;

    background:
        rgba(10,8,15,0.9);

    backdrop-filter: blur(15px);

    color: white;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.3);

    transition: var(--transition);

}


.whatsapp-float i {

    color: #c084fc;

    font-size: 20px;

}


.whatsapp-float span {

    font-size: 10px;

    font-weight: 700;

}


.whatsapp-float:hover {

    transform: translateY(-5px);

    border-color: var(--purple);

    box-shadow:
        0 0 30px rgba(139,44,255,0.3);

}


/* =========================================================
   SCROLL ANIMATION
========================================================= */

.reveal {

    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;

}


.reveal.active {

    opacity: 1;

    transform: translateY(0);

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1100px) {


    .nav-menu {

        gap: 18px;

    }


    .nav-link {

        font-size: 11px;

    }


    .services-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .hero-container {

        gap: 40px;

    }


    .hero-title {

        font-size: 90px;

    }


}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 850px) {


    .section {

        padding: 90px 0;

    }


    .navbar {

        padding: 15px 0;

    }


    .nav-contact {

        display: none;

    }


    .menu-toggle {

        display: block;

    }


    .nav-menu {

        position: absolute;

        top: calc(100% + 10px);

        left: 20px;

        right: 20px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 10px;

        border:
            1px solid var(--border);

        border-radius: 18px;

        background:
            rgba(8,6,11,0.96);

        backdrop-filter: blur(20px);

        box-shadow:
            0 20px 60px rgba(0,0,0,0.5);

        opacity: 0;

        visibility: hidden;

        transform: translateY(-10px);

        transition: var(--transition);

    }


    .nav-menu.active {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

    }


    .nav-link {

        padding: 13px;

        border-radius: 10px;

    }


    .nav-link:hover {

        background:
            rgba(168,85,247,0.08);

    }


    .nav-link::after {

        display: none;

    }


    .hero {

        padding-top: 130px;

        padding-bottom: 100px;

    }


    .hero-container {

        grid-template-columns: 1fr;

        text-align: center;

    }


    .hero-content {

        order: 1;

    }


    .hero-visual {

        order: 2;

        margin-top: 40px;

    }


    .hero-description {

        margin-inline: auto;

    }


    .hero-buttons,
    .hero-social {

        justify-content: center;

    }


    .hero-title {

        font-size:
            clamp(
                65px,
                18vw,
                100px
            );

        letter-spacing:
            -5px;

    }


    .hero-image-wrapper {

        width: min(
            380px,
            90vw
        );

    }


    .scroll-down {

        display: none;

    }


    .about-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .about-image {

        max-width: 450px;

        margin-inline: auto;

        width: 100%;

    }


    .about-content {

        text-align: center;

    }


    .about-info {

        text-align: left;

    }


    .stats-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .stat-card:nth-child(2) {

        border-right: 0;

    }


    .stat-card:nth-child(1),
    .stat-card:nth-child(2) {

        border-bottom:
            1px solid var(--border);

    }


    .services-grid {

        grid-template-columns: 1fr 1fr;

    }


    .timeline::before {

        left: 18px;

    }


    .timeline-item,
    .timeline-item:nth-child(even) {

        width: 100%;

        margin-left: 0;

        padding:
            0 0 50px 55px;

    }


    .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {

        left: 0;

        right: auto;

    }


    .skills-layout {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .portfolio-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .contact-grid {

        grid-template-columns: 1fr;

    }


    .footer-top {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .footer-brand {

        grid-column: 1 / -1;

    }

}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 560px) {


    .container {

        width:
            min(
                calc(100% - 28px),
                var(--container)
            );

    }


    .section {

        padding: 75px 0;

    }


    .section-heading {

        margin-bottom: 45px;

    }


    .section-heading h2 {

        font-size: 32px;

    }


    .logo {

        font-size: 18px;

    }


    .logo-symbol {

        width: 36px;

        height: 36px;

        border-radius: 10px;

    }


    .hero {

        padding-top: 110px;

    }


    .hero-title {

        font-size: 65px;

        letter-spacing: -4px;

    }


    .hero-subtitle {

        font-size: 20px;

    }


    .hero-description {

        font-size: 13px;

    }


    .hero-buttons {

        flex-direction: column;

    }


    .hero-buttons .btn {

        width: 100%;

    }


    .hero-social > span {

        display: none;

    }


    .hero-image-wrapper {

        width: 300px;

    }


    .card-experience {

        right: -5px;

    }


    .card-project {

        left: -5px;

    }


    .floating-card {

        transform: scale(0.85);

    }


    .stats-grid {

        grid-template-columns: 1fr;

    }


    .stat-card,
    .stat-card:nth-child(2) {

        border-right: 0;

        border-bottom:
            1px solid var(--border);

    }


    .stat-card:last-child {

        border-bottom: 0;

    }


    .services-grid {

        grid-template-columns: 1fr;

    }


    .service-card p {

        min-height: auto;

    }


    .portfolio-grid {

        grid-template-columns: 1fr;

    }


    .portfolio-filter {

        gap: 7px;

    }


    .filter-btn {

        padding:
            8px 13px;

    }


    .cta-box {

        flex-direction: column;

        align-items: flex-start;

        padding: 30px;

    }


    .contact-form-wrapper {

        padding: 20px;

    }


    .contact-form {

        grid-template-columns: 1fr;

    }


    .form-group:nth-child(3),
    .form-group:nth-child(4),
    .form-submit {

        grid-column: auto;

    }


    .footer-top {

        grid-template-columns: 1fr 1fr;

        gap: 35px 20px;

    }


    .footer-brand {

        grid-column: 1 / -1;

    }


    .footer-bottom {

        flex-direction: column;

        text-align: center;

    }


    .whatsapp-float {

        right: 15px;

        bottom: 80px;

        width: 48px;

        height: 48px;

        padding: 0;

        justify-content: center;

    }


    .whatsapp-float span {

        display: none;

    }


    .back-to-top {

        right: 15px;

        bottom: 20px;

    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {


    .hero-title {

        font-size: 55px;

    }


    .hero-image-wrapper {

        width: 270px;

    }


    .floating-card {

        padding: 9px;

    }


    .floating-icon {

        width: 32px;

        height: 32px;

        font-size: 13px;

    }


    .floating-card strong {

        font-size: 13px;

    }


    .floating-card small {

        font-size: 8px;

    }


    .card-experience {

        right: -10px;

    }


    .card-project {

        left: -10px;

    }


}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;

    }

}