* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0d1117;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(240, 147, 251, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.06) 0%, transparent 25%),
        radial-gradient(circle at 80% 10%, rgba(240, 147, 251, 0.06) 0%, transparent 25%),
        radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.06) 0%, transparent 25%),
        radial-gradient(circle at 60% 60%, rgba(240, 147, 251, 0.04) 0%, transparent 35%),
        radial-gradient(circle at 30% 70%, rgba(6, 182, 212, 0.04) 0%, transparent 35%);
    animation: ambient-glow 25s ease-in-out infinite;
    z-index: -2;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: transparent;
    animation: cosmic-rotation 60s linear infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes ambient-glow {
    0%, 100% {
        transform: translateX(0) translateY(0) scale(1);
        opacity: 1;
    }
    25% {
        transform: translateX(-20px) translateY(-30px) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translateX(30px) translateY(20px) scale(0.9);
        opacity: 1.2;
    }
    75% {
        transform: translateX(-10px) translateY(40px) scale(1.05);
        opacity: 0.9;
    }
}

@keyframes cosmic-rotation {
    0% {
        transform: rotate(0deg) translateX(-10%) translateY(-10%);
    }
    100% {
        transform: rotate(360deg) translateX(-10%) translateY(-10%);
    }
}

header {
    background: #161b22;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    border-bottom: 1px solid #21262d;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 4px;
    height: 100vh;
    z-index: 1001;
    background: rgba(33, 38, 45, 0.3);
    backdrop-filter: blur(10px);
}

.scroll-progress-bar {
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #1a1a1a 0%, #6a6a6a 100%);
    transition: height 0.1s ease-out;
    position: relative;
    overflow: hidden;
}

.scroll-progress-bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progress-shimmer-vertical 2s linear infinite;
}

.scroll-progress-bar::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.8));
    border-radius: 0 0 2px 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-progress-bar.active::after {
    opacity: 1;
}

@keyframes progress-shimmer-vertical {
    0% {
        top: -100%;
    }
    100% {
        top: 100%;
    }
}

/* Subtle Cursor Following Light Effect */
.cursor-light {
    position: fixed;
    width: 200px;
    height: 200px;
    pointer-events: none;
    z-index: 1;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(6, 182, 212, 0.03) 0%,
        rgba(240, 147, 251, 0.02) 50%,
        transparent 100%
    );
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-out;
    mix-blend-mode: screen;
}

.custom-cursor {
    display: none;
}

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

.nav-brand a {
    color: #f093fb;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.nav-brand a:hover {
    color: #f5576c;
    transform: translateY(-1px);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    background-color: #21262d;
}

main {
    margin-top: 80px;
}

section {
    padding: 4rem 2rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

section.hero-section {
    opacity: 1;
    transform: translateY(0);
}

#hero {
    text-align: center;
    background: rgba(22, 27, 34, 0.1);
    backdrop-filter: blur(15px);
    color: white;
    padding: 6rem 2rem 4rem 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    border: 1px solid rgba(33, 38, 45, 0.5);
    box-shadow: 0 5px 25px rgba(0,0,0,0.4), 0 0 20px rgba(6, 182, 212, 0.1);
}

@keyframes crystal-flow {
    0% {
        transform: translateX(-50px) translateY(-50px);
    }
    100% {
        transform: translateX(50px) translateY(50px);
    }
}

@keyframes crystal-rotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

#hero > * {
    position: relative;
    z-index: 2;
}

.titles h1 {
    font-size: 3.5rem;
    margin: 1rem 0 2rem 0;
    font-weight: 300;
    color: #ffffff;
}

#dynamic-title {
    color: #ffffff;
    font-weight: 300;
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#cursor {
    color: #ffffff;
    font-weight: 300;
    font-size: 3.5rem;
    animation: blink 1s infinite;
    margin-left: 2px;
}

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

.hero-bio {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    padding: 2.5rem;
}

.hero-bio p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

.hero-contacts {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #000000;
    border: 1px solid #333333;
    border-radius: 8px;
    color: #c9d1d9;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-contact-item::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.6s ease;
}

.hero-contact-item::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #333333, #666666, #333333, #666666);
    border-radius: 8px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: rotate-border 3s linear infinite;
}

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

.hero-contact-item:hover::after {
    opacity: 1;
}

.hero-contact-item:hover {
    background: #1a1a1a;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 255, 255, 0.1);
    border-color: #666666;
    color: #ffffff;
    letter-spacing: 1px;
}

