/* ===== ENHANCED PORTFOLIO STYLES ===== */
/* Cleaner, optimized, and better organized */

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --accent-cyan: #06ffa5;
    --accent-blue: #4c9aff;
    --accent-purple: #b794f6;
    --accent-orange: #ff6b35;
    --accent-pink: #ec4899;
    --text-dark: #1a1a1a;
    --text-white: #red;

    /* Glassmorphism */
    --glass: rgba(255, 255, 255, 0.08);
    --glass-strong: rgba(255, 255, 255, 0.14);
    --glass-border: rgba(255, 255, 255, 0.12);

    /* Shadows */
    --glow-cyan: 0 0 30px rgba(6, 255, 165, 0.6);
    --glow-blue: 0 0 40px rgba(76, 154, 255, 0.5);
    --shadow-depth: 0 8px 32px rgba(0, 0, 0, 0.4);

    /* Sizing */
    --radius-lg: 24px;
    --radius-md: 16px;
}

/* ===== WELCOME POPUP - GREETING WITH IMAGE ===== */
.welcome-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease;
}

.welcome-content {
    background: linear-gradient(135deg, rgba(6, 255, 165, 0.2), rgba(76, 154, 255, 0.2));
    backdrop-filter: blur(30px);
    border-radius: 40px;
    padding: 35px 40px;
    text-align: center;
    max-width: 800px;
    width: 92%;
    max-height: 92vh;
    overflow-y: auto;
    border: 3px solid rgba(6, 255, 165, 0.5);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 100px rgba(6, 255, 165, 0.4);
    animation: popIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Custom scrollbar for welcome content */
.welcome-content::-webkit-scrollbar {
    width: 8px;
}

.welcome-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.welcome-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    border-radius: 10px;
}

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

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(100px);
    }
    60% {
        transform: scale(1.05) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.welcome-image {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 4px solid var(--accent-cyan);
    box-shadow: 0 10px 40px rgba(6, 255, 165, 0.5);
    overflow: hidden;
    animation: imageFloat 3s ease-in-out infinite;
}

@keyframes imageFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.welcome-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speech-bubble {
    position: absolute;
    right: -50px;
    top: 15%;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: #000000;
    padding: 8px 15px;
    border-radius: 18px;
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: 0 10px 40px rgba(6, 255, 165, 0.6);
    animation: bubbleFloat 2s ease-in-out infinite;
    white-space: nowrap;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-right: 12px solid var(--accent-cyan);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* Hide speech bubble on small screens */
@media screen and (max-width: 600px) {
    .speech-bubble {
        display: none;
    }
}

@keyframes bubbleFloat {
    0%, 100% {
        transform: translateY(10px) scale(1);
    }
    50% {
        transform: translateY(5px) scale(1.05);
    }
}

.welcome-content h2 {
    font-size: 2rem !important;
    color: #ffffff !important;
    margin-bottom: 10px !important;
    text-shadow: 0 0 40px rgba(6, 255, 165, 0.6) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
}

.welcome-content > p {
    font-size: 1.1rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 8px 0 !important;
}

.welcome-content strong {
    color: var(--accent-cyan) !important;
    font-weight: 800 !important;
    font-size: 1.2rem !important;
}

.welcome-tagline {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1rem !important;
    margin-bottom: 20px !important;
}

/* Journey Bubble Button - Creative Speech Bubble */
.journey-bubble-container {
    position: relative;
    display: inline-block;
    margin: 20px auto 0;
    animation: bubbleEntrance 1s ease-out 0.5s backwards;
}

/* Journey bubble at top near image */
.journey-bubble-top {
    margin: 0 auto 25px;
}

/* Arrow points upward toward the picture */
.journey-bubble-top .bubble-tail {
    bottom: 100%;
    top: auto;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 20px solid var(--accent-cyan);
    border-top: none;
    transform: translateX(-50%);
}

.journey-bubble-top .bubble-tail::after {
    top: 5px;
    transform: translateX(-50%);
}

@keyframes bubbleEntrance {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(30px);
    }
    70% {
        transform: scale(1.1) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.journey-bubble-btn {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: #000000;
    border: none;
    padding: 15px 35px;
    font-size: 1.15rem;
    font-weight: 900;
    border-radius: 30px;
    cursor: pointer;
    box-shadow:
        0 15px 50px rgba(6, 255, 165, 0.6),
        0 0 60px rgba(76, 154, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

.journey-bubble-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

.bubble-text {
    position: relative;
    z-index: 1;
}

.bubble-emoji {
    position: relative;
    z-index: 1;
    font-size: 1.3rem;
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(15deg);
    }
}

.journey-bubble-btn:hover {
    transform: scale(1.12) translateY(-6px) rotate(-2deg);
    box-shadow:
        0 20px 70px rgba(6, 255, 165, 0.9),
        0 0 80px rgba(76, 154, 255, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.journey-bubble-btn:active {
    transform: scale(1.05) translateY(-2px);
}

/* Speech bubble tail pointing upward */
.bubble-tail {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 20px solid var(--accent-cyan);
    filter: drop-shadow(0 -5px 10px rgba(6, 255, 165, 0.4));
}

.bubble-tail::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow:
        -15px -8px 0 4px rgba(6, 255, 165, 0.6),
        -25px -15px 0 2px rgba(6, 255, 165, 0.4),
        15px -8px 0 4px rgba(76, 154, 255, 0.6),
        25px -15px 0 2px rgba(76, 154, 255, 0.4);
}

@media screen and (max-width: 600px) {
    .journey-bubble-btn {
        padding: 12px 28px;
        font-size: 1rem;
    }

    .bubble-emoji {
        font-size: 1.1rem;
    }
}

/* Welcome Flowchart - Spacious Version */
.welcome-flowchart {
    margin: 20px auto 15px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
}

.welcome-flowchart .flow-step {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(6, 255, 165, 0.4);
    border-radius: 12px;
    padding: 10px 15px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    margin: 14px;
}

.welcome-flowchart .flow-step:hover {
    transform: scale(1.03);
    border-color: var(--accent-cyan);
}

.welcome-flowchart .flow-icon {
    font-size: 1.8rem;
    min-width: 40px;
    text-align: center;
    flex-shrink: 0;
}

.welcome-flowchart .flow-content {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.welcome-flowchart .flow-content h4 {
    font-size: 0.95rem !important;
    color: var(--text-white) !important;
    margin: 0 0 4px 0 !important;
    font-weight: 700 !important;
}

.welcome-flowchart .flow-content p {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0 !important;
    line-height: 1 !important;
}

.welcome-flowchart .flow-connector {
    font-size: 1.3rem;
    color: var(--accent-cyan);
    text-align: center;
    margin: 2px 0;
    text-shadow: 0 0 10px rgba(6, 255, 165, 0.6);
}

.welcome-flowchart .flow-branches {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    margin: 8px 0;
    box-sizing: border-box;
}

.welcome-flowchart .flow-branch {
    display: flex;
    justify-content: center;
    min-width: 0;
}

.welcome-flowchart .flow-passion .flow-icon {
    font-size: 1.4rem;
    min-width: 32px;
}

.welcome-flowchart .flow-passion h4 {
    font-size: 0.85rem !important;
}

.welcome-flowchart .flow-passion p {
    font-size: 0.72rem !important;
}

.welcome-flowchart .flow-goal {
    background: linear-gradient(135deg, rgba(6, 255, 165, 0.15), rgba(76, 154, 255, 0.15));
    border-color: rgba(6, 255, 165, 0.6);
    box-shadow: 0 0 25px rgba(6, 255, 165, 0.4);
}

/* Responsive adjustments for welcome popup */
@media screen and (max-width: 600px) {
    .welcome-content {
        padding: 25px 20px;
        max-width: 95%;
    }

    .welcome-image {
        width: 100px;
        height: 100px;
    }

    .welcome-content h2 {
        font-size: 1.5rem !important;
    }

    .welcome-flowchart {
        max-width: 100%;
    }

    .welcome-flowchart .flow-step {
        padding: 5px 8px;
        gap: 6px;
    }

    .welcome-flowchart .flow-icon {
        font-size: 1.2rem;
        min-width: 28px;
    }

    .welcome-flowchart .flow-content h4 {
        font-size: 0.78rem !important;
    }

    .welcome-flowchart .flow-content p {
        font-size: 0.68rem !important;
    }

    .welcome-flowchart .flow-branches {
        gap: 5px;
    }

    .welcome-flowchart .flow-passion .flow-icon {
        font-size: 1.1rem;
        min-width: 26px;
    }

    .welcome-flowchart .flow-passion h4 {
        font-size: 0.72rem !important;
    }

    .welcome-flowchart .flow-passion p {
        font-size: 0.62rem !important;
    }

    .journey-bubble-btn {
        padding: 12px 26px;
        font-size: 1rem;
    }
}


/* ===== GLOBAL TEXT VISIBILITY - WHITE ON DARK ===== */
body {
    color: #ffffff !important;
    font-weight: 600 !important;
}

h1, h2, h3, h4, h5, h6 {
    color: #ffffff !important;
    font-weight: 900 !important;
}

h2 {
    font-weight: 900 !important;
    font-size: 3.5rem !important;
    text-shadow:
        0 0 40px rgba(6, 255, 165, 0.5),
        0 0 60px rgba(76, 154, 255, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.6) !important;
    letter-spacing: -0.5px !important;
    background: linear-gradient(135deg, #ffffff 0%, #06ffa5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p, li, span, div {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600 !important;
    font-size: 1.05rem !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

/* Make all content highly visible */
.about-text p,
.about-text li,
.timeline-content p,
.timeline-content li,
.project-description,
.highlight-item,
.detail-card p,
.skill-domain p,
.skill-domain li,
.skill-domain h3,
.skill-tag {
    color: #ffffff !important;
    font-weight: 700 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.timeline-content h3,
.timeline-content h4 {
    color: #ffffff !important;
    font-weight: 900 !important;
    text-shadow:
        0 0 20px rgba(6, 255, 165, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.6) !important;
}

/* ===== DARK BACKGROUND - ENTIRE SITE ===== */
body {
    background: linear-gradient(135deg, #0a0e1a 0%, #050812 100%) !important;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(6, 255, 165, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(76, 154, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(183, 148, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: particleFloat 20s ease-in-out infinite;
}

/* Make all sections have dark background */
section {
    background: transparent !important;
}

#about,
#skills,
#projects,
#experience,
#education,
#contact {
    background: rgba(10, 14, 26, 0.6) !important;
}

@keyframes particleFloat {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

/* ===== NAVIGATION ===== */
nav {
    background: rgba(10, 14, 26, 0.85) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-links a {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    transition: transform 0.3s ease;
}

.nav-links a:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-links a:hover {
    color: var(--accent-cyan) !important;
    text-shadow: 0 0 20px rgba(6, 255, 165, 0.5);
}

/* ===== HEADER SECTION - DRAMATIC ENTRANCE ===== */
header {
    overflow: visible !important;
    padding-top: 80px !important;
    background: radial-gradient(ellipse at top, rgba(6, 255, 165, 0.15), transparent 60%),
                radial-gradient(ellipse at bottom, rgba(76, 154, 255, 0.15), transparent 60%),
                linear-gradient(180deg, rgba(6,9,23,0.95), rgba(6,9,23,1)) !important;
}

.header-content {
    padding: 60px 20px !important;
    animation: headerEntrance 1.5s ease-out !important;
}

@keyframes headerEntrance {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* NAME - ULTRA DRAMATIC */
.header-content h1 {
    background: linear-gradient(135deg, #ffffff 0%, #06ffa5 50%, #4c9aff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-size: 200% 200% !important;
    animation: gradientFlow 3s ease infinite, namePopIn 1s ease-out !important;
    text-shadow: none !important;
    filter: drop-shadow(0 0 40px rgba(6, 255, 165, 0.8))
            drop-shadow(0 0 60px rgba(76, 154, 255, 0.6))
            drop-shadow(0 5px 15px rgba(0, 0, 0, 0.8)) !important;
    font-weight: 900 !important;
    letter-spacing: 4px !important;
    padding: 30px 0 !important;
    margin-top: 20px !important;
    position: relative !important;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes namePopIn {
    0% {
        transform: scale(0.8);
        filter: blur(10px) opacity(0);
    }
    60% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        filter: blur(0) opacity(1);
    }
}

/* Tagline */
.tagline {
    color: var(--text-white) !important;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6), var(--glow-cyan) !important;
    font-weight: 600 !important;
}

/* Name Wrapper - Container for hover effect */
.name-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.name-wrapper h1 {
    position: relative;
    z-index: 2;
}

/* Add subtle hint that name is hoverable */
.name-wrapper h1::after {
    content: '▼';
    font-size: 1.2rem;
    margin-left: 15px;
    opacity: 0.6;
    animation: bounce 2s ease-in-out infinite;
}

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

/* Hero Story Popup  Hidden by default - COMPACT VERSION */
.hero-story-popup {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 500px;
    max-width: 90vw;
    padding: 25px 30px;
    background: linear-gradient(135deg,
        rgba(6, 255, 165, 0.25),
        rgba(76, 154, 255, 0.25),
        rgba(183, 148, 246, 0.25));
    backdrop-filter: blur(40px) saturate(200%);
    border-radius: 25px;
    border: 3px solid rgba(6, 255, 165, 0.6);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 100px rgba(6, 255, 165, 0.5),
        0 0 150px rgba(76, 154, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1000;
}

/* Arrow pointing to name */
.story-arrow {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid rgba(6, 255, 165, 0.6);
    filter: drop-shadow(0 -5px 10px rgba(6, 255, 165, 0.3));
}

.hero-story-popup::before {
    content: '✨';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(6, 255, 165, 0.5);
    animation: sparkleRotate 3s linear infinite;
}

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

/* FLOWCHART STYLING */
.flowchart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(6, 255, 165, 0.4);
    border-radius: 12px;
    padding: 10px 16px;
    min-width: 240px;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: flowStepEntry 0.6s ease backwards;
}

.flow-step:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(6, 255, 165, 0.4);
    border-color: var(--accent-cyan);
}

/* Different colors for different stages */
.flow-start {
    border-color: rgba(255, 107, 53, 0.5);
}

.flow-pivot {
    border-color: rgba(255, 210, 63, 0.5);
}

.flow-current {
    border-color: rgba(76, 154, 255, 0.5);
}

.flow-passion {
    border-color: rgba(183, 148, 246, 0.5);
    min-width: 300px;
}

.flow-goal {
    border-color: rgba(6, 255, 165, 0.6);
    background: linear-gradient(135deg, rgba(6, 255, 165, 0.2), rgba(76, 154, 255, 0.2));
}

@keyframes flowStepEntry {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Stagger animation delays */
.flow-step:nth-child(1) { animation-delay: 0.1s; }
.flow-step:nth-child(3) { animation-delay: 0.2s; }
.flow-step:nth-child(5) { animation-delay: 0.3s; }
.flow-step:nth-child(7) { animation-delay: 0.4s; }

.flow-icon {
    font-size: 2rem;
    min-width: 45px;
    text-align: center;
    animation: iconBounce 2s ease-in-out infinite;
}

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

.flow-content h4 {
    font-size: 1.1rem !important;
    color: var(--text-white) !important;
    margin: 0 0 5px 0 !important;
    font-weight: 800 !important;
    text-shadow: 0 0 20px rgba(6, 255, 165, 0.5) !important;
}

.flow-content p {
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    font-weight: 500 !important;
}

.flow-connector {
    font-size: 2rem;
    color: var(--accent-cyan);
    text-shadow: 0 0 20px rgba(6, 255, 165, 0.8);
    animation: arrowPulse 2s ease-in-out infinite;
    margin: -5px 0;
}

@keyframes arrowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(5px);
    }
}

.flow-branches {
    display: flex;
    gap: 30px;
    margin: 20px 0;
    position: relative;
}

.flow-branches::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 25px;
    background: linear-gradient(180deg, var(--accent-cyan), transparent);
}

.flow-branches::after {
    content: '';
    position: absolute;
    top: -25px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
}

.flow-connector-merge {
    margin-top: -10px;
}

/* Responsive flowchart */
@media screen and (max-width: 768px) {
    .flow-step {
        min-width: 280px;
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
    }

    .flow-branches {
        flex-direction: column;
        gap: 15px;
    }

    .flow-passion {
        min-width: 280px;
    }

    .flow-icon {
        font-size: 2.5rem;
    }

    .flow-content h4 {
        font-size: 1.1rem !important;
    }

    .flow-content p {
        font-size: 0.95rem !important;
    }
}

/* Show on hover - DRAMATIC ENTRANCE */
.name-wrapper:hover .hero-story-popup {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
    animation: popupEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes popupEntrance {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(30px) scale(0.8) rotateX(-15deg);
    }
    60% {
        transform: translateX(-50%) translateY(-5px) scale(1.02) rotateX(2deg);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1) rotateX(0deg);
    }
}

/* Glow effect when hovering */
.name-wrapper:hover h1 {
    filter: drop-shadow(0 0 60px rgba(6, 255, 165, 1))
            drop-shadow(0 0 90px rgba(76, 154, 255, 0.8)) !important;
}

/* Responsive for smaller screens */
@media screen and (max-width: 768px) {
    .hero-story-popup {
        width: 95vw;
        padding: 30px 25px;
        font-size: 1.1rem !important;
    }

    .hero-story-popup p {
        font-size: 1.05rem !important;
        line-height: 1.8 !important;
    }
}

/* ===== FLOATING BLOBS ===== */
.blob {
    filter: blur(50px);
    animation-duration: 15s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.blob.b1 {
    background: radial-gradient(circle at 30% 30%, var(--accent-orange), transparent 50%);
    opacity: 0.6;
    animation-name: float1;
}

.blob.b2 {
    background: radial-gradient(circle at 70% 30%, var(--accent-cyan), transparent 50%);
    opacity: 0.5;
    animation-name: float2;
}

.blob.b3 {
    background: radial-gradient(circle at 50% 60%, var(--accent-purple), transparent 50%);
    opacity: 0.4;
    animation-name: float3;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(30px, -30px) rotate(120deg) scale(1.1); }
    66% { transform: translate(-20px, 20px) rotate(240deg) scale(0.9); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(-25px, 25px) rotate(-120deg) scale(0.9); }
    66% { transform: translate(25px, -15px) rotate(-240deg) scale(1.1); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(20px, 30px) rotate(180deg) scale(1.15); }
}

/* ===== SOCIAL ICONS ===== */
.social-icons a {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.social-icons a:hover::before {
    width: 100%;
    height: 100%;
}

.social-icons a:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: var(--glow-blue);
    border-color: var(--accent-cyan);
}

/* ===== BUTTONS ===== */
.btn {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0%;
    height: 300%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translate(-50%, -50%) rotate(45deg);
    transition: width 0.6s ease;
}

.btn:hover::before {
    width: 300%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan)) !important;
    box-shadow: 0 4px 20px rgba(76, 154, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: var(--glow-blue);
    transform: translateY(-4px) scale(1.05);
}

.btn-ghost {
    background: var(--glass) !important;
    border: 2px solid var(--glass-border) !important;
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: var(--glass-strong) !important;
    border-color: var(--accent-cyan) !important;
    box-shadow: 0 0 30px rgba(6, 255, 165, 0.3);
}

/* ===== SKILL CARDS ===== */
.skill-domain {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.skill-domain::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 154, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.skill-domain:hover::after {
    opacity: 1;
    transform: translate(-25%, 25%);
}

.skill-domain:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    border-color: var(--accent-blue);
    background: var(--glass-strong);
}

/* ===== PROJECT CARDS ===== */
.project-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(76, 154, 255, 0.05) 0%, rgba(183, 148, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: var(--radius-lg);
    z-index: -1;
}

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

.project-card:hover {
    transform: translateY(-15px) rotateX(2deg) rotateY(1deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), var(--glow-blue);
    border-color: var(--accent-blue);
}

/* Project Headings - Maximum Visibility */
.project-info h3 {
    color: var(--text-white) !important;
    text-shadow:
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 40px rgba(6, 255, 165, 0.6),
        0 2px 8px rgba(0, 0, 0, 0.9),
        0 4px 12px rgba(0, 0, 0, 0.7) !important;
    font-weight: 900 !important;
    font-size: 2rem !important;
    letter-spacing: 1px !important;
    -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.2) !important;
    filter: brightness(1.3) !important;
}

/* Shimmer effect on project images */
.project-image::after {
    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.7s ease;
}

.project-card:hover .project-image::after {
    left: 100%;
}

/* ===== TIMELINE ===== */
.timeline::after {
    background: linear-gradient(180deg, var(--accent-blue), var(--accent-cyan), var(--accent-purple)) !important;
    box-shadow: 0 0 20px rgba(76, 154, 255, 0.5) !important;
    width: 3px !important;
}

.timeline-item::after {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan)) !important;
    box-shadow: 0 0 15px rgba(76, 154, 255, 0.6) !important;
    border: none !important;
    width: 24px !important;
    height: 24px !important;
}

.timeline-content {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    border-color: var(--accent-blue);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0e1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(76, 154, 255, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    box-shadow: 0 0 15px rgba(76, 154, 255, 0.8);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered project card animations */
.project-card:nth-child(1) { animation: fadeInUp 0.8s ease 0.1s backwards; }
.project-card:nth-child(2) { animation: fadeInUp 0.8s ease 0.2s backwards; }
.project-card:nth-child(3) { animation: fadeInUp 0.8s ease 0.3s backwards; }
.project-card:nth-child(4) { animation: fadeInUp 0.8s ease 0.4s backwards; }
.project-card:nth-child(5) { animation: fadeInUp 0.8s ease 0.5s backwards; }
.project-card:nth-child(6) { animation: fadeInUp 0.8s ease 0.6s backwards; }

/* ===== GRACE HOPPER CELEBRATION SECTION ===== */
#ghc {
    position: relative;
    overflow: hidden;
}

#ghc::before,
#ghc::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    animation: floatGently 20s ease-in-out infinite;
}

#ghc::before {
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.15), transparent 70%);
}

#ghc::after {
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(221, 160, 221, 0.12), transparent 70%);
    animation-direction: reverse;
    animation-duration: 25s;
}

