.nav-text {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-style: italic;
    color: #34d399;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.8s forwards;
}

.footer-social-text {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-style: italic;
    color: #34d399;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 1.3s forwards;
}

/* Base styles */
body {
    margin: 0;
    background: #1a1a1a;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    font-family: 'Nunito Sans', sans-serif;
    color: white;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Canvas styles */
canvas {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 0;
}

/* Container styles */
.container {
    text-align: center;
    z-index: 1;
    position: relative;
    width: 100%;
    max-width: 1400px;
    padding: 2rem;
}

.main-content, .left-column {
    text-align: left;
}

/* Name styles */
.title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: min(6rem, 15vw);
    font-weight: 800;
    font-style: italic;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(-50px);
    animation: fadeInDown 1s ease-out 0.2s forwards;
    color: #34d399;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px rgba(52, 211, 153, 0.3);
    padding: 0 10px;
}

/* Links styles */
.links {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 1s forwards;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    padding: 0 10px;
}

.links a {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 0.8rem 2rem;
    color: #34d399;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    letter-spacing: 0.5px;
}

.links a:hover {
    background: rgba(52, 211, 153, 0.15);
    border-color: rgba(52, 211, 153, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 211, 153, 0.15);
}

/* Contact form styles */
.contact-form {
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(52, 211, 153, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(52, 211, 153, 0.1);
    backdrop-filter: blur(5px);
    opacity: 0;
    animation: fadeIn 0.8s ease-out 1.2s forwards;
}

.form-header {
    font-family: 'Nunito Sans', sans-serif;
    font-style: italic;
    color: #34d399;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-message {
    font-family: 'Nunito Sans', sans-serif;
    font-style: italic;
    color: #34d399;
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.input-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #34d399;
    font-family: 'Nunito Sans', sans-serif;
    font-style: italic;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 8px;
    color: #fff;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    resize: vertical;
    min-height: 100px;
}

.input-group input {
    min-height: auto;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: rgba(52, 211, 153, 0.5);
    background: rgba(52, 211, 153, 0.15);
}

/* Submit button styles */
.submit-btn {
    background: rgba(52, 211, 153, 0.2);
    color: #34d399;
    border: none;
    padding: 0.8rem 1.5rem;
    font-family: 'Nunito Sans', sans-serif;
    font-style: italic;
    font-size: 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.submit-btn:hover {
    background: rgba(52, 211, 153, 0.3);
    transform: translateY(-2px);
}

/* Social links styles */
.social-text {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-style: italic;
    color: #34d399;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 1.4s forwards;
    margin-top: 3rem;
}

.social-links {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 1.4s forwards;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.social-links a {
    color: #34d399;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
    filter: brightness(1.2);
}

.social-links svg {
    width: 24px;
    height: 24px;
}

/* About page specific styles */
.intro-section {
    max-width: 800px;
    margin: 2rem auto 3rem;
    text-align: center;
    animation: fadeIn 1s ease-out;
}

.intro-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e5e5e5;
    font-style: italic;
}

.specialties {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.6s forwards;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.specialty-badge {
    background: rgba(52, 211, 153, 0.15);
    color: #34d399;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 1rem;
    border: 1px solid rgba(52, 211, 153, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.service-highlight {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 1s forwards;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.service-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #34d399;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

.card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(52, 211, 153, 0.1);
}

/* Experience section styles */
.experience-item {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    transition: background 0.3s ease;
}

.experience-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.company {
    font-size: 1.4rem;
    font-weight: 600;
    color: #e5e5e5;
    margin-bottom: 0.5rem;
}

.position {
    color: #34d399;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-style: italic;
}

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

.skill-category {
    margin-bottom: 2rem;
}

.skill-category h3 {
    color: #e5e5e5;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(52, 211, 153, 0.2);
    padding-bottom: 0.5rem;
}

.badge {
    display: inline-block;
    background: rgba(52, 211, 153, 0.1);
    color: #34d399;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin: 0.25rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(52, 211, 153, 0.2);
    transform: translateY(-2px);
}

/* List styles */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

li:before {
    content: "-";
    color: #34d399;
    position: absolute;
    left: 0;
    
}

/* Icon title styles */
.icon-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.icon-title svg {
    width: 24px;
    height: 24px;
    color: #34d399;
}

/* Animations */
@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes glow {
    from { 
        text-shadow: 0 0 10px rgba(52, 211, 153, 0.3); 
    }
    to { 
        text-shadow: 0 0 20px rgba(52, 211, 153, 0.6); 
    }
}

/* Media queries */
@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 1rem;
    }
    
    .card {
        padding: 1.5rem;
    }
}

@media (max-width: 600px) {
    body {
        height: auto;
        overflow-y: auto;
    }
    
    .container {
        height: auto;
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .links {
        flex-direction: column;
        align-items: stretch;
        padding: 0 2rem;
    }
    
    .links a {
        text-align: center;
    }
}

/* Popup styles */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    animation: fadeIn 0.3s ease-out forwards;
}

.popup-content {
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(52, 211, 153, 0.2);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    max-width: 90%;
    width: 400px;
    position: relative;
    transform: translateY(20px);
    animation: slideUp 0.3s ease-out forwards;
    backdrop-filter: blur(10px);
}

.popup-title {
    color: #34d399;
    font-family: 'Nunito Sans', sans-serif;
    font-style: italic;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.popup-message {
    color: white;
    margin-bottom: 1.5rem;
    font-family: 'Nunito Sans', sans-serif;
}

.popup-close {
    background: rgba(52, 211, 153, 0.2);
    color: #34d399;
    border: none;
    padding: 0.8rem 1.5rem;
    font-family: 'Nunito Sans', sans-serif;
    font-style: italic;
    font-size: 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(52, 211, 153, 0.3);
    transform: translateY(-2px);
}

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

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