.hero-contact-item:active {
    transform: translateY(-2px) scale(1.01);
    transition: all 0.1s ease;
}

.hero-contact-item i {
    transition: all 0.3s ease;
}

.hero-contact-item:hover i {
    transform: scale(1.2);
}

.hero-contact-item.resume-item i {
    transition: all 0.4s ease;
}

.hero-contact-item.resume-item:hover i {
    animation: download-bounce 1.2s ease-in-out infinite;
    transform: scale(1.2);
}

@keyframes download-bounce {
    0% {
        transform: scale(1.2) translateY(0);
    }
    50% {
        transform: scale(1.25) translateY(-2px);
    }
    100% {
        transform: scale(1.2) translateY(0);
    }
}

.hero-contact-item.resume-item {
    background: linear-gradient(45deg, #06B6D4 0%, #f093fb 100%);
    color: white;
    border-color: transparent;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.hero-contact-item.resume-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.hero-contact-item.resume-item::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #06B6D4, #0891b2, #f093fb, #06B6D4);
    border-radius: 8px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: rotate-border 3s linear infinite;
}

.hero-contact-item.resume-item:hover::before {
    left: 100%;
}

.hero-contact-item.resume-item:hover::after {
    opacity: 1;
}

.hero-contact-item.resume-item:hover {
    background: linear-gradient(45deg, #f093fb 0%, #06B6D4 100%);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.6), 0 0 25px rgba(240, 147, 251, 0.3);
    transform: translateY(-4px) scale(1.02);
}

.hero-contact-item i {
    font-size: 1rem;
}

#about {
    background: #161b22;
    border-radius: 10px;
    margin: 2rem auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid #21262d;
}

#about h2 {
    color: #f0f6fc;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
}

.bio p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #c9d1d9;
    text-align: center;
}

#experience {
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 2rem auto;
    box-shadow: 0 5px 25px rgba(0,0,0,0.4), 0 0 20px rgba(240, 147, 251, 0.1);
    border: 1px solid rgba(33, 38, 45, 0.6);
}

#experience h2 {
    color: #f0f6fc;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
}

.experience-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #0d1117;
    border-radius: 8px;
    border-left: 4px solid #06B6D4;
    border: 1px solid #21262d;
}

.experience-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.experience-text {
    flex: 0 1 65%;
    max-width: 65%;
}

.experience-image {
    flex: 0 0 45%;
    max-width: 45%;
    height: 300px;
    border-radius: 16px;
    overflow: visible;
    border: 3px solid #21262d;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    padding: 8px;
    background: #21262d;
    position: relative;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    background: #0d1117;
}

.image-tooltip {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #f0f6fc;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
    border: 1px solid #30363d;
}

.experience-image:hover .image-tooltip {
    opacity: 1;
}

.experience-item h3 {
    color: #f0f6fc;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.company {
    color: #06B6D4;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.duration {
    color: #8b949e;
    font-style: italic;
    margin-bottom: 1rem;
}

.experience-item ul {
    list-style: none;
    padding-left: 1rem;
}

.experience-item li {
    margin-bottom: 0.5rem;
    position: relative;
}

.experience-item li:before {
    content: "•";
    color: #06B6D4;
    position: absolute;
    left: -1rem;
}

.location {
    color: #8b949e;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.sub-positions {
    margin-top: 1rem;
}

.sub-position {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 2px solid #30363d;
}

.sub-position h4 {
    color: #06B6D4;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.experience-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.75rem 0;
}

.skill-bubble {
    background: rgba(6, 182, 212, 0.15);
    color: #06B6D4;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(6, 182, 212, 0.3);
    transition: all 0.3s ease;
}

.skill-bubble:hover {
    background: rgba(6, 182, 212, 0.25);
    border-color: #06B6D4;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.2);
}

.experience-description {
    color: #c9d1d9;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1.05rem;
}

.sub-description {
    color: #c9d1d9;
    line-height: 1.6;
    margin-bottom: 0;
    padding-left: 1rem;
    font-size: 1rem;
}

#projects {
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 2rem auto;
    box-shadow: 0 5px 25px rgba(0,0,0,0.4), 0 0 20px rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(33, 38, 45, 0.6);
}

#projects h2 {
    color: #f0f6fc;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
}

.project-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #0d1117;
    border-radius: 8px;
    border-left: 4px solid #f093fb;
    border: 1px solid #21262d;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.project-logo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #21262d;
    border-radius: 12px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #30363d;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

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

.project-content {
    flex: 1;
    min-width: 0;
}

