#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #2d3436;
    z-index: -1;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: transparent;
    color: #ffffff;
}
  
header {
    background: transparent;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

header h1::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #64ffda;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

header h1:hover::after {
    width: 100%;
}

header p {
    font-size: 1.2rem;
    margin: 1rem 0 0;
    opacity: 0.9;
    color: #ffffff;
}

section {
    padding: 3rem 2rem;
    max-width: 900px;
    margin: 2rem auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

section:hover {
    animation: borderGlow 2s infinite;
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(100, 255, 218, 0.15);
}

h2 {
    font-size: 1.8rem;
    color: #ffffff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.8rem;
    margin-top: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.experience-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.experience-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 0;
    background: #64ffda;
    transition: height 0.3s ease;
}

.experience-item:hover::after {
    height: 100%;
}

.experience-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.experience-item h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.experience-item .company {
    color: #64ffda;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.experience-item .duration {
    color: #a8b2d1;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.experience-item ul {
    margin-left: 1.5rem;
    color: #ffffff;
}

.experience-item li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #e6f1ff;
}

#skills ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

#skills li {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e6f1ff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#skills li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(100, 255, 218, 0.1),
        transparent
    );
    transition: all 0.5s ease;
}

#skills li:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.1);
}

#skills li:hover::before {
    left: 100%;
}

#skills strong {
    color: #64ffda;
    display: block;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

#skills li:hover strong {
    transform: scale(1.05);
    text-shadow: 0 0 8px rgba(100, 255, 218, 0.5);
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.strength-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.8rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.strength-item::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(100, 255, 218, 0.05),
        transparent
    );
    transition: all 0.5s ease;
}

.strength-item:hover::before {
    top: 100%;
}

.strength-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.strength-item h3 {
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.strength-item p {
    color: #e6f1ff;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.strength-item i {
    font-size: 1.5rem;
    color: #64ffda;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.strength-item:hover i {
    transform: rotate(360deg) scale(1.2);
    color: #9ef0db;
}

#contact {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

#contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-size: 1.1rem;
}

#contact i {
    color: #64ffda;
    width: 24px;
    text-align: center;
    transition: transform 0.3s ease;
}

#contact a {
    color: #64ffda;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding: 2px 4px;
}

#contact a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #64ffda;
    transition: width 0.3s ease;
}

#contact a:hover {
    color: #9ef0db;
}

#contact a:hover::after {
    width: 100%;
}

#contact p:hover i {
    transform: scale(1.1) rotate(5deg);
}

h2 i {
    margin-right: 0.5rem;
    color: #64ffda;
    animation: float 3s ease-in-out infinite;
}

.typing-text {
    border-right: 2px solid #fff;
    padding-right: 5px;
    animation: blink 0.7s infinite;
    position: relative;
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

@keyframes borderGlow {
    0% {
        border-color: rgba(255, 255, 255, 0.1);
    }
    50% {
        border-color: rgba(100, 255, 218, 0.5);
    }
    100% {
        border-color: rgba(255, 255, 255, 0.1);
    }
}

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

@keyframes pulse {
    0% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(100, 255, 218, 0.4);
    }
    70% {
        opacity: 0.7;
        box-shadow: 0 0 0 10px rgba(100, 255, 218, 0);
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(100, 255, 218, 0);
    }
}

footer {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    color: #a8b2d1;
    margin-top: 3rem;
}

/* Custom AOS animations */
[data-aos="flip-left"] {
    transform-origin: center;
}

[data-aos="zoom-in"] {
    transform: scale(0.95);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
    opacity: 1;
}

@media (max-width: 768px) {
    section {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    header {
        padding: 3rem 1rem;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .strengths-grid {
        grid-template-columns: 1fr;
    }
    
    #skills ul {
        grid-template-columns: 1fr;
    }
} 

/* Add scroll indicator */
.scroll-indicator {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(100, 255, 218, 0.1);
    border: 2px solid #64ffda;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.scroll-indicator.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-indicator:hover {
    background: rgba(100, 255, 218, 0.2);
    transform: translateY(-3px);
}

.scroll-indicator i {
    color: #64ffda;
    font-size: 20px;
}

/* Add progress bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #64ffda, #9ef0db);
    z-index: 1000;
    transition: width 0.3s ease;
} 

#certifications ul {
    list-style-type: none;
    padding: 0;
    display: grid;
    gap: 1rem;
}

#certifications li {
    background: rgba(255, 255, 255, 0.05);
    padding: 0;
    margin-bottom: 0;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.cert-link {
    color: #e6f1ff;
    text-decoration: none;
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) 120px 20px;
    align-items: center;
    gap: 16px;
    padding: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
}

.cert-link i:first-child {
    font-size: 1.2rem;
    color: #64ffda;
    transition: all 0.3s ease;
    text-align: center;
}

.cert-title {
    font-weight: 500;
    white-space: normal;
    line-height: 1.4;
}

.cert-date {
    color: #a8b2d1;
    font-style: italic;
    font-size: 0.9rem;
    white-space: nowrap;
    text-align: right;
    justify-self: end;
}

.cert-link .fa-external-link-alt {
    font-size: 0.8em;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #64ffda;
    justify-self: end;
}

/* Hover effects */
#certifications li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.cert-link:hover {
    color: #64ffda;
}

