/* Modern Portfolio CSS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Dark mode */
.dark body {
    color: #f9fafb;
    background-color: #111827;
}

/* Container */
.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container-custom {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .container-custom {
        padding: 0 3rem;
    }
}

/* Section padding */
.section-padding {
    padding: 4rem 0;
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 6rem 0;
    }
}

/* Modern Navigation */
.modern-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #2c3e50;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    padding: 0.75rem 0;
}

.dark .modern-nav {
    background: #1a202c;
}

.modern-nav.scrolled {
    background: rgba(44, 62, 80, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.dark .modern-nav.scrolled {
    background: rgba(26, 32, 44, 0.95);
}

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

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

/* Logo */
.nav-logo .logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.nav-logo .logo-link:hover .logo-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.logo-text {
    color: white;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.dark .logo-text {
    color: #f7fafc;
}

/* Navigation Menu */
.nav-menu {
    display: none;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: block;
    }
}

.nav-pills {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.nav-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-pill i {
    font-size: 14px;
}

.nav-pill:hover {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.nav-pill.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.social-icons {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .social-icons {
        display: flex;
    }
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #2c3e50;
    z-index: 1001;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.dark .mobile-nav {
    background: #1a202c;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-close {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-nav-menu {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.mobile-nav-link i {
    width: 20px;
    font-size: 16px;
}

.mobile-nav-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.mobile-social-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.mobile-social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.mobile-theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Navigation */
@media (max-width: 1023px) {
    .nav-pills {
        display: none;
    }

    .social-icons {
        display: none;
    }

    .nav-actions {
        gap: 0.5rem;
    }
}

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

    .nav-content {
        height: 50px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .logo-text {
        font-size: 16px;
    }

    .theme-toggle {
        width: 35px;
        height: 35px;
    }

    .mobile-nav {
        max-width: 100%;
    }

    .hero-section {
        padding-top: 70px;
    }
}

/* Navigation overlay for mobile */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.nav-link {
    position: relative;
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #3b82f6;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: left 0.3s ease;
    padding-top: 5rem;
}

.dark .mobile-menu {
    background: rgba(17, 24, 39, 0.98);
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu-link {
    display: block;
    padding: 1rem 2rem;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.3s ease;
}

.dark .mobile-menu-link {
    color: #f9fafb;
    border-bottom: 1px solid rgba(75, 85, 99, 0.5);
}

.mobile-menu-link:hover {
    background: #f3f4f6;
    color: #3b82f6;
}

.dark .mobile-menu-link:hover {
    background: #374151;
}

/* Hamburger menu */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #374151;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.dark .hamburger span {
    background: #f9fafb;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0.8;
    line-height: 1.7;
}

/* Profile image */
.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    margin: 0 auto 2rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin: 1rem 0;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    gap: 0.5rem;
}

.btn-primary {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.btn-primary:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Social links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #1f2937;
}

.dark .section-title {
    color: #f9fafb;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.dark .section-subtitle {
    color: #9ca3af;
}

/* About section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.about-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.dark .about-content h3 {
    color: #f9fafb;
}

.about-content p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.dark .about-content p {
    color: #9ca3af;
}

.highlights-list {
    list-style: none;
    padding: 0;
}

.highlights-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #374151;
}

.dark .highlights-list li {
    color: #d1d5db;
}

.highlights-list li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* Skills section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.skill-category {
    background: #f9fafb;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.dark .skill-category {
    background: #1f2937;
    border-color: #374151;
}

.skill-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.dark .skill-category:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.skill-category h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.dark .skill-category h4 {
    color: #f9fafb;
}

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

.skill-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.dark .skill-name {
    color: #d1d5db;
}

.skill-percentage {
    font-size: 0.9rem;
    color: #3b82f6;
    font-weight: 700;
}

.skill-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.dark .skill-bar {
    background: #374151;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    border-radius: 4px;
    transition: width 1s ease-in-out;
    position: relative;
}

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

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

/* Experience section */
.experience-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e7eb;
    transform: translateX(-50%);
}

.dark .experience-timeline::before {
    background: #374151;
}

@media (max-width: 768px) {
    .experience-timeline::before {
        left: 20px;
    }
}

.experience-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .experience-item {
        margin-left: 40px;
    }
}

.experience-item:nth-child(odd) {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .experience-item:nth-child(odd) {
        flex-direction: row;
    }
}

.experience-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    width: calc(50% - 30px);
    position: relative;
}

.dark .experience-content {
    background: #1f2937;
    border-color: #374151;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .experience-content {
        width: calc(100% - 40px);
    }
}

.experience-dot {
    position: absolute;
    left: 50%;
    width: 16px;
    height: 16px;
    background: #3b82f6;
    border-radius: 50%;
    transform: translateX(-50%);
    border: 4px solid #ffffff;
    z-index: 2;
}

.dark .experience-dot {
    border-color: #111827;
}

@media (max-width: 768px) {
    .experience-dot {
        left: 12px;
    }
}

