@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@700&display=swap');

:root {
    --space-blue: #00d2ff;
    --deep-void: #020617;
    --terminal-white: #e2e8f0;
    --scan-line: rgba(255, 255, 255, 0.05);
}

#preloader {
    position: fixed;
    inset: 0;
    background: var(--deep-void);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    font-family: 'Space Mono', 'Fira Code', monospace;
    overflow: hidden;
}

/* Scanline Effect */
.background-noise {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, var(--scan-line) 50%);
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 1;
}

/* Celestial Core Animation */
.universe-core {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ring {
    position: absolute;
    border: 2px solid var(--space-blue);
    border-radius: 50%;
    opacity: 0.4;
    border-top-color: transparent;
    animation: spin linear infinite;
}

.outer { width: 100%; height: 100%; animation-duration: 3s; }
.middle { width: 70%; height: 70%; animation-duration: 2s; border-bottom-color: transparent; }
.inner { width: 40%; height: 40%; animation-duration: 1s; border-left-color: transparent; }

.core-dot {
    width: 8px;
    height: 8px;
    background: var(--space-blue);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--space-blue), 0 0 40px var(--space-blue);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Terminal Text Style */
.scan-title {
    font-size: 1rem;
    letter-spacing: 5px;
    color: var(--space-blue);
    text-shadow: 0 0 8px var(--space-blue);
    margin-bottom: 10px;
}

.data-grid {
    font-size: 0.6rem;
    display: flex;
    justify-content: space-between;
    opacity: 0.6;
    margin-bottom: 5px;
    color: whitesmoke;
}

/* The Bracketed Status Bar */
.status-bar-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.terminal-bracket {
    font-size: 1.5rem;
    color: var(--space-blue);
    font-weight: 100;
}

.status-bar {
    width: 250px;
    height: 10px;
    background: rgba(0, 210, 255, 0.1);
    position: relative;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: var(--space-blue);
    box-shadow: 0 0 15px var(--space-blue);
    transition: width 0.2s ease;
}

.blink {
    animation: blink 0.8s step-end infinite;
}

.loader-sub{
    color: var(--space-blue);
}

@keyframes blink { 50% { opacity: 0; } }
/* ============================================================
   GLOBAL SETTINGS & VARIABLES
   ============================================================ */
:root {
    --glow-color: rgba(0, 150, 255, 0.6);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    background: transparent;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* ============================================================
   NAVLINK SECTION (TECHIE GALAXY NAVBAR)
   ============================================================ */
nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-sizing: border-box;
    backdrop-filter: blur(2px);
}



/* ================= TECHIE ICON NAV ================= */
.nav-links {
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    gap: 30px;
    /* Space out the links properly */
    align-items: center;
}

.nav-links a {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    /* Gap between icon and text */
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border: 1px solid transparent;
}

/* Icon Styling - Tiny & Crisp */
.nav-links i {
    opacity: 0.6;
    transition: all 0.3s ease;
}

/* Hover Effect: The "Active Selection" box */
.nav-links a:hover {
    color: #00d9ff;
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.5);
    background: rgba(0, 217, 255, 0.05);
    border-radius: 4px;
}

.nav-links a:hover i {
    opacity: 1;
    color: #00d9ff;
    transform: scale(1.1);
}

/* Active State: The Coder Gold Focus */
.nav-links .active {
    color: #00d9ff !important;
    border-bottom: 1px solid #00d9ff;
}

.nav-links .active i {
    color: #00d9ff !important;
    opacity: 1;
}

/* The separators | */
.nav-links span {
    margin: 0 20px;
    color: rgba(0, 217, 255, 0.2);
    font-weight: 100;
}

/* Hover Effect: Digital Glow */
.nav-links a:hover {
    color: #00d9ff;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
}

/* Active Link: The Coder Orange/Gold focus */
.nav-links .active {
    color: #00d9ff;
    /* Brighter gold for better contrast */
    font-weight: 600;
    text-shadow: 0 0 15px rgba(255, 170, 0, 0.5);
}

/* ================= LOGO & ANIMATIONS ================= */
.logo-img {
    height: 40px;
    filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.4));
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-img:hover {
    transform: rotate(5deg) scale(1.1);
}

/* SCANLINE ANIMATION */
@keyframes navScan {
    0% {
        left: -10%;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        left: 110%;
        opacity: 0;
    }
}




:root {
    --accent: #00f2ff;
    --bg: #030303;
}

.hero-section {
    position: relative;
    height: 100vh;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-family: 'Syncopate', sans-serif;
    color: #fff;
}

/* --- HIGH LEVEL BACKGROUND --- */
.cinematic-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 242, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle, black, transparent 80%);
}

