/* Import Inter font family */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Variables for Samasha Theme */
:root {
    --bg-dark: #0a0a0a;
    --bg-section: #111111;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --primary-green: #00ff88;
    --primary-cyan: #00eeef;
    --accent-orange: #ff6b35;
    --border-color: #333333;
    --card-bg: rgba(255, 255, 255, 0.05);
    --hover-bg: rgba(255, 255, 255, 0.1);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 1.6rem;
    color: var(--text-primary);
    background: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

section {
    min-height: 100vh;
    padding: 10rem 9% 2rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9% 2rem;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.logo {
    font-size: 2.8rem;
    color: var(--primary-green);
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.navbar {
    display: flex;
    gap: 3rem;
}

.navbar a {
    font-size: 1.7rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    margin-left: 4rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar a:hover,
.navbar a.active {
    color: var(--primary-green);
}

.navbar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.navbar a:hover::after,
.navbar a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hire-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-cyan));
    color: var(--bg-dark);
    padding: 1.2rem 2.4rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hire-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Home Section */
.home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6rem;
    background: #0a0a0a;
    background-image: 
        radial-gradient(ellipse at center, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 238, 239, 0.03) 0%, transparent 50%);
    padding: 12rem 9% 6rem;
    min-height: 100vh;
}

.home-content {
    max-width: 60%;
    z-index: 2;
}

.home-content h1 {
    font-size: 5.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 1rem 0 2rem;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.name-highlight {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-content p {
    font-size: 1.8rem;
    color: var(--text-secondary);
    margin: 2rem 0 4rem;
    line-height: 1.7;
    max-width: 90%;
}

.home-sci {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
}

.home-sci a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4.5rem;
    height: 4.5rem;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 2rem;
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.home-sci a:hover {
    background: var(--primary-green);
    color: var(--bg-dark);
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.home-img {
    max-width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.home-img::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, 
        var(--primary-green), 
        var(--primary-cyan), 
        #ff1493, 
        var(--primary-green));
    background-size: 400% 400%;
    border-radius: 50%;
    z-index: -1;
    animation: gradient-rotate 4s ease-in-out infinite;
    opacity: 0.8;
}

.home-img::after {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: radial-gradient(circle at 30% 30%, rgba(0, 255, 136, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(0, 238, 239, 0.3) 0%, transparent 50%);
    border-radius: 50%;
    z-index: -2;
    animation: pulse-glow 3s ease-in-out infinite alternate;
}

@keyframes gradient-rotate {
    0% { 
        background-position: 0% 50%; 
        transform: rotate(0deg) scale(1);
    }
    25% { 
        background-position: 100% 50%; 
        transform: rotate(90deg) scale(1.02);
    }
    50% { 
        background-position: 100% 100%; 
        transform: rotate(180deg) scale(1);
    }
    75% { 
        background-position: 0% 100%; 
        transform: rotate(270deg) scale(1.02);
    }
    100% { 
        background-position: 0% 50%; 
        transform: rotate(360deg) scale(1);
    }
}

@keyframes pulse-glow {
    0% { 
        opacity: 0.4; 
        transform: scale(1); 
    }
    100% { 
        opacity: 0.8; 
        transform: scale(1.1); 
    }
}

.home-img img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 60px rgba(0, 255, 136, 0.3),
        inset 0 0 30px rgba(0, 255, 136, 0.1);
    transition: all 0.4s ease;
    animation: float-image 6s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes float-image {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-10px) rotate(1deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(0deg); 
    }
    75% { 
        transform: translateY(-10px) rotate(-1deg); 
    }
}

.home-img img:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--primary-cyan);
    box-shadow: 
        0 30px 80px rgba(0, 255, 136, 0.4),
        0 0 50px rgba(0, 238, 239, 0.6),
        inset 0 0 40px rgba(0, 255, 136, 0.2);
    filter: brightness(1.1) contrast(1.1);
    animation-play-state: paused;
}

.home-img:hover::before {
    animation-duration: 1s;
    opacity: 1;
    transform: scale(1.1);
}

.home-img:hover::after {
    animation-duration: 1.5s;
    opacity: 1;
    transform: scale(1.2);
}

/* Download Section */
.download-section {
    margin-top: 3rem;
}

