/* Portfolio - itsfucking.fun Theme Adaptation */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=DM+Mono&display=swap');

:root {
    /* Core Colors - itsfucking.fun palette */
    --bg-color: #000000;
    --text-primary: #f5f5f5;
    --text-secondary: rgba(245, 245, 245, 0.55);
    --accent-color: #9df100;
    --accent-glow: rgba(157, 241, 0, 0.5);
    --glow-primary: #9df100;
    --glow-secondary: #2dd047;
    --glow-accent: #e7e800;

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --glass-blur: blur(12px);

    /* Fonts */
    --font-heading: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'DM Mono', monospace;

    --transition-speed: 0.3s;
}

/* ================================================
   BASE RESET & TYPOGRAPHY
   ================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    background-color: var(--bg-color);
    color: var(--text-secondary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 3rem;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: var(--text-primary);
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--accent-color);
}

/* ================================================
   ANIMATED BACKGROUND
   ================================================ */
.fluid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: var(--bg-color);
}

/* Grid overlay like itsfucking.fun */
.fluid-background::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Noise texture overlay */
.fluid-background::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.orb-1 {
    top: -20%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--glow-primary) 0%, transparent 70%);
    opacity: 0.15;
    animation: orbFloat1 15s infinite ease-in-out;
}

.orb-2 {
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--glow-secondary) 0%, transparent 70%);
    opacity: 0.12;
    animation: orbFloat2 18s infinite ease-in-out;
}

.orb-3 {
    left: 30%;
    bottom: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--glow-accent) 0%, transparent 70%);
    opacity: 0.15;
    animation: orbFloat3 12s infinite ease-in-out;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(100px, 50px) scale(1.2); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1.2); }
    50% { transform: translate(-80px, 100px) scale(1); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, -80px) scale(1.3); }
}

/* Floating Particles */
.particles-container {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--glow-primary);
    opacity: 0.3;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
    10% { opacity: 0.4; }
    90% { opacity: 0.4; }
    100% { transform: translateY(-120vh) translateX(50px) scale(0.5); opacity: 0; }
}

/* ================================================
   EXTRA ANIMATED ICONS
   ================================================ */
.floating-icons-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.float-icon {
    position: absolute;
    opacity: 0.6;
    color: var(--accent-color);
    text-shadow: 0 0 15px var(--accent-glow);
}

.float-icon-1 {
    top: 20%;
    left: 10%;
    font-size: 2rem;
    animation: floatIcon 6s ease-in-out infinite;
}

.float-icon-2 {
    top: 30%;
    right: 15%;
    font-size: 2.2rem;
    animation: floatIcon 4s ease-in-out infinite 0.5s;
}

.float-icon-3 {
    bottom: 30%;
    left: 20%;
    font-size: 1.8rem;
    animation: floatIcon 5s ease-in-out infinite 1s;
}

.float-icon-4 {
    top: 40%;
    left: 30%;
    font-size: 1.5rem;
    animation: floatIcon 4.5s ease-in-out infinite 1.5s;
}

.float-icon-5 {
    bottom: 40%;
    right: 25%;
    font-size: 2rem;
    animation: floatIcon 5.5s ease-in-out infinite 2s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    33% {
        transform: translateY(-20px) rotate(5deg) scale(1.1);
    }
    66% {
        transform: translateY(10px) rotate(-5deg) scale(0.95);
    }
}

/* ================================================
   FLUID MOUSE CURSOR
   ================================================ */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    margin-top: -300px;
    margin-left: -300px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    opacity: 0.1;
    mix-blend-mode: screen;
    transition: width 0.3s, height 0.3s, margin 0.3s, background 0.3s, opacity 0.3s;
}

.cursor-glow.glow-active {
    width: 800px;
    height: 800px;
    margin-top: -400px;
    margin-left: -400px;
    opacity: 0.15;
    background: radial-gradient(circle, rgba(157, 241, 0, 0.8) 0%, transparent 65%);
}

/* ================================================
   GLASSMORPHISM COMPONENTS
   ================================================ */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 0.4, 0.25, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
}

/* Fluid spotlight effect inside cards */
.glass-spotlight {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: radial-gradient(
        600px circle at var(--mouse-x) var(--mouse-y),
        rgba(157, 241, 0, 0.08),
        transparent 40%
    );
    z-index: -1; /* Keep it below panel content */
}

