/* 
   TECHGENIUS Custom Styles
   Supplementary CSS for custom styling and animations
*/

/* Browser Reset - Fix Edge/Chrome compatibility */
* {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Header alignment fixes */
header {
    width: 100%;
    overflow: visible;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Navigation alignment */
nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
}

nav a, nav button, nav div {
    display: flex;
    align-items: center;
}

/* Mega menu wrapper alignment */
.mega-menu-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.mega-menu-wrapper button {
    padding: 0;
    height: auto;
    display: flex;
    align-items: center;
}

/* Responsive container fixes */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

@media (max-width: 640px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        max-width: 95%;
    }
}

@media (min-width: 1025px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
        max-width: 1400px;
    }
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
}

/* Apply animations to elements */
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

.pulse-glow {
    animation: pulse-glow 2s infinite;
}

/* Smooth transitions for buttons */
button {
    transition: all 0.3s ease;
}

/* Mega menu specific fixes */
.mega-menu {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 50 !important;
    max-width: calc(100vw - 2rem);
    width: auto;
    min-width: 95vw;
}

@media (min-width: 1024px) {
    .mega-menu {
        min-width: 1100px !important;
        max-width: 1200px !important;
    }
}

@media (min-width: 1280px) {
    .mega-menu {
        min-width: 1200px !important;
        width: 1200px !important;
    }
}

/* Prevent mega menu from causing layout shift */
.mega-menu-wrapper {
    position: relative !important;
}

.mega-menu-wrapper .mega-menu {
    /* Ensure it doesn't affect document flow */
    pointer-events: auto;
}

#mobile-menu {
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

/* Custom scrollbar styling */
::-webkit-scrollbar {
    width: 12px;
}

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

/* ===== PROFESSIONAL DESIGN ENHANCEMENTS ===== */

/* Enhanced Cards & Containers */
.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(0, 29, 61, 0.1);
    border-radius: 12px;
    padding: 32px 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 29, 61, 0.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color, #001d3d) 0%, transparent 100%);
}