.download-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-cyan));
    color: var(--bg-dark);
    padding: 1.4rem 3rem;
    border: none;
    border-radius: 8px;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

.download-btn i {
    font-size: 1.8rem;
}

/* About Section */
.about {
    background: #220129;
    background-image: 
        radial-gradient(ellipse at 30% 70%, rgba(0, 255, 136, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(0, 238, 239, 0.02) 0%, transparent 50%);
    padding: 10rem 9% 6rem;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 100px,
            rgba(0, 255, 136, 0.02) 102px,
            rgba(0, 255, 136, 0.02) 104px
        );
    pointer-events: none;
    opacity: 0.7;
    animation: subtle-move 30s linear infinite;
}

@keyframes subtle-move {
    0% { transform: translateX(-100px) translateY(-50px); }
    100% { transform: translateX(100px) translateY(50px); }
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.about-header h2 {
    font-size: 5.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    position: relative;
}

.about-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-cyan));
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.about-header p {
    font-size: 2rem;
    color: var(--text-secondary);
    max-width: 70rem;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

.about-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.tab-btn {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    padding: 1.2rem 3rem;
    border-radius: 8px;
    font-size: 1.6rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-green);
    color: var(--bg-dark);
    border-color: var(--primary-green);
}

.tab-content {
    min-height: 50rem;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* About Section Details */
.about-details {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    margin-bottom: 3rem;
    align-items: start;
}

.about-text {
    background: rgba(255, 255, 255, 0.03);
    padding: 4rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 255, 136, 0.15);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-cyan), var(--primary-green));
    background-size: 200% 100%;
    animation: gradient-slide 3s ease-in-out infinite;
}

@keyframes gradient-slide {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.about-text::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: float-orb 6s ease-in-out infinite;
}

@keyframes float-orb {
    0%, 100% { transform: translateY(-50%) translateX(0) scale(1); }
    50% { transform: translateY(-60%) translateX(-20px) scale(1.1); }
}

.about-text:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 
        0 30px 70px rgba(0, 255, 136, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.about-text h3 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.about-text h3::before {
    content: '⚡';
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: icon-glow 2s ease-in-out infinite alternate;
}

@keyframes icon-glow {
    0% { filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.3)); }
    100% { filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.6)); }
}

.about-text p {
    font-size: 1.7rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    text-align: justify;
    position: relative;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text p::first-letter {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-green);
    float: left;
    margin: 0.1rem 0.5rem 0 0;
    line-height: 1;
}

.personal-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.personal-info::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, 
        rgba(0, 255, 136, 0.1) 0%, 
        transparent 25%, 
        transparent 75%, 
        rgba(0, 238, 239, 0.1) 100%);
    border-radius: 20px;
    z-index: -1;
    animation: border-glow 4s ease-in-out infinite;
}

@keyframes border-glow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.02); }
}

.personal-info h4 {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.personal-info h4::before {
    content: '👤';
    font-size: 2.4rem;
    display: block;
    margin-bottom: 1rem;
    animation: bounce-icon 3s ease-in-out infinite;
}

@keyframes bounce-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.6s ease;
}

.info-item:hover {
    border-color: var(--primary-green);
    transform: translateX(8px) scale(1.02);
    box-shadow: 
        0 10px 25px rgba(0, 255, 136, 0.15),
        -5px 0 15px rgba(0, 255, 136, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.info-item:hover::before {
    left: 100%;
}

.info-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.6rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-label i {
    font-size: 1.8rem;
    color: var(--primary-green);
    background: rgba(0, 255, 136, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    transition: all 0.3s ease;
}

.info-item:hover .info-label i {
    background: var(--primary-green);
    color: var(--bg-dark);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

.info-value {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1.5rem;
    text-align: right;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    position: relative;
}

.info-value::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-cyan));
    transition: width 0.3s ease;
}

.info-item:hover .info-value::after {
    width: 100%;
}

/* Skills Section */
.skills {
    background: #0a0521;
    background-image: 
        radial-gradient(ellipse at 80% 20%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(0, 238, 239, 0.06) 0%, transparent 50%);
    padding: 10rem 9% 6rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.skills::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 120px,
            rgba(0, 255, 136, 0.03) 122px,
            rgba(0, 255, 136, 0.03) 124px
        );
    pointer-events: none;
    opacity: 0.8;
    animation: diagonal-move 25s linear infinite;
}