.light-ray {
    position: absolute;
    width: 40vw;
    height: 100vh;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.03), transparent);
    transform: rotate(-45deg);
    filter: blur(50px);
    animation: sweep 10s infinite alternate ease-in-out;
}

.ray-2 {
    left: 50%;
    animation-delay: -5s;
}

@keyframes sweep {
    from {
        transform: rotate(-45deg) translateX(-20%);
    }

    to {
        transform: rotate(-45deg) translateX(20%);
    }
}

/* --- TYPOGRAPHY --- */
.identity-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-top: -5vh; /* Moves everything slightly up */
}



/* --- HUD BRACKET GREETING --- */
.hud-greeting {
    position: relative;
    padding: 10px 30px;
    margin-bottom: 25px;
    display: inline-block;
}

.hud-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 6px;
    color: var(--accent);
    font-weight: 300;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

/* Floating Brackets */
.bracket-tl, .bracket-br {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1px solid var(--accent);
    transition: 0.4s;
}

/* Top Left Bracket */
.bracket-tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

/* Bottom Right Bracket */
.bracket-br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

/* Animation: Brackets pulse and expand slightly */
.hud-greeting {
    animation: hudFloat 3s infinite ease-in-out;
}

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

/* Hover Effect: Brackets "Target" the text */
.hud-greeting:hover .bracket-tl {
    width: 100%;
    height: 100%;
    top: -5px;
    left: -5px;
}

.hud-greeting:hover .bracket-br {
    width: 100%;
    height: 100%;
    bottom: -5px;
    right: -5px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .hud-text {
        font-size: 10px;
        letter-spacing: 4px;
    }
    .hud-greeting {
        margin-bottom: 15px;
    }
}







.full-name {
    font-size: clamp(2.5rem, 10vw, 7rem);
    letter-spacing: -2px;
    margin: 0;
    opacity: 0;
    animation: revealName 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 2.2s;
}