.glass-panel:hover .glass-spotlight {
    opacity: 1;
}

/* Corner accent lines (like itsfucking.fun glass-card) */
.glass-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-left: 2px solid rgba(157, 241, 0, 0.15);
    border-top: 2px solid rgba(157, 241, 0, 0.15);
    border-top-left-radius: 20px;
    transition: border-color 0.4s ease;
    pointer-events: none;
}

.glass-panel::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-right: 2px solid rgba(157, 241, 0, 0.15);
    border-bottom: 2px solid rgba(157, 241, 0, 0.15);
    border-bottom-right-radius: 20px;
    transition: border-color 0.4s ease;
    pointer-events: none;
}

.glass-panel:hover {
    border-color: rgba(157, 241, 0, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 0 40px -10px var(--glow-primary);
}

.glass-panel:hover::before {
    border-color: rgba(157, 241, 0, 0.5);
}

.glass-panel:hover::after {
    border-color: rgba(157, 241, 0, 0.5);
}

/* ================================================
   SECTION STYLING
   ================================================ */
.section {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.fp-tableCell {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* Fix for large content overlapping in fullpage sections */
.fp-auto-height.fp-section,
.fp-auto-height .fp-tableCell {
    height: auto !important;
}
.fp-auto-height.fp-section {
    min-height: 100vh !important;
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-family: var(--font-mono);
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
}

.hero-subtitle::before {
    content: "✦";
    animation: rotateStar 3s linear infinite;
    display: inline-block;
}

@keyframes rotateStar {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-title {
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-primary);
    background: none;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    -webkit-background-clip: unset;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.05;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Glitch effect on hover for hero title */
.hero-title:hover {
    animation: glitchText 0.3s ease;
}

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

/* Text rotator / lead */
.rotate {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    letter-spacing: 0;
}

.lead {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

/* ================================================
   BUTTONS & SOCIAL
   ================================================ */
.btn-social-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 20px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.btn-social-container .social-icon {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.btn-social-container .social-icon li {
    display: inline-block;
    margin-right: 15px;
}

/* Modern button - itsfucking.fun style */
.btn-modern {
    background: var(--accent-color);
    color: #000000;
    border: none;
    padding: 16px 40px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.25, 0.4, 0.25, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 0 30px -10px var(--glow-primary);
}

.btn-modern::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.3), rgba(255,255,255,0));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-modern:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px -5px var(--glow-primary);
    color: #000000;
}

.btn-modern:hover::after {
    transform: translateX(100%);
}

.btn-modern:active {
    transform: scale(0.95);
}

/* Social Icons */
.social-icon {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-icon li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    font-size: 1.3rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-icon li a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #000000;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 0 25px var(--accent-glow);
}

/* ================================================
   EXPERIENCE SECTION
   ================================================ */
.experience-card {
    margin-bottom: 2rem;
    padding: 2.8rem;
}

.exp-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.exp-header h3 {
    margin-bottom: 0;
    color: var(--accent-color);
    font-size: 1.6rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.exp-meta {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.85rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    background: rgba(157, 241, 0, 0.08);
    border: 1px solid rgba(157, 241, 0, 0.15);
    border-radius: 6px;
}

.exp-bullets {
    list-style: none;
    padding: 0;
}

.exp-bullets li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 1rem;
    color: var(--text-primary);
    opacity: 0.85;
    font-size: 0.95rem;
    line-height: 1.7;
}

.exp-bullets li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* ================================================
   SKILLS SECTION
   ================================================ */
.skill-group {
    margin-bottom: 3rem;
}

.skill-group h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.8rem;
    font-family: var(--font-heading);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tags span {
    background: rgba(157, 241, 0, 0.06);
    border: 1px solid rgba(157, 241, 0, 0.15);
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--accent-color);
    font-family: var(--font-mono);
    transition: all 0.3s cubic-bezier(0.25, 0.4, 0.25, 1);
}

.skill-tags span:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(157, 241, 0, 0.3);
}

/* ================================================
   CERTIFICATIONS
   ================================================ */
.cert-card {
    text-align: center;
    padding: 2.5rem;
    height: 100%;
}

.cert-card i {
    font-size: 2.8rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px var(--accent-glow);
    display: block;
}

.cert-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.cert-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ================================================
   ACHIEVEMENTS
   ================================================ */
.media-object i {
    color: var(--accent-color);
    text-shadow: 0 0 15px var(--accent-glow);
}

.media-object {
    font-size: 2.5rem;
}

.media-heading {
    margin-top: 5px;
    font-family: var(--font-heading);
}

/* ================================================
   PORTFOLIO / GALLERY
   ================================================ */
#portfolio h2 {
    margin-bottom: 4rem;
}

