/* ========================================
   Modern Dark Theme - Mavi, Siyah, Beyaz
   ======================================== */

:root {
    /* Ana Renkler - Mavi Tonları */
    --primary-blue: #0EA5E9;
    --primary-blue-dark: #0284C7;
    --primary-blue-light: #38BDF8;
    --accent-blue: #60A5FA;
    
    /* Siyah Tonları */
    --bg-dark: #0A0E27;
    --bg-darker: #060816;
    --bg-card: #0F1629;
    --bg-card-hover: #1A2038;
    
    /* Beyaz Tonları */
    --text-white: #FFFFFF;
    --text-gray: #B0C4DE;
    --text-gray-dark: #9FB3C8;
    
    /* Gradient'ler */
    --gradient-primary: linear-gradient(135deg, #0EA5E9 0%, #3B82F6 100%);
    --gradient-accent: linear-gradient(135deg, #60A5FA 0%, #818CF8 100%);
    --gradient-dark: linear-gradient(180deg, #0A0E27 0%, #060816 100%);
    
    /* Efektler */
    --glow-blue: 0 0 20px rgba(14, 165, 233, 0.3);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 25px 60px rgba(0, 0, 0, 0.7);
    
    /* Diğer */
    --border-color: rgba(148, 163, 184, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   Global Styles
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--primary-blue);
    color: var(--text-white);
}

/* ========================================
   Loading Screen
   ======================================== */

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
}

.loading-logo img {
    width: 120px;
    height: auto;
    filter: drop-shadow(var(--glow-blue));
}

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    transform: scale(1);
    }
    50% {
        opacity: 0.7;
    transform: scale(1.05);
}
}

.loading-progress {
        margin-top: 2rem;
    width: 300px;
}

.loading-bar {
    height: 4px;
    background: rgba(148, 163, 184, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-value {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.loading-text {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ========================================
   Navbar - Modern & Sleek
   ======================================== */

.navbar {
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    transition: var(--transition);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.95);
    box-shadow: var(--shadow-lg);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.main-logo {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.main-logo:hover {
    transform: scale(1.05);
}

.navbar-collapse {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 2rem;
}

.nav-wrapper {
    flex: 1;
    display: flex;
        justify-content: center;
    }

/* Navigation Links */
.navbar-nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    position: relative;
    color: var(--text-gray);
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    display: block;
}

.nav-link:hover {
    color: var(--text-white);
    background: rgba(14, 165, 233, 0.1);
}

.nav-link.active {
    color: var(--text-white);
    background: var(--gradient-primary);
    box-shadow: var(--glow-blue);
}

.nav-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-link:hover .nav-indicator {
    width: 70%;
}

/* Right Actions Container */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* Language Switcher - Geliştirilmiş */
.language-switcher {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-white);
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover {
    background: rgba(14, 165, 233, 0.2);
    border-color: var(--primary-blue);
}

.lang-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    min-width: 200px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
}

.language-switcher.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-gray);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
}

/* Flag Icons */
.flag-icon {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.current-lang {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn:hover .flag-icon,
.lang-option:hover .flag-icon {
    border-color: var(--primary-blue);
    transform: scale(1.1);
}

.lang-option:hover {
    background: rgba(14, 165, 233, 0.1);
    color: var(--text-white);
}

/* Contact Button */
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--glow-blue);
    margin-left: 1rem;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4);
    color: var(--text-white);
}

.contact-btn i {
    transition: transform 0.3s ease;
}

.contact-btn:hover i {
    transform: translateX(5px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 25px;
    height: 20px;
    position: relative;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2.5px;
    width: 100%;
    background: var(--text-white);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

.hamburger span:nth-child(3) {
    top: 18px;
}

.menu-toggle.active .hamburger span {
    background: var(--text-white);
}

.menu-toggle.active .hamburger span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
}

.menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.menu-toggle.active .hamburger span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
}

/* ========================================
   Hero Section - Ultra Modern Split Design
   ======================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-darker);
    overflow: hidden;
    padding: 100px 0 0;
}

/* Animated Background */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

/* Gradient Orbs - Animated Background Elements */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float-orb 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #0EA5E9 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #60A5FA 0%, transparent 70%);
    bottom: 10%;
    right: 10%;
    animation-delay: 7s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #818CF8 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation-delay: 14s;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Hero Container - Diagonal Split */
.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 100px);
}

/* Hero Left - Content Area */
.hero-left {
    position: relative;
    z-index: 2;
}

.hero-content-wrapper {
    max-width: 600px;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #10B981;
    border-radius: 50%;
    position: relative;
    animation: pulse-dot 2s infinite;
}

