/*
╔════════════════════════════════════════════════════════════════════════════════╗
║                                                                                ║
║     ██████╗ ██╗   ██╗    ██████╗ ███████╗ █████╗ ██╗  ██╗██╗    ██╗ █████╗ ███╗   ██╗ ║
║     ██╔══██╗╚██╗ ██╔╝    ██╔══██╗╚══███╔╝██╔══██╗██║ ██╔╝██║    ██║██╔══██╗████╗  ██║ ║
║     ██████╔╝ ╚████╔╝     ██║  ██║  ███╔╝ ███████║█████╔╝ ██║ █╗ ██║███████║██╔██╗ ██║ ║
║     ██╔══██╗  ╚██╔╝      ██║  ██║ ███╔╝  ██╔══██║██╔═██╗ ██║███╗██║██╔══██║██║╚██╗██║ ║
║     ██████╔╝   ██║       ██████╔╝███████╗██║  ██║██║  ██╗╚███╔███╔╝██║  ██║██║ ╚████║ ║
║     ╚═════╝    ╚═╝       ╚═════╝ ╚══════╝╚═╝  ╚═╝╚═╝  ╚═╝ ╚══╝╚══╝ ╚═╝  ╚═╝╚═╝  ╚═══╝ ║
║                                                                                ║
║                  ██╗ ██████╗ ██████╗  █████╗ ██╗                                ║
║                  ██║██╔═══██╗██╔══██╗██╔══██╗██║                                ║
║                  ██║██║   ██║██████╔╝███████║██║                                ║
║                  ██║██║▄▄ ██║██╔══██╗██╔══██║██║                                ║
║                  ██║╚██████╔╝██████╔╝██║  ██║███████╗                           ║
║                  ╚═╝ ╚══▀▀═╝ ╚═════╝ ╚═╝  ╚═╝╚══════╝                           ║
║                                                                                ║
║            ██████╗  █████╗ ███████╗██╗   ██╗███████╗██╗   ██╗ █████╗ ██████╗    ║
║            ██╔══██╗██╔══██╗██╔════╝╚██╗ ██╔╝██╔════╝╚██╗ ██╔╝██╔══██╗██╔══██╗   ║
║            ██████╔╝███████║███████╗ ╚████╔╝ ███████╗ ╚████╔╝ ███████║██████╔╝   ║
║            ██╔══██╗██╔══██║╚════██║  ╚██╔╝  ╚════██║  ╚██╔╝  ██╔══██║██╔══██╗   ║
║            ██████╔╝██║  ██║███████║   ██║   ███████║   ██║   ██║  ██║██║  ██║   ║
║            ╚═════╝ ╚═╝  ╚═╝╚══════╝   ╚═╝   ╚══════╝   ╚═╝   ╚═╝  ╚═╝╚═╝  ╚═╝   ║
║                                                                                ║
╠════════════════════════════════════════════════════════════════════════════════╣
║                                                                                ║
║   🎨 STYLESHEET - PORTFOLIO WEBSITE                                            ║
║   👤 CREATED BY: DZAKWAN IQBAL BASYSYAR                                        ║
║   📅 YEAR: 2026                                                                ║
║   🏢 COMPANIES: MINESIVE | SIVELABS                                            ║
║                                                                                ║
║   ⚠️  ALL RIGHTS RESERVED - BY DZAKWAN IQBAL BASYSYAR                          ║
║   ⚠️  DO NOT COPY OR REDISTRIBUTE WITHOUT PERMISSION                           ║
║                                                                                ║
╚════════════════════════════════════════════════════════════════════════════════╝
*/

/* ==========================================
   BY DZAKWAN IQBAL BASYSYAR
   OWNER OF MINESIVE | FOUNDER OF SIVELABS
   ========================================== */

/* ==========================================
   PORTFOLIO WEBSITE - DZAKWAN IQBAL BASYSYAR
   Modern, Premium Dark Theme Design
   ========================================== */

