/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3b82f6;
    --secondary-color: #1d4ed8;
    --accent-color: #60a5fa;
    --blue-light: #93c5fd;
    --blue-glow: #2563eb;
    --text-primary: #ffffff;
    --text-secondary: #93c5fd;
    --text-accent: #3b82f6;
    --text-light: #ffffff;
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-dark: #000000;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --shadow-light: 0 4px 6px -1px rgba(59, 130, 246, 0.2);
    --shadow-medium: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
    --shadow-heavy: 0 25px 50px -12px rgba(59, 130, 246, 0.4);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.5);
    --shadow-glow-strong: 0 0 40px rgba(59, 130, 246, 0.7);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    --gradient-blue: linear-gradient(135deg, #1e40af, #3b82f6, #60a5fa);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: none;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 2px 20px rgba(59, 130, 246, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    animation: logoGlow 3s ease-in-out infinite alternate;
}

.accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-blue);
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

.nav-link:hover {
    color: var(--accent-color);
    text-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 40px;
    height: 40px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent-color);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
}

.nav-link.active::before {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
}

.nav-link.active::after {
    width: 100%;
    background: var(--gradient-blue);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.8);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #16213e 50%, #000000 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(96, 165, 250, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(29, 78, 216, 0.1) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

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

@media (max-width: 1024px) {
    .hero-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
}

.hero-text {
    color: var(--text-light);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    animation: slideInLeft 1s ease-out, titleGlow 4s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    animation: slideInLeft 1s ease-out 0.2s both, subtitleFloat 6s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(147, 197, 253, 0.5);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    animation: slideInLeft 1s ease-out 0.4s both, textShimmer 8s ease-in-out infinite;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-blue);
    color: var(--text-light);
    border: none;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.3);
}

.btn-secondary:hover {
    background: rgba(96, 165, 250, 0.1);
    border-color: var(--blue-light);
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px) scale(1.05);
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-glow-strong);
    animation: buttonPulse 0.3s ease;
}

.btn-primary:hover {
    box-shadow: var(--shadow-glow-strong);
    animation: buttonGlow 0.5s ease;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    animation: slideInRight 1s ease-out 0.8s both;
}

.image-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: conic-gradient(from 0deg, #3b82f6, #1d4ed8, #60a5fa, #3b82f6);
    border-radius: 50%;
    opacity: 0.8;
    animation: rotate 3s linear infinite, pulseGlow 2s ease-in-out infinite;
    z-index: 1;
    filter: blur(2px);
}

.profile-image:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: var(--shadow-glow-strong);
    filter: brightness(1.1) contrast(1.1);
}

/* Floating Shapes Animation */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2), rgba(96, 165, 250, 0.1), transparent);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite, shapeGlow 4s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about {
    background: var(--bg-secondary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(96, 165, 250, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.info-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.8s;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.info-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-glow);
    background: var(--bg-card-hover);
    border-color: var(--accent-color);
}

.info-card:hover::after {
    left: 100%;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-glow);
    animation: iconFloat 3s ease-in-out infinite;
    transition: var(--transition);
}

.info-card:hover .card-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: var(--shadow-glow-strong);
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--text-light);
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Experience Section */
.experience {
    background: var(--bg-primary);
    position: relative;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(96, 165, 250, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.experience-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.experience-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.experience-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-blue);
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-color);
    background: var(--bg-card-hover);
}

.experience-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
    animation: iconFloat 3s ease-in-out infinite;
}

.experience-icon i {
    font-size: 1.5rem;
    color: var(--text-light);
}

.experience-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.experience-content h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.experience-period {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.experience-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.skill-category {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition-slow);
    border: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.skill-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.skill-category:hover::before {
    transform: scaleX(1);
}

.skill-category:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-glow);
    background: var(--bg-card-hover);
    border-color: var(--accent-color);
}

.skill-category h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    backdrop-filter: blur(5px);
}

.skill-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.skill-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    z-index: 0;
}

.skill-item i,
.skill-item span {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(96, 165, 250, 0.8));
    color: var(--text-light);
    box-shadow: 
        0 8px 32px rgba(59, 130, 246, 0.4),
        0 0 0 1px rgba(59, 130, 246, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(59, 130, 246, 0.6);
    transform: translateY(-3px) scale(1.02);
}

.skill-item:hover::before {
    left: 100%;
}

