/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Light Theme Colors - New Gradient */
    --primary: #4361ee;
    --secondary: #f72585;
    --accent: #4cc9f0;
    --highlight: #ffd166;
    --text-dark: #2b2d42;
    --text-light: #f8f9fa;
    --bg-gradient: linear-gradient(135deg, #9FEDD7 0%, #FEF9C7 100%);
    --bg-light: rgba(255, 255, 255, 0.1);
    --bg-dark: rgba(18, 18, 18, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

[data-theme="dark"] {
    --primary: #4cc9f0;
    --secondary: #f72585;
    --accent: #4361ee;
    --highlight: #ffd166;
    --text-dark: #f8f9fa;
    --text-light: #2b2d42;
    --bg-gradient: linear-gradient(135deg, #121212 0%, #2b2b2b 100%);
    --bg-light: rgba(0, 0, 0, 0.2);
    --bg-dark: rgba(0, 0, 0, 0.3);
    --glass-bg: rgba(0, 0, 0, 0.25);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Times New Roman', serif;
    color: var(--text-dark);
    background: var(--bg-gradient);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: 'Times New Roman', serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* ===== GLASSMORPHISM STYLES ===== */
.glass-round {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: 2rem;
}

/* ===== FLOATING ELEMENTS ===== */
.floating-vector {
    position: fixed;
    font-size: 12rem;
    opacity: 0.05;
    z-index: -1;
    color: var(--primary);
    animation: floatVector 30s infinite linear;
    filter: drop-shadow(0 0 10px rgba(76, 201, 240, 0.5));
}

[data-theme="light"] .floating-vector {
    filter: drop-shadow(0 0 15px rgba(76, 201, 240, 0.7)) drop-shadow(0 0 25px rgba(76, 201, 240, 0.4));
    opacity: 0.08;
}

/* Increased spacing between floating vectors */
#vector-figma {
    top: 5%;
    left: 5%;
    animation-delay: 0s;
}

#vector-figma2 {
    top: 75%;
    left: 85%;
    animation-delay: -15s;
    font-size: 10rem;
}

#vector-python {
    top: 65%;
    right: 8%;
    animation-delay: -10s;
}

#vector-node {
    bottom: 15%;
    left: 10%;
    animation-delay: -20s;
}

#vector-html {
    top: 15%;
    right: 10%;
    animation-delay: -5s;
}

#vector-css {
    top: 35%;
    left: 85%;
    animation-delay: -12s;
    font-size: 9rem;
}

#vector-js {
    bottom: 25%;
    right: 15%;
    animation-delay: -18s;
    font-size: 11rem;
}

#vector-react {
    top: 85%;
    left: 8%;
    animation-delay: -22s;
    font-size: 10rem;
}

#vector-java {
    top: 45%;
    right: 5%;
    animation-delay: -8s;
    font-size: 9rem;
}

/* Floating Blobs */
.floating-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
    animation: floatBlob 20s infinite ease-in-out;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    top: 10%;
    right: 15%;
    opacity: 0.2;
    animation-delay: 0s;
}

.blob-2 {
    width: 200px;
    height: 200px;
    background: var(--accent);
    bottom: 20%;
    left: 10%;
    opacity: 0.2;
    animation-delay: -5s;
}

.blob-3 {
    width: 150px;
    height: 150px;
    background: var(--highlight);
    top: 50%;
    left: 20%;
    opacity: 0.15;
    animation-delay: -10s;
}

.blob-4 {
    width: 250px;
    height: 250px;
    background: var(--primary);
    bottom: 10%;
    right: 20%;
    opacity: 0.15;
    animation-delay: -15s;
}

.blob-5 {
    width: 180px;
    height: 180px;
    background: #9C27B0;
    top: 15%;
    left: 70%;
    opacity: 0.1;
    animation-delay: -3s;
}

.blob-6 {
    width: 220px;
    height: 220px;
    background: #4CAF50;
    bottom: 30%;
    right: 5%;
    opacity: 0.12;
    animation-delay: -8s;
}