@keyframes diagonal-move {
    0% { transform: translateX(-120px) translateY(-60px); }
    100% { transform: translateX(120px) translateY(60px); }
}

.skills-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.skills-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.skills-header h2 {
    font-size: 5.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    position: relative;
}

.skills-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-cyan));
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.skills-header p {
    font-size: 2rem;
    color: var(--text-secondary);
    max-width: 70rem;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

.skills-showcase {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: flex-start;
}

.skills-section {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 24px;
    padding: 4rem;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.skills-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-cyan), var(--primary-green));
    background-size: 200% 100%;
    animation: gradient-slide 3s ease-in-out infinite;
}

.skills-section:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 
        0 35px 80px rgba(0, 255, 136, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.skills-section h4 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.skills-section h4::before {
    content: '🚀';
    font-size: 2.6rem;
    animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.skills-categories {
    display: grid;
    gap: 3rem;
}

.skill-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 16px;
    padding: 3rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 300px;
}

.skill-category::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: float-orb 8s ease-in-out infinite;
}

.skill-category:hover {
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

.skill-category h5 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.skill-category h5::before {
    content: '💎';
    font-size: 2rem;
    animation: icon-glow 2.5s ease-in-out infinite alternate;
}

.skill-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
    gap: 2rem;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 12px;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.skill-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.6s ease;
}