.skill-item:hover::after {
    width: 200px;
    height: 200px;
}

.skill-item:hover i {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
    animation: iconPulse 1.5s ease-in-out infinite;
}

.skill-item:hover span {
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

.skill-item i {
    font-size: 1.2rem;
}

/* Projects Section */
.projects {
    background: var(--bg-secondary);
    position: relative;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(96, 165, 250, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.project-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition:10s;
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    cursor: pointer;
}


.project-card.project-hover-active,
.project-card:hover {
    transform: scale(1.05);
    box-shadow: 
        0 30px 60px rgba(59, 130, 246, 0.3),
        0 0 0 2px rgba(59, 130, 246, 0.5),
        0 0 40px rgba(59, 130, 246, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
    animation: cardFloat 2s ease-in-out infinite alternate, cardGlow 2s ease-in-out infinite;
    
}

.project-card.project-hover-active::before,
.project-card:hover::before {
    opacity: 1;
    animation: cardBackgroundPulse 2.5s ease-in-out infinite alternate;
}

.project-image {
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    transition: 
        box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.4) 0%, transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(96, 165, 250, 0.3) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(147, 197, 253, 0.25) 0%, transparent 50%),
        linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(96, 165, 250, 0.1) 50%, transparent 100%);
    opacity: 0;
    transition: 
        opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1),
        background 0.5s ease-out;
    z-index: 2;
    pointer-events: none;
}

.project-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.15) 25%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 100%);
    opacity: 0;
    transition: 
        opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
        transform 1s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 3;
    pointer-events: none;
    transform: translateX(-120%) rotate(45deg) scale(1.5);
    transform-origin: center;
}



.project-image-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 
        transform 0.7s cubic-bezier(0.23, 1, 0.32, 1),
        filter 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}


.project-card.project-hover-active .project-image-icon,
.project-card:hover .project-image-icon {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(1.15) contrast(1.2) saturate(1.3) hue-rotate(5deg);
    box-shadow: 
        0 0 40px rgba(59, 130, 246, 0.8),
        0 15px 60px rgba(59, 130, 246, 0.4),
        0 0 80px rgba(96, 165, 250, 0.3),
        inset 0 0 60px rgba(255, 255, 255, 0.15);
}

.project-card.project-hover-active .project-image,
.project-card:hover .project-image {
    transform: translateY(-5px);
    box-shadow: 
        0 0 50px rgba(59, 130, 246, 0.6),
        0 20px 70px rgba(59, 130, 246, 0.3),
        0 0 100px rgba(96, 165, 250, 0.2),
        inset 0 0 80px rgba(59, 130, 246, 0.15);
}

.project-card.project-hover-active .project-image::before,
.project-card:hover .project-image::before {
    opacity: 1;
    animation: overlayPulse 3s ease-in-out infinite alternate;
}

.project-card.project-hover-active .project-image::after,
.project-card:hover .project-image::after {
    opacity: 1;
    transform: translateX(120%) rotate(45deg) scale(1.5);
    animation: lightSweep 2.5s ease-in-out infinite;
}

.project-links {
    display: none;
}

.project-link {
    display: none;
}




.project-content {
    padding: 2rem;
    position: relative;
    cursor: pointer;
}

.project-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    transition: 
        color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        text-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card:hover .project-content h3 {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.project-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    transition: 
        color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.4s ease-out;
}

.project-card:hover .project-content p {
    color: var(--text-primary);
}

.project-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.project-demo-btn {
    background: var(--gradient-blue);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    color: var(--text-light);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: 
        transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        background 0.4s ease-out;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.project-demo-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 
        left 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.4s ease-out;
}

.project-demo-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, rgba(59, 130, 246, 1), rgba(96, 165, 250, 0.9));
}

.project-demo-btn:hover::before {
    left: 100%;
}

.project-demo-btn i {
    transition: 
        transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        color 0.4s ease-out;
}

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

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0.2rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: 
        transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        color 0.4s ease-out,
        border-color 0.4s ease-out,
        box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.tech-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-blue);
    transition: 
        left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.4s ease-out;
    z-index: -1;
}

.tech-tag:hover {
    color: var(--text-light);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
    border-color: var(--accent-color);
}

.tech-tag:hover::before {
    left: 0;
}