.blob-7 {
    width: 120px;
    height: 120px;
    background: #FF9800;
    top: 65%;
    left: 85%;
    opacity: 0.18;
    animation-delay: -12s;
}

.blob-8 {
    width: 280px;
    height: 280px;
    background: #E91E63;
    bottom: 40%;
    left: 75%;
    opacity: 0.1;
    animation-delay: -18s;
}

.blob-9 {
    width: 90px;
    height: 90px;
    background: #2196F3;
    top: 25%;
    left: 40%;
    opacity: 0.2;
    animation-delay: -2s;
}

.blob-10 {
    width: 160px;
    height: 160px;
    background: #FFC107;
    bottom: 60%;
    right: 30%;
    opacity: 0.14;
    animation-delay: -14s;
}

.blob-11 {
    width: 140px;
    height: 140px;
    background: #8BC34A;
    top: 75%;
    left: 60%;
    opacity: 0.16;
    animation-delay: -9s;
}

.blob-12 {
    width: 190px;
    height: 190px;
    background: #00BCD4;
    bottom: 15%;
    left: 30%;
    opacity: 0.13;
    animation-delay: -6s;
}

/* ===== NAVIGATION ===== */
.glass-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

/* Logo Section */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    font-family: 'Times New Roman', serif;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
}

.logo-main {
    color: var(--text-dark);
}

.logo-secondary {
    color: var(--primary);
}

.logo-subtitle {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 0.2rem;
    color: var(--text-dark);
}

/* Navigation Center */
.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--glass-border);
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 15px;
}

.nav-link:hover {
    background: var(--glass-bg);
    transform: translateY(-2px);
}

.nav-link.active {
    background: var(--primary);
    color: white;
}

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

/* Navigation Right */
.nav-right {
    display: flex;
    align-items: center;
}

.theme-toggle {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.theme-toggle:hover {
    background: var(--primary);
    transform: rotate(15deg);
}

.theme-toggle i {
    position: absolute;
    font-size: 1.5rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.theme-toggle .fa-sun {
    opacity: 1;
}

.theme-toggle .fa-moon {
    opacity: 0;
}

[data-theme="dark"] .theme-toggle .fa-sun {
    opacity: 0;
}

[data-theme="dark"] .theme-toggle .fa-moon {
    opacity: 1;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 150px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.highlight-name {
    color: var(--highlight);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.typing-text {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.typing-text::after {
    content: '|';
    animation: blink 1s infinite;
    color: var(--primary);
    margin-left: 5px;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.color-pink {
    color: var(--secondary);
}

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

.color-green {
    color: #4CAF50;
}

.color-yellow {
    color: var(--highlight);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 20px rgba(67, 97, 238, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(67, 97, 238, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--glass-border);
}

.btn-secondary:hover {
    background: var(--glass-bg);
    transform: translateY(-3px);
}

/* Profile Container */
.profile-container {
    position: relative;
    width: 350px;
    height: 350px;
    margin: 0 auto 0.5rem; /* Reduced bottom margin significantly */
}

.profile-card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateProfile 10s infinite ease-in-out;
    border-radius: 30px;
}

.profile-front,
.profile-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-front {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

/* Profile Back */
.profile-back {
    background: linear-gradient(45deg, #4a5568, #718096);
    transform: rotateY(180deg);
    color: black;
    flex-direction: column;
    padding: 2rem;
    text-align: center;
}

.back-content h3 {
    font-size: 1.8rem;
    margin: 1rem 0;
    text-shadow: 0 0 10px white, 0 0 20px rgba(255, 255, 255, 0.8);
}

.back-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    text-shadow: 0 0 5px white, 0 0 10px rgba(255, 255, 255, 0.6);
}

.crown-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: black;
    text-shadow: 0 0 10px white, 0 0 20px rgba(255, 255, 255, 0.8);
}

.back-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    font-size: 1.5rem;
}

.back-icons i {
    color: black;
    text-shadow: 0 0 5px white, 0 0 10px rgba(255, 255, 255, 0.6);
}

.profile-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.image-placeholder i {
    font-size: 8rem;
    color: var(--text-dark);
    opacity: 0.5;
}

.image-placeholder span {
    color: var(--text-dark);
    opacity: 0.7;
}

.neon-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(76, 201, 240, 0.6) 0%, transparent 70%);
    border-radius: 50px;
    filter: blur(20px);
    z-index: -1;
    animation: pulseGlow 2s infinite alternate;
}

/* Orbiting Icons */
.orbit-container {
    position: relative;
    width: 800px;
    height: 800px;
    margin: -200px auto 0;
}

.orbiting-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    z-index: 1;
}

.orbit-1 {
    animation: orbit1 15s infinite linear;
    transform-origin: 400px 400px;
}

.orbit-2 {
    animation: orbit2 20s infinite linear;
    transform-origin: 400px 400px;
}

.orbit-3 {
    animation: orbit3 25s infinite linear;
    transform-origin: 400px 400px;
}

.orbit-4 {
    animation: orbit4 18s infinite linear;
    transform-origin: 400px 400px;
}

.orbit-5 {
    animation: orbit5 22s infinite linear;
    transform-origin: 400px 400px;
}

.orbit-6 {
    animation: orbit6 28s infinite linear;
    transform-origin: 400px 400px;
}

/* Skill Icon Grid - Only 6 specific icons, closer spacing */
.skill-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem; /* Reduced gap significantly */
    margin-top: 0.5rem; /* Reduced top margin */
    text-align: center;
    padding: 0.8rem; /* Reduced padding */
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px; /* Reduced border radius */
    border: 1px solid var(--glass-border);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.skill-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem; /* Reduced padding */
    transition: var(--transition);
    border-radius: 10px; /* Reduced border radius */
}

.skill-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px) scale(1.05); /* Reduced transform */
}