.status-dot::before {
    content: '';
    position: absolute;
        width: 100%;
    height: 100%;
    background: #10B981;
    border-radius: 50%;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.status-text {
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Hero Main Title */
.hero-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hello-text {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.name-text {
    display: block;
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #0EA5E9 0%, #60A5FA 50%, #818CF8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    background-size: 200% auto;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

/* Animated Role Text */
.hero-role {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    height: 50px;
}

.role-static {
    color: var(--text-gray);
}

.role-dynamic {
    position: relative;
    height: 50px;
    overflow: hidden;
}

.role-item {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--primary-blue);
    opacity: 0;
    transform: translateY(100%);
    animation: role-slide 9s infinite;
}

.role-item:nth-child(1) {
    animation-delay: 0s;
}

.role-item:nth-child(2) {
    animation-delay: 3s;
}

.role-item:nth-child(3) {
    animation-delay: 6s;
}

@keyframes role-slide {
    0%, 33.33% {
        opacity: 1;
        transform: translateY(0);
    }
    38.33%, 100% {
        opacity: 0;
        transform: translateY(-100%);
    }
}

/* Hero Description */
.hero-description {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.4);
    color: var(--text-white);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(14, 165, 233, 0.3);
}

.btn-secondary:hover {
    background: rgba(14, 165, 233, 0.1);
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    color: var(--text-white);
}

/* Hero Social Links */
.hero-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: var(--glow-blue);
}

/* Hero Right - Visual Area */
.hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
}

/* Profile Showcase */
.profile-showcase {
    position: relative;
}

.profile-frame {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    border: 3px solid rgba(14, 165, 233, 0.3);
    background: var(--gradient-primary);
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

/* Floating Elements Around Profile */
.floating-element {
    position: absolute;
        width: 60px;
        height: 60px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4);
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    left: -30px;
    animation-delay: 0s;
}

.element-2 {
    top: 50%;
    right: -30px;
    animation-delay: 2s;
}

.element-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Stats Cards */
.hero-stats {
    position: absolute;
    bottom: -30px;
    right: -30px;
    display: flex;
    gap: 1rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Hero Visual - Geliştirilmiş 3D Tasarım */
.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-container {
    position: relative;
        width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
}

/* Profile Card - Ultra Modern */
.profile-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: visible;
}

.profile-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    border: 3px solid rgba(14, 165, 233, 0.3);
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.profile-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 32px;
    padding: 3px;
    background: linear-gradient(135deg, #0EA5E9, #60A5FA, #818CF8);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-card:hover .profile-image-wrapper::before {
        opacity: 1;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.profile-card:hover .profile-image {
    transform: scale(1.05);
}

/* Floating Elements - Dekoratif */
.image-effects {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.effect-layer-1,
.effect-layer-2 {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 6s ease-in-out infinite;
}

.effect-layer-1 {
    background: rgba(14, 165, 233, 0.3);
    top: -50px;
    left: -50px;
}

.effect-layer-2 {
    background: rgba(96, 165, 250, 0.3);
    bottom: -50px;
    right: -50px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, -30px);
    }
}

/* Experience Badge - Modern */
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-primary);
    padding: 20px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    transform: rotate(-5deg);
    transition: var(--transition);
}

.experience-badge:hover {
    transform: rotate(0deg) translateY(-5px);
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.exp-text {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ========================================
   About Section - New Modern Design
   ======================================== */

.about-section {
    padding: 100px 0;
    background: var(--bg-darker);
    position: relative;
}

/* About Header */
.about-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-white) 0%, #B0C4DE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    font-size: 1.15rem;
    color: #B0C4DE;
    line-height: 1.8;
}

/* About Content Grid */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2rem;
}

/* Skill Cards */
.skills-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skill-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition);
}

.skill-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

.skill-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--text-white);
}

.skill-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.skill-content p {
    font-size: 1rem;
    color: #B0C4DE;
    line-height: 1.6;
    margin: 0;
}

/* About Profile Card */
.about-stats-container {
    position: relative;
}

.about-profile-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

.about-profile-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-profile-card:hover .about-profile-img {
    transform: scale(1.05);
}

.profile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 14, 39, 0.95), transparent);
    padding: 2rem;
}

.profile-badge {
    display: inline-flex;
    flex-direction: column;
    padding: 1rem 1.5rem;
    background: var(--gradient-primary);
    border-radius: 12px;
}

.badge-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.badge-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.25rem;
}

/* About Stats Grid */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about-stat-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition);
}

.about-stat-box:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-blue);
    transform: translateY(-3px);
}

.about-stat-box .stat-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.stat-info {
    flex: 1;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #B0C4DE;
    margin: 0;
}

/* Responsive About */
@media (max-width: 991px) {
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 576px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Career Section
   ======================================== */

.career-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.section-header {
    margin-bottom: 4rem;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-blue), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-blue);
    z-index: 2;
}