.cert-link:hover i:first-child {
    transform: scale(1.1) rotate(5deg);
}

.cert-link:hover .fa-external-link-alt {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cert-link {
        grid-template-columns: 24px minmax(0, 1fr) 20px;
        gap: 12px;
    }

    .cert-title {
        margin-bottom: 4px;
    }

    .cert-date {
        grid-column: 2;
        grid-row: 2;
        text-align: left;
        font-size: 0.85rem;
        opacity: 0.8;
        padding-left: 0;
    }

    .fa-external-link-alt {
        grid-row: 1;
        grid-column: 3;
    }
}

/* Add shine effect on hover */
.cert-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(100, 255, 218, 0.1),
        transparent
    );
    transition: all 0.6s ease;
}

.cert-link:hover::before {
    left: 100%;
}

/* Add subtle border animation */
#certifications li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #64ffda, transparent);
    transition: width 0.3s ease;
}

#certifications li:hover::after {
    width: 100%;
}

.client-projects {
    margin-top: 2rem;
}

.project {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.project:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
    border-color: rgba(100, 255, 218, 0.2);
}

.project h4 {
    color: #64ffda;
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project h4 i {
    font-size: 1rem;
    opacity: 0.9;
}

.project-subtitle {
    color: #a8b2d1;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.project ul {
    margin: 0;
    padding-left: 1.5rem;
}

.project li {
    color: #e6f1ff;
    margin-bottom: 0.5rem;
}

.project li:last-child {
    margin-bottom: 0;
}

.technologies {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.technologies h4 {
    color: #64ffda;
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.technologies p {
    color: #a8b2d1;
    line-height: 1.6;
    margin: 0;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
} 

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e6f1ff;
    text-align: center;
    margin: 0 auto;
    position: relative;
    padding: 0 1rem;
}

.intro-text::after {
    content: '';
    display: block;
    width: 150px;
    height: 3px;
    background: linear-gradient(to right, transparent, #64ffda, transparent);
    margin: 2rem auto 0;
    border-radius: 2px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 1rem 0;
}

.about-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(100, 255, 218, 0.2);
}

.about-item i {
    font-size: 2rem;
    color: #64ffda;
    margin-bottom: 1.2rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.about-item:hover i {
    transform: scale(1.1) rotate(10deg);
}

.about-item h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin: 0 0 1rem 0;
    position: relative;
    display: inline-block;
}

.about-item h3::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #64ffda;
    transition: width 0.3s ease;
}

.about-item:hover h3::after {
    width: 100%;
}

.about-item p {
    color: #a8b2d1;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
    flex-grow: 1;
}

.outro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e6f1ff;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.outro-text::before {
    content: '"';
    font-size: 4rem;
    color: #64ffda;
    position: absolute;
    top: -1rem;
    left: 1rem;
    opacity: 0.3;
}

/* Add shine effect */
.about-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(100, 255, 218, 0.1) 0%,
        transparent 70%
    );
    transform: scale(0);
    transition: transform 0.6s ease;
    border-radius: 50%;
}

.about-item:hover::before {
    transform: scale(1);
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .intro-text, .outro-text {
        font-size: 1rem;
        padding: 1.5rem;
    }

    .about-item {
        padding: 1.5rem;
    }

    .about-item h3 {
        font-size: 1.2rem;
    }
} 

#contact h2 {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

#contact h2 i {
    font-size: 1.8rem;
    color: #64ffda;
    transition: all 0.3s ease;
}

/* Handshake animation */
.fa-handshake {
    animation: wave 2s infinite;
    transform-origin: 70% 70%;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
} 