.first-name {
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.last-name {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
}

@keyframes revealName {
    from {
        transform: translateY(30px) scale(0.9);
        opacity: 0;
        filter: blur(10px);
    }

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

/* --- THE ENGINE (Visible & Glowing) --- */
.build-engine {
    position: relative;
    z-index: 100;
    margin-top: 30px;
    margin-bottom: 20px; /* Space above buttons */
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    letter-spacing: 4px;
    min-height: 24px; /* FIX: Prevents buttons from jumping during typing */
    display: flex;
    justify-content: center;
    align-items: center;
}

.dynamic-text {
    color: var(--accent);
    font-weight: 800;
    text-shadow: 0 0 20px var(--accent);
    margin-left: 10px;
}

.cursor {
    color: var(--accent);
    animation: blink 0.8s infinite;
}


.button-space {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    z-index: 100;
    position: relative;
}

.liquid-btn {
    position: relative;
    padding: 25px 55px;
    text-decoration: none;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

/* THE WEIRD GLASSY FILL */
.glass-fill {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 242, 255, 0.2);
    z-index: -1;
    
    /* Irregular Organic Shape */
    border-radius: 65% 35% 72% 28% / 35% 71% 29% 65%;
    transition: 0.6s ease-in-out;
}

/* SHAPE MORPH ON HOVER */
.liquid-btn:hover .glass-fill {
    border-radius: 40% 60% 35% 65% / 50% 40% 60% 50%;
    background: rgba(0, 242, 255, 0.12);
    border-color: #00f2ff;
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.25);
    transform: scale(1.1) rotate(4deg);
}

.liquid-btn:hover {
    color: #00f2ff;
    transform: translateY(-8px);
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

/* Secondary Button - Slightly different shape to start */
.liquid-btn.secondary .glass-fill {
    border-radius: 30% 70% 41% 59% / 64% 28% 72% 36%;
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.1);
}

.liquid-btn.secondary:hover .glass-fill {
    border-radius: 70% 30% 60% 40% / 30% 60% 40% 70%;
    background: rgba(255, 255, 255, 0.08);
    border-color: #fff;
}






/* --- UNIVERSAL LEFT-SIDE CLUSTER --- */
.hero-socials.cluster-design {
    position: absolute;
    bottom: 50px; /* Distance from bottom */
    left: 40px;   /* Distance from left */
    z-index: 100;
}

.scout-track {
    display: flex;
    gap: 17px;
    align-items: flex-start;
}

/* The Animated Scanning Bar */
.scout-bar {
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.scout-bar::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    animation: scoutScan 3s infinite linear;
}

@keyframes scoutScan {
    0% { top: -50%; }
    100% { top: 150%; }
}

.social-group {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.social-item {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    transition: 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
}

/* --- MOBILE & TABLET FIX (Keeps it on the Left) --- */
@media (max-width: 768px) {
    .hero-socials.cluster-design {
        left: 20px;   /* Tighter to the edge on phones */
        bottom: 35px; /* Slightly higher up */
    }

    .scout-bar {
        height: 80px; /* Shorter bar for smaller screens */
    }

    .social-group {
        gap: 16px; /* Tighter spacing */
    }

    .social-item {
        font-size: 8px; /* Slightly smaller text */
        letter-spacing: 3px;
    }

    /* Hide the extra hover-labels on mobile to keep it clean */
    .social-item::before {
        display: none;
    }
    
    /* Subtle glow instead of movement on mobile hover */
    .social-item:hover {
        color: var(--accent);
        transform: translateX(5px);
        letter-spacing: 5px;
    }
}

/* Landscape / Small Phone Fix */
@media (max-height: 600px) {
    .hero-socials.cluster-design {
        bottom: 20px;
    }
    .scout-bar {
        height: 60px;
    }
}







/* --- SCROLL WIDGET POSITION --- */
.scroll-widget {
    position: fixed;
    bottom: 40px;
    right: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    z-index: 100;
}

.scroll-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: #00d9ff;
    letter-spacing: 3px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    opacity: 0.6;
    animation: pulseText 2s infinite ease-in-out;
}

/* --- THE GALAXY MOTION ANIMATION --- */
.scroll-icon-container {
    position: relative;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.galaxy-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid #00d9ff;
    border-radius: 50%;
    animation: ringExpand 2s infinite ease-out;
    opacity: 0;
}

.galaxy-ring.delay {
    animation-delay: 1s;
}

.scroll-dot {
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff, 0 0 20px #00d9ff;
    animation: dotFloat 2s infinite ease-in-out;
}

/* --- KEYFRAMES --- */
@keyframes ringExpand {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@keyframes dotFloat {

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

    50% {
        transform: translateY(10px);
    }
}

@keyframes pulseText {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }
}



/* hero banner ended */



/* ABOUT SECTION */
.about-content-wrapper {
    position: relative;
    z-index: 10;
}

/* 🛠️ Main Section Wrapper */
.calm-horizon {
    background: linear-gradient(to bottom, #000a16 0%, #001a2d 100%);
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 60px 20px;
    box-sizing: border-box;

        padding-bottom: 100px; /* ✅ space above waves */

}

/* 🛠️ New Header Group to center and align Location + Hello! */
.top-hud-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Aligns left edge of Hello with Sky Sector */
    width: 100%;
    max-width: 1100px;
    /* Perfectly matches the body width below */
    margin-bottom: 20px;
}

#sky-sector-hud .status-content {

    margin-bottom: 25px;
    display: flex;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 7px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

#sky-sector-hud .label {
    color: rgba(255, 255, 255, 0.4);
}

#sky-sector-hud .value {
    color: #00d9ff;
    text-shadow: 0 0 12px rgba(0, 217, 255, 0.6);
}