/* CSS Variables - FROST THEME */
:root {
    /* Frost Theme Colors */
    --frost-dark: #000428;
    --frost-light: #004e92;
    --frost-accent: #00c6ff;

    --primary: #004e92;
    --primary-light: #0066cc;
    --primary-dark: #000428;
    --secondary: #00c6ff;
    --accent: #00d4ff;
    --accent-2: #0077b6;

    --bg-dark: #000428;
    --bg-card: #001233;
    --bg-card-hover: #001845;
    --bg-glass: rgba(0, 18, 51, 0.85);

    --text-primary: #ffffff;
    --text-secondary: #a8dadc;
    --text-muted: #7ec8e3;

    --border: rgba(0, 198, 255, 0.15);
    --border-light: rgba(0, 198, 255, 0.3);

    /* Frost Gradients */
    --gradient-primary: linear-gradient(135deg, #000428 0%, #004e92 100%);
    --gradient-secondary: linear-gradient(135deg, #004e92 0%, #00c6ff 100%);
    --gradient-frost: linear-gradient(135deg, #000428 0%, #004e92 50%, #00c6ff 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(0, 78, 146, 0.4) 0%, transparent 70%);

    --shadow-sm: 0 2px 8px rgba(0, 4, 40, 0.4);
    --shadow-md: 0 4px 20px rgba(0, 4, 40, 0.5);
    --shadow-lg: 0 8px 40px rgba(0, 4, 40, 0.6);
    --shadow-glow: 0 0 40px rgba(0, 78, 146, 0.4);
    --shadow-frost: 0 0 30px rgba(0, 198, 255, 0.3);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Selection */
::selection {
    background: var(--primary);
    color: white;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-circle {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

.loader-text {
    color: var(--text-secondary);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Custom Cursor */
.cursor,
.cursor-follower {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    display: none;
}

@media (min-width: 1024px) and (hover: hover) {

    .cursor,
    .cursor-follower {
        display: block;
    }

    .cursor {
        width: 8px;
        height: 8px;
        background: var(--primary);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: transform 0.1s ease;
    }

    .cursor-follower {
        width: 40px;
        height: 40px;
        border: 1px solid var(--primary);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: transform 0.15s ease, opacity 0.15s ease;
        opacity: 0.5;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-accent {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-normal);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 100%;
    background: var(--gradient-glow);
    filter: blur(80px);
    opacity: 0.6;
}

.hero-particles {
    position: absolute;
    inset: 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-xl);
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-text {
    color: var(--text-secondary);
    font-size: 0.7em;
    font-weight: 500;
}

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    min-height: 30px;
}

.typing-cursor {
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    color: var(--text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    width: 380px;
    height: 480px;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.image-glow {
    position: absolute;
    inset: -5px;
    background: var(--gradient-primary);
    filter: blur(25px);
    opacity: 0.5;
    z-index: -1;
}

.image-border {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
        var(--gradient-primary) border-box;
    z-index: 2;
    pointer-events: none;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    position: relative;
    z-index: 3;
}

.floating-badges {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 500;
    animation: float 3s ease-in-out infinite;
    pointer-events: auto;
}

.badge i {
    color: var(--primary);
}

.badge-1 {
    top: 5%;
    right: -10%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 25%;
    left: -15%;
    animation-delay: 1s;
}

.badge-3 {
    bottom: 5%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--border-light);
    border-radius: 13px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-animation 2s ease-in-out infinite;
}

@keyframes scroll-animation {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0;
    }
}

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeLeft 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-xl);
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
}

/* About Section */
.about {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-intro h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 16px;
}

.about-intro p {
    color: var(--text-secondary);
    font-size: 17px;
    margin-bottom: 24px;
}

.about-intro strong {
    color: var(--text-primary);
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.about-details p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.about-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.info-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.info-item i {
    font-size: 20px;
    color: var(--primary);
}

.info-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    font-weight: 600;
    color: var(--text-primary);
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.role-card {
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.role-card:hover {
    border-color: var(--primary);
    transform: translateX(10px);
    box-shadow: var(--shadow-glow);
}

.role-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.role-icon i {
    font-size: 22px;
    color: white;
}

.role-card h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 8px;
}

.role-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Ventures Section */
.ventures {
    background: var(--bg-dark);
    position: relative;
}

.ventures::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: var(--gradient-glow);
    filter: blur(100px);
    opacity: 0.3;
    pointer-events: none;
}

.ventures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.venture-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

.venture-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.venture-card.featured {
    border-color: rgba(99, 102, 241, 0.4);
}

.venture-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.venture-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    overflow: hidden;
}

.venture-pattern {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(45deg, transparent 40%, rgba(99, 102, 241, 0.1) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(99, 102, 241, 0.1) 50%, transparent 60%);
    background-size: 30px 30px;
}

.venture-content {
    position: relative;
    padding: 30px;
}

.venture-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.venture-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 24px;
}

.minesive-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.sivelabs-icon {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
}

.investment-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.venture-badge {
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-xl);
    color: var(--primary-light);
    font-size: 12px;
    font-weight: 500;
}

.venture-title {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 12px;
}

.venture-description {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.venture-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.venture-features span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-secondary);
}

.venture-features i {
    color: var(--secondary);
    font-size: 11px;
}

.venture-footer {
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.venture-role {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
}

.venture-role i {
    color: #f59e0b;
}

/* Skills Section */
.skills {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}

.skills-content {
    display: grid;
    gap: 50px;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.category-title i {
    color: var(--primary);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.skill-item {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-normal);
}

.skill-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.skill-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border-radius: var(--radius-md);
    font-size: 28px;
}

.html-icon {
    background: rgba(227, 79, 38, 0.2);
    color: #e34f26;
}

.css-icon {
    background: rgba(21, 114, 182, 0.2);
    color: #1572b6;
}

.js-icon {
    background: rgba(247, 223, 30, 0.2);
    color: #f7df1e;
}

.php-icon {
    background: rgba(119, 123, 180, 0.2);
    color: #777bb4;
}

.python-icon {
    background: rgba(55, 118, 171, 0.2);
    color: #3776ab;
}

.cpp-icon {
    background: rgba(0, 89, 156, 0.2);
    color: #00599c;
}

.lua-icon {
    background: rgba(0, 0, 128, 0.2);
    color: #000080;
}

.skill-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.skill-level {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.skill-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    width: 0;
    transition: width 1.5s ease-out;
}

.other-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition-normal);
}