.skill-item:hover {
    border-color: var(--primary-green);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.skill-item:hover::before {
    left: 100%;
}

.skill-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.skill-icon.java { background: linear-gradient(135deg, #ED8B00, #FF6B35); }
.skill-icon.c { background: linear-gradient(135deg, #00599C, #004482); }
.skill-icon.python { background: linear-gradient(135deg, #3776AB, #FFD43B); }
.skill-icon.js { background: linear-gradient(135deg, #F7DF1E, #F0DB4F); color: #000; }
.skill-icon.html { background: linear-gradient(135deg, #E34F26, #FF6B35); }
.skill-icon.css { background: linear-gradient(135deg, #1572B6, #33A9DC); }
.skill-icon.react { background: linear-gradient(135deg, #61DAFB, #21232A); }
.skill-icon.node { background: linear-gradient(135deg, #339933, #68A063); }
.skill-icon.express { background: linear-gradient(135deg, #000000, #404040); }
.skill-icon.mysql { background: linear-gradient(135deg, #4479A1, #00618A); }
.skill-icon.mongo { background: linear-gradient(135deg, #47A248, #4DB33D); }

.skill-item span {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Education Section */
.education {
    background: #0c0c0c;
    background-image: 
        radial-gradient(ellipse at 60% 40%, rgba(0, 238, 239, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 60%, rgba(0, 255, 136, 0.06) 0%, transparent 50%);
    padding: 10rem 9% 6rem;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.education::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            135deg,
            transparent,
            transparent 80px,
            rgba(0, 238, 239, 0.03) 82px,
            rgba(0, 238, 239, 0.03) 84px
        );
    pointer-events: none;
    animation: education-pattern 30s linear infinite;
}

@keyframes education-pattern {
    0% { transform: translateX(-80px) translateY(-40px); }
    100% { transform: translateX(80px) translateY(40px); }
}

.education-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.education-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.education-header h2 {
    font-size: 5.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    position: relative;
}

.education-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-cyan));
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.education-header p {
    font-size: 2rem;
    color: var(--text-secondary);
    max-width: 70rem;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* Education Timeline */
.education-timeline {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 2rem 0;
    position: relative;
}

.education-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-green), var(--primary-cyan), var(--primary-green));
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.timeline-item {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    position: relative;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 238, 239, 0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-green), var(--primary-cyan));
    background-size: 200% 100%;
    animation: gradient-slide 4s ease-in-out infinite;
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 238, 239, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: float-orb 6s ease-in-out infinite;
}

.timeline-item:hover {
    border-color: rgba(0, 238, 239, 0.4);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 30px 70px rgba(0, 238, 239, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.timeline-date {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-dark);
    background: linear-gradient(135deg, var(--primary-green), var(--primary-cyan));
    padding: 1.2rem 2rem;
    border-radius: 25px;
    white-space: nowrap;
    border: 2px solid rgba(0, 255, 136, 0.3);
    box-shadow: 
        0 10px 25px rgba(0, 255, 136, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.timeline-date::before {
    content: '🎓';
    font-size: 1.8rem;
    animation: icon-bounce 3s ease-in-out infinite;
}

@keyframes icon-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.timeline-content {
    flex: 1;
    position: relative;
}

.timeline-content h4 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.timeline-content .institution {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-cyan);
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.timeline-content .institution::before {
    content: '🏛️';
    font-size: 1.6rem;
    animation: icon-glow 2s ease-in-out infinite alternate;
}

.timeline-content .description {
    font-size: 1.6rem;
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: justify;
}

/* Projects Section */
.projects {
    padding: 10rem 9% 6rem;
    background: #0b0033;
    background-image: 
        radial-gradient(ellipse at 90% 10%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 10% 90%, rgba(0, 238, 239, 0.06) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 100px,
            rgba(0, 255, 136, 0.02) 102px,
            rgba(0, 255, 136, 0.02) 104px
        );
    pointer-events: none;
    animation: projects-pattern 20s linear infinite;
}

@keyframes projects-pattern {
    0% { transform: translateX(-100px) translateY(-50px); }
    100% { transform: translateX(100px) translateY(50px); }
}

.projects::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 238, 239, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 75% 75%, rgba(0, 255, 136, 0.03) 0%, transparent 30%);
    background-size: 400px 400px;
    pointer-events: none;
    animation: float-pattern 15s ease-in-out infinite alternate;
}

.projects-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.section-header h2 {
    font-size: 5.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-cyan));
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.section-header p {
    font-size: 2rem;
    color: var(--text-secondary);
    max-width: 70rem;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(48rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-cyan), var(--primary-green));
    background-size: 200% 100%;
    animation: gradient-slide 3s ease-in-out infinite;
}

.project-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -80px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: float-orb 8s ease-in-out infinite;
    pointer-events: none;
}

.project-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 
        0 35px 80px rgba(0, 255, 136, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.project-image {
    height: 25rem;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 238, 239, 0.1));
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.02) 22px,
            rgba(255, 255, 255, 0.02) 24px
        );
    animation: image-pattern 10s linear infinite;
}

@keyframes image-pattern {
    0% { transform: translateX(-24px) translateY(-12px); }
    100% { transform: translateX(24px) translateY(12px); }
}

.project-preview-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    opacity: 0.9;
    transition: all 0.4s ease;
    z-index: 1;
    filter: brightness(0.8) contrast(1.1) saturate(1.2);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.project-preview-image:hover {
    opacity: 1;
    transform: scale(1.03);
    filter: brightness(1) contrast(1.2) saturate(1.3);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        inset 0 0 0 2px rgba(64, 224, 208, 0.3),
        0 0 30px rgba(64, 224, 208, 0.2);
}

.project-category {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.8rem;
    position: relative;
    z-index: 2;
}

.category-tag {
    padding: 0.6rem 1.4rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        0 6px 15px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.category-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-tag:hover::before {
    opacity: 1;
}

.category-tag:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.category-tag.healthcare {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    position: relative;
}

.category-tag.healthcare::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0.8rem;
    transform: translateY(-50%);
    font-size: 0;
    opacity: 0;
}

.category-tag.fullstack {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    position: relative;
}

.category-tag.fullstack::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0.8rem;
    transform: translateY(-50%);
    font-size: 0;
    opacity: 0;
}

.category-tag.web {
    background: linear-gradient(135deg, #667eea, #764ba2);
    position: relative;
}

.category-tag.web::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0.8rem;
    transform: translateY(-50%);
    font-size: 0;
    opacity: 0;
}

.category-tag.hardware {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    position: relative;
}

.category-tag.hardware::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0.8rem;
    transform: translateY(-50%);
    font-size: 0;
    opacity: 0;
}

.project-date {
    font-size: 1.1rem;
    align-items: flex-end;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.project-date::before {
    content: '';
    margin-right: 0;
    font-size: 0;
    opacity: 0;
}

.project-date:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

@keyframes icon-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.project-content {
    padding: 5rem;
    position: relative;
    z-index: 2;
}

.project-content h3 {
    font-size: 5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    line-height: 1.2;
}

.project-subtitle {
    display: block;
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 600;
    opacity: 0.9;
}

.project-content p {
    font-size: 3.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: justify;
    font-weight: 400;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    background: rgba(0, 255, 136, 0.15);
    color: var(--primary-green);
    padding: 1rem 1.8rem;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    border: 1px solid rgba(0, 255, 136, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.tech-tag:hover {
    background: rgba(0, 255, 136, 0.25);
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
}

.tech-tag:hover::before {
    left: 100%;
}

.project-links {
    display: flex;
    gap: 1.5rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.4rem 2.6rem;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid;
}

.project-link.demo {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-cyan));
    color: var(--bg-dark);
    border-color: transparent;
}

.project-link.demo:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.4);
}

.project-link.github {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
}

.project-link.github:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* New Projects List Layout */
.projects-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.project-item {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.project-image-header {
    position: relative;
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.1), rgba(255, 20, 147, 0.1));
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.project-image-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #40E0D0, #FF1493);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 25px rgba(64, 224, 208, 0.3);
}

.project-content {
    padding: 2rem;
}

.project-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.05), rgba(255, 20, 147, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.project-item:hover::before {
    opacity: 1;
}

.project-item:hover {
    transform: translateY(-5px);
    border-color: rgba(64, 224, 208, 0.3);
    box-shadow: 0 20px 40px rgba(64, 224, 208, 0.1);
}

.project-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
}

.project-category {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: right;
}

.category-label {
    background: linear-gradient(135deg, #40E0D0, #FF1493);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 500;
    font-size: 0.8rem;
    color: white;
}

.project-date {
    font-weight: 500;
}

.project-icon {
    font-size: 1.2rem;
    color: #40E0D0;
}

.project-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #40E0D0, #FF1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-subtitle {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    font-style: italic;
}

.project-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.technologies-section {
    margin-bottom: 2rem;
}

.technologies-section h4 {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tags .tech-tag {
    background: rgba(64, 224, 208, 0.1);
    color: #40E0D0;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(64, 224, 208, 0.2);
    transition: all 0.3s ease;
}

.tech-tags .tech-tag:hover {
    background: rgba(64, 224, 208, 0.2);
    border-color: rgba(64, 224, 208, 0.4);
    transform: translateY(-2px);
}

.project-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.action-btn.live-demo {
    background: linear-gradient(135deg, #40E0D0, #FF1493);
    color: white;
    border-color: transparent;
}

.action-btn.live-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(64, 224, 208, 0.3);
}

.action-btn.github {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
}

.action-btn.github:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.action-btn.details {
    background: transparent;
    color: #40E0D0;
    border-color: rgba(64, 224, 208, 0.3);
}

.action-btn.details:hover {
    background: rgba(64, 224, 208, 0.1);
    border-color: rgba(64, 224, 208, 0.6);
    transform: translateY(-2px);
}

.view-all-projects {
    text-align: center;
    margin-top: 4rem;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.1), rgba(255, 20, 147, 0.1));
    color: #40E0D0;
    text-decoration: none;
    border-radius: 30px;
    border: 1px solid rgba(64, 224, 208, 0.3);
    font-weight: 600;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.2), rgba(255, 20, 147, 0.2));
    border-color: rgba(64, 224, 208, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(64, 224, 208, 0.2);
}

/* Contacts Section */
.contacts {
    background: #0a1929;
    background-image: 
        radial-gradient(ellipse at 25% 75%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 25%, rgba(0, 238, 239, 0.06) 0%, transparent 50%);
    padding: 10rem 9% 6rem;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contacts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            120deg,
            transparent,
            transparent 90px,
            rgba(0, 238, 239, 0.03) 92px,
            rgba(0, 238, 239, 0.03) 94px
        );
    pointer-events: none;
    opacity: 0.8;
    animation: contacts-pattern 25s linear infinite;
}

@keyframes contacts-pattern {
    0% { transform: translateX(-90px) translateY(-45px); }
    100% { transform: translateX(90px) translateY(45px); }
}

.contacts-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contacts-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.contacts-header h2 {
    font-size: 5.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    position: relative;
}

.contacts-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-cyan));
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.contacts-header p {
    font-size: 2rem;
    color: var(--text-secondary);
    max-width: 70rem;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

.contacts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    margin-top: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 238, 239, 0.2);
    border-radius: 16px;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 238, 239, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-item:hover {
    border-color: rgba(0, 238, 239, 0.4);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(0, 238, 239, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.contact-item:hover::before {
    left: 100%;
}

.contact-icon {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-cyan));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--bg-dark);
    flex-shrink: 0;
    box-shadow: 
        0 10px 25px rgba(0, 255, 136, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 35px rgba(0, 255, 136, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.contact-details h4 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-details p {
    font-size: 1.7rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-details p a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-details p a:hover {
    color: var(--primary-green);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.social-links {
    margin-top: 2rem;
}

.social-links h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4.5rem;
    height: 4.5rem;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 2rem;
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-green);
    color: var(--bg-dark);
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

.contact-form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 238, 239, 0.2);
    border-radius: 20px;
    padding:   4.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-green), var(--primary-cyan));
    background-size: 200% 100%;
    animation: gradient-slide 4s ease-in-out infinite;
}

.contact-form::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -60px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 238, 239, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: float-orb 7s ease-in-out infinite;
}

.contact-form h3 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact-form h3::before {
    content: '📬';
    font-size: 2.4rem;
    animation: icon-bounce 3s ease-in-out infinite;
}

.form-group {
    margin-bottom: 3rem;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.8rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 238, 239, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1.6rem;
    font-family: var(--font-family);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 
        0 0 0 3px rgba(0, 238, 239, 0.15),
        0 5px 15px rgba(0, 238, 239, 0.1);
    background: rgba(255, 255, 255, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.8;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-cyan));
    color: var(--bg-dark);
    padding: 1.8rem 4.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: var(--font-family);
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 25px rgba(0, 255, 136, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.submit-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.6s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(0, 255, 136, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Stats Section */
.stats {
    background: var(--bg-dark);
    padding: 8rem 9% 6rem;
    background-image: radial-gradient(ellipse at center, rgba(0, 238, 239, 0.02) 0%, transparent 50%);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.1);
}

.stat-number {
    font-size: 4.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.6rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.4;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    padding: 3rem 9%;
    text-align: center;
}

.footer p {
    color: var(--text-secondary);
    font-size: 1.4rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-cyan));
    color: var(--bg-dark);
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.5);
}

