
/* ── 1. RESET & BASE ── */

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a2332 100%);
    color: white;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}


/* ── 2. TYPOGRAPHY & FONTS ── */

h1, h2, h3, h4, nav, .hello-badge, .btn-primary, .btn-outline, .cta-hire {
    font-family: 'Syne', sans-serif;
}

.highlight {
    color: #00ff9d;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00ff9d, transparent);
    animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes underlineGlow {
    0%, 100% { opacity: 0.5; }
    50%       { opacity: 1; }
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #00ff9d;
    margin-bottom: 12px;
    opacity: 0.8;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInDown 0.8s ease;
}

.section-title {
    font-size: 52px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeInUp 0.8s ease forwards; }


/* ── 3. BACKGROUND & DECORATIONS ── */

.bg-decoration {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.1) 0%, transparent 70%);
    top: 10%;
    right: 10%;
    animation: bgFloat 8s ease-in-out infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    bottom: 20%;
    left: 5%;
    animation: bgFloat 10s ease-in-out infinite reverse;
}

.bg-grid { display: none; }

.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,255,157,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: left 0.1s ease, top 0.1s ease;
}

@keyframes bgFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%       { transform: translateY(-20px) rotate(5deg); }
}


/* ── 4. NAVIGATION ── */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 3rem;
    height: 3rem;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 157, 0.1);
}

nav.scrolled {
    background: rgba(5, 8, 18, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 10rem;
    height: 3rem;
}

.logo a img {
    max-width: 100%;
    height: 8rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: #00ff9d;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #00ff9d;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a:hover,
.nav-links a.active { color: #00ffb3; }

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #00ff9d;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }


/* ── 5. HERO ── */

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 4.5rem 5%;
    min-height: 30em;
}

.hero-content {
    z-index: 1;
    width: 28rem;
}

.hello-badge {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid #00ff9d;
    border-radius: 25px;
    color: #00ff9d;
    font-size: 14px;
    margin-bottom: 20px;
    position: relative;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.7); }
    50%       { box-shadow: 0 0 0 10px rgba(0, 255, 157, 0); }
}

.hello-badge::before {
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 25px;
    z-index: -1;
    transition: 0.3s ease-out;
}

.hello-badge:hover::before { background: #23B6A3; width: 100%; }

.hero h1 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.subtitle-line {
    font-size: 0.75em;
    color: rgba(255,255,255,0.55);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-top: 6px;
}

#typewriter::after {
    content: '|';
    animation: blink 0.7s infinite;
    color: #00ff9d;
    position: relative;
}

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