.skill-tag:hover {
    border-color: var(--primary);
    color: var(--text-primary);
    transform: translateY(-3px);
}

.skill-tag i {
    color: var(--primary);
}

/* Journey Section */
.journey {
    background: var(--bg-dark);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--accent-2));
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-marker {
    position: absolute;
    left: -60px;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.timeline-marker i {
    color: var(--primary);
    font-size: 18px;
}

.timeline-content {
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.timeline-content:hover {
    border-color: var(--primary);
    transform: translateX(10px);
}

.timeline-date {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 12px;
}

.timeline-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-badge.upcoming {
    background: rgba(34, 211, 238, 0.2);
    color: var(--secondary);
}

.timeline-badge.achievement {
    background: rgba(244, 114, 182, 0.2);
    color: var(--accent);
}

.timeline-badge.business {
    background: rgba(139, 92, 246, 0.2);
    color: var(--accent-2);
}

.timeline-badge.investment {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.timeline-badge.milestone {
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary);
}

.timeline-badge.beginning {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 16px;
}

.contact-info>p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 16px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.contact-method:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.method-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
}

.method-icon i {
    font-size: 20px;
    color: white;
}

.method-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.method-value {
    font-weight: 600;
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 20px;
    transition: var(--transition-normal);
}

.social-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.contact-form-container {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 15px;
    transition: var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

.footer-content {
    text-align: center;
}

.footer-brand {
    margin-bottom: 24px;
}

.footer-brand .logo-text {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .image-wrapper {
        width: 300px;
        height: 380px;
    }

    .badge-1 {
        right: -5%;
        top: 5%;
    }

    .badge-2 {
        left: -5%;
    }

    .badge-3 {
        right: 0%;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .role-card {
        flex: 1;
        min-width: 200px;
    }

    .ventures-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--bg-card);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: var(--transition-normal);
        border-left: 1px solid var(--border);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .stat-item {
        text-align: center;
    }

    .about-info-grid {
        grid-template-columns: 1fr;
    }

    .timeline {
        padding-left: 40px;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-marker {
        left: -40px;
        width: 40px;
        height: 40px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .image-wrapper {
        width: 260px;
        height: 340px;
    }

    .floating-badges {
        display: none;
    }

    .role-card {
        min-width: 100%;
    }

    .skills-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-form-container {
        padding: 24px;
    }
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}