/* ========================================
   ÖZEL YAZILIM GELİŞTİRME - TECH PARTNER THEME
   ======================================== */

:root {
    --tech-primary: #2563eb;
    --tech-secondary: #0ea5e9;
    --tech-accent: #6366f1;
    --tech-dark: #0f172a;
    --tech-gray: #64748b;
    --tech-light: #f1f5f9;
    --tech-code-bg: #1e293b;
    --tech-gradient: linear-gradient(135deg, #2563eb, #0ea5e9);
}

/* Base Styles */
.tech-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.tech-bg-light {
    background: #fff;
}

.tech-bg-gray {
    background: #f8fafc;
}

.tech-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--tech-primary);
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    padding: 8px 16px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

.tech-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--tech-dark);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.tech-desc {
    font-size: 1.25rem;
    color: var(--tech-gray);
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 40px;
}

.text-gradient-tech {
    background: var(--tech-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   01. HERO SECTION
   ======================================== */
.software-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.05) 0%, transparent 40%),
        radial-gradient(circle at bottom left, rgba(99, 102, 241, 0.05) 0%, transparent 40%);
    padding-top: 90px;
}

/* New Hero Visual - System Core Style */
.hero-tech-visual {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.system-core-container {
    position: relative;
    width: 320px;
    height: 320px;
    transform-style: preserve-3d;
    animation: coreFloat 6s ease-in-out infinite;
}

.system-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(37, 99, 235, 0.3);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.1);
}

.ring-outer {
    width: 320px;
    height: 320px;
    animation: spinRight 20s linear infinite;
    border-top-color: var(--tech-primary);
}

.ring-middle {
    width: 240px;
    height: 240px;
    animation: spinLeft 15s linear infinite;
    border-bottom-color: var(--tech-secondary);
}

.ring-inner {
    width: 160px;
    height: 160px;
    animation: spinRight 10s linear infinite;
    border-left-color: var(--tech-accent);
}

.system-core-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--tech-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 0 50px rgba(37, 99, 235, 0.5);
    z-index: 10;
}

.status-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 12px;
    color: #fff;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.status-card i {
    color: #10b981;
}

.status-1 {
    top: 0;
    right: -20px;
    animation: float1 5s ease-in-out infinite both;
}

.status-2 {
    bottom: 20px;
    left: -20px;
    animation: float2 7s ease-in-out infinite 1s both;
}

.status-3 {
    top: 40%;
    left: -60px;
    animation: float3 6s ease-in-out infinite 2s both;
}

@keyframes spinRight {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes spinLeft {
    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes coreFloat {

    0%,
    100% {
        transform: translateY(0) rotateX(10deg);
    }

    50% {
        transform: translateY(-20px) rotateX(10deg);
    }
}

@keyframes float1 {

    0%,
    100% {
        transform: translateZ(50px) translateY(0);
    }

    50% {
        transform: translateZ(50px) translateY(-15px);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateZ(80px) translateY(0);
    }

    50% {
        transform: translateZ(80px) translateY(-15px);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translateZ(30px) translateY(0);
    }

    50% {
        transform: translateZ(30px) translateY(-15px);
    }
}


.hero-btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-tech-primary {
    position: relative;
    overflow: hidden;
    background: var(--tech-dark);
    color: #fff;
    padding: 18px 36px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--tech-dark);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.3);
    z-index: 1;
}