.project-card:hover .tech-tag {
    border-color: rgba(59, 130, 246, 0.4);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    animation: contactIconPulse 3s ease-in-out infinite;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(15deg);
    box-shadow: var(--shadow-glow-strong);
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--text-light);
}

.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.contact-link:hover {
    color: var(--accent-color);
    text-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
}

.contact-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--gradient-blue);
    transition: width 0.3s ease;
}

.contact-link:hover::after {
    width: 100%;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--bg-secondary);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-card);
    color: #e2e8f0;
}

.form-input::placeholder {
    color: #94a3b8;
    opacity: 1;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
    background: var(--bg-card-hover);
    transform: scale(1.02);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-blue);
    transform: translateY(-3px) scale(1.1) rotate(360deg);
    box-shadow: var(--shadow-glow);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

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

/* New Blue Theme Animations */
@keyframes logoGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(59, 130, 246, 0.8), 0 0 30px rgba(96, 165, 250, 0.4);
    }
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
    }
    50% {
        text-shadow: 0 0 30px rgba(59, 130, 246, 1), 0 0 40px rgba(96, 165, 250, 0.6);
    }
}

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

@keyframes textShimmer {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

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

@keyframes shapeGlow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 50px rgba(59, 130, 246, 0.6);
    }
}

@keyframes buttonPulse {
    0% {
        transform: translateY(-3px) scale(1.05);
    }
    50% {
        transform: translateY(-3px) scale(1.08);
    }
    100% {
        transform: translateY(-3px) scale(1.05);
    }
}

@keyframes buttonGlow {
    0% {
        box-shadow: var(--shadow-glow-strong);
    }
    50% {
        box-shadow: 0 0 60px rgba(59, 130, 246, 0.9);
    }
    100% {
        box-shadow: var(--shadow-glow-strong);
    }
}

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

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1.2) rotate(5deg);
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
    }
    50% {
        transform: scale(1.3) rotate(-2deg);
        filter: drop-shadow(0 0 12px rgba(59, 130, 246, 1));
    }
}

@keyframes skillShimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes skillGlow {
    0%, 100% {
        box-shadow: 
            0 8px 32px rgba(59, 130, 246, 0.4),
            0 0 0 1px rgba(59, 130, 246, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 12px 40px rgba(59, 130, 246, 0.6),
            0 0 0 2px rgba(59, 130, 246, 0.8),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

@keyframes skillBounce {
    0%, 100% {
        transform: translateY(-3px) scale(1.02);
    }
    50% {
        transform: translateY(-6px) scale(1.04);
    }
}

@keyframes skillPulse {
    0% {
        transform: scale(1.08) rotate(2deg);
    }
    50% {
        transform: scale(1.12) rotate(2deg);
    }
    100% {
        transform: scale(1.08) rotate(2deg);
    }
}

@keyframes projectImageGlow {
    0%, 100% {
        filter: brightness(1) saturate(1);
    }
    50% {
        filter: brightness(1.1) saturate(1.2);
    }
}

@keyframes contactIconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--shadow-glow);
    }
    50% {
        transform: scale(1.05);
        box-shadow: var(--shadow-glow-strong);
    }
}

@keyframes gradientShift {
    0% {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.7), rgba(96, 165, 250, 0.5));
    }
    100% {
        background: linear-gradient(135deg, rgba(96, 165, 250, 0.8), rgba(59, 130, 246, 0.6));
    }
}

@keyframes overlayPulse {
    0% {
        background: 
            radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 70% 70%, rgba(96, 165, 250, 0.2) 0%, transparent 50%),
            linear-gradient(45deg, rgba(59, 130, 246, 0.1) 0%, rgba(96, 165, 250, 0.1) 50%, transparent 100%);
    }
    100% {
        background: 
            radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.4) 0%, transparent 60%),
            radial-gradient(circle at 70% 70%, rgba(96, 165, 250, 0.3) 0%, transparent 60%),
            linear-gradient(45deg, rgba(59, 130, 246, 0.15) 0%, rgba(96, 165, 250, 0.15) 50%, transparent 100%);
    }
}

@keyframes lightSweep {
    0% {
        transform: translateX(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) rotate(45deg);
        opacity: 0;
    }
}