.experience-date {
    font-size: 0.9rem;
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.experience-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.dark .experience-title {
    color: #f9fafb;
}

.experience-company {
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 1rem;
}

.dark .experience-company {
    color: #9ca3af;
}

.experience-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.dark .experience-description {
    color: #9ca3af;
}

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

.tech-tag {
    background: #eff6ff;
    color: #1d4ed8;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.dark .tech-tag {
    background: #1e3a8a;
    color: #93c5fd;
}

/* Projects section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.dark .project-card {
    background: #1f2937;
    border-color: #374151;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.dark .project-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.project-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

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

.project-content {
    padding: 2rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.dark .project-title {
    color: #f9fafb;
}

.project-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.dark .project-description {
    color: #9ca3af;
}

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

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

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.project-link.secondary {
    background: transparent;
    color: #3b82f6;
    border: 1px solid #3b82f6;
}

.project-link.secondary:hover {
    background: #3b82f6;
    color: white;
}

/* Contact section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.contact-info {
    background: #f9fafb;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
}

.dark .contact-info {
    background: #1f2937;
    border-color: #374151;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.dark .contact-item {
    background: #111827;
    border-color: #374151;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-details h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.dark .contact-details h4 {
    color: #f9fafb;
}

.contact-details p {
    color: #6b7280;
    margin: 0;
}

.dark .contact-details p {
    color: #9ca3af;
}

.contact-details a {
    color: #3b82f6;
    text-decoration: none;
}

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

/* Contact form */
.contact-form {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dark .contact-form {
    background: #1f2937;
    border-color: #374151;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.dark .form-label {
    color: #d1d5db;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.dark .form-input,
.dark .form-textarea {
    background: #111827;
    border-color: #374151;
    color: #f9fafb;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Footer */
.footer {
    background: #1f2937;
    color: #9ca3af;
    padding: 3rem 0 2rem;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
}

.footer-section h4 {
    color: #f9fafb;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #3b82f6;
}

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

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.grid { display: grid; }

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

.w-full { width: 100%; }
.h-full { height: 100%; }

.rounded { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }

.shadow { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

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

.animate-fadeIn {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive utilities */
@media (max-width: 640px) {
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .container-custom { padding: 0 1rem; }
    .btn-group { flex-direction: column; align-items: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-grid { grid-template-columns: 1fr; }
}

/* Custom styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.btn-primary {
    background-color: #3b82f6;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #2563eb;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-outline {
    border: 2px solid #3b82f6;
    color: #3b82f6;
    background-color: transparent;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-outline:hover {
    background-color: #3b82f6;
    color: white;
    transform: scale(1.05);
}

.card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.section-padding {
    padding: 4rem 0;
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 6rem 0;
    }
}

.container-custom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container-custom {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container-custom {
        padding: 0 2rem;
    }
}

.gradient-text {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.skill-bar {
    height: 0.5rem;
    background-color: #e5e7eb;
    border-radius: 9999px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    border-radius: 9999px;
    transition: width 1s ease-out;
}

/* Dark mode styles */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #111827;
        color: #f9fafb;
    }

    .card {
        background-color: #1f2937;
        color: #f9fafb;
    }

    .skill-bar {
        background-color: #374151;
    }
}

/* Animation classes */
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

.animate-float {
    animation: float 6s ease-in-out infinite;
}

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

.animate-bounce {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

/* Loading animation */
.loading-dots {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.loading-dots div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #3b82f6;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.loading-dots div:nth-child(1) {
    left: 8px;
    animation: loading-dots1 0.6s infinite;
}

.loading-dots div:nth-child(2) {
    left: 8px;
    animation: loading-dots2 0.6s infinite;
}

.loading-dots div:nth-child(3) {
    left: 32px;
    animation: loading-dots2 0.6s infinite;
}

.loading-dots div:nth-child(4) {
    left: 56px;
    animation: loading-dots3 0.6s infinite;
}

@keyframes loading-dots1 {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes loading-dots3 {
    0% { transform: scale(1); }
    100% { transform: scale(0); }
}

@keyframes loading-dots2 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(24px, 0); }
}

/* Responsive utilities */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }

@media (min-width: 640px) {
    .sm\:block { display: block; }
    .sm\:inline-flex { display: inline-flex; }
}

@media (min-width: 1024px) {
    .lg\:block { display: block; }
    .lg\:hidden { display: none; }
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Enhanced Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-text {
    color: white;
}

.hero-greeting {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.wave {
    display: inline-block;
    animation: wave 2s infinite;
    transform-origin: 70% 70%;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20% { transform: rotate(12deg); }
    40%, 60% { transform: rotate(9deg); }
    50% { transform: rotate(-9deg); }
}

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

.hero-section .hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
    min-height: 2.2rem;
}

.typing-text {
    color: #fbbf24;
    font-weight: 500;
}

.cursor {
    animation: blink 1s infinite;
    color: #fbbf24;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-section .hero-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-social span {
    opacity: 0.8;
    font-size: 0.9rem;
}

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

.hero-social .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-social .social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.hero-section .profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

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

/* Background Animation */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float-bg 20s ease-in-out infinite;
}

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

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -5%;
    animation-delay: 7s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 14s;
}

@keyframes float-bg {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(30px) rotate(240deg); }
}

/* Animation Classes */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.pulse-animation {
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

/* Enhanced responsive design */
@media (max-width: 1024px) {
    .hero-section .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .hero-section .hero-title {
        font-size: 3rem;
    }

    .hero-section .hero-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 250px;
    }

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

    .hero-section .hero-title {
        font-size: 2.5rem;
    }

    .hero-section .hero-subtitle {
        font-size: 1.3rem;
    }

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

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .hero-stats .stat-number {
        font-size: 2rem;
    }

    .hero-stats .stat-label {
        font-size: 0.8rem;
    }

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

    .hero-section .hero-subtitle {
        font-size: 1.1rem;
    }

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

/* Enhanced Section Styling */
.section {
    padding: 5rem 0;
    position: relative;
}

.section:nth-child(even) {
    background: rgba(249, 250, 251, 0.5);
}

.dark .section:nth-child(even) {
    background: rgba(17, 24, 39, 0.5);
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

/* Enhanced Cards */
.skill-category,
.project-card,
.experience-item {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.skill-category:hover,
.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.dark .skill-category:hover,
.dark .project-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Enhanced Buttons */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.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.5s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: none;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

/* Enhanced Form Styling */
.form-input,
.form-textarea {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.form-input:focus,
.form-textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

/* Loading Animation */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Modern Hero Section */
.hero-section-modern {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

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

/* Left Content Styles */
.hero-left {
    color: white;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 3rem;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wave {
    display: inline-block;
    animation: wave-modern 2s ease-in-out infinite;
    transform-origin: 70% 70%;
}

@keyframes wave-modern {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20% { transform: rotate(12deg); }
    40%, 60% { transform: rotate(9deg); }
    50% { transform: rotate(-9deg); }
}

.hero-title-modern {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.title-line {
    display: inline;
    margin-right: 0.5rem;
}

.title-highlight {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-modern {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    min-height: 2rem;
}

.typing-container {
    display: flex;
    align-items: center;
    min-height: 2rem;
}

.typing-text-modern {
    color: #fbbf24;
    font-weight: 600;
    position: relative;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.cursor-blink {
    color: #fbbf24;
    animation: blink-modern 1.2s steps(2, start) infinite;
    margin-left: 3px;
    font-weight: 300;
    font-size: 1.2em;
    line-height: 1;
}

@keyframes blink-modern {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Add typing effect enhancement */
.typing-text-modern.typing-active {
    position: relative;
}

.typing-text-modern.typing-active::after {
    position: absolute;
    right: -2px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(251, 191, 36, 0.5);
}

.hero-description-modern {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
}

/* Enhanced Stats */
.hero-stats-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.stat-card-modern {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card-modern:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon-modern {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 16px;
    color: white;
}

.stat-number-modern {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
}

.stat-label-modern {
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Modern Buttons */
.hero-actions-modern {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-primary-modern {
    position: relative;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

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

/* Modern Social Links */
.hero-social-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-label {
    font-size: 0.875rem;
    opacity: 0.8;
    font-weight: 500;
}

.social-links-modern {
    display: flex;
    gap: 0.75rem;
    flex-direction: row;
}

.social-link-modern {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.social-link-modern:hover {
    background: var(--social-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Right Side - Image Container */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container-modern {
    position: relative;
    width: 500px;
    height: 500px;
}

/* Floating Tech Icons */
.floating-tech-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.tech-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float-tech 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.tech-icon:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.25);
}

.tech-laravel {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
    color: #ff2d20;
}

.tech-vue {
    top: 15%;
    right: -15%;
    animation-delay: 1s;
    color: #4fc08d;
}

.tech-js {
    bottom: 15%;
    left: -10%;
    animation-delay: 2s;
    color: #f7df1e;
}

.tech-php {
    bottom: 10%;
    right: -5%;
    animation-delay: 3s;
    color: #1b1a1a;
}

.tech-mysql {
    top: 50%;
    left: -20%;
    animation-delay: 4s;
    color: #4479a1;
}

.tech-git {
    top: 50%;
    right: -15%;
    animation-delay: 5s;
    color: #f05032;
}

@keyframes float-tech {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-20px) rotate(3deg); }
}

/* Profile Image Wrapper */
.profile-image-wrapper-modern {
    position: relative;
    width: 350px;
    height: 350px;
    margin: 0 auto;
}

/* Background Effects */
.image-background-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: pulse-circle 4s ease-in-out infinite;
}

.circle-1 {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.circle-2 {
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    animation-delay: 1s;
}

.circle-3 {
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    animation-delay: 2s;
}

@keyframes pulse-circle {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.1; }
}

/* Profile Image Frame */
.profile-image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.profile-image-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-image-frame:hover .image-overlay {
    opacity: 1;
}

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

/* Image Decorations */
.image-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.decoration-ring {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: rotate-ring 20s linear infinite;
}

.ring-1 {
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
    border-style: dashed;
}

.ring-2 {
    width: 130%;
    height: 130%;
    top: -15%;
    left: -15%;
    animation-direction: reverse;
    animation-duration: 30s;
}

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

.decoration-dots {
    position: absolute;
    top: 20%;
    right: -10%;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    margin-bottom: 8px;
    animation: pulse-dot 2s ease-in-out infinite;
}

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

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

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Enhanced Background */
.hero-background-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.bg-gradient-orbs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float-orb 15s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    top: 20%;
    right: -5%;
    animation-delay: 5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 10%;
    animation-delay: 10s;
}

.orb-4 {
    width: 200px;
    height: 200px;
    bottom: -5%;
    right: 20%;
    animation-delay: 7s;
}

@keyframes float-orb {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
    25% { transform: translateY(-30px) translateX(20px) scale(1.1); }
    50% { transform: translateY(-10px) translateX(-15px) scale(0.9); }
    75% { transform: translateY(-40px) translateX(10px) scale(1.05); }
}

.bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float-particle 8s linear infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: 1s;
}

@keyframes float-particle {
    0% { transform: translateY(0px) scale(1); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) scale(0); opacity: 0; }
}

/* Modern Animations */
.animate-slide-down {
    opacity: 0;
    transform: translateY(-30px);
    animation: slideDown 0.8s ease-out 0.3s forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out forwards;
}

/* Specific animation delays for better separation */
.hero-title-modern.animate-slide-up {
    animation-delay: 0.6s;
}

.hero-subtitle-modern.animate-slide-up {
    animation-delay: 0.9s;
}

.hero-stats-modern.animate-slide-up {
    animation-delay: 1.2s;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

/* Specific fade-in delays */
.hero-description-modern.animate-fade-in {
    animation-delay: 1.5s;
}

.hero-actions-modern.animate-fade-in {
    animation-delay: 1.8s;
}

.hero-social-modern.animate-fade-in {
    animation-delay: 2.1s;
}

.animate-scale-in {
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 1s ease-out 0.8s forwards;
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content-modern {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-image-container-modern {
        width: 400px;
        height: 400px;
    }

    .profile-image-wrapper-modern {
        width: 300px;
        height: 300px;
    }

    .hero-title-modern {
        font-size: 3.5rem;
    }

    .tech-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

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

    .hero-badge {
        margin-top: 1rem;
        margin-bottom: 2rem;
    }

    .hero-title-modern {
        font-size: 2.8rem;
    }

    .hero-subtitle-modern {
        font-size: 1.25rem;
    }

    .hero-stats-modern {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .stat-card-modern {
        padding: 0.75rem;
    }

    .stat-icon-modern {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .stat-number-modern {
        font-size: 1.75rem;
    }

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

    .hero-actions-modern {
        flex-direction: column;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .btn-primary-modern,
    .btn-secondary-modern {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-image-container-modern {
        width: 320px;
        height: 320px;
    }

    .profile-image-wrapper-modern {
        width: 250px;
        height: 250px;
    }

    .tech-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        margin-top: 0.5rem;
        margin-bottom: 1.5rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .hero-title-modern {
        font-size: 2.2rem;
    }

    .hero-subtitle-modern {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .hero-description-modern {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-stats-modern {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .stat-card-modern {
        padding: 0.5rem;
    }

    .stat-icon-modern {
        width: 30px;
        height: 30px;
        font-size: 12px;
        margin-bottom: 0.5rem;
    }

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

    .stat-label-modern {
        font-size: 0.65rem;
    }

    .hero-actions-modern {
        margin-bottom: 1rem;
    }

    .hero-image-container-modern {
        width: 280px;
        height: 280px;
    }

    .profile-image-wrapper-modern {
        width: 200px;
        height: 200px;
    }
}

/* Modern About Section */
.about-section-modern {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.about-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Section Header */
.about-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.about-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

/* Left Column */
.about-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Profile Card */
.profile-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.profile-image-section {
    text-align: center;
    margin-bottom: 1.5rem;
}

.profile-image-about {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e2e8f0;
    transition: all 0.3s ease;
}

.profile-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    background: white;
    border-radius: 20px;
    padding: 0.5rem 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
}

.profile-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #059669;
}

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

.status-dot::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: #10b981;
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-status {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.5); opacity: 0.1; }
    100% { transform: scale(2); opacity: 0; }
}

.profile-info {
    text-align: center;
    margin-bottom: 1.5rem;
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.profile-role {
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.profile-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.875rem;
}

.quick-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 12px;
    color: #475569;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.contact-item:hover {
    background: #e2e8f0;
    color: #3b82f6;
    transform: translateX(5px);
}

.contact-item i {
    width: 16px;
    color: #3b82f6;
}

/* Info Cards */
.info-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.card-header i {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.card-header h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

/* Languages */
.languages-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.language-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.language-name {
    font-weight: 600;
    color: #1e293b;
}

.language-level {
    font-size: 0.875rem;
    color: #3b82f6;
    font-weight: 500;
}

.language-progress {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 3px;
    transition: width 1s ease;
    width: 0;
}

.progress-bar[data-level="Native"] { width: 100%; }
.progress-bar[data-level="Fluent"] { width: 90%; }
.progress-bar[data-level="Advanced"] { width: 80%; }
.progress-bar[data-level="Intermediate"] { width: 60%; }
.progress-bar[data-level="Basic"] { width: 40%; }

/* Right Column */
.about-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Summary Card */
.summary-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.summary-content {
    margin-top: 1rem;
}

.summary-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 2rem;
}

.highlights-section {
    margin-top: 1.5rem;
}

.highlights-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.highlight-item i {
    color: #10b981;
    font-size: 1rem;
}

.highlight-item span {
    color: #475569;
    font-weight: 500;
}

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

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 18px;
    color: white;
    box-shadow: 0 6px 15px rgba(59, 130, 246, 0.3);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Education Card */
.education-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.education-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Education Timeline */
.education-timeline {
    position: relative;
    margin-top: 1rem;
}

.education-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 30px;
    height: 30px;
    background: white;
    border: 4px solid #3b82f6;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.timeline-content {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.education-degree {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.education-institution {
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.education-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #64748b;
}

.education-period {
    font-weight: 500;
}

.education-location {
    position: relative;
}

.education-location::before {
    content: '•';
    margin-right: 0.5rem;
    color: #94a3b8;
}

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

    .about-left {
        order: 2;
    }

    .about-right {
        order: 1;
    }

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

@media (max-width: 768px) {
    .about-section-modern {
        padding: 50px 0;
    }

    .about-container {
        padding: 0 1rem;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-subtitle {
        font-size: 1.125rem;
    }

    .about-content-grid {
        gap: 2rem;
    }

    .profile-card,
    .info-card,
    .summary-card,
    .education-card {
        padding: 1.5rem;
    }

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

    .stat-card {
        padding: 1rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

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

    .highlights-grid {
        gap: 0.75rem;
    }

    .timeline-item {
        padding-left: 2.5rem;
    }

    .timeline-marker {
        width: 24px;
        height: 24px;
        border-width: 3px;
    }

    .education-timeline::before {
        left: 12px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 2rem;
    }

    .about-subtitle {
        font-size: 1rem;
    }

    .profile-card,
    .info-card,
    .summary-card,
    .education-card {
        padding: 1rem;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .education-meta {
        flex-direction: column;
        gap: 0.25rem;
    }

    .education-location::before {
        display: none;
    }
}

/* Modern Skills Section */
.skills-section-modern {
    padding: 50px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.skills-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="tech-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23475569" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23tech-grid)"/></svg>');
    opacity: 0.1;
}

.skills-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Section Header */
.skills-header {
    text-align: center;
    margin-bottom: 4rem;
}

.skills-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.skills-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.skills-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Filter Navigation */
.skills-filter-nav {
    margin-bottom: 3rem;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
    transform: translateY(-2px);
}

.filter-icon {
    font-size: 1rem;
}

/* Skills Grid */
.skills-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Skill Card */
.skill-card-modern {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-card-modern:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Skill Header */
.skill-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.skill-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.skill-info {
    flex: 1;
}

.skill-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.skill-experience {
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 500;
}

.skill-level {
    flex-shrink: 0;
}

.level-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Progress Section */
.skill-progress-section {
    margin-bottom: 1.5rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.progress-label {
    color: #cbd5e1;
    font-size: 0.875rem;
    font-weight: 600;
}

.progress-percentage {
    color: white;
    font-size: 1rem;
    font-weight: 700;
}

.progress-container {
    position: relative;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.progress-track {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    border-radius: 4px;
    transition: width 1s ease;
}

.progress-glow {
    position: absolute;
    top: -2px;
    left: 0;
    bottom: -2px;
    border-radius: 6px;
    filter: blur(4px);
    transition: all 0.3s ease;
}

/* Skill Tags */
.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.skill-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hover Overlay */
.skill-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.skill-overlay.active {
    opacity: 1;
    transform: translateY(0);
}

.overlay-content {
    text-align: center;
    padding: 2rem;
}

.skill-description {
    color: #cbd5e1;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.skill-projects {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #06b6d4;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Skills Summary */
.skills-summary {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.summary-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.summary-stat .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
    flex-shrink: 0;
}

.summary-stat .stat-info {
    flex: 1;
}

.summary-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
}

.summary-stat .stat-label {
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Skills Section Responsive */
@media (max-width: 1024px) {
    .skills-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

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

@media (max-width: 768px) {
    .skills-section-modern {
        padding: 50px 0;
    }

    .skills-container {
        padding: 0 1rem;
    }

    .skills-title {
        font-size: 2.5rem;
    }

    .skills-subtitle {
        font-size: 1.125rem;
    }

    .filter-buttons {
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .skills-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .skill-card-modern {
        padding: 1.5rem;
    }

    .skill-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .skill-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .skill-name {
        font-size: 1.125rem;
    }

    .summary-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .summary-stat {
        flex-direction: column;
        text-align: center;
    }

    .summary-stat .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .summary-stat .stat-number {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .skills-title {
        font-size: 2rem;
    }

    .skills-subtitle {
        font-size: 1rem;
    }

    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }

    .skill-card-modern {
        padding: 1rem;
    }

    .skill-header {
        gap: 0.75rem;
    }

    .skill-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .skills-summary {
        padding: 1.5rem;
    }

    .summary-stat .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

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

/* Modern Experience Section */
.experience-section-modern {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.experience-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="exp-grid" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23exp-grid)"/></svg>');
    opacity: 0.3;
}

.experience-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Section Header */
.experience-header {
    text-align: center;
    margin-bottom: 4rem;
}

.experience-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.experience-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.experience-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Experience Content Wrapper */
.experience-content-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Timeline Navigation */
.timeline-navigation {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.timeline-nav-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
}

.timeline-nav-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.timeline-nav-header p {
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
}

.timeline-nav-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-nav-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.timeline-nav-item:hover {
    background: #f8fafc;
    transform: translateX(5px);
}

.timeline-nav-item.active {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.nav-item-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    margin-top: 0.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.timeline-nav-item.active .nav-item-dot {
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.nav-item-content {
    flex: 1;
}

.nav-item-position {
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    color: inherit;
}

.nav-item-company {
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
    opacity: 0.8;
}

.nav-item-duration {
    font-size: 0.75rem;
    opacity: 0.7;
    font-weight: 500;
}

/* Experience Details */
.experience-details {
    position: relative;
}

.experience-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

/* Card Header */
.experience-card-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f1f5f9;
}

.job-title-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.job-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.job-status {
    display: flex;
    align-items: center;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.current {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.status-badge.past {
    background: #f1f5f9;
    color: #64748b;
}

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

.company-details {
    flex: 1;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 0.75rem;
}

.company-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.company-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
}

.company-meta i {
    color: #8b5cf6;
    width: 16px;
}

.company-logo,
.company-logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    flex-shrink: 0;
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 14px;
}

.company-logo-placeholder i {
    font-size: 2rem;
    color: #8b5cf6;
}

/* Job Content Sections */
.job-description,
.job-responsibilities,
.job-achievements,
.job-technologies,
.job-metrics {
    margin-bottom: 2rem;
}

.job-description h5,
.job-responsibilities h5,
.job-achievements h5,
.job-technologies h5,
.job-metrics h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-description h5::before {
    content: '📋';
    font-size: 1rem;
}

.job-responsibilities h5::before {
    content: '🎯';
    font-size: 1rem;
}

.job-achievements h5::before {
    content: '🏆';
    font-size: 1rem;
}

.job-technologies h5::before {
    content: '⚡';
    font-size: 1rem;
}

.job-metrics h5::before {
    content: '📊';
    font-size: 1rem;
}

.job-description p {
    color: #475569;
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Responsibilities */
.responsibilities-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.responsibilities-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
}

.responsibilities-list i {
    color: #10b981;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Achievements */
.achievements-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

.achievement-item i {
    color: #d97706;
    font-size: 1.125rem;
}

.achievement-item span {
    color: #92400e;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Technologies */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.tech-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.tech-badge i {
    font-size: 0.75rem;
}

/* Job Metrics */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.metric-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    border-radius: 16px;
    border: 2px solid #8b5cf6;
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: #5b21b6;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #6d28d9;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Experience Summary */
.experience-summary {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.summary-header {
    text-align: center;
    margin-bottom: 2rem;
}

.summary-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.summary-header p {
    color: #64748b;
    font-size: 1.125rem;
}

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

.summary-metric {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.summary-metric:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #8b5cf6;
}

.summary-metric .metric-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
    flex-shrink: 0;
}

.summary-metric .metric-content {
    flex: 1;
}

.summary-metric .metric-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.summary-metric .metric-text {
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Experience Section Responsive */
@media (max-width: 1024px) {
    .experience-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline-navigation {
        position: static;
        order: 2;
    }

    .experience-details {
        order: 1;
    }

    .timeline-nav-list {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .timeline-nav-item {
        min-width: 200px;
        flex-shrink: 0;
    }

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

@media (max-width: 768px) {
    .experience-section-modern {
        padding: 50px 0;
    }

    .experience-container {
        padding: 0 1rem;
    }

    .experience-title {
        font-size: 2.5rem;
    }

    .experience-subtitle {
        font-size: 1.125rem;
    }

    .experience-content-wrapper {
        gap: 1.5rem;
    }

    .timeline-navigation,
    .experience-card,
    .experience-summary {
        padding: 1.5rem;
    }

    .job-title {
        font-size: 1.5rem;
    }

    .company-name {
        font-size: 1.25rem;
    }

    .company-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .company-meta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .company-logo,
    .company-logo-placeholder {
        width: 60px;
        height: 60px;
    }

    .company-logo-placeholder i {
        font-size: 1.5rem;
    }

    .job-title-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .tech-stack {
        gap: 0.5rem;
    }

    .tech-badge {
        padding: 0.375rem 0.75rem;
        font-size: 0.8rem;
    }

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

    .summary-metrics {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .summary-metric {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .summary-metric .metric-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .summary-metric .metric-number {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .experience-title {
        font-size: 2rem;
    }

    .experience-subtitle {
        font-size: 1rem;
    }

    .timeline-navigation,
    .experience-card,
    .experience-summary {
        padding: 1rem;
    }

    .timeline-nav-list {
        flex-direction: column;
    }

    .timeline-nav-item {
        min-width: auto;
    }

    .job-title {
        font-size: 1.25rem;
    }

    .company-name {
        font-size: 1.125rem;
    }

    .job-description p {
        font-size: 1rem;
    }

    .achievements-grid,
    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .metric-value {
        font-size: 1.5rem;
    }

    .summary-header h3 {
        font-size: 1.5rem;
    }

    .summary-header p {
        font-size: 1rem;
    }

    .summary-metric .metric-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .summary-metric .metric-number {
        font-size: 1.5rem;
    }
}

/* Modern Projects Section */
.projects-section-modern {
    padding: 50px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.projects-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="project-grid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="%23334155" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23project-grid)"/></svg>');
    opacity: 0.1;
}

.projects-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Section Header */
.projects-header {
    text-align: center;
    margin-bottom: 4rem;
}

.projects-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.projects-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.projects-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Filter Section */
.projects-filter-section {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Filter Navigation */
.projects-filter-nav {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.filter-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.project-counter {
    color: #f59e0b;
    font-size: 0.875rem;
    font-weight: 600;
    background: rgba(245, 158, 11, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
}

.filter-buttons-modern {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-btn-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.filter-btn-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(5px);
}

.filter-btn-modern.active {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    transform: translateX(5px);
}

.filter-icon-modern {
    width: 20px;
    text-align: center;
}

.filter-text-modern {
    flex: 1;
}

.filter-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
}

.filter-btn-modern.active .filter-count {
    background: rgba(255, 255, 255, 0.3);
}

/* Projects Stats */
.projects-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item-modern {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.stat-item-modern:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.stat-icon-projects {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    box-shadow: 0 6px 15px rgba(245, 158, 11, 0.3);
    flex-shrink: 0;
}

.stat-content-projects {
    flex: 1;
}

.stat-number-projects {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
}

.stat-label-projects {
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Projects Grid */
.projects-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Project Card */
.project-card-modern {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.project-card-modern:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Project Image Container */
.project-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image-modern {
    position: relative;
    width: 100%;
    height: 100%;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #374151, #4b5563);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 1.125rem;
    font-weight: 600;
}

.project-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #6b7280;
}

/* Project Overlay */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.project-overlay.active {
    opacity: 1;
    transform: translateY(0);
}

.overlay-actions {
    display: flex;
    gap: 1rem;
}

.overlay-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.overlay-btn.primary {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.overlay-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

.overlay-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.overlay-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Project Status */
.project-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.status-badge.completed {
    background: rgba(16, 185, 129, 0.9);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.status-badge.in-progress {
    background: rgba(245, 158, 11, 0.9);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.status-badge.live {
    background: rgba(59, 130, 246, 0.9);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Project Content */
.project-content-modern {
    padding: 2rem;
}

/* Project Header */
.project-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.project-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.project-category {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-year {
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 500;
}

.project-rating {
    display: flex;
    gap: 0.25rem;
}

.project-rating i {
    color: #374151;
    font-size: 0.875rem;
}

.project-rating i.active {
    color: #fbbf24;
}

/* Project Title & Description */
.project-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

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

/* Project Features */
.project-features {
    margin-bottom: 1.5rem;
}

.project-features h5 {
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e1;
    font-size: 0.875rem;
}

.features-list i {
    color: #10b981;
    font-size: 0.75rem;
}

/* Technology Stack */
.project-tech-modern {
    margin-bottom: 1.5rem;
}

.project-tech-modern h5 {
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.tech-badge-modern {
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tech-badge-modern:hover {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.3);
}

/* Project Metrics */
.project-metrics-modern {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-modern {
    text-align: center;
    flex: 1;
}

.metric-value-modern {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: #f59e0b;
    margin-bottom: 0.25rem;
}

.metric-label-modern {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Project Actions */
.project-actions-modern {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    flex: 1;
    justify-content: center;
    min-width: 0;
}

.action-btn.primary-modern {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.action-btn.primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

.action-btn.secondary-modern {
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.action-btn.secondary-modern:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateY(-2px);
}

.action-btn.tertiary-modern {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.action-btn.tertiary-modern:hover {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    transform: translateY(-2px);
}

/* Load More Section */
.projects-load-more {
    text-align: center;
    margin-top: 3rem;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.load-more-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.additional-projects {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.additional-projects p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
}

.additional-projects a {
    color: #f59e0b;
    text-decoration: none;
    font-weight: 600;
}

.additional-projects a:hover {
    text-decoration: underline;
}

/* Projects Section Responsive */
@media (max-width: 1024px) {
    .projects-filter-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .projects-stats {
        flex-direction: row;
        justify-content: space-between;
    }

    .stat-item-modern {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        flex: 1;
    }

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

@media (max-width: 768px) {
    .projects-section-modern {
        padding: 50px 0;
    }

    .projects-container {
        padding: 0 1rem;
    }

    .projects-title {
        font-size: 2.5rem;
    }

    .projects-subtitle {
        font-size: 1.125rem;
    }

    .projects-filter-nav {
        padding: 1.5rem;
    }

    .filter-buttons-modern {
        gap: 0.5rem;
    }

    .filter-btn-modern {
        padding: 0.75rem;
        font-size: 0.8rem;
    }

    .projects-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item-modern {
        flex-direction: row;
        text-align: left;
        padding: 1rem;
    }

    .stat-icon-projects {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

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

    .projects-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .project-content-modern {
        padding: 1.5rem;
    }

    .project-header-modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .project-title-modern {
        font-size: 1.25rem;
    }

    .project-actions-modern {
        flex-direction: column;
    }

    .action-btn {
        justify-content: center;
    }

    .overlay-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .projects-title {
        font-size: 2rem;
    }

    .projects-subtitle {
        font-size: 1rem;
    }

    .projects-filter-nav {
        padding: 1rem;
    }

    .filter-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .filter-btn-modern {
        padding: 0.5rem;
        gap: 0.75rem;
    }

    .project-image-container {
        height: 180px;
    }

    .project-content-modern {
        padding: 1rem;
    }

    .project-title-modern {
        font-size: 1.125rem;
    }

    .project-description-modern {
        font-size: 0.875rem;
    }

    .tech-stack-modern {
        gap: 0.375rem;
    }

    .tech-badge-modern {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
    }

    .project-metrics-modern {
        flex-direction: column;
        gap: 0.75rem;
    }

    .metric-modern {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .action-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .load-more-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* Modern Contact Section */
.contact-section-modern {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.contact-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-grid)"/></svg>');
    opacity: 0.3;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Section Header */
.contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-description {
    font-size: 1.125rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Content Wrapper */
.contact-content-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2.5rem;
}

/* Contact Information */
.contact-info-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-header {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.contact-info-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.contact-info-header p {
    color: #64748b;
    line-height: 1.6;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-method-card {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-method-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.method-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.method-icon.active {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.method-content {
    flex: 1;
}

.method-label {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.method-value {
    font-size: 0.875rem;
    color: #10b981;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 0.25rem;
    display: block;
}

.method-value:hover {
    text-decoration: underline;
}

.method-description {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

.method-action {
    flex-shrink: 0;
}

.action-btn-contact {
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    text-decoration: none;
    transition: all 0.3s ease;
}

.action-btn-contact:hover {
    background: #10b981;
    color: white;
    transform: translateX(3px);
}

/* Social Connect */
.social-connect {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.social-connect h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.social-connect p {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.social-links-modern {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
}

.social-link-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    color: #475569;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link-contact:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.social-link-contact.hovered {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
    color: #10b981;
}

.social-link-contact i {
    width: 20px;
    text-align: center;
    font-size: 1.125rem;
}

.social-link-contact span {
    font-weight: 600;
    font-size: 0.875rem;
}

/* Quick Actions */
.quick-actions {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.quick-actions h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    justify-content: center;
}

.quick-action-btn.primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.quick-action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.quick-action-btn.secondary {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.quick-action-btn.secondary:hover {
    background: rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.quick-action-btn.tertiary {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.quick-action-btn.tertiary:hover {
    background: rgba(139, 92, 246, 0.15);
    transform: translateY(-2px);
}

/* Availability Status */
.availability-status {
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 16px;
    padding: 1.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    animation: pulse-status-contact 2s infinite;
}

@keyframes pulse-status-contact {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.status-text {
    font-weight: 700;
    font-size: 1rem;
}

.status-description {
    font-size: 0.875rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Contact Form */
.contact-form-modern {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.form-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.form-header p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

/* Modern Form */
.modern-form {
    position: relative;
}

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

.form-field {
    position: relative;
}

.form-field.full-width {
    grid-column: 1 / -1;
}

.field-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 0.5rem;
    z-index: 2;
}

.form-field.focused .field-label,
.form-field.filled .field-label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.75rem;
    color: #10b981;
    font-weight: 600;
}

.field-input,
.field-select,
.field-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    color: #1e293b;
    background: white;
    transition: all 0.3s ease;
    outline: none;
    resize: none;
}

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

.field-border {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #10b981, #059669);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.form-field.focused .field-border {
    transform: scaleX(1);
}

/* Form Actions */
.form-actions {
    text-align: center;
}

.submit-btn-modern {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    margin-bottom: 1rem;
    min-width: 200px;
}

.submit-btn-modern:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.submit-btn-modern:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn-modern.submitting {
    background: #6b7280;
}

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

.form-note {
    color: #64748b;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-note i {
    color: #10b981;
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 16px;
    padding: 2rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.success-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.success-content p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Modern Footer */
.footer-modern {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem 0;
    position: relative;
    z-index: 2;
}

/* Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Footer Brand */
.footer-brand {
    max-width: 400px;
}

.brand-logo {
    margin-bottom: 1.5rem;
}

.brand-logo h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.brand-tagline {
    color: #10b981;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-description {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

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

.footer-social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-social-link.linkedin {
    background: rgba(0, 119, 181, 0.1);
    color: #0077b5;
}

.footer-social-link.linkedin:hover {
    background: #0077b5;
    color: white;
    transform: translateY(-3px);
}

.footer-social-link.github {
    background: rgba(255, 255, 255, 0.1);
    color: #f8fafc;
}

.footer-social-link.github:hover {
    background: #333;
    color: white;
    transform: translateY(-3px);
}

.footer-social-link.email {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.footer-social-link.email:hover {
    background: #10b981;
    color: white;
    transform: translateY(-3px);
}

.footer-social-link.phone {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.footer-social-link.phone:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links,
.footer-services,
.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4,
.footer-newsletter h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a,
.footer-services a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-services a:hover {
    color: #10b981;
    transform: translateX(5px);
}

/* Footer Contact */
.contact-info-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #94a3b8;
    font-size: 0.875rem;
}

.contact-item-footer i {
    color: #10b981;
    width: 16px;
    text-align: center;
}

.contact-item-footer a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-footer a:hover {
    color: #10b981;
}

/* Footer Newsletter */
.footer-newsletter {
    max-width: 300px;
}

.footer-newsletter p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 0.875rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: #64748b;
}

.newsletter-input:focus {
    border-color: #10b981;
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-btn {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.newsletter-btn:disabled {
    background: #6b7280;
    cursor: not-allowed;
}

.newsletter-success {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

.copyright {
    text-align: left;
}

.copyright p {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.copyright i {
    color: #ef4444;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #10b981;
}

.footer-tech-stack {
    text-align: right;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-tech-stack span {
    color: #64748b;
    font-size: 0.875rem;
}

.tech-badges-footer {
    display: flex;
    gap: 0.5rem;
}

.tech-badge-footer {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Footer Background Animation */
.footer-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.footer-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    animation: float-footer 20s ease-in-out infinite;
}

.footer-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.footer-shape.shape-2 {
    width: 200px;
    height: 200px;
    top: 30%;
    right: -5%;
    animation-delay: 7s;
}

.footer-shape.shape-3 {
    width: 250px;
    height: 250px;
    bottom: -10%;
    left: 20%;
    animation-delay: 14s;
}

@keyframes float-footer {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
    25% { transform: translateY(-20px) translateX(15px) scale(1.05); }
    50% { transform: translateY(-5px) translateX(-10px) scale(0.95); }
    75% { transform: translateY(-30px) translateX(8px) scale(1.02); }
}

/* Contact & Footer Responsive */
@media (max-width: 1024px) {
    .contact-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-modern {
        order: 2;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .contact-info-modern > * {
        flex: 1;
        min-width: 300px;
    }

    .contact-form-modern {
        order: 1;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-newsletter {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .contact-section-modern {
        padding: 40px 0 25px;
    }

    .contact-container {
        padding: 0 1rem;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .contact-subtitle {
        font-size: 1.125rem;
    }

    .contact-description {
        font-size: 1rem;
    }

    .contact-content-wrapper {
        gap: 2rem;
    }

    .contact-info-modern {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-info-modern > * {
        min-width: auto;
    }

    .contact-info-header,
    .social-connect,
    .quick-actions,
    .availability-status,
    .contact-form-modern {
        padding: 1.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-field.full-width {
        grid-column: 1;
    }

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

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

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-newsletter {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-bottom-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .copyright,
    .footer-tech-stack {
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-tech-stack {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .contact-description {
        font-size: 0.875rem;
    }

    .contact-method-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .method-action {
        align-self: center;
    }

    .social-links-modern {
        gap: 0.5rem;
    }

    .social-link-contact {
        padding: 0.75rem;
        font-size: 0.8rem;
    }

    .action-buttons {
        gap: 0.5rem;
    }

    .quick-action-btn {
        padding: 0.75rem;
        font-size: 0.8rem;
    }

    .form-header h3 {
        font-size: 1.5rem;
    }

    .form-header p {
        font-size: 0.875rem;
    }

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

    .brand-logo h3 {
        font-size: 1.5rem;
    }

    .footer-social {
        justify-content: center;
        gap: 0.75rem;
    }

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

    .newsletter-input-group {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
        height: 45px;
    }

    .tech-badges-footer {
        justify-content: center;
        flex-wrap: wrap;
    }
}