.btn-tech-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-tech-primary:hover {
    background: var(--tech-primary);
    border-color: var(--tech-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

.btn-tech-primary:hover::after {
    left: 100%;
}

.btn-tech-primary:hover i {
    transform: translateX(5px);
}

.btn-tech-outline {
    background: transparent;
    border: 1px solid #cbd5e1;
    color: var(--tech-dark);
    padding: 18px 36px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-tech-outline:hover {
    background: var(--tech-dark);
    color: #fff;
    border-color: var(--tech-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

/* Hero Visual - Abstract Tech */
.hero-tech-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-grid-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(37, 99, 235, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    mask-image: radial-gradient(circle, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle, black 40%, transparent 80%);
}

.tech-card-float {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 20px;
    position: absolute;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 6s ease-in-out infinite;
}

.tech-card-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.tech-card-2 {
    bottom: 20%;
    left: 10%;
    animation-delay: 1s;
}

.tech-card-3 {
    top: 40%;
    left: 40%;
    animation-delay: 2s;
    z-index: 2;
    transform: scale(1.1);
}

.tech-icon-box {
    width: 40px;
    height: 40px;
    background: var(--tech-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tech-primary);
}

.tech-code-snippet {
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--tech-gray);
}

@keyframes float {

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

    50% {
        transform: translateY(-15px);
    }
}

/* ========================================
   02. WHY CUSTOM SOFTWARE
   ======================================== */
.comparison-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.comparison-card:hover {
    border-color: var(--tech-primary);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.12);
    transform: translateX(10px);
}

.comparison-icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--tech-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.comparison-content h4 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 700;
    color: var(--tech-dark);
}

/* ========================================
   03. DEVELOPMENT AREAS
   ======================================== */
.dev-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dev-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 40px 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
    height: 100%;
}

.dev-card:hover {
    border-color: var(--tech-primary);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    background: linear-gradient(to bottom right, #fff, #f8fafc);
}

.dev-icon {
    width: 60px;
    height: 60px;
    background: var(--tech-dark);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.dev-card:hover .dev-icon {
    background: var(--tech-primary);
    transform: rotate(5deg);
}

.dev-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--tech-dark);
    margin-bottom: 12px;
}

.dev-card p {
    color: var(--tech-gray);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ========================================
   04. PROCESS (TIMELINE)
   ======================================== */
.process-wrapper {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}

.process-line {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.process-steps {
    position: relative;
    z-index: 1;
}

.process-item {
    text-align: center;
    background: transparent;
    padding: 0 10px;
}

.process-number {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 2px solid var(--tech-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--tech-dark);
    position: relative;
    transition: all 0.3s ease;
    z-index: 2;
    /* Çizginin üstünde */
}

.process-item:hover .process-number {
    background: var(--tech-primary);
    border-color: var(--tech-primary);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.process-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--tech-dark);
}

.process-item p {
    font-size: 0.9rem;
    color: var(--tech-gray);
    line-height: 1.5;
}

@media (max-width: 991px) {
    .process-line {
        display: none;
    }
}

/* ========================================
   PREMIUM COMPARISON TABLE
   ======================================== */
.diff-container {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    margin: 60px 0;
}

.diff-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
}

/* Sol Taraf: Standart Ajanslar */
.diff-col.agency {
    background: #f1f5f9;
    padding: 60px 60px 60px 40px;
    color: #64748b;
    position: relative;
    z-index: 1;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    transition: all 0.4s ease;
    border-right: none;
}

.diff-container:hover .diff-col.agency {
    opacity: 0.7;
    filter: grayscale(0.8);
}

/* Sağ Taraf: Veddia (Biz) */
.diff-col.us {
    background: #fff;
    padding: 80px 60px;
    position: relative;
    z-index: 2;
    border-radius: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(1.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-left: -20px;
    /* İç içe geçme etkisi */
}

/* Tipografi */
.diff-col h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.diff-col.agency h3 {
    color: #94a3b8;
}

.diff-col.us h3 {
    background: linear-gradient(135deg, var(--tech-dark) 0%, var(--tech-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Listeler */
.diff-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.diff-list li {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.diff-col.agency li {
    opacity: 0.6;
    font-weight: 500;
    text-decoration: line-through;
    text-decoration-color: #cbd5e1;
}

.diff-col.us li {
    color: var(--tech-dark);
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.diff-col.us:hover li {
    transform: translateX(5px);
}

/* İkonlar */
.diff-list li i {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.diff-col.agency li i {
    color: #cbd5e1;
}

.diff-col.us li i {
    color: var(--tech-secondary);
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.4));
    /* Neon glow */
}

/* Footer Note */
.diff-footer-note {
    display: none;
    /* Modern tasarımda buna gerek yok veya grid dışına almalı */
}

/* Responsive */
@media (max-width: 991px) {
    .diff-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .diff-col.agency {
        border-radius: 20px;
        padding: 40px;
        text-align: center;
        margin-bottom: 20px;
    }

    .diff-col.us {
        margin-left: 0;
        transform: none;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .diff-list li {
        justify-content: flex-start;
    }
}

/* ========================================
   06. WHO IS IT FOR
   ======================================== */
.target-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.target-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.03);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.target-item:hover {
    border-color: rgba(37, 99, 235, 0.2);
    background: rgba(37, 99, 235, 0.05);
}

.target-item i {
    font-size: 1.5rem;
    color: var(--tech-primary);
    margin-top: 5px;
}

.target-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--tech-dark);
}

/* ========================================
   07. FAQ
   ======================================== */
.tech-faq-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 0;
}

.tech-faq-header {
    padding: 24px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tech-faq-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--tech-dark);
    transition: color 0.3s ease;
}

.tech-faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
}

.tech-faq-icon::before,
.tech-faq-icon::after {
    content: '';
    position: absolute;
    background: var(--tech-dark);
    transition: all 0.3s ease;
}

.tech-faq-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    margin-top: -1px;
}

