/* FolioOne Design System - Deep Blue Theme */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette - Deep Gunmetal / Space Blue */
    --bg-body: #0b0c10;
    /* Very Dark Blue/Black */
    --bg-surface: #111827;
    /* Dark Blue Gray (Cards/Sections) */
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    /* Slate 400 */
    --accent: #38bdf8;
    /* Sky Blue / Cyan */
    --accent-hover: #0ea5e9;

    --border-color: #1f2937;

    /* Spacing */
    --header-height: 80px;
}

body {
    background-color: var(--bg-body);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent);
}

/* --- Navigation --- */
.navbar {
    background-color: rgba(11, 12, 16, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    margin-left: 20px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--accent);
    bottom: 5px;
    left: 0;
}

/* --- Hero Section (Home) --- */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.hero-img-container {
    position: relative;
}

.hero-img {
    border-radius: 30px;
    width: 100%;
    max-width: 500px;
    opacity: 0.9;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(5px);
    padding: 15px 25px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.badge-design {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.badge-code {
    bottom: 20%;
    left: -30px;
    animation-delay: 2s;
}

.badge-ideas {
    bottom: 10%;
    right: 10px;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* --- Section Titles --- */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.section-title p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Cards (Services/Portfolio) --- */
.folio-card {
    background: var(--bg-surface);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy */
    border: 1px solid var(--border-color);
    height: 100%;
}

.folio-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    background: #1e293b;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 25px;
}

/* --- Resume Timeline --- */
.resume-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-primary);
    padding-left: 20px;
    border-left: 3px solid var(--accent);
}

.resume-item {
    padding: 0 0 20px 20px;
    margin-top: -2px;
    border-left: 2px solid var(--border-color);
    position: relative;
}

.resume-item h4 {
    line-height: 18px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: var(--accent);
    margin-bottom: 10px;
}

.resume-item h5 {
    font-size: 16px;
    background: var(--bg-surface);
    padding: 5px 15px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
}

.resume-item::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50px;
    left: -9px;
    top: 0;
    background: var(--bg-body);
    border: 2px solid var(--accent);
}

/* --- Skills Progress --- */
.progress-wrap {
    margin-bottom: 20px;
}

.progress {
    height: 10px;
    background: var(--bg-surface);
    border-radius: 0;
}

.progress-bar {
    background-color: var(--accent);
}

/* --- Stats Counter --- */
.stats-counter {
    text-align: center;
}

.stats-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stats-text {
    color: var(--text-secondary);
}

/* --- Footer --- */
footer {
    background: var(--bg-surface);
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    line-height: 40px;
    margin: 0 5px;
}

.social-links a:hover {
    background: var(--accent);
    color: #fff;
}