.timeline-badge.education {
    background: linear-gradient(135deg, #10B981, #059669);
}

.timeline-badge i {
    color: var(--text-white);
    font-size: 1.5rem;
}

.timeline-content {
    width: calc(50% - 50px);
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

.timeline-content.education-content {
    border-color: rgba(16, 185, 129, 0.3);
}

.timeline-content h4 {
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-date {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.8;
}

.tech-stack {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.tech-stack span {
    padding: 0.5rem 1rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-blue-light);
}

/* ========================================
   Services Section
   ======================================== */

.services-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.services-subtitle {
    color: var(--text-white) !important;
    opacity: 0.9;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-blue);
    transform: translateY(-10px);
    box-shadow: var(--glow-blue);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--text-white);
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-gray);
}

.service-features i {
    color: var(--primary-blue);
}

/* ========================================
   Portfolio Section
   ======================================== */

.portfolio-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 20px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

/* Portfolio Grid - Simple Card Layout */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2);
}

/* Project Image */
.project-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--bg-darker);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 39, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
}

.project-link:hover {
    transform: scale(1.1) rotate(45deg);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4);
}

/* Project Info */
.project-info {
    padding: 2rem;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.project-tag {
    padding: 0.4rem 1rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 1rem 0;
}

.project-description {
    font-size: 1rem;
    color: #B0C4DE;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.project-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
    color: var(--text-white);
}

.project-btn i {
    transition: transform 0.3s ease;
}

.project-btn:hover i {
    transform: translateX(5px);
}

/* Body Overflow Control */
body.menu-open {
    overflow: hidden;
}

/* Responsive Portfolio */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Contact Section
   ======================================== */

.contact-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.contact-subtitle {
    color: var(--text-white) !important;
    opacity: 0.9;
}

.portfolio-subtitle {
    color: var(--text-white) !important;
    opacity: 0.9;
}

.main-contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.contact-info-wrapper {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.quick-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.contact-card {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--text-white);
}

.contact-card.instagram-card .card-icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.card-content h4 {
    color: var(--text-white);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-link:hover {
    gap: 1rem;
    color: var(--primary-blue-light);
}

.social-presence {
    text-align: center;
    padding: 2rem 0;
}

.social-presence h4 {
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.social-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

.social-item.linkedin:hover {
    border-color: #0077b5;
}

.social-item.github:hover {
    border-color: #2b3137;
}

.social-item.discord:hover {
    border-color: #5865F2;
}

.social-item i {
    font-size: 2rem;
}

.availability-status {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
}

.status-indicator .status-dot {
    background: #10B981;
}

.status-text {
    color: var(--text-gray);
    font-weight: 600;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
}

.footer-about p {
    color: var(--text-gray);
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--text-white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.footer-contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-contact-info i {
    color: var(--primary-blue);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.contact-details .label {
    display: block;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.contact-details a {
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-blue);
}

.availability-status .status-dot {
    background: #10B981;
}

.footer hr {
    border-color: var(--border-color);
    opacity: 0.3;
}

.footer .text-center p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ========================================
   Scroll to Top Button
   ======================================== */

.scroll-to-top {
        position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    color: var(--text-white);
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--glow-blue);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 991px) {
    /* Hero Responsive */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
        min-height: auto;
    }

    .hero-left {
        order: 1;
        text-align: center;
    }

    .hero-content-wrapper {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-main-title {
        font-size: 2.25rem;
    }

    .name-text {
        font-size: 2.5rem;
    }

    .hero-role {
        font-size: 1.25rem;
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .hero-right {
        order: 2;
    }

    .hero-visual-wrapper {
        max-width: 100%;
        display: flex;
        justify-content: center;
    }

    .profile-showcase {
        max-width: 400px;
        width: 100%;
    }

    .profile-frame {
        width: 100%;
        max-width: 320px;
        height: auto;
        aspect-ratio: 1;
        margin: 0 auto;
    }

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

    .floating-element {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    .hero-stats {
        position: static;
        transform: none;
        margin-top: 2rem;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .stat-card {
        min-width: 140px;
    }

    /* Timeline Responsive */
    .timeline::before {
        left: 30px;
    }

    .timeline-badge {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
    }

    .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 100px);
        margin-left: 100px;
    }
}

@media (max-width: 768px) {
    /* Navbar Mobile */
    .navbar {
        padding: 1rem 0;
    }

    .navbar .container {
        position: relative;
        z-index: 1001;
    }

    .menu-toggle {
        display: flex;
        z-index: 1002;
        position: relative;
    }

    .navbar-brand {
        z-index: 1002;
        position: relative;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #0A0E27 0%, #0F1432 100%);
        padding: 100px 2rem 2rem;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    .nav-wrapper {
        width: 100%;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }

    .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link {
        padding: 1.5rem 1.5rem;
        border-radius: 0;
        width: 100%;
        text-align: left;
        font-size: 1.125rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9);
        transition: all 0.3s ease;
        display: block;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(14, 165, 233, 0.15);
        color: var(--primary-blue);
        padding-left: 2rem;
    }

    .nav-indicator {
        display: none;
    }

    .navbar-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 1.25rem;
        padding-top: 2rem;
        margin-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .language-switcher {
        width: 100%;
        order: 1;
    }

    .language-selector {
        width: 100%;
        background: rgba(14, 165, 233, 0.15);
        border: 1px solid rgba(14, 165, 233, 0.3);
        padding: 0.5rem;
        border-radius: 12px;
    }

    .lang-btn {
        flex: 1;
        padding: 0.875rem;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.8);
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .lang-btn.active {
        background: var(--primary-blue);
        color: white;
        box-shadow: 0 2px 10px rgba(14, 165, 233, 0.4);
    }

    .contact-btn {
        width: 100%;
        padding: 1.125rem 1.5rem;
        background: var(--gradient-primary);
        border: none;
        font-size: 1.0625rem;
        font-weight: 600;
        justify-content: center;
        box-shadow: 0 4px 20px rgba(14, 165, 233, 0.5);
        order: 2;
        border-radius: 12px;
    }

    .contact-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 30px rgba(14, 165, 233, 0.7);
    }

    /* Hero Mobile */
    .hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-container {
        padding: 0 1rem;
        gap: 2rem;
    }

    .hero-main-title {
        font-size: 1.75rem;
    }

    .hello-text {
        font-size: 1rem;
    }

    .name-text {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-role {
        font-size: 1.125rem;
        height: 35px;
        margin: 1rem 0;
    }

    .role-dynamic {
        height: 35px;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 1rem;
    }

    .hero-cta {
        gap: 0.75rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .profile-showcase {
        max-width: 100%;
    }

    .profile-frame {
        width: 100%;
        max-width: 280px;
        height: auto;
        aspect-ratio: 1;
    }

    .floating-element {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .element-1 {
        top: 10%;
        right: -5px;
    }

    .element-2 {
        bottom: 15%;
        left: -5px;
    }

    .element-3 {
        top: 50%;
        right: -10px;
    }

    .hero-stats {
        flex-direction: row;
        gap: 0.75rem;
        margin-top: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-card {
        padding: 0.875rem 1.25rem;
        min-width: 130px;
        flex: 1;
        max-width: 160px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .scroll-indicator {
        display: none;
    }

    /* General Mobile */
    h2.display-4 {
        font-size: 1.875rem;
    }

    .stats-row {
        gap: 1.5rem;
    }

    .service-card {
        margin-bottom: 1.5rem;
    }

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

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

@media (max-width: 576px) {
    /* Navbar Extra Small */
    .navbar {
        padding: 0.75rem 0;
    }

    .main-logo {
        height: 50px;
    }

    .navbar-collapse {
        padding: 90px 1.5rem 1.5rem;
    }

    .nav-link {
        padding: 1.25rem 1.25rem;
        font-size: 1rem;
    }

    .nav-link:hover,
    .nav-link.active {
        padding-left: 1.75rem;
    }

    .contact-btn {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }

    .navbar-actions {
        gap: 1rem;
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }

    .lang-btn {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    /* Hero Extra Small */
    .hero-section {
        padding: 90px 0 50px;
    }

    .hero-container {
        padding: 0 0.75rem;
    }

    .hero-main-title {
        font-size: 1.5rem;
    }

    .name-text {
        font-size: 1.75rem;
    }

    .hero-role {
        font-size: 1rem;
        height: 30px;
    }

    .role-dynamic {
        height: 30px;
    }

    .hero-description {
        font-size: 0.875rem;
        padding: 0;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
        flex: 1;
        min-width: 140px;
    }

    .hero-cta {
        width: 100%;
    }

    .profile-frame {
        max-width: 240px;
    }

    .floating-element {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero-stats {
        gap: 0.5rem;
    }

    .stat-card {
        padding: 0.75rem 1rem;
        min-width: 110px;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .hero-social {
        gap: 0.75rem;
    }

    .social-link {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    /* General Extra Small */
    .hero-title {
        font-size: 1.75rem;
    }

    .filter-container {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .main-contact-card {
        padding: 1.5rem 1rem;
    }

    h2.display-4 {
        font-size: 1.625rem;
    }
}

/* ========================================
   Animations
   ======================================== */

@keyframes fadeIn {
    from {
    opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
}
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Reveal Animations */
[data-aos] {
    transition-property: transform, opacity;
}