/* Enhanced Buttons */
.btn-primary {
    background: linear-gradient(135deg, #001d3d 0%, #002b5c 100%);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 29, 61, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 29, 61, 0.35);
    background: linear-gradient(135deg, #002b5c 0%, #003d80 100%);
}

.btn-secondary {
    background: white;
    color: #001d3d;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #001d3d;
    transform: translateY(-2px);
}

/* Section Styling */
.section-header {
    margin-bottom: 48px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: #001d3d;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748B;
    line-height: 1.6;
    max-width: 600px;
}

/* Hero Section Enhancement */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 29, 61, 0.6) 0%, rgba(0, 29, 61, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* List Styling */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
}

.feature-list li::before {
    content: '✓';
    flex-shrink: 0;
    color: #001d3d;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Benefit Item */
.benefit-item {
    padding: 24px;
    background: linear-gradient(135deg, rgba(0, 29, 61, 0.02) 0%, rgba(0, 29, 61, 0.04) 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 29, 61, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: linear-gradient(135deg, rgba(0, 29, 61, 0.05) 0%, rgba(0, 29, 61, 0.08) 100%);
    transform: translateX(8px);
}

.benefit-icon {
    font-size: 1.75rem;
    margin-bottom: 12px;
    display: block;
}

.benefit-title {
    font-weight: 600;
    font-size: 1.125rem;
    color: #001d3d;
    margin-bottom: 8px;
}

.benefit-description {
    color: #64748B;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* CTA Section Enhancement */
.cta-section {
    background: linear-gradient(135deg, #001d3d 0%, #002b5c 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

/* Footer Enhancement */
.footer-section {
    background: linear-gradient(180deg, #0F172A 0%, #000000 100%);
    color: #cbd5e1;
}

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 16px;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.875rem;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }
}

::-webkit-scrollbar-thumb {
    background: #001d3d;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #000d1a;
}

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card hover elevation effect */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Responsive Image Fix */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive Text Sizes for Smaller Viewports */
@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    p {
        font-size: 1rem;
    }
}

/* Fix for 14" laptop / Edge Browser (1366x768) */
@media (max-width: 1400px) and (max-height: 900px) {
    html {
        font-size: 15px;
    }
}

/* Edge Browser specific fixes */
@supports (-ms-ime-align:auto) {
    * {
        -ms-overflow-style: scrollbar;
    }
}

/* Prevent horizontal scrolling */
html, body {
    width: 100%;
    max-width: 100%;
}

/* Ensure header contains content properly */
header .container {
    display: flex;
    align-items: center;
}

/* Responsive padding adjustments */
.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 768px) {
    .md\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Print styles */
@media print {

    nav,
    footer,
    button,
    .no-print {
        display: none;
    }

    body {
        background: white;
    }

    a {
        color: #3b82f6;
        text-decoration: underline;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    /* Add dark mode styles here if needed */
}

/* Utility classes */
.shadow-glow {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

.shadow-glow-lg {
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.3);
}

.text-gradient {
    background: linear-gradient(to right, #3b82f6, #1e40af);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Link styles */
a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: #3b82f6;
}

/* Form styles */
input::placeholder,
textarea::placeholder {
    color: #9ca3af;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #3b82f6;
    background-color: #f0f9ff;
}

/* Table styles */
table {
    border-collapse: collapse;
    width: 100%;
}

th {
    background-color: #3b82f6;
    color: white;
    padding: 12px;
    text-align: left;
}

td {
    padding: 10px 12px;
    border-bottom: 1px solid #e5e7eb;
}

tr:hover {
    background-color: #f0f9ff;
}

/* Code block styles */
code {
    background-color: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.875em;
}

pre {
    background-color: #1f2937;
    color: #f3f4f6;
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 16px 0;
}

/* Loading animation */
.loader {
    border: 4px solid #f3f4f6;
    border-top: 4px solid #3b82f6;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Tooltip styles */
.tooltip {
    position: relative;
    display: inline-block;
    cursor: help;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #1f2937;
    color: white;
    text-align: center;
    padding: 8px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 14px;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #1f2937 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Badge styles */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background-color: #3b82f6;
    color: white;
}

.badge-success {
    background-color: #10b981;
}

.badge-warning {
    background-color: #f59e0b;
}

.badge-danger {
    background-color: #ef4444;
}

/* Container max-width classes */
.container-sm {
    max-width: 576px;
    margin-left: auto;
    margin-right: auto;
}

.container-md {
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

.container-lg {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive spacing */
@media (max-width: 768px) {
    .hidden-mobile {
        display: none;
    }

    .container {
        padding: 16px;
    }
}

@media (min-width: 768px) {
    .hidden-desktop {
        display: none;
    }
}

/* Overlay effect */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

/* Modal styles */
.modal {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
    padding: 30px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6b7280;
}

.modal-close:hover {
    color: #1f2937;
}

/* ============================================================
   DARK BACKGROUND OVERRIDES
   Make fonts light & buttons visible on all dark sections
   ============================================================ */

/*
  Target 1: Page-banner/hero sections that use an inline style with
  a dark image overlay (the pattern used across all service pages).
  These sections have style="background: linear-gradient(rgba(0,0,0,...
*/
section[style*="background: linear-gradient(rgba(0, 0, 0"],
section[style*="background:linear-gradient(rgba(0,0,0"],
section[style*="background: linear-gradient(135deg"] {
    color: #ffffff;
}

section[style*="background: linear-gradient(rgba(0, 0, 0"] h1,
section[style*="background: linear-gradient(rgba(0, 0, 0"] h2,
section[style*="background: linear-gradient(rgba(0, 0, 0"] h3,
section[style*="background: linear-gradient(rgba(0, 0, 0"] p,
section[style*="background: linear-gradient(rgba(0, 0, 0"] span,
section[style*="background: linear-gradient(rgba(0, 0, 0"] li,
section[style*="background: linear-gradient(rgba(0, 0, 0"] a {
    color: #ffffff;
}

/* Banner accent spans (e.g. <span class="text-primary italic">) inside dark banners */
section[style*="background: linear-gradient(rgba(0, 0, 0"] .text-primary,
section[style*="background: linear-gradient(rgba(0, 0, 0"] [class*="text-primary"] {
    color: #60a5fa !important;
    /* light blue accent – visible on dark */
}

/*
  Target 2: Tailwind utility dark classes used on sections/divs:
  bg-dark (#0F172A), bg-primary (#001d3d), bg-slate-900, bg-slate-800,
  bg-gray-900, bg-gray-800
*/
.bg-dark,
[class*="bg-primary"]:not([class*="bg-primary/"]):not(button):not(a):not(span),
.bg-slate-900,
.bg-gray-900 {
    color: #ffffff;
}

/* Headings and body text inside dark Tailwind sections */
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6,
.bg-dark p,
.bg-dark li,
.bg-dark span:not([class*="bg-"]),
.bg-slate-900 h1,
.bg-slate-900 h2,
.bg-slate-900 h3,
.bg-slate-900 h4,
.bg-slate-900 h5,
.bg-slate-900 p,
.bg-slate-900 li,
.bg-slate-900 span:not([class*="bg-"]),
.bg-gray-900 h1,
.bg-gray-900 h2,
.bg-gray-900 h3,
.bg-gray-900 h4,
.bg-gray-900 h5,
.bg-gray-900 p,
.bg-gray-900 li,
section.bg-primary h1,
section.bg-primary h2,
section.bg-primary h3,
section.bg-primary h4,
section.bg-primary p,
section.bg-primary li,
section.bg-primary span {
    color: #ffffff;
}

/* Accent spans with .text-primary inside any dark-bg section – remap to light blue */
.bg-dark .text-primary,
.bg-dark [class*="text-primary"],
.bg-slate-900 .text-primary,
.bg-gray-900 .text-primary,
section.bg-primary .text-primary {
    color: #93c5fd !important;
    /* Tailwind blue-300 – light enough for dark bg */
}

/* Sub-text / muted text inside dark sections – keep it readable */
.bg-dark .text-slate-400,
.bg-dark .text-slate-500,
.bg-dark [class*="text-slate-"],
.bg-dark [class*="text-gray-"],
section.bg-primary [class*="text-slate-"],
section.bg-primary [class*="text-gray-"] {
    color: #cbd5e1 !important;
    /* slate-300 */
}

/*
  Target 3: Inline dark div CTAs (bg-dark rounded-3xl / bg-primary rounded-*)
  used inside <section class="py-20"> on most pages.
*/
div.bg-dark h1,
div.bg-dark h2,
div.bg-dark h3,
div.bg-dark h4,
div.bg-dark p,
div.bg-dark li,
div.bg-dark span:not([class*="bg-"]) {
    color: #ffffff;
}

div.bg-primary h1,
div.bg-primary h2,
div.bg-primary h3,
div.bg-primary h4,
div.bg-primary p,
div.bg-primary li,
div.bg-primary span:not([class*="bg-"]) {
    color: #ffffff;
}

/*
  BUTTON OVERRIDES: ensure CTA buttons on dark backgrounds are visible
  Primary solid button inside dark sections -> white bg, dark text
*/
.bg-dark a.bg-primary,
.bg-dark button.bg-primary,
div.bg-dark a[class*="bg-primary"],
div.bg-primary a[class*="bg-primary"] {
    background-color: #ffffff !important;
    color: #001d3d !important;
    border-color: transparent !important;
}

.bg-dark a.bg-primary:hover,
.bg-dark button.bg-primary:hover,
div.bg-dark a[class*="bg-primary"]:hover {
    background-color: #e2e8f0 !important;
    color: #001d3d !important;
}

/* Outline / border button inside dark sections -> white border, white text */
.bg-dark a[class*="border"],
.bg-dark a[class*="border-white"],
div.bg-dark a[class*="border"],
div.bg-primary a[class*="border-slate"] {
    border-color: #ffffff !important;
    color: #ffffff !important;
}

.bg-dark a[class*="border"]:hover,
div.bg-dark a[class*="border"]:hover {
    background-color: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

/* bg-slate-900 contact/info box dark panels */
div.bg-slate-900 h1,
div.bg-slate-900 h2,
div.bg-slate-900 h3,
div.bg-slate-900 h4,
div.bg-slate-900 p,
div.bg-slate-900 li,
div.bg-slate-900 span:not([class*="bg-"]),
div.bg-slate-900 label {
    color: #f1f5f9;
    /* slate-100 */
}

/* ===== PRIMARY COLOR VARIANTS FOR SOLUTION CARDS ===== */
/* Tech Card Color Variants - Using Primary Color Shades */

.tech-card-primary-1 {
    --accent-color: #001d3d;
    position: relative;
}

.tech-card-primary-1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #001d3d 0%, #002b5c 100%);
}

.tech-card-primary-2 {
    --accent-color: #002b5c;
    position: relative;
}

.tech-card-primary-2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #002b5c 0%, #003d80 100%);
}

.tech-card-primary-3 {
    --accent-color: #003d80;
    position: relative;
}

.tech-card-primary-3::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #003d80 0%, #004fa3 100%);
}

.tech-card-primary-4 {
    --accent-color: #004fa3;
    position: relative;
}

.tech-card-primary-4::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #004fa3 0%, #0061c7 100%);
}

.tech-card-primary-5 {
    --accent-color: #0061c7;
    position: relative;
}

.tech-card-primary-5::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0061c7 0%, #0073eb 100%);
}

.tech-card-primary-6 {
    --accent-color: #0073eb;
    position: relative;
}

.tech-card-primary-6::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0073eb 0%, #1f85ff 100%);
}

.tech-card-primary-7 {
    --accent-color: #1f85ff;
    position: relative;
}

.tech-card-primary-7::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1f85ff 0%, #4099ff 100%);
}

.tech-card-primary-8 {
    --accent-color: #4099ff;
    position: relative;
}

.tech-card-primary-8::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4099ff 0%, #60adff 100%);
}

.tech-card-primary-9 {
    --accent-color: #60adff;
    position: relative;
}

.tech-card-primary-9::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #60adff 0%, #80c1ff 100%);
}

.tech-card-primary-10 {
    --accent-color: #80c1ff;
    position: relative;
}

.tech-card-primary-10::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #80c1ff 0%, #a0d5ff 100%);
}

.tech-card-primary-11 {
    --accent-color: #a0d5ff;
    position: relative;
}

.tech-card-primary-11::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #a0d5ff 0%, #c0e9ff 100%);
}

.tech-card-primary-12 {
    --accent-color: #c0e9ff;
    position: relative;
}

.tech-card-primary-12::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c0e9ff 0%, #e0f7ff 100%);
}