.back-to-top.show {
    display: flex;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-cyan));
    z-index: 10000;
    transition: width 0.25s ease;
}

/* Page Transition - Simple fade effect */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.page-transition.active {
    opacity: 1;
    visibility: visible;
}

/* Samasha-style page transitions */
.page-section {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.page-section.fade-out {
    opacity: 0;
    transform: translateY(-30px);
}

.page-section.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth content reveal animations */
.content-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.content-reveal.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Element stagger animations */
.element-stagger {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.element-stagger.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Samasha-style element reveals with smooth timing */
.samasha-reveal {
    opacity: 0;
    transform: translateY(50px) rotateX(10deg);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    filter: blur(2px);
}

.samasha-reveal.animate {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
    filter: blur(0px);
}

/* Progressive element delays for smooth flow */
.samasha-reveal:nth-child(1) { transition-delay: 0.1s; }
.samasha-reveal:nth-child(2) { transition-delay: 0.2s; }
.samasha-reveal:nth-child(3) { transition-delay: 0.3s; }
.samasha-reveal:nth-child(4) { transition-delay: 0.4s; }
.samasha-reveal:nth-child(5) { transition-delay: 0.5s; }
.samasha-reveal:nth-child(6) { transition-delay: 0.6s; }

/* Smooth text reveal animation */
.text-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.text-reveal.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Card hover enhancements for elegance */
.elegant-card {
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.elegant-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(0, 255, 136, 0.15),
        0 5px 15px rgba(0, 255, 136, 0.1);
}

/* Samasha-style staggered animations for different sections */
.project-card.samasha-reveal:nth-child(1) { transition-delay: 0.15s; }
.project-card.samasha-reveal:nth-child(2) { transition-delay: 0.3s; }
.project-card.samasha-reveal:nth-child(3) { transition-delay: 0.45s; }

.stat-item.samasha-reveal:nth-child(1) { transition-delay: 0.1s; }
.stat-item.samasha-reveal:nth-child(2) { transition-delay: 0.2s; }
.stat-item.samasha-reveal:nth-child(3) { transition-delay: 0.3s; }
.stat-item.samasha-reveal:nth-child(4) { transition-delay: 0.4s; }

.skill-category.samasha-reveal:nth-child(1) { transition-delay: 0.2s; }
.skill-category.samasha-reveal:nth-child(2) { transition-delay: 0.4s; }
.skill-category.samasha-reveal:nth-child(3) { transition-delay: 0.6s; }

.contact-item.samasha-reveal:nth-child(1) { transition-delay: 0.1s; }
.contact-item.samasha-reveal:nth-child(2) { transition-delay: 0.25s; }
.contact-item.samasha-reveal:nth-child(3) { transition-delay: 0.4s; }

/* Enhanced smooth scrolling behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 8rem;
}

/* Refined page navigation with momentum */
.smooth-navigate {
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Elegant section transitions */
section {
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

section.section-active {
    transform: translateY(0);
    opacity: 1;
}

/* Geometric Background Elements */
.geometric-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.line {
    position: absolute;
    background: linear-gradient(45deg, rgba(0, 255, 136, 0.1), rgba(0, 238, 239, 0.1));
    animation: slide 8s linear infinite;
}

.line-1 {
    width: 2px;
    height: 100px;
    top: 30%;
    left: 20%;
    animation-delay: 1s;
}

.line-2 {
    width: 100px;
    height: 2px;
    top: 60%;
    right: 25%;
    animation-delay: 3s;
}

.line-3 {
    width: 2px;
    height: 150px;
    bottom: 15%;
    right: 10%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes slide {
    0% { transform: translateX(-100px); opacity: 0; }
    50% { opacity: 0.3; }
    100% { transform: translateX(100px); opacity: 0; }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* Staggered Animation Delays */
.projects-grid .project-card:nth-child(1) { transition-delay: 0.1s; }
.projects-grid .project-card:nth-child(2) { transition-delay: 0.2s; }
.projects-grid .project-card:nth-child(3) { transition-delay: 0.3s; }

.stats-container .stat-item:nth-child(1) { transition-delay: 0.1s; }
.stats-container .stat-item:nth-child(2) { transition-delay: 0.2s; }
.stats-container .stat-item:nth-child(3) { transition-delay: 0.3s; }
.stats-container .stat-item:nth-child(4) { transition-delay: 0.4s; }

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-green);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 55%;
    }
    
    .header {
        padding: 1.5rem 5%;
    }
    
    .navbar {
        position: fixed;
        top: -100%; /* Hide by default on mobile */
        left: 0;
        width: 100%;
        padding: 2rem 5%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid var(--border-color);
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
        flex-direction: column;
        gap: 1rem;
        transition: top 0.3s ease;
        z-index: 9999;
        visibility: hidden;
        opacity: 0;
    }
    .navbar.active {
        top: 60px; /* Show below header only on mobile */
        visibility: visible;
        opacity: 1;
    }
    
    .navbar a {
        display: block;
        font-size: 1.8rem;
        margin: 1rem 0;
        padding: 1rem;
        border-radius: 8px;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .navbar a:hover {
        background: var(--card-bg);
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .home {
        flex-direction: column;
        text-align: center;
        padding: 10rem 5% 6rem;
        gap: 4rem;
    }
    
    .home-content {
        max-width: 100%;
    }
    
    .home-content h1 {
        font-size: 4.5rem;
    }
    
    .home-content h3 {
        font-size: 2.8rem;
    }
    
    .home-content p {
        max-width: 100%;
        font-size: 1.7rem;
    }
    
    .home-img {
        max-width: 100%;
    }
    
    .home-img img {
        width: 30rem;
        height: 30rem;
    }
    
    .about,
    .skills,
    .education,
    .projects,
    .contacts {
        padding: 8rem 5% 4rem;
    }
    
    .section-header h2,
    .about-header h2 {
        font-size: 4rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .project-card {
        border-radius: 16px;
    }
    
    .project-image {
        height: 16rem;
        padding: 1.5rem;
    }
    
    .project-icon {
        width: 6rem;
        height: 6rem;
        font-size: 2.8rem;
    }
    
    .category-tag {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
    
    .project-date {
        font-size: 1rem;
    }
    
    .project-content {
        padding: 2.5rem;
    }
    
    .project-content h3 {
        font-size: 2rem;
    }
    
    .project-subtitle {
        font-size: 1.1rem;
    }
    
    .project-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .tech-tag {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
    }
    
    .project-links {
        gap: 1rem;
        flex-direction: column;
    }
    
    .project-link {
        padding: 1rem 2rem;
        font-size: 1.3rem;
        text-align: center;
        justify-content: center;
    }
    
    .contacts-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-form {
        padding: 3rem 2rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3.6rem;
    }
    
    .about-tabs {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .tab-btn {
        flex: 1;
        min-width: calc(50% - 0.5rem);
        padding: 1rem 1.5rem;
        font-size: 1.4rem;
    }
}

/* Additional Responsive Styles for Small Screens */
@media (max-width: 480px) {
    .home-content h1 { 
        font-size: 3.2rem; 
    }
    
    .section-header h2 { 
        font-size: 3.6rem; 
    }
    
    .stats-container { 
        grid-template-columns: 1fr; 
    }
    
    .about-tabs { 
        justify-content: stretch; 
        flex-direction: column; 
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .home {
        padding: 8rem 5% 4rem;
    }
    
    .about,
    .skills,
    .education,
    .projects,
    .contacts {
        padding: 6rem 5% 4rem;
    }
    
    .about-details {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-text {
        padding: 3rem 2rem;
        backdrop-filter: blur(15px);
    }
    
    .about-text::after {
        display: none; /* Hide floating orb on mobile */
    }
    
    .about-text h3 {
        font-size: 2.8rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .about-text h3::before {
        font-size: 2.4rem;
    }
    
    .about-text p {
        font-size: 1.6rem;
        text-align: left;
        line-height: 1.7;
    }
    
    .about-text p::first-letter {
        font-size: 1.8rem;
    }
    
    .about-header h2 {
        font-size: 4.2rem;
    }
    
    .about-header::before {
        width: 40px;
        height: 40px;
    }
    
    .about-header h2::after {
        width: 60px;
        height: 3px;
    }
    
    .about-header p {
        font-size: 1.8rem;
    }
    
    .personal-info {
        gap: 1.5rem;
    }
    
    .personal-info::before {
        animation: none; /* Disable complex animations on mobile */
    }
    
    .personal-info h4 {
        font-size: 2.2rem;
    }
    
    .personal-info h4::before {
        font-size: 2rem;
    }
    
    .info-item {
        padding: 1.8rem 1.5rem;
        transform: none !important; /* Disable hover transforms on mobile */
    }
    
    .info-item:hover {
        transform: none !important;
        box-shadow: 0 5px 15px rgba(0, 255, 136, 0.1);
    }
    
    .info-label {
        font-size: 1.5rem;
        gap: 0.8rem;
    }
    
    .info-label i {
        width: 2.8rem;
        height: 2.8rem;
        font-size: 1.6rem;
    }
    
    .info-value {
        font-size: 1.4rem;
    }
    
    .skills-categories {
        gap: 2rem;
    }
    
    .skill-items {
        grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
        gap: 1rem;
    }
    
    .soft-skills-container {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .timeline-date {
        align-self: flex-start;
    }

    /* Mobile responsive styles for new projects layout */
    .projects-list {
        gap: 2rem;
    }

    .project-item {
        border-radius: 15px;
    }

    .project-image-header {
        padding: 1.5rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .project-image-placeholder {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .project-category {
        align-items: center;
        text-align: center;
        gap: 0.3rem;
        font-size: 0.8rem;
    }

    .category-label {
        padding: 0.25rem 0.6rem;
        font-size: 0.7rem;
    }

    .project-content {
        padding: 1.5rem;
    }

    .project-content h3 {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }

    .project-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .project-content p {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
        line-height: 1.5;
    }

    .technologies-section {
        margin-bottom: 1.5rem;
    }

    .technologies-section h4 {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .tech-tags .tech-tag {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }

    .project-actions {
        gap: 0.8rem;
        flex-direction: column;
    }

    .action-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        text-align: center;
        justify-content: center;
    }

    .view-all-projects {
        margin-top: 2rem;
    }

    .view-all-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