@keyframes floatGently {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 30px) scale(1.1); }
}

.ghc-container {
    position: relative;
    z-index: 1;
}

.ghc-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 2px solid rgba(255, 182, 193, 0.3);
    box-shadow: 0 10px 40px rgba(255, 182, 193, 0.2);
}

.ghc-intro h3 {
    font-size: 2rem;
    color: #d946a6 !important;
    margin-bottom: 20px;
    font-weight: 700 !important;
}

.ghc-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1f2937 !important;
    font-weight: 500 !important;
}

.ghc-photo-grid {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    margin: 20px 0;
}

.ghc-photo-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: white;
    border: 3px solid rgba(217, 70, 166, 0.2);
}

.ghc-photo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(217, 70, 166, 0.3), rgba(147, 51, 234, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.ghc-photo-card:hover::before {
    opacity: 1;
}

.ghc-photo-card:hover {
    transform: translateY(-15px) rotate(-2deg) scale(1.05);
    box-shadow: 0 25px 60px rgba(217, 70, 166, 0.4);
    border-color: rgba(217, 70, 166, 0.6);
}

/* Add playful wiggle animation */
@keyframes wiggle {
    0%, 100% { transform: translateY(-15px) rotate(-2deg) scale(1.05); }
    25% { transform: translateY(-15px) rotate(2deg) scale(1.05); }
    75% { transform: translateY(-15px) rotate(-2deg) scale(1.05); }
}

.ghc-photo-card:hover {
    animation: wiggle 0.5s ease-in-out;
    animation-fill-mode: forwards;
}

.ghc-photo-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ghc-photo-card:hover img {
    transform: scale(1.1);
}

.ghc-photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white !important;
    font-weight: 600 !important;
    font-size: 0.95rem;
    z-index: 2;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.ghc-photo-card:hover .ghc-photo-caption {
    transform: translateY(0);
}

.ghc-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.ghc-category {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 25px;
    border: 3px solid rgba(217, 70, 166, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

/* Playful background pattern */
.ghc-category::before {
    content: '💫';
    position: absolute;
    font-size: 8rem;
    opacity: 0.05;
    right: -20px;
    bottom: -20px;
    transition: all 0.5s ease;
    transform: rotate(-15deg);
}

.ghc-category:nth-child(1)::before { content: '🎤'; }
.ghc-category:nth-child(2)::before { content: '👥'; }
.ghc-category:nth-child(3)::before { content: '🎓'; }
.ghc-category:nth-child(4)::before { content: '⭐'; }

.ghc-category:hover {
    transform: translateY(-12px) rotate(2deg) scale(1.03);
    box-shadow: 0 20px 50px rgba(217, 70, 166, 0.3);
    border-color: rgba(217, 70, 166, 0.6);
}

.ghc-category:hover::before {
    opacity: 0.15;
    transform: rotate(15deg) scale(1.2);
}

.ghc-category h4 {
    color: #d946a6 !important;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700 !important;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ghc-category h4 i {
    font-size: 1.5rem;
    color: var(--accent-pink) !important;
}
.ghc-category p{
    font-size: 1.5rem;
    color: var(--accent-pink) !important;
}
.ghc-category ul {
    list-style: none;
    padding: 0;
}

.ghc-category li {
    padding: 12px 0 12px 25px;
    position: relative;
    color: #1f2937 !important;
    line-height: 1.7;
    border-bottom: 1px solid rgba(217, 70, 166, 0.1);
    font-weight: 500 !important;
}

.ghc-category li:last-child {
    border-bottom: none;
}

.ghc-category li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 1rem;
}

.ghc-category strong {
    color: #9333ea !important;
    font-weight: 700 !important;
}

.ghc-connections {
    display: grid;
    gap: 15px;
}

.connection-item {
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08), rgba(147, 51, 234, 0.08));
    border-radius: 15px;
    border-left: 5px solid var(--accent-pink);
    color: #1f2937 !important;
    line-height: 1.6;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-weight: 500 !important;
    position: relative;
    cursor: pointer;
}