.cinematic-moon {
    cursor: pointer !important;
    position: absolute;
    top: 50px;
    right: 50px;
    /* Moved slightly inward for better layout */
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 50%;
    box-shadow: 12px 12px 0 0 rgba(255, 255, 255, 1);
    filter: drop-shadow(0 0 30px rgba(0, 217, 255, 1)) !important;
    opacity: 0.85;
    transform: rotate(-15deg);
    z-index: 999;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.cinematic-moon:hover {
    transform: scale(1.1) rotate(-15deg);
}

.stars-container {
    z-index: 1;
}

.about_section_name {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 4.5rem;
    /* Made slightly bigger to carry weight */
    margin: 10px 0 0 0;
    background: linear-gradient(-45deg, #ffffff 0%, #d0f4ff 20%, #00d9ff 50%, #00a8ff 80%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 1px rgba(0, 217, 255, 0.4));
    animation: skyDrift 5s ease-in-out infinite;
    background-size: 200% auto;
}

@keyframes skyDrift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* --- THE 'O' CAT WINDOW --- */
.cat-o {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid #00d9ff;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background: rgba(0, 217, 255, 0.1);
    box-shadow: inset 0 0 15px rgba(0, 217, 255, 0.5);
    vertical-align: middle;
}

.cat-o img {
    width: 170%;
    height: auto;
}

/* --- CONTENT WRAPPER --- */
.about-content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    /* Pushes J block and text to both ends of the max-width */
    gap: 50px;
    width: 100%;
    max-width: 1100px;
    padding: 0;
    margin-top: 60px;
}

/* --- J CONTAINER --- */
.j-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.j-visual-stack {
    display: inline-block;
    position: relative;
    flex-shrink: 0;
}

.big-j {
    font-size: 14rem;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
    color: transparent;
    background: linear-gradient(180deg, #ffffff 20%, #00d9ff 100%);
    -webkit-background-clip: text;
    filter: drop-shadow(0 0 25px rgba(0, 217, 255, 0.4));
    letter-spacing: -5px;
    text-transform: uppercase;
    margin: 0;
}

.sitting-cat {
    position: absolute;
    width: 140px;
    bottom: 12px;
    left: 20px;
    z-index: 5;
}

/* Boutique Text Buttons */
.quick-actions-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.sidebar-btn {
    z-index: 99;
    text-decoration: none;
    color: #00d9ff;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    letter-spacing: 3px;
    font-weight: bold;
    position: relative;
    padding: 16px 0;
    transition: all 0.4s ease;
}

.btn-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: #00d9ff;
    transition: all 0.4s ease;
    box-shadow: 0 0 10px #00d9ff;
}

.sidebar-btn:hover {
    color: #ffffff;
    text-shadow: 0 0 15px #00d9ff;
    padding-left: 10px;
}

.sidebar-btn:hover .btn-line {
    width: 80%;
    background: #ffffff;
    box-shadow: 0 0 20px #ffffff;
}

/* Career Block Content */
.career-content {
    flex-grow: 1;
    max-width: 600px;
}

.status-terminal {
    display: flex;
    gap: 10px;
    background: rgba(94, 190, 207, 0.05);
    padding: 12px 15px;
    border-radius: 2px;
    border-left: 3px solid #00d9ff;
    margin-bottom: 25px;
    text-align: left;
}

.status-text {
    font-size: 13px;
    letter-spacing: 2px;
    color: #00d9ff;
    font-family: 'JetBrains Mono', monospace;
}

.bio-terminal {
    background: transparent;
    padding: 0;
}

.story-description {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.7rem;
}

.code-line {
    display: block;
    margin-bottom: 20px;
}

.code-line:hover {
    color: #fff;
    transform: translateX(5px);
    transition: 0.3s ease-out;
}

.highlight {
    color: #00d9ff;
    font-weight: 600;
    background: linear-gradient(to right, rgba(0, 217, 255, 0.15), transparent);
    padding: 2px 6px;
    border-radius: 4px;
}

.highlight-experince {
    display: inline-block;
    color: #ffffff;
    font-weight: 600;
    /* background: rgba(3, 87, 102, 0.1); */
    background: #00d9ff;
    padding: 2px 10px;
    border-radius: 4px;
    border: 1px solid #00d9ff;
    cursor: pointer !important;
    transition: all 0.2s ease;

    box-shadow: 0 0 15px rgba(0, 217, 255, 0.5);

}



/* Overlays & Modals */
.about-overlay,
.intern-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.intern-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.status-card,
.intern-content {
    background: #0a0f14;
    width: 400px;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(0, 217, 255, 0.4);
    box-shadow: 0 0 50px rgba(0, 217, 255, 0.2);
    position: relative;
    text-align: left;
}


.card-footer {
    color: #00e6ff;
    /* brighter neon blue */
    font-size: 13px;
    /* slightly smaller than body */
    font-style: italic;
    letter-spacing: 0.5px;
    margin-top: 15px;
    opacity: 0.9;

    border-left: 2px solid rgba(0, 230, 255, 0.5);
    padding-left: 12px;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #00d9ff;
    font-size: 24px;
    cursor: pointer;
}

.card-title,
.intern-content h2 {
    color: #00d9ff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.card-description,
.intern-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
}

/* Water & Mountains Backgrounds */
.mountain-range {
    position: absolute;
    bottom: 100px;
    width: 100%;
    opacity: 0.3;
    z-index: 1;
    left: 0;
}










.boat-wrapper {
    position: absolute;
    bottom: 50px;
    left: -200px;
    width: 100px;
    z-index: 5;

    animation: boatMove 60s linear infinite;
}

.boat-svg {
    width: 100%;
    height: auto;

    animation: floatBoat 3s ease-in-out infinite;
}

.boat-svg path {
    filter: drop-shadow(0 0 6px #00d9ff);
}



@keyframes blink {

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

    95% {
        transform: scaleY(0.1);
    }
}

/* Move across water */
@keyframes boatMove {
    0% {
        left: -200px;
    }

    100% {
        left: 110%;
    }
}

/* Float like waves */
@keyframes floatBoat {

    0%,
    100% {
        transform: translateY(0px) rotate(-1deg);
    }

    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

.water-scene {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 160px;
    z-index: 5;
    left: 0;
}

.waves {
    width: 100%;
    height: 100px;
    display: block;
}

.parallax-waves>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

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