.project-item h3 {
    color: #f0f6fc;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.award-highlight {
    background: linear-gradient(45deg, #06B6D4, #c4549b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
    position: relative;
}

.award-highlight::before {
    content: "🏆";
    margin-right: 2px;
}

.tech-stack {
    color: #f093fb;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.project-item p:not(.tech-stack) {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #c9d1d9;
}

.project-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: #000000;
    border: 1px solid #333333;
    color: #c9d1d9;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 500;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    font-size: 0.9rem;
}

.project-link::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.6s ease;
}

.project-link::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #333333, #666666, #333333, #666666);
    border-radius: 8px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: rotate-border 3s linear infinite;
}

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

.project-link:hover::after {
    opacity: 1;
}

.project-link:hover {
    background: #1a1a1a;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 255, 255, 0.1);
    border-color: #666666;
    color: #ffffff;
    letter-spacing: 1px;
}

.project-link:active {
    transform: translateY(-2px) scale(1.01);
    transition: all 0.1s ease;
}

#contact {
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 2rem auto;
    box-shadow: 0 5px 25px rgba(0,0,0,0.4), 0 0 20px rgba(240, 147, 251, 0.1);
    border: 1px solid rgba(33, 38, 45, 0.6);
    text-align: center;
}

#contact h2 {
    color: #f0f6fc;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.contact-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #c9d1d9;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: start;
    width: 100%;
}

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

.resume-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: #0d1117;
    border-radius: 15px;
    border: 1px solid #21262d;
    height: fit-content;
    gap: 1.5rem;
}

.resume-link-enhanced-large {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2rem;
    background: linear-gradient(45deg, #06B6D4 0%, #0891b2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resume-link-enhanced-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
}

.resume-link-enhanced-large::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #06B6D4, #0891b2, #f093fb, #06B6D4);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: rotate-border 3s linear infinite;
}

.resume-link-enhanced-large:hover::before {
    left: 100%;
}

.resume-link-enhanced-large:hover::after {
    opacity: 1;
}

.resume-link-enhanced-large:hover {
    transform: translateY(-5px) scale(1.05) rotateX(5deg);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.6), 0 0 30px rgba(240, 147, 251, 0.4);
    background: linear-gradient(45deg, #0891b2 0%, #06B6D4 100%);
    border-color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

.resume-link-enhanced-large:active {
    transform: translateY(-2px) scale(1.02);
    transition: all 0.1s ease;
}

.resume-link-enhanced-large i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
}

.resume-link-enhanced-large:hover i {
    animation: spin-bounce 0.6s ease-in-out;
    transform: scale(1.2);
}

@keyframes rotate-border {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin-bounce {
    0% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.3) rotate(180deg);
    }
    100% {
        transform: scale(1.2) rotate(360deg);
    }
}

.contact-form-section {
    width: 100%;
    max-width: 350px;
}