/* Add playful emoji indicators */
.connection-item::after {
    content: '💜';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.connection-item:hover {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(147, 51, 234, 0.2));
    transform: translateX(15px) scale(1.03);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
    border-left-width: 8px;
}

.connection-item:hover::after {
    transform: translateY(-50%) scale(1) rotate(360deg);
}

.connection-item strong {
    color: #9333ea !important;
    font-weight: 700 !important;
    display: block;
    margin-bottom: 5px;
}

.ghc-reflection {
    margin: 60px auto 0;
    text-align: center;
    max-width: 900px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    border: 3px solid rgba(217, 70, 166, 0.3);
    box-shadow: 0 15px 50px rgba(217, 70, 166, 0.25);
    position: relative;
}

.ghc-reflection::before {
    content: '🌸';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(217, 70, 166, 0.3);
}

.ghc-reflection blockquote {
    margin: 30px 0;
    padding: 0;
    border: none;
}

.ghc-reflection blockquote p {
    font-size: 1.4rem !important;
    font-style: italic;
    color: #9333ea !important;
    line-height: 1.8;
    font-weight: 600 !important;
    position: relative;
}

.ghc-reflection blockquote p::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-pink) !important;
    opacity: 0.3;
    position: absolute;
    left: -40px;
    top: -20px;
}