.tech-faq-icon::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    margin-left: -1px;
}

.tech-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.tech-faq-content {
    padding-bottom: 24px;
    color: var(--tech-gray);
    line-height: 1.7;
}

.tech-faq-item.active .tech-faq-icon::after {
    transform: rotate(90deg);
}

.tech-faq-item.active .tech-faq-header h4 {
    color: var(--tech-primary);
}

/* ========================================
   08. CTA
   ======================================== */
.tech-cta-box {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1e40af 100%);
    border-radius: 30px;
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.3);
}

.tech-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    pointer-events: none;
}



.tech-cta-title {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.tech-cta-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.tech-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-cta-tech {
    background: #fff;
    color: var(--tech-primary);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-cta-tech:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-outline-light {
    background: transparent;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .dev-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-line {
        display: none;
    }

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

    .hero-tech-visual {
        height: 350px;
        margin-top: 50px;
    }

    .diff-col {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .dev-grid {
        grid-template-columns: 1fr;
    }

    .target-list {
        grid-template-columns: 1fr;
    }

    .tech-cta-buttons {
        flex-direction: column;
    }

    .tech-cta-box {
        padding: 40px 20px;
    }
}

/* ========================================
   09. PREMIUM TECH EFFECTS & ENHANCEMENTS
   ======================================== */

/* Selection Color */
::selection {
    background: rgba(37, 99, 235, 0.2);
    color: var(--tech-dark);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
    border: 2px solid #f1f5f9;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Glassmorphism Advanced */
.tech-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

/* Neon Glow Text */
.tech-glow-text {
    text-shadow: 0 0 10px rgba(37, 99, 235, 0.3),
        0 0 20px rgba(37, 99, 235, 0.2),
        0 0 30px rgba(37, 99, 235, 0.1);
}

/* Animated Gradient Border */
.btn-tech-gradient-border {
    position: relative;
    background: #fff;
    border-radius: 50px;
    z-index: 1;
}

.btn-tech-gradient-border::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 52px;
    background: linear-gradient(45deg, #2563eb, #0ea5e9, #6366f1, #2563eb);
    background-size: 400% 400%;
    z-index: -1;
    animation: techGradientMove 3s linear infinite;
}

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

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

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

/* 3D Card Hover Effect */
.tech-card-3d-hover {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.tech-card-3d-hover:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(37, 99, 235, 0.1) !important;
}

/* Matrix-like Background Animation for sections */
.tech-matrix-bg {
    position: relative;
    overflow: hidden;
}

.tech-matrix-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: matrixScroll 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes matrixScroll {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 30px 30px;
    }
}

/* Code Syntax Highlighting colors for snippets */
.syntax-keyword {
    color: #c678dd;
}

.syntax-function {
    color: #61afef;
}

.syntax-string {
    color: #98c379;
}

.syntax-comment {
    color: #5c6370;
    font-style: italic;
}

/* Pulse Badge */
.tech-badge-pulse {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tech-badge-pulse::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Floating Code Particles */
.tech-particle {
    position: absolute;
    font-family: monospace;
    font-size: 10px;
    color: rgba(37, 99, 235, 0.1);
    pointer-events: none;
    user-select: none;
    animation: particleFloat 10s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(20deg);
        opacity: 0;
    }
}

/* Enhanced Focus States for Accessibility & Style */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--tech-primary);
    outline-offset: 4px;
}

/* Typing Effect Cursor */
.typing-cursor::after {
    content: '|';
    animation: blink 1s step-end infinite;
    color: var(--tech-primary);
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Modern Card Shine Effect */
.card-shine-effect {
    position: relative;
    overflow: hidden;
}

.card-shine-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: left 0.5s;
    pointer-events: none;
}

.card-shine-effect:hover::after {
    left: 150%;
    transition: left 1s;
}

/* Gradient Text Animation */
.gradient-text-animated {
    background: linear-gradient(to right,
            var(--tech-primary),
            var(--tech-secondary),
            var(--tech-accent),
            var(--tech-primary));
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* List Item Checks */
.list-check-animated li i {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.list-check-animated li:hover i {
    transform: scale(1.3) rotate(10deg);
    color: var(--tech-secondary);
}