.hero p {
    font-size: 16px;
    line-height: 1.8;
    color: #b0b8c8;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #00ff9d, #00d4ff);
    color: #0a0e1a;
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,255,157,0.35);
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,255,157,0.5); }
.btn-primary i { transition: transform 0.3s ease; }
.btn-primary:hover i { transform: translateX(4px); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 2px solid #00ff9d;
    color: #00ff9d;
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover { background: rgba(0,255,157,0.1); transform: translateY(-3px); }

.social-links {
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.social-icon {
    width: 45px;
    height: 45px;
    border: 2px solid #00ff9d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff9d;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon i   { font-size: 18px; }
.social-icon svg { display: none; }

.social-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00ff9d;
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
    z-index: -1;
}

.social-icon:hover::before { transform: scale(1); }
.social-icon:hover { color: #0a0e1a; border-color: #00ffb3; }

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glow-ring { display: none; }

.glow-box {
    position: absolute;
    width: 350px;
    height: 450px;
    background: linear-gradient(135deg, #00ff9d 0%, #00d4ff 100%);
    border-radius: 20px;
    animation: bgFloat 6s ease-in-out infinite;
    opacity: 0.8;
}

.hero-avatar {
    position: relative;
    width: 320px;
    height: 400px;
    border-radius: 20px;
    border: 2px solid #00ff9d;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 0 50px rgba(0,255,157,0.2);
    animation: bgFloat 6s ease-in-out infinite;
}

.hero-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.float-badge {
    position: absolute;
    background: rgba(10,14,26,0.9);
    border: 1px solid rgba(0,255,157,0.4);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #00ff9d;
    backdrop-filter: blur(10px);
    z-index: 2;
    animation: floatBadge 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge-html { top: 10%; right: -20px; animation-delay: 0s; }
.badge-css  { bottom: 25%; right: -25px; animation-delay: 1s; }
.badge-js   { bottom: 10%; left: -20px; animation-delay: 2s; }

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


/* ── 6. SERVICES ── */

.services {
    padding: 4rem 6%;
    background: rgba(10, 20, 35, 0.5);
}

.services-header { text-align: center; margin-bottom: 60px; }
.services-header h2 { font-size: 42px; margin-bottom: 20px; }
.services-header p  { font-size: 16px; color: #b0b8c8; max-width: 700px; margin: 0 auto; line-height: 1.8; }

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

.service-card {
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    padding: 50px 40px;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 157, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.15) 0%, rgba(0, 212, 255, 0.1) 100%);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.service-card:hover::before  { transform: translateY(0); }
.service-card:hover { transform: translateY(-10px); border-color: #00ff9d; box-shadow: 0 20px 40px rgba(0, 255, 157, 0.2); }

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 255, 157, 0.1);
    border: 2px solid #00ff9d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.service-icon i   { font-size: 32px; color: #00ff9d; }
.service-icon svg { display: none; }

.service-card:hover .service-icon { background: #00ff9d; transform: rotate(360deg); }
.service-card:hover .service-icon i { color: #404040; }

.service-card h3 { font-size: 24px; margin-bottom: 15px; color: white; position: relative; z-index: 1; }
.service-card p  { font-size: 15px; color: #b0b8c8; line-height: 1.7; position: relative; z-index: 1; }


/* ── 7. WHY WORK WITH ME ── */

.hireme {
    padding: 5rem 5%;
    position: relative;
    overflow: hidden;
}

.hireme::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(0,255,157,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hireme-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hireme-left { display: flex; flex-direction: column; gap: 1.4rem; }

.hireme-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
}

.hireme-desc { font-size: 0.95rem; color: #b0b8c8; line-height: 1.8; max-width: 440px; }

.perks-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.4rem;
}

.perk-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    transition: border-color 0.3s, background 0.3s;
}

.perk-item:hover { border-color: rgba(0,255,157,0.2); background: rgba(0,255,157,0.03); }

.perk-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    background: rgba(0,255,157,0.1);
    border: 1px solid rgba(0,255,157,0.2);
    color: #00ff9d;
    font-size: 0.85rem;
}

.perk-item div   { display: flex; flex-direction: column; gap: 0.2rem; }
.perk-item strong { font-size: 0.88rem; font-weight: 700; color: #e2e8f0; }
.perk-item span   { font-size: 0.8rem; color: #94a3b8; line-height: 1.5; }

.hireme-right { display: flex; flex-direction: column; gap: 2rem; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.stat-card {
    padding: 1.6rem 1.4rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.02);
    text-align: center;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover { border-color: rgba(0,255,157,0.25); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }
.stat-card--accent { border-color: rgba(0,255,157,0.15); background: rgba(0,255,157,0.04); }

.stat-card .stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #00ff9d;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label { font-size: 0.72rem; color: #94a3b8; letter-spacing: 0.8px; text-transform: uppercase; }

.hireme .cta-hire {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem 2rem;
    background: #00ff9d;
    color: #050c14;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background 0.25s, box-shadow 0.25s, transform 0.25s;
    width: 100%;
    margin: 0;
}

.hireme .cta-hire:hover { background: #00ffaa; box-shadow: 0 0 28px rgba(0,255,157,0.4); transform: translateY(-2px); }


/* ── 8. SKILLS MARQUEE ── */

.skills-marquee-section {
    padding: 80px 0 60px;
    overflow: hidden;
}

.marquee-header { text-align: center; margin-bottom: 50px; padding: 0 20px; }

.marquee-wrapper { position: relative; width: 100%; overflow: hidden; }

.marquee-fade-left,
.marquee-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.marquee-fade-left  { left: 0;  background: linear-gradient(to right, #0a0e1a, transparent); }
.marquee-fade-right { right: 0; background: linear-gradient(to left,  #0a0e1a, transparent); }

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-content { display: flex; align-items: center; flex-shrink: 0; }

.marquee-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 36px;
    margin: 0 12px;
    background: rgba(0, 255, 157, 0.04);
    border: 1px solid rgba(0, 255, 157, 0.15);
    border-radius: 50px;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    cursor: default;
    white-space: nowrap;
}

.marquee-item:hover {
    background: rgba(0, 255, 157, 0.1);
    border-color: rgba(0, 255, 157, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 255, 157, 0.15);
}

.marquee-icon { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; flex-shrink: 0; }
.marquee-icon svg, .marquee-icon i { width: 40px; height: 40px; font-size: 38px; }

.marquee-label {
    font-family: 'Syne', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
}

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


/* ── 9. MY PASSION ── */

.passion-section { padding: 5rem 5%; }

.passion-card {
    max-width: 640px;
    margin: 0 auto;
    background: rgba(0, 255, 157, 0.04);
    border: 1px solid rgba(0, 255, 157, 0.18);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.passion-card:hover { border-color: rgba(0, 255, 157, 0.4); box-shadow: 0 12px 40px rgba(0, 255, 157, 0.12); }

.passion-icon-wrapper { display: flex; justify-content: center; margin-bottom: 1.2rem; }

.passion-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 255, 157, 0.1);
    border: 1px solid rgba(0, 255, 157, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.passion-icon svg { width: 32px; height: 32px; stroke: #00ff9d; }

.passion-card h4 { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 700; color: #e2e8f0; margin-bottom: 0.8rem; }
.passion-card p  { font-size: 0.95rem; color: #94a3b8; line-height: 1.75; margin-bottom: 1.4rem; }

.passion-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }

.passion-tag {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(0, 255, 157, 0.08);
    border: 1px solid rgba(0, 255, 157, 0.25);
    color: #00ff9d;
    letter-spacing: 0.4px;
}


/* ── 10. PROJECTS SECTION ── */

.projects-section { padding: 5rem 0; }

.projects-section .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}

.project-card {
    background: transparent;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s;
    animation: fadeInUp 0.8s ease both;
}

.project-card:nth-child(1) { animation-delay: 0.2s; }
.project-card:nth-child(2) { animation-delay: 0.4s; }
.project-card:nth-child(3) { animation-delay: 0.6s; }

.project-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); border-color: rgba(0,255,157,0.3); }
.project-card.featured { border-color: rgba(0, 255, 157, 0.25); }

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #00ff9d, #00d4ff);
    color: #0a0e1a;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 255, 157, 0.4);
    animation: featuredPulse 2s ease-in-out infinite;
}

@keyframes featuredPulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.05); }
}

/* Image background wrapper */
.project-bg-img {
    position: relative;
    width: 100%;
    min-height: 32rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.project-bg-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,10,20,0.97) 0%, rgba(5,10,20,0.75) 45%, rgba(5,10,20,0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

.ecommerce-placeholder {
    background:
        radial-gradient(ellipse at 30% 40%, rgba(0,212,255,0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(0,255,157,0.2) 0%, transparent 60%),
        linear-gradient(135deg, #0d1b2a, #0a2a1f, #061520);
}

.landing-placeholder {
    background:
        radial-gradient(ellipse at 60% 30%, rgba(147,51,234,0.3) 0%, transparent 55%),
        radial-gradient(ellipse at 30% 70%, rgba(0,212,255,0.2) 0%, transparent 55%),
        linear-gradient(135deg, #0f0a1e, #1a0a2e, #0a1020);
}

.portfolio-placeholder {
    background:
        radial-gradient(ellipse at 50% 30%, rgba(255,165,0,0.2) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 70%, rgba(0,255,157,0.15) 0%, transparent 55%),
        linear-gradient(135deg, #1a1200, #1a0a00, #0a0d10);
}

.project-status {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 5;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    backdrop-filter: blur(10px);
    border: 2px solid;
}

.status-badge.live { background: rgba(0, 255, 157, 0.2); border-color: #00ff9d; color: #00ff9d; }

.status-badge i {
    font-size: 8px;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.5; }
}

.project-bg-gradient {
    position: relative;
    background: none;
    padding: 1.5rem;
    z-index: 2;
}

.project-content { padding: 0; }

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.project-title  { font-size: 1.05rem; font-weight: bold; color: white; margin: 0; flex: 1; line-height: 1.3; }

.project-number {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(135deg, #00ff9d, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.25;
    line-height: 1;
}

.project-description { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 0.8rem; }

.project-extra { margin-bottom: 0.8rem; }
.project-extra.hidden { display: none; }

.project-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 157, 0.1);
}

.feature { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: rgba(255,255,255,0.8); }
.feature i { color: #00ff9d; font-size: 0.75rem; }

.read-more-btn {
    background: none;
    border: 1px solid rgba(0,255,157,0.35);
    color: #00ff9d;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    margin-bottom: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.25s, box-shadow 0.25s;
    font-family: 'Inter', sans-serif;
}

.read-more-btn:hover { background: rgba(0,255,157,0.1); box-shadow: 0 0 12px rgba(0,255,157,0.2); }

.project-links { display: flex; gap: 10px; }

.project-btn {
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 2px solid;
}

.project-btn.live-demo { background: linear-gradient(135deg, #00ff9d, #00d4ff); border-color: #00ff9d; color: #0a0e1a; }
.project-btn.live-demo:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,255,157,0.4); }

.project-btn.github { background: rgba(0,255,157,0.08); border-color: rgba(0,255,157,0.3); color: #00ff9d; }
.project-btn.github:hover { border-color: #00ff9d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,255,157,0.2); }

.view-all-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(0,255,157,0.08), rgba(0,212,255,0.05));
    border-radius: 25px;
    border: 2px solid rgba(0,255,157,0.2);
    max-width: 600px;
    margin: 0 auto;
}

.view-all-text { font-size: 20px; color: rgba(255,255,255,0.8); margin-bottom: 25px; }

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #00ff9d, #00d4ff);
    color: #0a0e1a;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,255,157,0.4);
}

.view-all-btn:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,255,157,0.6); }
.view-all-btn i { transition: transform 0.3s ease; }
.view-all-btn:hover i { transform: translateX(5px); }


/* ── 11. TESTIMONIALS ── */

.testimonials-section { padding: 5rem 2rem; position: relative; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.testimonial-card:hover { border-color: rgba(0,255,157,0.2); box-shadow: 0 10px 40px rgba(0,0,0,0.3); transform: translateY(-4px); }
.testimonial-card.featured-testi { border-color: rgba(0,255,157,0.18); background: rgba(0,255,157,0.03); }

.testi-quote { font-family: 'Syne', sans-serif; font-size: 4rem; line-height: 0.8; color: #00ff9d; opacity: 0.25; font-weight: 800; user-select: none; }
.testi-text  { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.8; flex: 1; }

.testi-footer { display: flex; align-items: center; gap: 12px; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.06); }

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ff9d22, #00ff9d44);
    border: 1px solid rgba(0,255,157,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: #00ff9d;
    flex-shrink: 0;
}

.testi-info  { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.testi-name  { font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 700; color: #fff; }
.testi-role  { font-size: 0.7rem; color: rgba(255,255,255,0.35); letter-spacing: 0.3px; }
.testi-stars { display: flex; gap: 2px; flex-shrink: 0; }
.testi-stars i { font-size: 0.6rem; color: #ffd700; }


/* ── 12. CONTACT ── */

.contact-section { padding: 5rem 2rem; }

.contact-cta-wrapper {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 2.5rem 2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,255,157,0.15);
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(0,255,157,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(37,211,102,0.12);
    border: 1px solid rgba(37,211,102,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #25d366;
}

.cta-text h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.4rem; color: #fff; }
.cta-text p  { font-size: 0.9rem; color: rgba(255,255,255,0.5); max-width: 420px; line-height: 1.6; }

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
    margin-top: 0.5rem;
}

.whatsapp-btn:hover { background: #20bd5a; box-shadow: 0 6px 28px rgba(37,211,102,0.45); transform: translateY(-2px); }
.whatsapp-btn .btn-arrow { font-size: 0.8rem; transition: transform 0.2s; }
.whatsapp-btn:hover .btn-arrow { transform: translateX(4px); }

.contact-info-row { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.contact-info-item { display: flex; align-items: center; gap: 12px; }

.info-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(0,255,157,0.08);
    border: 1px solid rgba(0,255,157,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #00ff9d;
    flex-shrink: 0;
}

.status-dot-icon { font-size: 0.45rem !important; color: #00ff9d !important; }
.info-label  { display: block; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.35); margin-bottom: 2px; }
.info-value  { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.75); text-decoration: none; }
.info-value:hover { color: #00ff9d; }
.info-value.available { color: #00ff9d; }

.social-section {
    padding: 1.8rem 2rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    text-align: center;
    transition: border-color 0.3s;
}

.social-section:hover { border-color: rgba(0,255,157,0.2); }

.social-title {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    color: #94a3b8;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link i   { font-size: 20px; position: relative; z-index: 1; }
.social-link svg { display: none; }

.social-link:hover { transform: translateY(-4px); border-color: transparent; color: #fff; }
.social-link.linkedin:hover { background: #0077b5; box-shadow: 0 8px 24px rgba(0,119,181,0.4); }
.social-link.github:hover   { background: #333;    box-shadow: 0 8px 24px rgba(255,255,255,0.15); }
.social-link.twitter:hover  { background: #1da1f2; box-shadow: 0 8px 24px rgba(29,161,242,0.4); }
.social-link.whatsapp:hover { background: #25d366; box-shadow: 0 8px 24px rgba(37,211,102,0.4); }


/* ── 13. FOOTER ── */

.footer {
    background: rgba(5,8,18,0.8);
    border-top: 1px solid rgba(0,255,157,0.1);
    padding: 2.5rem 1rem;
    text-align: center;
}

.footer-inner p { color: rgba(255,255,255,0.5); font-size: 14px; margin-bottom: 4px; }
.footer-inner .highlight { color: #00ff9d; }
.footer-sub { font-size: 12px !important; opacity: 0.5; }


/* ── 14. UTILITIES ── */

.card-icon i   { font-size: 22px; color: #00ff9d; }
.card-icon svg { display: none; }


/* ── 15. SCROLL TO TOP ── */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #00ff9d;
    color: #0a0e1a;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top:hover { background: #00ffb3; transform: translateY(-5px); }
.scroll-top.show  { display: flex; }


/* ── 16. MEDIA QUERIES ── */

@media (max-width: 1024px) {
    .projects-section .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .container     { padding: 0 30px; }
    .section-title { font-size: 42px; }

    nav { padding: 20px 5%; }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 3rem;
        flex-direction: column;
        background: rgba(10, 14, 26, 0.98);
        height: 100vh;
        width: 70%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 40px 0;
        gap: 30px;
        border-top: 1px solid rgba(0, 255, 157, 0.2);
    }

    .nav-links.active { left: 0; }
    .hamburger { display: flex; }

    .hero { grid-template-columns: 1fr; padding: 60px 5%; gap: 40px; }
    .hero-content { text-align: center; order: 1; }
    .hero-image   { order: 2; }
    .hero h1      { font-size: 36px; }
    .hero p       { margin: 0 auto 30px; }
    .social-links { justify-content: center; }
    .hero-cta     { justify-content: center; }

    .image-container { width: 280px; height: 280px; }
    .glow-box        { width: 240px; height: 310px; }
    .hero-avatar     { width: 220px !important; height: 280px !important; }

    .services       { padding: 60px 5%; }
    .services-header h2 { font-size: 32px; }
    .services-grid  { grid-template-columns: 1fr; gap: 30px; }

    .float-badge { display: none; }

    .hireme-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hireme-desc  { max-width: 100%; }

    .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .marquee-item { padding: 14px 22px; margin: 0 8px; gap: 10px; }
    .marquee-icon,
    .marquee-icon svg,
    .marquee-icon i { width: 30px; height: 30px; font-size: 28px; }
    .marquee-label  { font-size: 14px; }
    .marquee-fade-left,
    .marquee-fade-right { width: 60px; }
}

@media (max-width: 640px) {
    .container        { padding: 0 20px; }
    .section-header   { margin-bottom: 60px; }
    .section-title    { font-size: 32px; }
    .section-subtitle { font-size: 16px; }

    .projects-section .projects-grid { grid-template-columns: 1fr; }
    .project-bg-img { min-height: 27rem; }
}

@media (max-width: 600px) {
    .contact-info-row { flex-direction: column; align-items: flex-start; padding: 0 1rem; gap: 1rem; }
}

@media (max-width: 480px) {
    .logo { font-size: 22px; }
    .hero h1 { font-size: 28px; }
    .hero p  { font-size: 14px; }
    .hero-content { width: auto; }

    .services-header h2 { font-size: 26px; }
    .service-card { padding: 40px 30px; }

    .image-container { width: 240px; height: 240px; }
    .glow-box        { width: 200px; height: 260px; }
    .hero-avatar     { width: 190px !important; height: 240px !important; }

    .stats-grid { gap: 0.75rem; }
    .stat-card .stat-number { font-size: 1.8rem; }
    .perk-item { padding: 0.85rem 1rem; }
    .hireme    { padding: 3.5rem 5%; }
}