.ghc-closing {
    font-size: 1.15rem !important;
    line-height: 1.9;
    color: #1f2937 !important;
    margin: 25px 0;
    font-weight: 500 !important;
}

.ghc-closing strong {
    color: #d946a6 !important;
    font-weight: 700 !important;
}

.ghc-gratitude {
    font-size: 1.2rem !important;
    color: var(--accent-pink) !important;
    font-weight: 700 !important;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(217, 70, 166, 0.2);
}

/* ===== CONTACT SECTION - STUNNING REDESIGN ===== */
#contact {
    background: linear-gradient(135deg, rgba(6, 255, 165, 0.05), rgba(76, 154, 255, 0.05)) !important;
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 255, 165, 0.1), transparent 70%);
    animation: floatGently 25s ease-in-out infinite;
}

.contact-hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.contact-tagline {
    font-size: 1.3rem !important;
    line-height: 2 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 45px 35px;
    border: 2px solid rgba(6, 255, 165, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 255, 165, 0.1), rgba(76, 154, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(6, 255, 165, 0.2);
    border-color: rgba(6, 255, 165, 0.5);
}

.contact-card-primary {
    background: linear-gradient(135deg, rgba(6, 255, 165, 0.15), rgba(76, 154, 255, 0.15));
    border: 3px solid rgba(6, 255, 165, 0.4);
    box-shadow: 0 0 60px rgba(6, 255, 165, 0.3);
}

.contact-card-primary:hover {
    box-shadow: 0 0 80px rgba(6, 255, 165, 0.5);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: #000000;
    box-shadow: 0 10px 40px rgba(6, 255, 165, 0.4);
    transition: all 0.4s ease;
}

.contact-card:hover .contact-card-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 60px rgba(6, 255, 165, 0.6);
}

