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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #4a5568;
    background: linear-gradient(135deg, #fef7ff 0%, #f1f8ff 30%, #f0f4ff 60%, #f8f0ff 100%);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Full-height sections for page-like feel */
.full-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding-top: 100px;
}

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

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

/* Handling for journey section */
#journey {
    justify-content: flex-start;
    padding-top: 120px;
    overflow-y: auto;
}

/* Center alignment for hero section */
#home {
    justify-content: center;
    padding-top: 0;
}

/* Different background gradients for each section */
#home {
    background: linear-gradient(135deg, #fef7ff 0%, #f1f8ff 50%, #f0f4ff 100%);
}

#about {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #f8fafc 100%);
}

#journey {
    background: linear-gradient(135deg, #f8f0ff 0%, #fef7ff 50%, #f1f8ff 100%);
}

#projects {
    background: linear-gradient(135deg, #f1f8ff 0%, #f0f4ff 50%, #f8f0ff 100%);
}

#contact {
    background: linear-gradient(135deg, #f0f4ff 0%, #fef7ff 50%, #f1f8ff 100%);
}

/* Section dividers */
.section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

/* Floating elements for depth */
.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(168, 85, 247, 0.1), rgba(34, 197, 94, 0.1));
    border-radius: 50%;
    animation: floatUpDown 6s ease-in-out infinite;
    opacity: 0.7;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(168, 85, 247, 0.1));
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(34, 197, 94, 0.1), rgba(251, 191, 36, 0.1));
}

/* Dark theme floating elements */
#projects .floating-element,
#contact .floating-element {
    background: linear-gradient(45deg, rgba(34, 211, 238, 0.2), rgba(167, 139, 250, 0.2));
    box-shadow: 0 4px 20px rgba(34, 211, 238, 0.1);
}

#projects .floating-element:nth-child(2),
#contact .floating-element:nth-child(2) {
    background: linear-gradient(45deg, rgba(167, 139, 250, 0.2), rgba(251, 113, 133, 0.2));
    box-shadow: 0 4px 20px rgba(167, 139, 250, 0.1);
}

#projects .floating-element:nth-child(3),
#contact .floating-element:nth-child(3) {
    background: linear-gradient(45deg, rgba(251, 113, 133, 0.2), rgba(52, 211, 153, 0.2));
    box-shadow: 0 4px 20px rgba(251, 113, 133, 0.1);
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Animated background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.8;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(243, 232, 255, 0.4), rgba(254, 242, 242, 0.4), rgba(248, 245, 255, 0.4), rgba(255, 251, 235, 0.4));
    border-radius: 50%;
    animation: float 35s infinite linear;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.1);
}

.shape:nth-child(1) {
    width: 100px;
    height: 100px;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 160px;
    height: 160px;
    left: 20%;
    animation-delay: 5s;
}

.shape:nth-child(3) {
    width: 85px;
    height: 85px;
    left: 70%;
    animation-delay: 10s;
}

.shape:nth-child(4) {
    width: 130px;
    height: 130px;
    left: 80%;
    animation-delay: 15s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
    }
}

/* Navigation - Clean segmented design */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.3s, padding 0.3s, border-bottom 0.3s;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 5%;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 18px 40px;
    display: block;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    background: transparent;
}

.nav-links li:last-child a {
    border-right: none;
}

.nav-links a:hover {
    color: #333;
    background: rgba(240, 240, 250, 0.8);
}

.nav-links a.active {
    background: rgba(100, 150, 220, 0.15);
    color: #333;
    font-weight: 600;
}