.portfolio-thumb.glass-panel {
    padding: 0;
    overflow: hidden;
    position: relative;
    height: 300px;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(157, 241, 0, 0.15); /* Green frosted tint */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-thumb.glass-panel:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important;
    transition: transform 0.4s ease;
}

.portfolio-thumb.glass-panel:hover img {
    transform: scale(1.1);
}

.portfolio-overlay h4 {
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.view-btn {
    padding: 8px 20px !important;
    font-size: 14px !important;
}

.drive-link {
    font-size: 14px;
    text-decoration: underline !important;
    opacity: 0.8;
    color: var(--accent-color);
}

.drive-link:hover {
    opacity: 1;
}

/* ================================================
   IMAGES & MEDIA
   ================================================ */
.glass-panel img {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
}

/* ================================================
   MODAL / LIGHTBOX
   ================================================ */
.modal-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal-viewer.active {
    display: flex;
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    z-index: 10001;
    transition: transform 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--accent-color);
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: opacity 0.3s ease;
}

.modal-nav {
    position: absolute;
    width: 110%;
    top: 50%;
    left: -5%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.modal-nav button {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.modal-nav button:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #000000;
    box-shadow: 0 0 25px var(--accent-glow);
    transform: scale(1.1);
}

.modal-counter {
    margin-top: 20px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-mono);
    background: rgba(157, 241, 0, 0.08);
    padding: 5px 18px;
    border-radius: 20px;
    border: 1px solid rgba(157, 241, 0, 0.15);
}

/* ================================================
   SCROLL REVEAL ANIMATIONS
   ================================================ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.4, 0.25, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.4, 0.25, 1);
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.4, 0.25, 1);
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger children */
.stagger-container .scroll-reveal:nth-child(1) { transition-delay: 0.1s; }
.stagger-container .scroll-reveal:nth-child(2) { transition-delay: 0.2s; }
.stagger-container .scroll-reveal:nth-child(3) { transition-delay: 0.3s; }
.stagger-container .scroll-reveal:nth-child(4) { transition-delay: 0.4s; }
.stagger-container .scroll-reveal:nth-child(5) { transition-delay: 0.5s; }

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(135deg, var(--glow-primary), var(--glow-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Text glow */
.text-glow {
    text-shadow: 0 0 30px var(--accent-glow);
}

/* Shimmer effect on elements */
.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    animation: shimmerSlide 3s ease-in-out infinite;
}

@keyframes shimmerSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Pulse glow for active/accent elements */
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px -5px var(--accent-glow); }
    50% { box-shadow: 0 0 40px -5px var(--accent-glow); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-secondary);
    font-family: var(--font-mono);
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border-radius: 12px;
    border: 2px solid rgba(245, 245, 245, 0.3);
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-color);
    animation: scrollDot 1.5s infinite;
}

@keyframes scrollDot {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.5; }
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 992px) {
    .hero-title { font-size: 3.5rem; }
    .hero-subtitle { font-size: 1rem; }
    h2 { font-size: 2.4rem; }
    .experience-card { padding: 2rem; }
    .exp-header h3 { font-size: 1.4rem; }
    .cert-card { padding: 1.8rem; }
}

