/* style.css - FemTech Portfolio with SVG Styling */
/* Canvas Background Styles - Add at the top of your CSS */
#code-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4; /* Subtle effect - adjust as needed */
}

/* Ensure content appears above the rain */
.navbar,
.section,
.footer,
.back-to-top {
    position: relative;
    z-index: 1;
}

/* Optional: Darken the rain on certain sections for better readability */
.section {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(2px);
}

/* Make home section slightly more transparent to show rain better */
.home {
    background: rgba(10, 10, 10, 0.5);
}
/* CSS Variables */
:root {
    --primary: #00BFFF;
    --primary-dark: #0099cc;
    --primary-light: #33ccff;
    --primary-rgb: 0, 191, 255;
    
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-light: #111111;
    --bg-lighter: #1a1a1a;
    
    --text-light: #ffffff;
    --text-dark: #e0e0e0;
    --text-gray: #a0a0a0;
    --text-muted: #666666;
    
    --border-color: #222222;
    --border-light: #333333;
    
    --card-bg: #0f0f0f;
    --card-hover: #151515;
    
    --gradient: linear-gradient(135deg, #00BFFF 0%, #0099cc 100%);
    --gradient-glow: linear-gradient(135deg, rgba(0, 191, 255, 0.2) 0%, rgba(0, 153, 204, 0.2) 100%);
    
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
    --shadow-primary: 0 10px 30px rgba(0, 191, 255, 0.2);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-circle: 50%;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Custom Cursor */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: var(--border-radius-circle);
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    display: none;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: var(--border-radius-circle);
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: 0.1s ease;
    display: none;
}

@media (min-width: 1024px) {
    .cursor, .cursor-follower {
        display: block;
    }
}

.cursor-follower.active {
    width: 60px;
    height: 60px;
    background: rgba(var(--primary-rgb), 0.1);
    border-color: var(--primary-light);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
}

.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    font-family: 'Fira Code', monospace;
    font-size: 1.5rem;
    font-weight: 600;
}

.logo-bracket {
    color: var(--primary);
    transition: all var(--transition-normal);
}

.logo-text {
    color: var(--text-light);
}

.logo-highlight {
    color: var(--primary);
}

.logo:hover .logo-bracket {
    transform: scale(1.1);
    color: var(--primary-light);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition-normal);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-light);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: all var(--transition-normal);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Home Section */
.home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
}

.home-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* Home Content */
.home-content {
    position: relative;
    z-index: 2;
}

.home-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.badge-line {
    width: 50px;
    height: 2px;
    background: var(--gradient);
}

