
/* ==============================================
   1. STRICT SINGLE SCROLLBAR & OVERFLOW FIX
   ============================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Dual scrollbar flicker fix */
html {
    overflow-x: hidden !important;
    overflow-y: auto !important; /* Force strictly single scrollbar */
    scroll-behavior: smooth;
    width: 100%;
}

body {
    background-color: #0b0614 !important;
    color: #e2e8f0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important; /* Hide horizontal scrollbar completely */
    position: relative;
}

.main-wrapper {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden !important;
    position: relative;
}

/* Custom Scrollbar (Laptop View ke liye Sleek Design) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0b0614;
}

::-webkit-scrollbar-thumb {
    background: #8b5cf6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a855f7;
}

:root {
    --bg-dark: #0b0614;
    --card-bg: #130a21;
    --primary-purple: #8b5cf6;
    --accent-glow: #a855f7;
    --text-light: #e2e8f0;
    --text-muted: #94a3b8;
}

.text-purple {
    color: var(--primary-purple) !important;
}

.text-light-muted {
    color: #cbd5e1 !important;
}

/* Background Purple Glow (Contrained inside wrapper) */
.glow-bg {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.25) 0%, rgba(11, 6, 20, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.glow-top {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

/* Glassmorphism Sticky Navbar */
.navbar {
    width: 100%;
    background: rgba(11, 6, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(168, 85, 247, 0.15);
    z-index: 10;
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-purple) !important;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

/* ==============================================
   2. HERO SECTION
   ============================================== */
#home {
    width: 100%;
    position: relative;
    z-index: 1;
}

.avatar-box {
    position: relative;
    display: inline-block;
    padding-top: 35px;
}

.avatar-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #1e112a;
    border: 2px solid var(--primary-purple);
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.4);
    animation: float 4s ease-in-out infinite;
}

.speech-bubble {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: rgba(139, 92, 246, 0.25);
    border: 1px solid var(--primary-purple);
    backdrop-filter: blur(8px);
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.highlight-text {
    color: var(--primary-purple);
    text-decoration: underline;
}

/* Custom Buttons */
.btn-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-purple:hover {
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
    color: #fff;
}

.btn-outline-purple {
    border: 1px solid var(--primary-purple);
    color: var(--text-light);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-purple:hover {
    background: rgba(139, 92, 246, 0.2);
    color: #fff;
    border-color: var(--accent-glow);
}

/* ==============================================
   3. MOBILE RESPONSIVE FIXES
   ============================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }

    .avatar-box {
        padding-top: 35px !important;
    }

    .avatar-img {
        width: 100px !important;
        height: 100px !important;
    }

    .speech-bubble {
        top: 2px !important;
        font-size: 0.75rem !important;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        width: 100%;
    }

    .hero-buttons a {
        width: 85%;
        margin-right: 0 !important;
    }
}

















/* ==============================================
   SKILLS SECTION (STRICT OVERFLOW CONTROL)
   ============================================== */
#skills {
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden !important; /* घूमते आइकन्स को पेज से बाहर जाने से रोकेगा */
    position: relative;
    
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
}

.orbit-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 335px;
    position: relative;
    width: 100%;
    max-width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
    overflow: hidden !important; /* Orbit container lock */
    /* margin-top: 30px !important; Adjusted for better spacing */
}

/* Orbit Outer Container */
.orbit-container {
    position: relative;
    width: 260px;
    height: 260px;
    border: none !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: spin 35s linear infinite; /* Smooth rotating container */
    will-change: transform;
}