.contact-form-section h4 {
    color: #06B6D4;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.opportunity-form input,
.opportunity-form textarea {
    padding: 0.8rem;
    border: 1px solid #30363d;
    border-radius: 8px;
    background: #21262d;
    color: #c9d1d9;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.opportunity-form input:focus,
.opportunity-form textarea:focus {
    outline: none;
    border-color: #06B6D4;
    box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.2);
}

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

.send-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-button:hover {
    background: linear-gradient(45deg, #f5576c 0%, #f093fb 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #30363d;
    border-radius: 8px;
    background: #161b22;
    color: #c9d1d9;
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #06B6D4;
    box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #6e7681;
}

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

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(45deg, #06B6D4 0%, #0891b2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.4);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.contact-submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.6);
    background: linear-gradient(45deg, #0891b2 0%, #06B6D4 100%);
}

.contact-submit-btn i {
    font-size: 1.3rem;
    animation: pulse 2s infinite;
}

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

.resume-download-small {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #30363d;
}

.resume-link-small {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #8b949e;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.resume-link-small:hover {
    color: #06B6D4;
}

.resume-link-small i {
    font-size: 0.9rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    justify-content: center;
}

.contact-card {
    display: flex;
    align-items: center;
    padding: 1.2rem;
    background: #0d1117;
    border-radius: 12px;
    text-decoration: none;
    color: #c9d1d9;
    transition: all 0.3s ease;
    border: 1px solid #21262d;
    position: relative;
    overflow: hidden;
    flex: 1;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
    transition: left 0.5s;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
    border-color: #06B6D4;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.email-icon {
    background: linear-gradient(45deg, #ea4335, #fbbc04);
    color: white;
}

.linkedin-icon {
    background: linear-gradient(45deg, #0077b5, #00a0dc);
    color: white;
}

.github-icon {
    background: linear-gradient(45deg, #333, #24292e);
    color: white;
}

.contact-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.contact-label {
    font-weight: 600;
    font-size: 1rem;
    color: #f0f6fc;
    margin-bottom: 0.2rem;
}

.contact-value {
    font-size: 0.85rem;
    color: #8b949e;
    opacity: 0.9;
}

.message-station {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(22, 27, 34, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(33, 38, 45, 0.7);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(240, 147, 251, 0.08);
}

.contact-form-full {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    color: #f0f6fc;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #30363d;
    border-radius: 8px;
    background: #0d1117;
    color: #c9d1d9;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #06B6D4;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
    background: #161b22;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6e7681;
}

.form-group select {
    cursor: pointer;
}

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

.submit-btn-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(45deg, #06B6D4 0%, #f093fb 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    align-self: center;
    min-width: 200px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

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

.submit-btn-full::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #06B6D4, #0891b2, #f093fb, #06B6D4);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: rotate-border 3s linear infinite;
}

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

.submit-btn-full:hover::after {
    opacity: 1;
}

.submit-btn-full:hover {
    background: linear-gradient(45deg, #f093fb 0%, #06B6D4 100%);
    transform: translateY(-5px) scale(1.05) rotateX(5deg);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.6), 0 0 30px rgba(240, 147, 251, 0.4);
    letter-spacing: 1px;
}

.submit-btn-full:active {
    transform: translateY(-2px) scale(1.02);
    transition: all 0.1s ease;
}

.submit-btn-full i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.submit-btn-full:hover i {
    animation: spin-bounce 0.6s ease-in-out;
    transform: scale(1.2);
}

@keyframes spin-bounce {
    0% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.3) rotate(180deg);
    }
    100% {
        transform: scale(1.2) rotate(360deg);
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .message-station {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .hero-contacts {
        gap: 1rem;
    }
    
    .hero-contact-item {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}


.resume-link-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(45deg, #06B6D4 0%, #0891b2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.3);
}

.resume-link-enhanced::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;
}

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

.resume-link-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 60px rgba(6, 182, 212, 0.5);
    background: linear-gradient(45deg, #0891b2 0%, #06B6D4 100%);
}

.resume-link-enhanced i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

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

.glow-effect {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #06B6D4, #0891b2, #f093fb, #06B6D4);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: rotate 3s linear infinite;
}

.resume-link-enhanced:hover .glow-effect {
    opacity: 0.7;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Skills Section */
#skills {
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 2rem auto;
    box-shadow: 0 5px 25px rgba(0,0,0,0.4), 0 0 20px rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(33, 38, 45, 0.6);
}

#skills h2 {
    color: #f0f6fc;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
}

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

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

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

.skill-section h3 {
    color: #06B6D4;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: left;
    border-bottom: 2px solid #06B6D4;
    padding-bottom: 0.5rem;
}

.skill-tiles-horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.8rem;
    justify-content: start;
    max-width: 100%;
}

.certifications-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #30363d;
}

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

.certifications-section h3 {
    color: #06B6D4;
    font-size: 1.2rem;
    margin: 0;
    border-bottom: 2px solid #06B6D4;
    padding-bottom: 0.5rem;
}

.credly-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #06B6D4;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid #06B6D4;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.credly-link:hover {
    background: #06B6D4;
    color: white;
    transform: translateY(-1px);
}

.credly-link i {
    font-size: 1.2rem;
}

.certification-badges {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    width: 100%;
}

.certification-badge {
    display: flex;
    align-items: center;
    background: #21262d;
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.certification-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.15);
    border-color: #06B6D4;
}

.badge-icon {
    margin-right: 1rem;
    color: #ff9900;
    font-size: 2rem;
}

.badge-content {
    flex: 1;
}

.badge-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f0f6fc;
    margin-bottom: 0.2rem;
}

.badge-subtitle {
    font-size: 0.9rem;
    color: #06B6D4;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.badge-issuer {
    font-size: 0.8rem;
    color: #8b949e;
}

.badge-verification {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #39d353;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.skill-tile {
    background: #21262d;
    border: 1px solid #30363d;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    color: #c9d1d9;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.skill-tile:hover {
    background: #30363d;
    border-color: #06B6D4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.compact-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 1rem 0.8rem;
    min-height: 85px;
    min-width: 80px;
    justify-content: center;
    aspect-ratio: 1;
    width: 100%;
    height: auto;
}

.skill-icon {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    color: #c9d1d9;
}

/* Technology-specific icon colors */
.devicon-amazonwebservices-plain-wordmark {
    color: #ff9900 !important;
}

.devicon-docker-plain {
    color: #2496ed !important;
}

.devicon-git-plain {
    color: #f05032 !important;
}

.devicon-github-original {
    color: #ffffff !important;
}

.devicon-googlecloud-plain {
    color: #4285f4 !important;
}

.devicon-postman-plain {
    color: #ff6c37 !important;
}

.devicon-linux-plain {
    color: #fcc624 !important;
}

.devicon-kubernetes-plain {
    color: #326ce5 !important;
}

/* Programming Language Colors */
.devicon-java-plain {
    color: #ed8b00 !important;
}

.devicon-python-plain {
    color: #3776ab !important;
}

.devicon-mysql-plain {
    color: #4479a1 !important;
}

.devicon-javascript-plain {
    color: #f7df1e !important;
}

.devicon-typescript-plain {
    color: #3178c6 !important;
}

.devicon-html5-plain {
    color: #e34f26 !important;
}

.devicon-css3-plain {
    color: #1572b6 !important;
}

.devicon-c-original {
    color: #a8b9cc !important;
}

.devicon-cplusplus-plain {
    color: #00599c !important;
}

.devicon-ocaml-plain {
    color: #ec6813 !important;
}

/* Framework & Library Colors */
.devicon-react-original {
    color: #61dafb !important;
}


.devicon-nodejs-plain {
    color: #339933 !important;
}

.devicon-spring-plain {
    color: #6db33f !important;
}

.devicon-fastapi-plain {
    color: #009688 !important;
}

.devicon-postgresql-plain {
    color: #336791 !important;
}

.devicon-sqlite-plain {
    color: #003b57 !important;
}

.devicon-firebase-plain {
    color: #ffca28 !important;
}

.stripe-icon {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, #635bff, #0a2540);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nextjs-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    background: #000000;
    border-radius: 6px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-family: 'Arial', sans-serif;
    letter-spacing: -0.02em;
}

.nextjs-logo::after {
    content: '';
    position: absolute;
    right: 2px;
    top: 2px;
    bottom: 2px;
    width: 2px;
    background: linear-gradient(to bottom, transparent 0%, #ffffff 20%, #ffffff 80%, transparent 100%);
    border-radius: 1px;
}

.skill-name {
    font-size: 0.75rem;
    font-weight: 500;
    color: #c9d1d9;
    text-align: center;
    line-height: 1.2;
}

.certification-tile {
    background: linear-gradient(45deg, #06B6D4 0%, #0891b2 100%);
    color: white;
    font-size: 0.9rem;
    border: 1px solid #06B6D4;
}

.certification-tile:hover {
    background: linear-gradient(45deg, #0891b2 0%, #06B6D4 100%);
    border-color: #0891b2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(118, 75, 162, 0.4);
}

/* Scroll Prompt Styles */
.scroll-prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
}

.scroll-text {
    color: #f093fb;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.9;
    transition: color 0.3s ease;
}

.scroll-arrow {
    color: #f093fb;
    font-size: 1.5rem;
    animation: bounce-arrow 2s ease-in-out infinite;
    margin-top: 0.25rem;
    transition: color 0.3s ease;
}

@keyframes bounce-arrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

.scroll-prompt:hover .scroll-arrow {
    animation-duration: 1s;
}

.scroll-prompt:hover .scroll-text {
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

footer {
    background: #161b22;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid #21262d;
}

@media (max-width: 1200px) {
    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .skill-tiles-horizontal {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
        gap: 0.6rem;
    }
}

@media (max-width: 900px) {
    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    section {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-brand a {
        font-size: 1.3rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .titles h1 {
        font-size: 2.5rem;
    }
    
    #dynamic-title, #cursor {
        font-size: 2.5rem;
    }
    
    section {
        padding: 2rem 1rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-link {
        min-width: 100%;
    }
    
    .project-item {
        flex-direction: column;
        text-align: center;
    }
    
    .project-logo {
        align-self: center;
    }
    
    .skill-tiles-horizontal {
        grid-template-columns: repeat(auto-fill, minmax(65px, 1fr));
    }
    
    .compact-tile {
        min-height: 75px;
        min-width: 65px;
    }
}