@media (max-width: 768px) {
    body { font-size: 16px; }

    .section {
        padding: 60px 0;
        min-height: auto !important;
        height: auto !important;
    }

    .fp-tableCell {
        height: auto !important;
        padding: 40px 0 !important;
    }

    .fp-section.fp-table,
    .fp-slide.fp-table {
        height: auto !important;
    }

    .orb-1, .orb-2, .orb-3 { filter: blur(60px); }
    .orb-1 { width: 70vw; height: 70vw; }
    .orb-2 { width: 80vw; height: 80vw; }
    .orb-3 { width: 60vw; height: 60vw; }

    .hero-title { font-size: 2.5rem; }
    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 2px;
        padding: 6px 14px;
    }
    .lead { font-size: 0.95rem; line-height: 1.6; }
    h2 { font-size: 1.8rem; margin-bottom: 1.2rem; }

    .glass-panel {
        padding: 1.5rem;
        border-radius: 16px;
        margin-bottom: 1.2rem;
    }

    .glass-panel::before,
    .glass-panel::after {
        width: 40px;
        height: 40px;
    }

    .glass-panel:hover { transform: none; }

    .btn-social-container {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-modern { padding: 12px 30px; font-size: 14px; }
    .social-icon { justify-content: center; }

    .experience-card { padding: 1.5rem; margin-bottom: 1.5rem; }
    .exp-header { flex-direction: column; gap: 8px; }
    .exp-header h3 { font-size: 1.3rem; }
    .exp-meta { font-size: 0.75rem; }
    .exp-bullets li { font-size: 0.9rem; margin-bottom: 0.8rem; padding-left: 22px; }

    .skill-group { margin-bottom: 1rem; }
    .skill-group h3 { font-size: 1.15rem; margin-bottom: 1rem; }
    .skill-tags span { font-size: 0.8rem; padding: 5px 12px; }

    .cert-card { padding: 1.5rem; margin-bottom: 1rem; }
    .cert-card i { font-size: 2.2rem; margin-bottom: 1rem; }
    .cert-card h3 { font-size: 1.25rem; }
    .cert-card p { font-size: 0.85rem; }

    .media { flex-direction: row; align-items: flex-start; }
    .media-object { font-size: 2rem; }
    .media-heading { font-size: 1.1rem; }
    .media-body p { font-size: 0.85rem; }

    .portfolio-thumb.glass-panel { height: 200px; }
    #portfolio h2 { margin-bottom: 2rem; }

    .modal-close { top: 15px; right: 20px; font-size: 2.2rem; }
    .modal-content { max-width: 95vw; }
    .modal-content img { border-radius: 12px; max-height: 70vh; }
    .modal-nav { width: 100%; left: 0; padding: 0 5px; }
    .modal-nav button { width: 45px; height: 45px; font-size: 1.1rem; }

    #fp-nav { display: none !important; }

    .col-md-4, .col-md-6, .col-md-8 {
        width: 100% !important;
        float: none !important;
    }
    .col-md-2 { display: none; }

    .row[style*="margin-top: 20px"] { margin-top: 0 !important; }

    .scroll-indicator { display: none; }

    html, body {
        overflow: visible !important;
        height: auto !important;
    }

    #superContainer {
        height: auto !important;
        overflow: visible !important;
        -ms-touch-action: auto;
        touch-action: auto;
    }

    #fullpage {
        height: auto !important;
        transform: none !important;
    }

    .fp-section { height: auto !important; }
    .fp-tableCell { display: block !important; }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 480px) {
    body { font-size: 16px; }
    .section { padding: 40px 0; }
    .fp-tableCell { padding: 25px 0 !important; }
    .hero-title { font-size: 1.8rem; margin-bottom: 1rem; }
    .hero-subtitle { font-size: 0.75rem; margin-bottom: 1rem; letter-spacing: 1.5px; }
    .lead { font-size: 0.85rem; }
    h2 { font-size: 1.5rem; }

    .glass-panel { padding: 1.2rem; border-radius: 14px; }
    .glass-panel::before, .glass-panel::after { width: 30px; height: 30px; }
    .btn-modern { padding: 10px 25px; font-size: 14px; letter-spacing: 1px; }
    .experience-card { padding: 1.2rem; margin-bottom: 1.2rem; }
    .exp-header h3 { font-size: 1.1rem; }
    .exp-bullets li { font-size: 0.85rem; }
    .skill-tags span { font-size: 0.75rem; padding: 4px 10px; }
    .cert-card { padding: 1.2rem; }
    .cert-card i { font-size: 1.8rem; }
    .cert-card h3 { font-size: 1.1rem; }
    .portfolio-thumb.glass-panel { height: 160px; }
    .media-object { font-size: 1.5rem; }
    .media-heading { font-size: 1rem; }
    .modal-nav button { width: 38px; height: 38px; font-size: 0.9rem; }

    .social-icon li { margin-right: 10px !important; }
    .social-icon li a { font-size: 1.1rem !important; width: 42px; height: 42px; }
    .col-xs-6 { width: 100% !important; float: none !important; }
}