.orbit-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Base Arc Curve Style */
.seq-arc {
    fill: none;
    stroke: url(#arcGlowGradient);
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke-dasharray: 45;
    stroke-dashoffset: 45; /* Hidden start */
    animation: pulseSeq 6s ease-in-out infinite; /* Total Loop Duration = 6s */
}

/* ⏱️ Infinite Sequential Delays for 6 Arcs */
.arc-1 { animation-delay: 0s; }
.arc-2 { animation-delay: 1s; }
.arc-3 { animation-delay: 2s; }
.arc-4 { animation-delay: 3s; }
.arc-5 { animation-delay: 4s; }
.arc-6 { animation-delay: 5s; }

/* 🌟 Keyframes: Blue Draw -> Turns Pink -> Holds -> Reset for Infinite Loop */
@keyframes pulseSeq {
    0% {
        stroke-dashoffset: 45;
        stroke: #3b82f6; /* Blue Draw */
        filter: drop-shadow(0 0 3px #3b82f6);
    }
    20% {
        stroke-dashoffset: 0;
        stroke: #3b82f6;
        filter: drop-shadow(0 0 8px #3b82f6);
    }
    40%, 80% {
        stroke-dashoffset: 0;
        stroke: #ec4899; /* Turns Neon Pink & Stays */
        filter: drop-shadow(0 0 10px #ec4899);
    }
    100% {
        stroke-dashoffset: 45; /* Clears for Next Loop Cycle */
        stroke: #ec4899;
    }
}

/* Orbit Anchor Icons Base Style */
.orbit-icon {
    position: absolute;
    width: 46px;
    height: 46px;
    background: #130a21;
    border: 2px solid rgba(168, 85, 247, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    font-size: 1.1rem;
    text-decoration: none; /* Link underline removal */
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 5;
}

/* 🌟 Dynamic Pink-Purple-Blue Gradient Hover Effect */
.orbit-icon:hover {
    background: linear-gradient(135deg, #ec4899 0%, #a855f7 50%, #3b82f6 100%);
    color: #ffffff !important;
    border-color: transparent;
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 25px rgba(236, 72, 153, 0.8), 
                0 0 15px rgba(59, 130, 246, 0.6);
}

/* Icon Spin Fix while Hovered */
.orbit-icon i {
    animation: counter-spin 20s linear infinite; /* Counter-rotate icon to keep it upright */
    pointer-events: none;
}

/* Perfect Safe Circle Positioning (No Out-of-Bounds Shift) */
.icon-1 { top: -10px; left: calc(50% - 22px); }
.icon-2 { top: 75px; right: -8px !important; }
.icon-3 { bottom: 20px; right: 21px !important; }
.icon-4 { bottom: -8px; left: calc(50% - 55px) !important; }
.icon-5 { bottom: 75px; left: -7px !important; }
.icon-6 { top: 20px; left: 22px !important; }

.orbit-icon i {
    animation: counter-spin 20s linear infinite; /* Counter-rotate icon to keep it upright */
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

@keyframes counter-spin {
    100% { transform: rotate(-360deg); }
}

/* Skills Glass Card */
.skills-card {
    background: #130a21 !important;
    border: 1px solid rgba(168, 85, 247, 0.25) !important;
    border-radius: 18px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.custom-progress {
    height: 10px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.bg-purple-gradient {
    background: linear-gradient(90deg, #8b5cf6 0%, #a855f7 50%, #ec4899 100%);
    border-radius: 10px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile responsive orbit fix */
@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .orbit-container {
        width: 200px;
        height: 200px;
    }
    
    .orbit-icon {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    /* .icon-1 { top: -18px; left: calc(50% - 18px); }
    .icon-2 { top: 25px; right: -10px; }
    .icon-3 { bottom: 25px; right: -10px; }
    .icon-4 { bottom: -18px; left: calc(50% - 18px); }
    .icon-5 { bottom: 25px; left: -10px; }
    .icon-6 { top: 25px; left: -10px; } */
}



/* ==============================================
   GITHUB REPOS SECTION STYLES
   ============================================== */
#github-repos {
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden !important;
}

.repo-card {
    position: relative;
    background: #130a21 !important;
    border: 1px solid rgba(168, 85, 247, 0.25) !important;
    border-radius: 18px !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover Top Animated Line */
.card-glow-bar {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #a855f7, #ec4899, transparent);
    transition: left 0.6s ease;
}

.repo-card:hover {
    transform: translateY(-8px);
    border-color: #a855f7 !important;
    box-shadow: 0 12px 30px rgba(168, 85, 247, 0.35);
}

.repo-card:hover .card-glow-bar {
    left: 100%;
}

.repo-card:hover .folder-icon {
    color: #ec4899;
    transform: rotate(-10deg) scale(1.1);
}

.folder-icon {
    font-size: 1.5rem;
    color: var(--primary-purple);
    transition: all 0.3s ease;
}

.tech-tag {
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.4);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}

.repo-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 8px;
}

.repo-desc {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.5;
}

.repo-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stars-count {
    font-size: 0.85rem;
    color: #cbd5e1;
    font-weight: 600;
}

.live-code-link {
    color: #c084fc;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.live-code-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #a855f7;
}

/* Glow Button Style */
.btn-purple-glow {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: white !important;
    border: none;
    padding: 8px 18px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
    transition: all 0.3s ease;
}

.btn-purple-glow:hover {
    box-shadow: 0 0 25px rgba(236, 72, 153, 0.7);
    transform: translateY(-2px);
}













/* ==============================================
   PART 3: VERTICAL TIMELINE STYLES
   ============================================== */
#education {
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden !important;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Central Glowing Line */
.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: linear-gradient(180deg, #8b5cf6 0%, #ec4899 50%, #8b5cf6 100%);
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
    border-radius: 2px;
}

.timeline-block {
    position: relative;
    width: 50%;
    padding: 0 40px;
    margin-bottom: 45px;
}

/* Left side alignment */
.timeline-block.left-block {
    left: 0;
    text-align: right;
}

/* Right side alignment */
.timeline-block.right-block {
    left: 50%;
    text-align: left;
}

.timeline-block.right-block .d-flex {
    justify-content: flex-start !important;
    gap: 12px;
}

.timeline-block.left-block .d-flex {
    justify-content: flex-end !important;
    gap: 12px;
}

/* Icon on central line */
.timeline-icon {
    position: absolute;
    top: 15px;
    width: 44px;
    height: 44px;
    background: #130a21;
    border: 2px solid #8b5cf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a855f7;
    font-size: 1.1rem;
    z-index: 5;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
    transition: all 0.3s ease;
}

.timeline-block.left-block .timeline-icon {
    right: -22px;
}

.timeline-block.right-block .timeline-icon {
    left: -22px;
}

.timeline-block:hover .timeline-icon {
    transform: scale(1.2);
    background: #8b5cf6;
    color: #ffffff;
    box-shadow: 0 0 25px rgba(236, 72, 153, 0.8);
}

.icon-gold {
    border-color: #f59e0b !important;
    color: #f59e0b !important;
}

.timeline-block:hover .icon-gold {
    background: #f59e0b !important;
    color: #130a21 !important;
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.8) !important;
}

/* Cards Design */
.timeline-card {
    background: #130a21 !important;
    border: 1px solid rgba(168, 85, 247, 0.25) !important;
    border-radius: 18px !important;
    padding: 22px;
    transition: all 0.35s ease;
}

.timeline-card:hover {
    transform: translateY(-50px) scale(1.02);
    border-color: #a855f7 !important;
    box-shadow: 0 12px 30px rgba(168, 85, 247, 0.3);
}

.timeline-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.bg-purple-tag {
    background: rgba(139, 92, 246, 0.15);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.bg-gold-tag {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.timeline-date {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 500;
}

.timeline-title {
    color: #f1f5f9;
    font-weight: 700;
    font-size: 1.1rem;
}

/* 📱 Mobile Responsive Timeline (Shift to left) */
@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }

    .timeline-block {
        width: 100% !important;
        padding-left: 55px !important;
        padding-right: 10px !important;
        text-align: left !important;
    }

    .timeline-block.left-block,
    .timeline-block.right-block {
        left: 0 !important;
    }

    .timeline-block.left-block .timeline-icon,
    .timeline-block.right-block .timeline-icon {
        left: -2px !important;
    }

    .timeline-block.left-block .d-flex,
    .timeline-block.right-block .d-flex {
        justify-content: flex-start !important;
    }

    .timeline-card:hover {
        transform: translateY(-4px);
    }
}



/* ==============================================
   CERTIFICATIONS SECTION STYLES
   ============================================== */
#certifications {
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden !important;
}

.cert-card {
    background: #130a21 !important;
    border: 1px solid rgba(168, 85, 247, 0.25) !important;
    border-radius: 18px !important;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cert-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-glow) !important;
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
}

.cert-icon {
    width: 45px;
    height: 45px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cert-title {
    color: #f1f5f9;
    font-weight: 700;
}

.cert-link {
    color: #c084fc;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cert-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #a855f7;
}







/* ==============================================
   PART 4: FILTERABLE PROJECTS GALLERY STYLES
   ============================================== */
#projects {
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden !important;
}

/* Filter Buttons */
.btn-filter {
    background: rgba(19, 10, 33, 0.8);
    color: var(--text-muted);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-filter:hover, .btn-filter.active {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: #ffffff !important;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

/* Project Cards */
.project-card {
    background: #130a21 !important;
    border: 1px solid rgba(168, 85, 247, 0.25) !important;
    border-radius: 18px !important;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-glow) !important;
    box-shadow: 0 12px 30px rgba(168, 85, 247, 0.35);
}

.project-badge {
    align-self: flex-start;
    background: rgba(139, 92, 246, 0.15);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.3);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 20px;
}

.project-title {
    color: #f1f5f9;
    font-weight: 700;
}

.project-tech-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.project-tech-tags span {
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 6px;
}

.project-link {
    color: #c084fc;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.project-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #a855f7;
}

/* Hidden Class for Filtering */
.project-item.hide {
    display: none !important;
}

/* ==============================================
   PART 4 (B): LIVE WEBSITES & WEB APPS STYLES
   ============================================== */
#live-websites {
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden !important;
}

.web-card {
    background: #130a21 !important;
    border: 1px solid rgba(168, 85, 247, 0.25) !important;
    border-radius: 18px !important;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.web-card:hover {
    transform: translateY(-8px);
    border-color: #ec4899 !important;
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.35);
}

.web-logo {
    width: 48px;
    height: 48px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.web-card:hover .web-logo {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary-purple);
    color: #ffffff;
}

.logo-pink {
    background: rgba(236, 72, 153, 0.15) !important;
    border-color: rgba(236, 72, 153, 0.4) !important;
    color: #ec4899 !important;
}

.logo-blue {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(59, 130, 246, 0.4) !important;
    color: #3b82f6 !important;
}

.web-title {
    color: #f1f5f9;
    font-weight: 700;
}

.rating-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.live-web-btn {
    color: #c084fc;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.live-web-btn:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #ec4899;
}















/* ==============================================
   PART 5: CONTACT & QR SCANNER STYLES
   ============================================== */
#contact {
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden !important;
}

/* QR Code Box */
.qr-box {
    background: rgba(19, 10, 33, 0.9);
    border: 1px dashed rgba(168, 85, 247, 0.4);
    border-radius: 16px;
    max-width: 260px;
    transition: all 0.3s ease;
}

.qr-box:hover {
    border-color: #ec4899;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
}

.qr-img {
    border-radius: 12px;
    border: 3px solid #130a21;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

/* Social Media Badges */
.social-btn {
    background: rgba(19, 10, 33, 0.8);
    color: var(--text-light);
    border: 1px solid rgba(168, 85, 247, 0.25);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.social-btn:hover {
    transform: translateY(-3px);
    color: #ffffff !important;
}

.social-btn.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    box-shadow: 0 0 15px rgba(0, 119, 181, 0.5);
}

.social-btn.github:hover {
    background: #333;
    border-color: #555;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
    box-shadow: 0 0 15px rgba(220, 39, 67, 0.5);
}

.social-btn.discord:hover {
    background: #5865f2;
    border-color: #5865f2;
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.5);
}

/* Custom Contact Inputs */
.custom-input {
    background: rgba(19, 10, 33, 0.7) !important;
    border: 1px solid rgba(168, 85, 247, 0.25) !important;
    color: #f1f5f9 !important;
    border-radius: 10px !important;
    padding: 10px 14px;
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: #a855f7 !important;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.4) !important;
    outline: none;
}

.custom-input::placeholder {
    color: #64748b !important;
}



















/* ==============================================
   GITHUB REPO CARD HOVER QR SCANNER STYLES
   ============================================== */

/* QR Icon Trigger */
.qr-trigger-btn {
    width: 28px;
    height: 28px;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c084fc;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qr-trigger-btn:hover {
    background: #a855f7;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.6);
}

/* Hover QR Overlay Window */
.repo-qr-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 6, 20, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.85);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

/* Show Overlay when Trigger Icon is Hovered */
.repo-card:has(.qr-trigger-btn:hover) .repo-qr-overlay,
.repo-qr-overlay:hover {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* QR Box Styling */
.qr-code-img-box {
    background: #ffffff;
    padding: 6px;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}

.qr-code-img-box img {
    width: 110px;
    height: 110px;
}

.micro-text {
    font-size: 0.72rem !important;
}