.nav-links a::after {
    display: none;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Resume button styling */
.nav-links a.nav-resume-btn {
    background: linear-gradient(135deg, #B85C8A 0%, #A0527A 100%) !important;
    color: white !important;
    font-weight: 600 !important;
    border-right: 1px solid rgba(84, 58, 58, 0.08) !important;
}

.nav-links a.nav-resume-btn:hover,
a.nav-resume-btn:hover {
    background: linear-gradient(135deg, #A0527A 0%, #8B4A6B 100%) !important;
    color: white !important;
}

/* LinkedIn button styling */
.nav-links a.nav-contact-btn {
    background: linear-gradient(135deg, #5B9BD5 0%, #4A90E2 100%) !important;
    color: white !important;
    font-weight: 600 !important;
    border-right: none !important;
}

.nav-links a.nav-contact-btn:hover {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%) !important;
    color: white !important;
}

.nav-links a.nav-contact-btn.active {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%) !important;
    color: white !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    min-height: 5rem;
}

.typewriter {
    display: inline-block;
    position: relative;
}

.typewriter-text {
    background: linear-gradient(45deg, #a855f7, #ec4899, #06b6d4, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.typewriter-cursor {
    display: inline-block;
    background-color: #a855f7;
    width: 3px;
    height: 1em;
    margin-left: 2px;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.hero .subtitle {
    font-size: 1.5rem;
    color: #6b7280;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero .description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #4b5563;
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.9s both;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    font-weight: 500;
}

.btn-secondary {
    background: transparent;
    color: #a855f7;
    border: 2px solid #a855f7;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

/* Sections */
section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Hero section adjustments */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 2rem;
}

/* Page transition indicator */
.page-indicator {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.page-dot.active {
    background: #a855f7;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}

.page-dot:hover {
    background: rgba(168, 85, 247, 0.6);
    transform: scale(1.1);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Section - Flying Cards Animation */
.about-section-container {
    position: relative;
    min-height: 100vh;
    padding: 2rem;
    overflow: hidden;
    text-align: center;
}

.about-profile-centered {
    margin: 2rem auto 4rem auto;
    opacity: 0;
    transform: translateY(-100px) scale(0.8);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-profile-centered.fly-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.profile-img-flying {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(168, 85, 247, 0.3), rgba(236, 72, 153, 0.3));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    margin: 0 auto;
    box-shadow:
        0 20px 60px rgba(168, 85, 247, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.profile-img-flying::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent, rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    pointer-events: none;
}

.about-cards-container {
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 4rem;
}

.text-paragraph-flying {
    background: transparent;
    padding: 2rem 1rem;
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    position: relative;
}

.text-paragraph-flying.fly-in {
    opacity: 1;
    transform: translateY(0);
}

.text-paragraph-flying p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #2d3748;
    margin: 0 0 2rem 0;
    font-weight: 400;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.text-paragraph-flying p:last-child {
    margin-bottom: 0;
}

/* Initial position for flying from above */
.text-paragraph-flying {
    transform: translateY(-100px);
}

.skills-flying-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.skill-card-flying {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    border-radius: 25px;
    border: 1px solid rgba(219, 234, 254, 0.5);
    box-shadow: 0 12px 35px rgba(168, 85, 247, 0.15);
    opacity: 0;
    transition: all 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    text-align: left;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.skill-card-flying::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.1), transparent);
    transition: left 0.6s ease;
}

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

/* Each skill card flies from a different direction - STRAIGHT with no overlap */
.skill-card-flying:nth-child(1) {
    transform: translateX(-900px) scale(0.8);
    transition-delay: 0.9s;
}

.skill-card-flying:nth-child(2) {
    transform: translateX(900px) scale(0.8);
    transition-delay: 1.2s;
}

.skill-card-flying:nth-child(3) {
    transform: translateX(-900px) scale(0.8);
    transition-delay: 1.5s;
}

.skill-card-flying:nth-child(4) {
    transform: translateX(900px) scale(0.8);
    transition-delay: 1.8s;
}

.skill-card-flying.fly-in {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}

.skill-card-flying:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 50px rgba(168, 85, 247, 0.25);
    border-color: rgba(168, 85, 247, 0.3);
}

.skill-card-flying h3 {
    color: #a855f7;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.skill-card-flying p {
    color: #6b7280;
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

/* Add some floating particles for extra effect */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(168, 85, 247, 0.4);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 8s infinite ease-in-out;
}

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

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

.particle:nth-child(3) {
    left: 30%;
    animation-delay: 2s;
}

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

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

.particle:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
}

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

.particle:nth-child(8) {
    left: 80%;
    animation-delay: 7s;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* Journey Section */
.journey-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-button {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(168, 85, 247, 0.3);
    color: #4b5563;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
}

.filter-button:hover,
.filter-button.active {
    background: linear-gradient(45deg, #a855f7, #ec4899);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #a855f7, #ec4899, #06b6d4, #10b981);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(219, 234, 254, 0.5);
    border-radius: 20px;
    padding: 2rem;
    width: 45%;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0.7;
    transform: translateY(20px);
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.1);
}

.timeline-item.active .timeline-content {
    opacity: 1;
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.3);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: rgba(255, 255, 255, 0.9);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: rgba(255, 255, 255, 0.9);
}

.timeline-item.active:nth-child(odd) .timeline-content::before {
    border-left-color: rgba(255, 255, 255, 0.95);
}

.timeline-item.active:nth-child(even) .timeline-content::before {
    border-right-color: rgba(255, 255, 255, 0.95);
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #a855f7, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    color: white;
    border: 4px solid rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.timeline-item:hover .timeline-year,
.timeline-item.active .timeline-year {
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 6px 25px rgba(168, 85, 247, 0.4);
}

.timeline-content h3 {
    color: #a855f7;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.timeline-content .role {
    color: #ec4899;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-content p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #4b5563;
}

.achievement-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.achievement-tag {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.journey-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.year-button {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(168, 85, 247, 0.3);
    color: #4b5563;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.year-button:hover,
.year-button.active {
    background: linear-gradient(45deg, #a855f7, #ec4899);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

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

.project-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2rem;
    border: 1px solid rgba(219, 234, 254, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.1);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(168, 85, 247, 0.05), rgba(236, 72, 153, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.project-card:hover::before {
    opacity: 1;
}

.project-card h3 {
    color: #a855f7;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.project-card p {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    color: #4b5563;
}

.project-links {
    display: flex;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.project-links a {
    color: #ec4899;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.project-links a:hover {
    color: #a855f7;
}

/* Get In Touch Section */
.get-in-touch {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    border: 1px solid rgba(219, 234, 254, 0.5);
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.15);
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.get-in-touch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(168, 85, 247, 0.02), rgba(236, 72, 153, 0.02));
    z-index: 0;
}

.get-in-touch-content {
    position: relative;
    z-index: 1;
}

.get-in-touch h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.get-in-touch .subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

.touch-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(219, 234, 254, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.1);
}

.touch-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 35px rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.3);
}

.touch-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.touch-card h3 {
    color: #a855f7;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.touch-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.touch-card a {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(45deg, #a855f7, #ec4899);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.touch-card a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

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

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

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(45deg, #a855f7, #ec4899);
    z-index: 9999;
    transition: width 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        right: 0;
        background: white;
        flex-direction: column;
        width: 70vw;
        box-shadow: -2px 0 20px rgba(0, 0, 0, 0.08);
        border-radius: 0 0 0 16px;
        padding: 1rem 0;
        z-index: 1100;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        padding: 18px 24px;
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    section {
        padding: 60px 5%;
    }

    .timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .timeline::before {
        left: 30px;
        width: 3px;
    }

    .timeline-item {
        flex-direction: row !important;
        align-items: flex-start;
        padding-left: 60px;
        margin-bottom: 2rem;
    }

    .timeline-item:nth-child(even) {
        flex-direction: row !important;
    }

    .timeline-content {
        width: 100%;
        min-width: 0;
        margin: 0;
        padding: 1.5rem 1rem;
    }

    .timeline-content::before {
        left: -22px !important;
        right: auto !important;
        border-right-color: rgba(255, 255, 255, 0.9) !important;
        border-left-color: transparent !important;
    }

    .timeline-item.active .timeline-content::before {
        border-right-color: rgba(255, 255, 255, 0.95) !important;
        border-left-color: transparent !important;
    }

    .timeline-year {
        left: 0;
        transform: none;
        width: 48px;
        height: 48px;
        font-size: 0.9rem;
        margin-right: 12px;
        position: absolute;
        top: 24px;
    }

    .about-cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .profile-img-flying {
        width: 240px;
        height: 240px;
        font-size: 4rem;
    }

    .text-card-flying,
    .skill-card-flying {
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .touch-options {
        grid-template-columns: 1fr;
    }

    .get-in-touch {
        padding: 3rem 2rem;
    }

    .get-in-touch h2 {
        font-size: 2rem;
    }

    .page-indicator {
        right: 15px;
        gap: 10px;
    }

    .page-dot {
        width: 10px;
        height: 10px;
    }
}

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

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

    .hero .description {
        font-size: 0.9rem;
    }

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

    .profile-img-flying {
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }

    .skill-card-flying {
        padding: 1.5rem 1rem;
    }

    .skill-card-flying h3 {
        font-size: 1.2rem;
    }

    .skill-card-flying p {
        font-size: 0.9rem;
    }

    .timeline-content {
        padding: 1.5rem 1rem;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .project-card {
        padding: 1.5rem;
    }

    .project-card h3 {
        font-size: 1.2rem;
    }

    .project-card p {
        font-size: 0.9rem;
    }
}