@keyframes cardFloat {
    0% {
        transform: scale(1.0);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes cardGlow {
    0% {
        box-shadow: 
            0 30px 60px rgba(59, 130, 246, 0.3),
            0 0 0 2px rgba(59, 130, 246, 0.5),
            0 0 40px rgba(59, 130, 246, 0.4),
            inset 0 2px 0 rgba(255, 255, 255, 0.2);
    }
    100% {
        box-shadow: 
            0 35px 70px rgba(59, 130, 246, 0.4),
            0 0 0 3px rgba(59, 130, 246, 0.7),
            0 0 60px rgba(59, 130, 246, 0.6),
            inset 0 3px 0 rgba(255, 255, 255, 0.3);
    }
}

@keyframes cardBackgroundPulse {
    0% {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(96, 165, 250, 0.05));
    }
    100% {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.1));
    }
}

/* Contact Form Validation & Status Styles */
.form-error {
    display: block;
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.form-error.show {
    opacity: 1;
    transform: translateY(0);
}

.form-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input.success {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-status {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.form-status.show {
    opacity: 1;
    transform: translateY(0);
}

.success-message {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 12px;
}

.success-message i {
    font-size: 1.25rem;
    color: #10b981;
}

.success-message p {
    margin: 0;
    font-weight: 500;
}

.error-message {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(248, 113, 113, 0.05));
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 12px;
}

.error-message i {
    font-size: 1.25rem;
    color: #ef4444;
}

.error-message p {
    margin: 0;
    font-weight: 500;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Button Loading State */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.btn:disabled:hover {
    transform: none !important;
    box-shadow: var(--shadow-glow) !important;
}

/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    text-align: center;
    position: relative;
}

.loader-logo {
    margin-bottom: 2rem;
    position: relative;
}

.logo-circle {
    width: 120px;
    height: 120px;
    border: 3px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    position: relative;
    animation: logoRotate 3s linear infinite;
}

.logo-circle::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 3px solid transparent;
    border-top: 3px solid #3b82f6;
    border-radius: 50%;
    animation: logoSpin 1.5s linear infinite;
}

.logo-letter {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
    animation: letterPulse 2s ease-in-out infinite alternate;
}

.loader-text {
    margin-bottom: 2rem;
}

.loading-word {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e2e8f0;
    position: relative;
    display: inline-block;
    animation: textGlow 2s ease-in-out infinite alternate;
}

.loading-word::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #93c5fd, #3b82f6);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s linear infinite;
}