.skill-item i {
    font-size: 1.8rem; /* Slightly reduced size */
    color: var(--primary);
    transition: var(--transition);
}

.skill-item:hover i {
    color: var(--secondary);
    transform: rotate(10deg); /* Reduced rotation */
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 6rem 0;
}

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

.about-card {
    padding: 2rem;
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-10px);
}

.card-header {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
}

.gradient-academic {
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
}

.gradient-experience {
    background: linear-gradient(45deg, #2196F3, #03A9F4);
}

.gradient-artistic {
    background: linear-gradient(45deg, #9C27B0, #E91E63);
}

.gradient-philosophy {
    background: linear-gradient(45deg, #FF9800, #FFC107);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-card p {
    line-height: 1.6;
    opacity: 0.9;
}

/* ===== SKILLS SECTION ===== */
.skills {
    padding: 6rem 0;
}

.level-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.beginner {
    background: #FF6B6B;
}

.intermediate {
    background: #4ECDC4;
}

.advanced {
    background: #45B7D1;
}

.expert {
    background: #96CEB4;
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.skill-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.skill-item-detailed {
    margin-bottom: 1.5rem;
}

.skill-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.skill-info i {
    font-size: 1.8rem;
    color: var(--primary);
}

.skill-info span {
    font-weight: 700;
}

.skill-level {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.level-bar {
    flex: 1;
    height: 8px;
    background: var(--glass-bg);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.level-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    animation: fillBar 1.5s ease-out forwards;
}

.level-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    min-width: 80px;
    text-align: center;
}

.level-badge.expert {
    background: #96CEB4;
}

.level-badge.advanced {
    background: #45B7D1;
}

.skills-tag-cloud {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.skill-tag {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    cursor: pointer;
}

.skill-tag:hover {
    transform: translateY(-3px);
}

.glow-blue {
    background: rgba(67, 97, 238, 0.2);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(67, 97, 238, 0.3);
}

.glow-pink {
    background: rgba(247, 37, 133, 0.2);
    color: var(--secondary);
    box-shadow: 0 0 15px rgba(247, 37, 133, 0.3);
}

.glow-yellow {
    background: rgba(255, 209, 102, 0.2);
    color: var(--highlight);
    box-shadow: 0 0 15px rgba(255, 209, 102, 0.3);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.glow-green {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.3);
}

.glow-cyan {
    background: rgba(76, 201, 240, 0.2);
    color: var(--accent);
    box-shadow: 0 0 15px rgba(76, 201, 240, 0.3);
}

/* ===== PROJECTS SECTION ===== */
.projects {
    padding: 6rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-card {
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.project-category {
    background: var(--primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.project-year {
    color: var(--text-dark);
    opacity: 0.7;
    font-size: 0.9rem;
}

.project-image {
    height: 200px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.project-photo-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 1rem;
}

.gradient-uiux {
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.gradient-web {
    background: linear-gradient(45deg, #f093fb, #f5576c);
}

.gradient-graphic {
    background: linear-gradient(45deg, #4facfe, #00f2fe);
}

.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.project-card p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-size: 0.95rem;
}

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

.project-tags span {
    padding: 0.3rem 0.8rem;
    background: var(--glass-bg);
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid var(--glass-border);
}

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

.project-link:hover {
    gap: 1rem;
}

.designer-insight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
    padding: 2rem;
}

.insight-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.insight-icon {
    font-size: 2.5rem;
    color: var(--secondary);
}

.insight-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.insight-tools {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    color: var(--primary);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 6rem 0;
}

.contact-panel {
    max-width: 800px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.contact-info a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    display: block;
    margin-bottom: 0.3rem;
    transition: var(--transition);
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.location-info {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--glass-bg);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.location-info i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.github-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--glass-bg);
    border-radius: 25px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.github-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.github-link i {
    font-size: 1.8rem;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(90deg, #c0c0c0, #2c3e50);
    color: white;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-text {
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
}

.footer-text i {
    color: #ff6b6b;
    margin: 0 0.3rem;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.footer-copyright {
    opacity: 0.9;
    font-size: 0.9rem;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.6);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* ===== ANIMATIONS ===== */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes rotateProfile {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
}

@keyframes pulseGlow {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

@keyframes floatVector {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

@keyframes floatBlob {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-50px) scale(1.05); }
}

@keyframes fillBar {
    from { width: 0; }
    to { width: var(--width, 100%); }
}

@keyframes orbit1 {
    0% { transform: rotate(0deg) translateX(350px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(350px) rotate(-360deg); }
}

@keyframes orbit2 {
    0% { transform: rotate(60deg) translateX(400px) rotate(0deg); }
    100% { transform: rotate(420deg) translateX(400px) rotate(-360deg); }
}

@keyframes orbit3 {
    0% { transform: rotate(120deg) translateX(320px) rotate(0deg); }
    100% { transform: rotate(480deg) translateX(320px) rotate(-360deg); }
}

@keyframes orbit4 {
    0% { transform: rotate(180deg) translateX(380px) rotate(0deg); }
    100% { transform: rotate(540deg) translateX(380px) rotate(-360deg); }
}

@keyframes orbit5 {
    0% { transform: rotate(240deg) translateX(300px) rotate(0deg); }
    100% { transform: rotate(600deg) translateX(300px) rotate(-360deg); }
}

@keyframes orbit6 {
    0% { transform: rotate(300deg) translateX(350px) rotate(0deg); }
    100% { transform: rotate(660deg) translateX(350px) rotate(-360deg); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-container,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .skill-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 400px;
    }
    
    .orbit-container {
        width: 600px;
        height: 600px;
        margin: -100px auto 0;
    }
    
    .nav-links {
        gap: 1rem;
        padding: 0.5rem 1rem;
    }
    
    .nav-link span {
        display: none;
    }
    
    .nav-link i {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .skills-container,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-container {
        width: 280px;
        height: 280px;
    }
    
    .orbit-container {
        width: 500px;
        height: 500px;
    }
    
    .designer-insight {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .skill-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 350px;
    }
    
    .hero {
        padding-top: 120px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .profile-container {
        width: 250px;
        height: 250px;
    }
    
    .orbit-container {
        width: 400px;
        height: 400px;
    }
    
    .floating-vector {
        font-size: 8rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .skill-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 300px;
        gap: 0.3rem;
    }
    
    .skill-item i {
        font-size: 1.5rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
}