.contact-card h3 {
    font-size: 1.8rem !important;
    color: #ffffff !important;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(6, 255, 165, 0.5) !important;
}

.contact-card > p {
    text-align: center;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 25px;
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
}

.contact-highlights {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.contact-highlights li {
    padding: 12px 0;
    color: #ffffff !important;
    font-size: 1.05rem !important;
    border-bottom: 1px solid rgba(6, 255, 165, 0.2);
    transition: all 0.3s ease;
}

.contact-highlights li:hover {
    padding-left: 10px;
    border-color: rgba(6, 255, 165, 0.5);
}

.contact-highlights li:last-child {
    border-bottom: none;
}

.contact-methods {
    margin: 30px 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(6, 255, 165, 0.1);
}

.contact-method:hover {
    background: rgba(6, 255, 165, 0.1);
    transform: translateX(10px);
    border-color: rgba(6, 255, 165, 0.3);
}

.contact-method i {
    font-size: 1.8rem;
    color: var(--accent-cyan);
    width: 40px;
    text-align: center;
}

.contact-method strong {
    display: block;
    color: #ffffff !important;
    font-size: 1rem !important;
    margin-bottom: 5px;
}

.contact-method span {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.05rem !important;
}

.contact-cta {
    margin-top: 30px;
    text-align: center;
}

.btn-glow {
    box-shadow: 0 0 40px rgba(6, 255, 165, 0.6) !important;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 40px rgba(6, 255, 165, 0.6);
    }
    50% {
        box-shadow: 0 0 60px rgba(6, 255, 165, 0.8);
    }
}