.loading-dots {
    display: inline-flex;
    gap: 0.5rem;
    margin-left: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    animation: dotBounce 1.4s ease-in-out infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

.loader-progress {
    margin-bottom: 2rem;
}

.progress-bar {
    width: 300px;
    height: 4px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 2px;
    margin: 0 auto 1rem;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #93c5fd);
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressShine 2s linear infinite;
}

.progress-percentage {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.loader-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #3b82f6;
    border-radius: 50%;
    opacity: 0;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation: particleFloat 4s ease-in-out infinite;
}

.particle:nth-child(2) {
    top: 30%;
    right: 20%;
    animation: particleFloat 4s ease-in-out infinite 0.5s;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 30%;
    animation: particleFloat 4s ease-in-out infinite 1s;
}

.particle:nth-child(4) {
    bottom: 20%;
    right: 30%;
    animation: particleFloat 4s ease-in-out infinite 1.5s;
}

.particle:nth-child(5) {
    top: 50%;
    left: 10%;
    animation: particleFloat 4s ease-in-out infinite 2s;
}

.particle:nth-child(6) {
    top: 50%;
    right: 10%;
    animation: particleFloat 4s ease-in-out infinite 2.5s;
}

.main-content {
    opacity: 0;
    transition: opacity 0.5s ease 0.3s;
}

.main-content.show {
    opacity: 1;
}

/* Loading Screen Animations */
@keyframes logoRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes logoSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes letterPulse {
    0% { 
        text-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
        transform: scale(1);
    }
    100% { 
        text-shadow: 0 0 30px rgba(59, 130, 246, 1), 0 0 40px rgba(59, 130, 246, 0.5);
        transform: scale(1.05);
    }
}

@keyframes textGlow {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

@keyframes textShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes dotBounce {
    0%, 80%, 100% { 
        transform: scale(0);
        opacity: 0.5;
    }
    40% { 
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes particleFloat {
    0%, 100% { 
        opacity: 0;
        transform: translateY(0px) scale(0.5);
    }
    50% { 
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
}

/* Mobile Responsive Loading Screen */
@media (max-width: 768px) {
    .logo-circle {
        width: 100px;
        height: 100px;
    }
    
    .logo-letter {
        font-size: 2.5rem;
    }
    
    .loading-word {
        font-size: 1.25rem;
    }
    
    .progress-bar {
        width: 250px;
    }
    
    .loader-particles {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .logo-circle {
        width: 80px;
        height: 80px;
    }
    
    .logo-letter {
        font-size: 2rem;
    }
    
    .loading-word {
        font-size: 1.1rem;
    }
    
    .progress-bar {
        width: 200px;
    }
}

/* Social Media Links Styling */
.social-media-section {
    margin-top: 1rem;
}

.social-media-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.social-media-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.2rem;
    border: 2px solid rgba(59, 130, 246, 0.2);
    transition: 
        transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        background 0.4s ease-out,
        color 0.4s ease-out,
        border-color 0.4s ease-out,
        box-shadow 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-media-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease-out;
    z-index: 1;
}

.social-media-link i {
    position: relative;
    z-index: 2;
    transition: 
        transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        filter 0.4s ease-out;
}

.social-media-link:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: var(--accent-color);
    box-shadow: 
        0 10px 25px rgba(59, 130, 246, 0.3),
        0 0 30px rgba(59, 130, 246, 0.2),
        inset 0 0 20px rgba(59, 130, 246, 0.1);
}

.social-media-link:hover::before {
    opacity: 1;
}

.social-media-link:hover i {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

/* Platform-specific colors */
.social-media-link.facebook:hover {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
    color: white;
    box-shadow: 
        0 10px 25px rgba(24, 119, 242, 0.4),
        0 0 30px rgba(24, 119, 242, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.social-media-link.tiktok:hover {
    background: linear-gradient(135deg, #000000, #ff0050);
    color: white;
    box-shadow: 
        0 10px 25px rgba(255, 0, 80, 0.4),
        0 0 30px rgba(255, 0, 80, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.social-media-link.linkedin:hover {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
    color: white;
    box-shadow: 
        0 10px 25px rgba(0, 119, 181, 0.4),
        0 0 30px rgba(0, 119, 181, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.social-media-link.instagram:hover {
    background: linear-gradient(135deg, #e4405f, #f77737, #fccc63);
    color: white;
    box-shadow: 
        0 10px 25px rgba(228, 64, 95, 0.4),
        0 0 30px rgba(247, 119, 55, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Footer Social Links Enhancement */
.footer .social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-card);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    border: 2px solid rgba(59, 130, 246, 0.2);
    transition: 
        transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        background 0.4s ease-out,
        color 0.4s ease-out,
        border-color 0.4s ease-out,
        box-shadow 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.footer .social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease-out;
    z-index: 1;
}

.footer .social-link i {
    position: relative;
    z-index: 2;
    transition: 
        transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        filter 0.4s ease-out;
}

.footer .social-link:hover {
    transform: translateY(-3px) scale(1.1);
    background: var(--gradient-blue);
    color: white;
    border-color: var(--accent-color);
    box-shadow: 
        0 8px 20px rgba(59, 130, 246, 0.3),
        0 0 25px rgba(59, 130, 246, 0.2),
        inset 0 0 15px rgba(255, 255, 255, 0.1);
}

.footer .social-link:hover::before {
    opacity: 1;
}

.footer .social-link:hover i {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
}

/* Large Desktop Optimization */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
        padding: 0 3rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
    }
    
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .project-image {
        height: 320px;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) and (min-width: 769px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .experience-timeline {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .project-image {
        height: 230px;
    }
    
    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .experience-icon {
        align-self: center;
    }
    
    .experience-content {
        text-align: center;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile-optimized skill hover effects */
    .skill-item {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .skill-item:hover {
        transform: translateY(-2px) scale(1.01);
    }
    
    .skill-item:hover i {
        transform: scale(1.1) rotate(3deg);
    }
    
    /* Reduce particle count on mobile for performance */
    .floating-particle {
        animation-duration: 1.5s;
    }
    
    .floating-icon {
        font-size: 10px;
        animation-duration: 2s;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .project-card {
        margin-bottom: 1rem;
    }
    
    .project-card.project-hover-active,
    .project-card:hover {
        transform: translateY(-15px) scale(1.03);
        box-shadow: 
            0 25px 50px rgba(59, 130, 246, 0.25),
            0 0 0 2px rgba(59, 130, 246, 0.4),
            0 0 30px rgba(59, 130, 246, 0.3);
        animation: cardFloat 3s ease-in-out infinite alternate, cardGlow 2s ease-in-out infinite;
        transition: 
            transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
            box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .project-image {
        height: 220px;
    }
    
    .project-image-icon {
        object-fit: cover;
    }
    
    .project-card:hover .project-image-icon {
        transform: scale(1.08);
        filter: brightness(1.12) contrast(1.18) saturate(1.25) hue-rotate(3deg);
        box-shadow: 
            0 0 30px rgba(59, 130, 246, 0.7),
            0 12px 45px rgba(59, 130, 246, 0.3),
            0 0 60px rgba(96, 165, 250, 0.25),
            inset 0 0 40px rgba(255, 255, 255, 0.12);
        transition: 
            transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
            filter 0.5s cubic-bezier(0.23, 1, 0.32, 1),
            box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }
    
    .project-card:hover .project-image {
        transform: translateY(-3px);
        box-shadow: 
            0 0 35px rgba(59, 130, 246, 0.5),
            0 15px 50px rgba(59, 130, 246, 0.25),
            0 0 70px rgba(96, 165, 250, 0.15),
            inset 0 0 60px rgba(59, 130, 246, 0.1);
    }
    
    .project-card:hover .project-image::before {
        opacity: 1;
        animation: overlayPulse 3s ease-in-out infinite alternate;
    }
    
    .project-card:hover .project-image::after {
        opacity: 1;
        transform: translateX(120%) rotate(45deg) scale(1.5);
        animation: lightSweep 2.5s ease-in-out infinite;
    }
    
    .project-content {
        padding: 1.5rem;
    }
    
    .project-content h3 {
        font-size: 1.2rem;
    }
    
    .project-demo-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
        transition: 
            transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
            box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
            background 0.4s ease-out;
    }
    
    .project-demo-btn:hover {
        transform: translateY(-1px) scale(1.02);
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
    }
    
    .project-link {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .tech-tag {
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
        transition: 
            transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
            background 0.4s ease-out,
            color 0.4s ease-out,
            box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .tech-tag:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 3px 10px rgba(59, 130, 246, 0.25);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 27px rgba(59, 130, 246, 0.3);
        backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(59, 130, 246, 0.3);
        z-index: 999;
        padding: 1rem 0;
        min-height: calc(100vh - 70px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    /* Mobile navigation link styles */
    .nav-link {
        padding: 1.5rem 2rem;
        font-size: 1.2rem;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link::before {
        width: 0;
        height: 0;
    }
    
    .nav-link::after {
        bottom: 0;
        height: 3px;
    }
    
    .nav-link.active::before {
        width: 60px;
        height: 60px;
    }
    
    .nav-link.active::after {
        width: 80%;
        height: 3px;
    }
    
    .nav-link:hover::before {
        width: 50px;
        height: 50px;
    }
    
    .nav-link:hover::after {
        width: 70%;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 4px;
        transition: background 0.3s ease;
    }
    
    .hamburger:hover {
        background: rgba(59, 130, 246, 0.1);
    }
    
    .bar {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .hero-title {
        font-size: 2.5rem;
    }

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

    .image-container {
        width: 250px;
        height: 250px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .nav-container {
        padding: 0.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        min-width: 140px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .image-container {
        width: 200px;
        height: 200px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .project-image {
        height: 200px;
    }
    
    .project-content {
        padding: 1.25rem;
    }
    
    .project-content h3 {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .nav-link {
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
    }
    
    /* Social Media Mobile Styles */
    .social-media-links {
        gap: 0.75rem;
        justify-content: center;
    }
    
    .social-media-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .social-media-link:hover {
        transform: translateY(-3px) scale(1.08);
    }
    
    .footer .social-links {
        gap: 0.75rem;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer .social-link:hover {
        transform: translateY(-2px) scale(1.05);
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-media-section {
        text-align: center;
    }
    
    .experience-timeline {
        padding: 0;
    }
    
    .experience-item {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .form-input {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .footer-content {
        padding: 1.5rem 0;
    }

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