.badge-text {
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.home-title {
    margin-bottom: 20px;
}

.title-line {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.title-greeting {
    color: var(--text-gray);
    font-size: 1.5rem;
    font-weight: 400;
    margin-right: 10px;
}

.title-name {
    color: var(--text-light);
}

.title-name.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.home-typed {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.typed-prefix {
    color: var(--text-gray);
    font-weight: 300;
}

.typed-container {
    display: inline-block;
    position: relative;
}

.typed-text {
    color: var(--primary);
    font-weight: 600;
}

.typed-cursor {
    color: var(--primary);
    animation: blink 1s infinite;
    font-weight: 300;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.home-description {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 500px;
    line-height: 1.8;
}

.home-description strong {
    color: var(--primary);
}

.home-location {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.home-location i {
    color: var(--primary);
}

/* SVG Tech Stack Styling - CRITICAL PART */
.home-tech {
    margin-bottom: 30px;
}

.tech-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tech-icons {
    display: flex;
    gap: 25px;
    align-items: center;
}

.tech-icon {
    width: 45px;
    height: 45px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    filter: brightness(0.9) drop-shadow(0 0 5px rgba(0, 191, 255, 0.3));
}

/* SVG Hover Animation - Bounce + Wiggle */
.tech-icon:hover {
    animation: bounceWiggle 0.5s ease;
    filter: brightness(1.2) drop-shadow(0 0 15px var(--primary));
}

@keyframes bounceWiggle {
    0% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-12px) rotate(-5deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
    75% { transform: translateY(-2px) rotate(-2deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* Individual SVG colors on hover */
.tech-icon[alt="HTML"]:hover {
    filter: brightness(1.2) drop-shadow(0 0 15px #ff5722);
}

.tech-icon[alt="CSS"]:hover {
    filter: brightness(1.2) drop-shadow(0 0 15px #264de4);
}

.tech-icon[alt="JavaScript"]:hover {
    filter: brightness(1.2) drop-shadow(0 0 15px #f7df1e);
}

.tech-icon[alt="PHP"]:hover {
    filter: brightness(1.2) drop-shadow(0 0 15px #777bb3);
}

/* Home CTA */
.home-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: var(--border-radius-circle);
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn i {
    transition: transform var(--transition-normal);
}

.btn:hover i {
    transform: translateX(5px);
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 191, 255, 0.4);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Home Social */
.home-social {
    display: flex;
    gap: 15px;
}

.home-social .social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    text-decoration: none;
    transition: all var(--transition-normal);
    font-size: 1.1rem;
}

.home-social .social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    border-color: var(--primary);
}

/* Home Visual */
.home-visual {
    position: relative;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.visual-image {
    position: relative;
    width: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--primary);
}

.profile-image {
    width: 100%;
    height: auto;
    display: block;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.visual-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    animation: badgeFloat 4s ease-in-out infinite;
    border-left: 3px solid var(--primary);
}

.visual-badge.bottom {
    top: auto;
    bottom: 30px;
    left: -20px;
    right: auto;
    animation-delay: -1s;
    border-left: none;
    border-right: 3px solid var(--primary);
}

@keyframes badgeFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5px, -5px); }
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: var(--border-radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.badge-info {
    display: flex;
    flex-direction: column;
}

.badge-label {
    font-size: 0.7rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
}

.section-title .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-line {
    width: 80px;
    height: 3px;
    background: var(--gradient);
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--bg-darker);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-light);
}

.about-role {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.about-role::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient);
}

.about-text {
    margin-bottom: 30px;
}

.about-paragraph {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
    font-family: 'Fira Code', monospace;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Code Window */
.code-window {
    background: var(--card-bg);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.code-header {
    background: var(--bg-light);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--border-radius-circle);
}

.code-dot.red { background: #ff5f56; }
.code-dot.yellow { background: #ffbd2e; }
.code-dot.green { background: #27c93f; }

.code-title {
    margin-left: auto;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-family: 'Fira Code', monospace;
}

.code-body {
    padding: 20px;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
    overflow-x: auto;
}

.code-body pre {
    color: var(--text-dark);
}

.code-comment { color: #6a9955; }
.code-var { color: #9cdcfe; }
.code-key { color: #9cdcfe; }
.code-string { color: #ce9178; }
.code-number { color: #b5cea8; }

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.project-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-primary);
}

.project-media {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-normal);
    backdrop-filter: blur(5px);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-links {
    display: flex;
    gap: 20px;
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.project-card:hover .project-links {
    transform: translateY(0);
}

.project-link {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: var(--border-radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all var(--transition-normal);
    font-size: 1.1rem;
}

.project-link:hover {
    background: white;
    color: var(--primary);
    transform: rotate(360deg);
}

.project-info {
    padding: 20px;
}

.project-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-light);
}

.project-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-badge {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-family: 'Fira Code', monospace;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
}

/* Skills Section */
.skills {
    background: var(--bg-darker);
}

.skills-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.skill-category {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    border: 1px solid var(--border-color);
}

.skill-category h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-light);
}

.skill-category h3 i {
    color: var(--primary);
}

.skill-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.skill-item {
    width: 100%;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 3px;
    transition: width 1s ease;
}

/* Skills Icons - SVG Styling */
.skills-icons {
    text-align: center;
    padding: 40px 0 20px;
    border-top: 1px solid var(--border-color);
}

.icons-wrapper {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.skill-icon {
    width: 60px;
    height: 60px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    filter: grayscale(0.3) brightness(0.9);
    opacity: 0.9;
}

/* SVG Hover Animations */
.skill-icon:hover {
    transform: translateY(-15px) scale(1.2) rotate(5deg);
    filter: grayscale(0) brightness(1.2) drop-shadow(0 10px 20px var(--primary));
    opacity: 1;
    animation: wiggle 0.3s ease;
}

@keyframes wiggle {
    0%, 100% { transform: translateY(-15px) scale(1.2) rotate(5deg); }
    25% { transform: translateY(-15px) scale(1.2) rotate(-5deg); }
    75% { transform: translateY(-15px) scale(1.2) rotate(3deg); }
}

/* Individual SVG colors */
.skill-icon[alt="HTML"]:hover {
    filter: grayscale(0) brightness(1.2) drop-shadow(0 0 20px #ff5722);
}

.skill-icon[alt="CSS"]:hover {
    filter: grayscale(0) brightness(1.2) drop-shadow(0 0 20px #264de4);
}

.skill-icon[alt="JavaScript"]:hover {
    filter: grayscale(0) brightness(1.2) drop-shadow(0 0 20px #f7df1e);
}

.skill-icon[alt="PHP"]:hover {
    filter: grayscale(0) brightness(1.2) drop-shadow(0 0 20px #777bb3);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-light);
}

.contact-info > p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.info-details {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--card-bg);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.info-item:hover {
    border-color: var(--primary);
    transform: translateX(10px);
}

.info-item i {
    width: 45px;
    height: 45px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: var(--border-radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.info-item h4 {
    color: var(--text-gray);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.info-item a,
.info-item span {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
}

.info-item a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links .social-link {
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    text-decoration: none;
    transition: all var(--transition-normal);
    font-size: 1.2rem;
}

.social-links .social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--primary);
}

.form-group label {
    position: absolute;
    top: 12px;
    left: 0;
    color: var(--text-gray);
    font-size: 1rem;
    pointer-events: none;
    transition: all var(--transition-normal);
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:valid ~ label {
    top: -20px;
    font-size: 0.8rem;
    color: var(--primary);
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 50px 0 30px;
    text-align: center;
}

.footer-logo {
    font-family: 'Fira Code', monospace;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.footer .copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .home-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .home-content {
        text-align: center;
    }
    
    .home-badge {
        justify-content: center;
    }
    
    .home-location {
        justify-content: center;
    }
    
    .home-cta {
        justify-content: center;
    }
    
    .home-social {
        justify-content: center;
    }
    
    .tech-icons {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .skills-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-darker);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left var(--transition-normal);
        z-index: 999;
        gap: 30px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .title-line {
        font-size: 2.5rem;
    }
    
    .home-typed {
        font-size: 1.2rem;
        justify-content: center;
    }
    
    .visual-wrapper {
        max-width: 300px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .skills-wrapper {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .icons-wrapper {
        gap: 30px;
    }
    
    .skill-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .title-line {
        font-size: 2rem;
    }
    
    .home-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .visual-badge {
        display: none;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .tech-icons {
        gap: 15px;
    }
    
    .tech-icon {
        width: 35px;
        height: 35px;
    }
    
    .skill-icon {
        width: 40px;
        height: 40px;
    }
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--bg-dark);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}