.btn-glow:hover {
    box-shadow: 0 0 80px rgba(6, 255, 165, 1) !important;
}

.contact-social-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(6, 255, 165, 0.2);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    background: linear-gradient(135deg, rgba(6, 255, 165, 0.2), rgba(76, 154, 255, 0.2));
    border-color: var(--accent-cyan);
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(6, 255, 165, 0.3);
}

.social-link i {
    font-size: 2rem;
    color: var(--accent-cyan);
    width: 40px;
    text-align: center;
}

.social-link span {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
}

/* ===== FOOTER - ENHANCED WITH ACTIVE LINKS ===== */
footer {
    background: linear-gradient(135deg, #050812 0%, #0a0e1a 100%);
    border-top: 2px solid rgba(6, 255, 165, 0.3);
    padding: 60px 20px 40px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), var(--accent-blue), transparent);
    box-shadow: 0 0 20px rgba(6, 255, 165, 0.5);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-social a {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(6, 255, 165, 0.1), rgba(76, 154, 255, 0.1));
    border: 2px solid rgba(6, 255, 165, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-cyan);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50%;
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social a:hover {
    transform: translateY(-8px) rotate(360deg) scale(1.15);
    box-shadow: 0 15px 40px rgba(6, 255, 165, 0.5);
    border-color: var(--accent-cyan);
}

.footer-social a i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.footer-social a:hover i {
    color: #000000;
}

.footer-text {
    font-size: 1.1rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
}

.footer-subtext {
    font-size: 0.95rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 500 !important;
    margin-top: 5px !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 768px) {
    h2 {
        font-size: 2rem !important;
    }

    .hero-story {
        font-size: 1rem !important;
        padding: 25px 30px !important;
        margin: 20px 15px !important;
    }

    .ghc-photo-grid,
    .ghc-highlights {
        grid-template-columns: 1fr;
    }

    .ghc-intro,
    .ghc-reflection {
        padding: 30px 20px;
    }

    .ghc-intro h3 {
        font-size: 1.6rem;
    }

    .ghc-reflection blockquote p {
        font-size: 1.2rem !important;
    }

    .ghc-reflection blockquote p::before {
        left: -20px;
        font-size: 3rem;
    }

    .project-info h3 {
        font-size: 1.6rem !important;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-card {
        padding: 35px 25px;
    }

    .contact-tagline {
        font-size: 1.1rem !important;
    }
}
